/*
Theme Name: H1H2
Theme URI: https://redeggmarketing.com/
Author: Red Egg Marketing
Author URI: https://redeggmarketing.com/
Description: H1H2 Theme
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: H1H2
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/
/*--------------------------------------------------------------
 Import librareis
--------------------------------------------------------------*/
.carousel {
  position: relative;
  box-sizing: border-box;
}

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

.carousel.is-draggable {
  cursor: move;
  cursor: grab;
}

.carousel.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.carousel__viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}

.carousel__track {
  display: -ms-flexbox;
  display: flex;
}

.carousel__slide {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: .25;
  transition: opacity .15s ease-in-out;
}

.carousel__dots .carousel__dot.is-selected:after {
  opacity: 1;
}

.carousel__button {
  width: var(--carousel-button-width, 48px);
  height: var(--carousel-button-height, 48px);
  padding: 0;
  border: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  box-shadow: var(--carousel-button-shadow, none);
  transition: opacity .15s ease;
}

.carousel__button.is-prev, .carousel__button.is-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel__button.is-prev {
  left: 10px;
}

.carousel__button.is-next {
  right: 10px;
}

.carousel__button[disabled] {
  cursor: default;
  opacity: .3;
}

.carousel__button svg {
  width: var(--carousel-button-svg-width, 50%);
  height: var(--carousel-button-svg-height, 50%);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
  stroke-linejoin: bevel;
  stroke-linecap: round;
  filter: var(--carousel-button-svg-filter, none);
  pointer-events: none;
}

html.with-fancybox {
  scroll-behavior: auto;
}

body.compensate-for-scrollbar {
  overflow: hidden !important;
  -ms-touch-action: none;
      touch-action: none;
}

.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  z-index: 1050;
  outline: none;
  transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}

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

.fancybox__container :focus {
  outline: none;
}

body:not(.is-using-mouse) .fancybox__container :focus {
  box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
}

@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width:48px;
    --carousel-button-height:48px;
    --carousel-button-svg-width:27px;
    --carousel-button-svg-height:27px;
  }
}

.fancybox__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}

.fancybox__carousel {
  position: relative;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  z-index: 10;
}

.fancybox__carousel.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.fancybox__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  cursor: default;
}

.fancybox__track {
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.fancybox__slide {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  overscroll-behavior: contain;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  outline: 0;
  overflow: auto;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px;
}

.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  -ms-flex: 0 0 0px;
      flex: 0 0 0;
  margin: auto;
}

@media all and (min-width: 1024px) {
  .fancybox__slide {
    padding: 64px 100px;
  }
}

.fancybox__content {
  margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
  padding: 36px;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  position: relative;
  -ms-flex-item-align: center;
      align-self: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  z-index: 20;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: thin dotted;
  box-shadow: none;
}

.fancybox__caption {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  max-width: 100%;
  margin: 0;
  padding: 1rem 0 0 0;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  visibility: visible;
  cursor: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow-wrap: anywhere;
}

.is-loading .fancybox__caption {
  visibility: hidden;
}

.fancybox__container > .carousel__dots {
  top: 100%;
  color: var(--fancybox-color, #fff);
}

.fancybox__nav .carousel__button {
  z-index: 40;
}

.fancybox__nav .carousel__button.is-next {
  right: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-next {
    right: 40px;
  }
}

.fancybox__nav .carousel__button.is-prev {
  left: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }
}

.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  right: calc(env(safe-area-inset-right, 0px) + 8px);
  z-index: 40;
}

@media all and (min-width: 1024px) {
  .carousel__button.is-close {
    right: 40px;
  }
}

.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--fancybox-color, #fff);
}

.fancybox__no-click, .fancybox__no-click button {
  pointer-events: none;
}

.fancybox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  color: var(--fancybox-color, currentColor);
}

.fancybox__slide .fancybox__spinner {
  cursor: pointer;
  z-index: 1053;
}

.fancybox__spinner svg {
  animation: fancybox-rotate 2s linear infinite;
  transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}

.fancybox__spinner svg circle {
  fill: none;
  stroke-width: 2.75;
  stroke-miterlimit: 10;
  stroke-dasharray: 1,200;
  stroke-dashoffset: 0;
  animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124px;
  }
}

.fancybox__backdrop, .fancybox__caption, .fancybox__nav, .carousel__dots, .carousel__button.is-close {
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop, .fancybox__container.is-animated[aria-hidden=false] .fancybox__caption, .fancybox__container.is-animated[aria-hidden=false] .fancybox__nav, .fancybox__container.is-animated[aria-hidden=false] .carousel__dots, .fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
  animation: .15s ease backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__backdrop, .fancybox__container.is-animated.is-closing .fancybox__caption, .fancybox__container.is-animated.is-closing .fancybox__nav, .fancybox__container.is-animated.is-closing .carousel__dots, .fancybox__container.is-animated.is-closing .carousel__button.is-close {
  animation: .15s ease both fancybox-fadeOut;
}

.fancybox-fadeIn {
  animation: .15s ease both fancybox-fadeIn;
}

.fancybox-fadeOut {
  animation: .1s ease both fancybox-fadeOut;
}

.fancybox-zoomInUp {
  animation: .2s ease both fancybox-zoomInUp;
}

.fancybox-zoomOutDown {
  animation: .15s ease both fancybox-zoomOutDown;
}

.fancybox-throwOutUp {
  animation: .15s ease both fancybox-throwOutUp;
}

.fancybox-throwOutDown {
  animation: .15s ease both fancybox-throwOutDown;
}

@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}

@keyframes fancybox-zoomInUp {
  from {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fancybox-zoomOutDown {
  to {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}

@keyframes fancybox-throwOutUp {
  to {
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}

@keyframes fancybox-throwOutDown {
  to {
    transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}

.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

.fancybox__carousel.is-draggable .fancybox__slide, .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: grab;
}

.fancybox__carousel.is-dragging .fancybox__slide, .fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__carousel .fancybox__slide .fancybox__content {
  cursor: auto;
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__image {
  transform-origin: 0 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: none;
}

.has-image .fancybox__content {
  padding: 0;
  background: transparent;
  min-height: 1px;
}

.is-closing .has-image .fancybox__content {
  overflow: visible;
}

.has-image[data-image-fit=contain] {
  overflow: visible;
  -ms-touch-action: none;
      touch-action: none;
}

.has-image[data-image-fit=contain] .fancybox__content {
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.has-image[data-image-fit=contain] .fancybox__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.has-image[data-image-fit=contain-w] {
  overflow-x: hidden;
  overflow-y: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__content {
  min-height: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__image {
  max-width: 100%;
  height: auto;
}

.has-image[data-image-fit=cover] {
  overflow: visible;
  -ms-touch-action: none;
      touch-action: none;
}

.has-image[data-image-fit=cover] .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-image[data-image-fit=cover] .fancybox__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  max-width: 100%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
  width: 100%;
  height: 80%;
}

.fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: transparent;
}

.fancybox-placeholder {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.fancybox__thumbs {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  position: relative;
  padding: 0px 3px;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
  animation: .15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
  opacity: 0;
}

.fancybox__thumbs .carousel__slide {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  width: var(--fancybox-thumbs-width, 96px);
  margin: 0;
  padding: 8px 3px;
  box-sizing: content-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  overflow: visible;
  cursor: pointer;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: 5px;
  border-style: solid;
  border-color: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  opacity: 0;
  transition: opacity .15s ease;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
  opacity: .92;
}

.fancybox__thumbs .carousel__slide > * {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox__thumb {
  position: relative;
  width: 100%;
  padding-top: calc(100%/(var(--fancybox-thumbs-ratio, 1.5)));
  background-size: cover;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.006) 8.1%, rgba(0, 0, 0, 0.021) 15.5%, rgba(0, 0, 0, 0.046) 22.5%, rgba(0, 0, 0, 0.077) 29%, rgba(0, 0, 0, 0.114) 35.3%, rgba(0, 0, 0, 0.155) 41.2%, rgba(0, 0, 0, 0.198) 47.1%, rgba(0, 0, 0, 0.242) 52.9%, rgba(0, 0, 0, 0.285) 58.8%, rgba(0, 0, 0, 0.326) 64.7%, rgba(0, 0, 0, 0.363) 71%, rgba(0, 0, 0, 0.394) 77.5%, rgba(0, 0, 0, 0.419) 84.5%, rgba(0, 0, 0, 0.434) 91.9%, rgba(0, 0, 0, 0.44) 100%);
  padding: 0;
  -ms-touch-action: none;
      touch-action: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4));
}

@media all and (min-width: 1024px) {
  .fancybox__toolbar {
    padding: 8px;
  }
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
  animation: .15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
  opacity: 0;
}

.fancybox__toolbar__items {
  display: -ms-flexbox;
  display: flex;
}

.fancybox__toolbar__items--left {
  margin-right: auto;
}

.fancybox__toolbar__items--center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.fancybox__toolbar__items--right {
  margin-left: auto;
}

@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display: none;
  }
}

.fancybox__counter {
  min-width: 72px;
  padding: 0 10px;
  line-height: var(--carousel-button-height, 48px);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox__progress {
  background: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 30;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox__container:-webkit-full-screen::backdrop {
  opacity: 0;
}

.fancybox__container:-moz-full-screen::backdrop {
  opacity: 0;
}

.fancybox__container:-ms-fullscreen::backdrop {
  opacity: 0;
}

.fancybox__container:fullscreen::backdrop {
  opacity: 0;
}

.fancybox__button--fullscreen g:nth-child(2) {
  display: none;
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:-moz-full-screen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:-ms-fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__container:-moz-full-screen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__container:-ms-fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__button--slideshow g:nth-child(2) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
  display: block;
}

/*--------------------------------------------------------------
 Styles for template, pages, variables
--------------------------------------------------------------*/
@keyframes backgroundShift {
  0% {
    background-position: 0 100%;
  }
  100% {
    background-position: 0 -62.5%;
  }
}

@keyframes transitionDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes opacityChange {
  0% {
    opacity: 0%;
  }
  100% {
    opacity: 100%;
  }
}

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

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

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

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

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

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

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

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

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

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

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

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

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

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

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

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
  color: #404040;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
  background: #fff;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

img {
  height: auto;
  max-width: 100%;
}

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/* Links
--------------------------------------------- */
a {
  color: #4169e1;
}

a:visited {
  color: #800080;
}

a:hover,
a:focus,
a:active {
  color: #191970;
}

a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
.main-navigation {
  display: block;
  width: 100%;
}

.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation ul ul {
  width: 100%;
}

@media screen and (min-width: 1080px) {
  .main-navigation ul ul {
    float: left;
    position: absolute;
    top: 100%;
    background: white;
    min-width: 600px;
    border-radius: 12px;
    border: 2px solid #EDF5FE;
    width: auto;
    left: -999em;
    z-index: 99999;
    padding: 15px;
  }
}

.main-navigation ul ul li {
  margin-left: 0;
  margin-right: 0;
}

.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  display: block;
  left: auto;
}

.main-navigation ul ul a {
  width: 200px;
}

.main-navigation li {
  position: relative;
}

.main-navigation a {
  display: block;
  text-decoration: none;
}

/* Small menu. */
.menu-toggle {
  display: block;
}

@media screen and (min-width: 37.5em) {
  .main-navigation ul {
    display: -ms-flexbox;
    display: flex;
  }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: -ms-flexbox;
  display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  -ms-flex: 1 0 50%;
      flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  text-align: end;
  -ms-flex: 1 0 50%;
      flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
  display: block;
}

.post,
.page {
  margin: 0 0 0;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 0 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 1.5em;
}

.widget select {
  max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

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

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: -ms-grid;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  -ms-grid-columns: (1fr)[6];
      grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  -ms-grid-columns: (1fr)[7];
      grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  -ms-grid-columns: (1fr)[8];
      grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  -ms-grid-columns: (1fr)[9];
      grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

.fa {
  font-family: "Font Awesome 6 Free";
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: 900;
  font-weight: var(--fa-style, 900);
}

.fa, .fa-brands, .fa-duotone, .fa-light, .fa-regular, .fa-solid, .fa-thin, .fab, .fad, .fal, .far, .fas, .fat {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-2xs {
  font-size: .625em;
  line-height: .1em;
  vertical-align: .225em;
}

.fa-xs {
  font-size: .75em;
  line-height: .08333em;
  vertical-align: .125em;
}

.fa-sm {
  font-size: .875em;
  line-height: .07143em;
  vertical-align: .05357em;
}

.fa-lg {
  font-size: 1.25em;
  line-height: .05em;
  vertical-align: -.075em;
}

.fa-xl {
  font-size: 1.5em;
  line-height: .04167em;
  vertical-align: -.125em;
}

.fa-2xl {
  font-size: 2em;
  line-height: .03125em;
  vertical-align: -.1875em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  margin-left: var(--fa-li-margin, 2.5em);
  padding-left: 0;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  left: calc(var(--fa-li-width, 2em)*-1);
  position: absolute;
  text-align: center;
  width: 2em;
  width: var(--fa-li-width, 2em);
  line-height: inherit;
}

.fa-border {
  border-radius: .1em;
  border-radius: var(--fa-border-radius, 0.1em);
  border: .08em solid #eee;
  border: var(--fa-border-width, 0.08em) var(--fa-border-style, solid) var(--fa-border-color, #eee);
  padding: .2em .25em .15em;
  padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);
}

.fa-pull-left {
  float: left;
  margin-right: .3em;
  margin-right: var(--fa-pull-margin, 0.3em);
}

.fa-pull-right {
  float: right;
  margin-left: .3em;
  margin-left: var(--fa-pull-margin, 0.3em);
}

.fa-beat {
  animation-name: fa-beat;
  animation-delay: 0;
  animation-delay: var(--fa-animation-delay, 0);
  animation-direction: normal;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: 1s;
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: infinite;
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: ease-in-out;
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-fade {
  animation-name: fa-fade;
  animation-iteration-count: infinite;
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}

.fa-fade, .fa-flash {
  animation-delay: 0;
  animation-delay: var(--fa-animation-delay, 0);
  animation-direction: normal;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: 1s;
  animation-duration: var(--fa-animation-duration, 1s);
}

.fa-flash {
  animation-name: fa-flash;
  animation-iteration-count: infinite;
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}

.fa-flip {
  animation-name: fa-flip;
  animation-delay: 0;
  animation-delay: var(--fa-animation-delay, 0);
  animation-direction: normal;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: 1s;
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: infinite;
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: ease-in-out;
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-spin {
  animation-name: fa-spin;
  animation-delay: 0;
  animation-delay: var(--fa-animation-delay, 0);
  animation-direction: normal;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: 2s;
  animation-duration: var(--fa-animation-duration, 2s);
  animation-iteration-count: infinite;
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: linear;
  animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin-reverse {
  --fa-animation-direction:reverse;
}

.fa-pulse, .fa-spin-pulse {
  animation-name: fa-spin;
  animation-direction: normal;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: 1s;
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: infinite;
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: steps(8);
  animation-timing-function: var(--fa-animation-timing, steps(8));
}

@media (prefers-reduced-motion: reduce) {
  .fa-beat, .fa-fade, .fa-flash, .fa-flip, .fa-pulse, .fa-spin, .fa-spin-pulse {
    animation-delay: -1ms;
    animation-duration: 1ms;
    animation-iteration-count: 1;
    transition-delay: 0s;
    transition-duration: 0s;
  }
}

@keyframes fa-beat {
  0%, 90% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.25);
    transform: scale(var(--fa-beat-scale, 1.25));
  }
}

@keyframes fa-fade {
  50% {
    opacity: .4;
    opacity: var(--fa-fade-opacity, 0.4);
  }
}

@keyframes fa-flash {
  0%, to {
    opacity: .4;
    opacity: var(--fa-flash-opacity, 0.4);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.125);
    transform: scale(var(--fa-flash-scale, 1.125));
  }
}

@keyframes fa-flip {
  50% {
    transform: rotateY(-180deg);
    transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
  }
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}

.fa-rotate-90 {
  transform: rotate(90deg);
}

.fa-rotate-180 {
  transform: rotate(180deg);
}

.fa-rotate-270 {
  transform: rotate(270deg);
}

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

.fa-flip-vertical {
  transform: scaleY(-1);
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  transform: scale(-1);
}

.fa-rotate-by {
  transform: rotate(none);
  transform: rotate(var(--fa-rotate-angle, none));
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x, .fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: auto;
  z-index: var(--fa-stack-z-index, auto);
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
  color: var(--fa-inverse, #fff);
}

.fa-0:before {
  content: "\30";
}

.fa-1:before {
  content: "\31";
}

.fa-2:before {
  content: "\32";
}

.fa-3:before {
  content: "\33";
}

.fa-4:before {
  content: "\34";
}

.fa-5:before {
  content: "\35";
}

.fa-6:before {
  content: "\36";
}

.fa-7:before {
  content: "\37";
}

.fa-8:before {
  content: "\38";
}

.fa-9:before {
  content: "\39";
}

.fa-a:before {
  content: "\41";
}

.fa-address-book:before, .fa-contact-book:before {
  content: "\f2b9";
}

.fa-address-card:before, .fa-contact-card:before, .fa-vcard:before {
  content: "\f2bb";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angle-double-down:before, .fa-angles-down:before {
  content: "\f103";
}

.fa-angle-double-left:before, .fa-angles-left:before {
  content: "\f100";
}

.fa-angle-double-right:before, .fa-angles-right:before {
  content: "\f101";
}

.fa-angle-double-up:before, .fa-angles-up:before {
  content: "\f102";
}

.fa-ankh:before {
  content: "\f644";
}

.fa-apple-alt:before, .fa-apple-whole:before {
  content: "\f5d1";
}

.fa-archway:before {
  content: "\f557";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-arrow-down-1-9:before, .fa-sort-numeric-asc:before, .fa-sort-numeric-down:before {
  content: "\f162";
}

.fa-arrow-down-9-1:before, .fa-sort-numeric-desc:before, .fa-sort-numeric-down-alt:before {
  content: "\f886";
}

.fa-arrow-down-a-z:before, .fa-sort-alpha-asc:before, .fa-sort-alpha-down:before {
  content: "\f15d";
}

.fa-arrow-down-short-wide:before, .fa-sort-amount-desc:before, .fa-sort-amount-down-alt:before {
  content: "\f884";
}

.fa-arrow-down-wide-short:before, .fa-sort-amount-asc:before, .fa-sort-amount-down:before {
  content: "\f160";
}

.fa-arrow-down-z-a:before, .fa-sort-alpha-desc:before, .fa-sort-alpha-down-alt:before {
  content: "\f881";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-pointer:before, .fa-mouse-pointer:before {
  content: "\f245";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-left-rotate:before, .fa-arrow-rotate-back:before, .fa-arrow-rotate-backward:before, .fa-arrow-rotate-left:before, .fa-undo:before {
  content: "\f0e2";
}

.fa-arrow-right-rotate:before, .fa-arrow-rotate-forward:before, .fa-arrow-rotate-right:before, .fa-redo:before {
  content: "\f01e";
}

.fa-arrow-trend-down:before {
  content: "\e097";
}

.fa-arrow-trend-up:before {
  content: "\e098";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrow-up-1-9:before, .fa-sort-numeric-up:before {
  content: "\f163";
}

.fa-arrow-up-9-1:before, .fa-sort-numeric-up-alt:before {
  content: "\f887";
}

.fa-arrow-up-a-z:before, .fa-sort-alpha-up:before {
  content: "\f15e";
}

.fa-arrow-up-from-bracket:before {
  content: "\e09a";
}

.fa-arrow-up-short-wide:before, .fa-sort-amount-up-alt:before {
  content: "\f885";
}

.fa-arrow-up-wide-short:before, .fa-sort-amount-up:before {
  content: "\f161";
}

.fa-arrow-up-z-a:before, .fa-sort-alpha-up-alt:before {
  content: "\f882";
}

.fa-arrows-rotate:before, .fa-refresh:before, .fa-sync:before {
  content: "\f021";
}

.fa-asterisk:before {
  content: "\2a";
}

.fa-at:before {
  content: "\40";
}

.fa-atom:before {
  content: "\f5d2";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-austral-sign:before {
  content: "\e0a9";
}

.fa-award:before {
  content: "\f559";
}

.fa-b:before {
  content: "\42";
}

.fa-baby:before {
  content: "\f77c";
}

.fa-baby-carriage:before, .fa-carriage-baby:before {
  content: "\f77d";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-backward-fast:before, .fa-fast-backward:before {
  content: "\f049";
}

.fa-backward-step:before, .fa-step-backward:before {
  content: "\f048";
}

.fa-bacon:before {
  content: "\f7e5";
}

.fa-bacteria:before {
  content: "\e059";
}

.fa-bacterium:before {
  content: "\e05a";
}

.fa-bag-shopping:before, .fa-shopping-bag:before {
  content: "\f290";
}

.fa-bahai:before {
  content: "\f666";
}

.fa-baht-sign:before {
  content: "\e0ac";
}

.fa-ban:before, .fa-cancel:before {
  content: "\f05e";
}

.fa-ban-smoking:before, .fa-smoking-ban:before {
  content: "\f54d";
}

.fa-band-aid:before, .fa-bandage:before {
  content: "\f462";
}

.fa-bank:before, .fa-institution:before, .fa-university:before {
  content: "\f19c";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-bars:before, .fa-navicon:before {
  content: "\f0c9";
}

.fa-bars-staggered:before, .fa-reorder:before, .fa-stream:before {
  content: "\f550";
}

.fa-baseball-ball:before, .fa-baseball:before {
  content: "\f433";
}

.fa-basket-shopping:before, .fa-shopping-basket:before {
  content: "\f291";
}

.fa-basketball-ball:before, .fa-basketball:before {
  content: "\f434";
}

.fa-bath:before, .fa-bathtub:before {
  content: "\f2cd";
}

.fa-battery-0:before, .fa-battery-empty:before {
  content: "\f244";
}

.fa-battery-5:before, .fa-battery-full:before, .fa-battery:before {
  content: "\f240";
}

.fa-battery-3:before, .fa-battery-half:before {
  content: "\f242";
}

.fa-battery-2:before, .fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-4:before, .fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-bed:before {
  content: "\f236";
}

.fa-bed-pulse:before, .fa-procedures:before {
  content: "\f487";
}

.fa-beer-mug-empty:before, .fa-beer:before {
  content: "\f0fc";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-bell-concierge:before, .fa-concierge-bell:before {
  content: "\f562";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bezier-curve:before {
  content: "\f55b";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-biohazard:before {
  content: "\f780";
}

.fa-bitcoin-sign:before {
  content: "\e0b4";
}

.fa-blender:before {
  content: "\f517";
}

.fa-blender-phone:before {
  content: "\f6b6";
}

.fa-blog:before {
  content: "\f781";
}

.fa-bold:before {
  content: "\f032";
}

.fa-bolt:before, .fa-flash:before {
  content: "\f0e7";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-bone:before {
  content: "\f5d7";
}

.fa-bong:before {
  content: "\f55c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-atlas:before, .fa-book-atlas:before {
  content: "\f558";
}

.fa-bible:before, .fa-book-bible:before {
  content: "\f647";
}

.fa-book-journal-whills:before, .fa-journal-whills:before {
  content: "\f66a";
}

.fa-book-medical:before {
  content: "\f7e6";
}

.fa-book-open:before {
  content: "\f518";
}

.fa-book-open-reader:before, .fa-book-reader:before {
  content: "\f5da";
}

.fa-book-quran:before, .fa-quran:before {
  content: "\f687";
}

.fa-book-dead:before, .fa-book-skull:before {
  content: "\f6b7";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-border-all:before {
  content: "\f84c";
}

.fa-border-none:before {
  content: "\f850";
}

.fa-border-style:before, .fa-border-top-left:before {
  content: "\f853";
}

.fa-bowling-ball:before {
  content: "\f436";
}

.fa-box:before {
  content: "\f466";
}

.fa-archive:before, .fa-box-archive:before {
  content: "\f187";
}

.fa-box-open:before {
  content: "\f49e";
}

.fa-box-tissue:before {
  content: "\e05b";
}

.fa-boxes-alt:before, .fa-boxes-stacked:before, .fa-boxes:before {
  content: "\f468";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-brain:before {
  content: "\f5dc";
}

.fa-bread-slice:before {
  content: "\f7ec";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-briefcase-medical:before {
  content: "\f469";
}

.fa-broom:before {
  content: "\f51a";
}

.fa-brush:before {
  content: "\f55d";
}

.fa-bug:before {
  content: "\f188";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-burger:before, .fa-hamburger:before {
  content: "\f805";
}

.fa-bus:before {
  content: "\f207";
}

.fa-bus-alt:before, .fa-bus-simple:before {
  content: "\f55e";
}

.fa-briefcase-clock:before, .fa-business-time:before {
  content: "\f64a";
}

.fa-c:before {
  content: "\43";
}

.fa-birthday-cake:before, .fa-cake-candles:before {
  content: "\f1fd";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-calendar:before {
  content: "\f133";
}

.fa-calendar-check:before {
  content: "\f274";
}

.fa-calendar-day:before {
  content: "\f783";
}

.fa-calendar-alt:before, .fa-calendar-days:before {
  content: "\f073";
}

.fa-calendar-minus:before {
  content: "\f272";
}

.fa-calendar-plus:before {
  content: "\f271";
}

.fa-calendar-week:before {
  content: "\f784";
}

.fa-calendar-times:before, .fa-calendar-xmark:before {
  content: "\f273";
}

.fa-camera-alt:before, .fa-camera:before {
  content: "\f030";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-camera-rotate:before {
  content: "\e0d8";
}

.fa-campground:before {
  content: "\f6bb";
}

.fa-candy-cane:before {
  content: "\f786";
}

.fa-cannabis:before {
  content: "\f55f";
}

.fa-capsules:before {
  content: "\f46b";
}

.fa-automobile:before, .fa-car:before {
  content: "\f1b9";
}

.fa-battery-car:before, .fa-car-battery:before {
  content: "\f5df";
}

.fa-car-crash:before {
  content: "\f5e1";
}

.fa-car-alt:before, .fa-car-rear:before {
  content: "\f5de";
}

.fa-car-side:before {
  content: "\f5e4";
}

.fa-caravan:before {
  content: "\f8ff";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-carrot:before {
  content: "\f787";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-cart-flatbed:before, .fa-dolly-flatbed:before {
  content: "\f474";
}

.fa-cart-flatbed-suitcase:before, .fa-luggage-cart:before {
  content: "\f59d";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cart-shopping:before, .fa-shopping-cart:before {
  content: "\f07a";
}

.fa-cash-register:before {
  content: "\f788";
}

.fa-cat:before {
  content: "\f6be";
}

.fa-cedi-sign:before {
  content: "\e0df";
}

.fa-cent-sign:before {
  content: "\e3f5";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-chair:before {
  content: "\f6c0";
}

.fa-blackboard:before, .fa-chalkboard:before {
  content: "\f51b";
}

.fa-chalkboard-teacher:before, .fa-chalkboard-user:before {
  content: "\f51c";
}

.fa-champagne-glasses:before, .fa-glass-cheers:before {
  content: "\f79f";
}

.fa-charging-station:before {
  content: "\f5e7";
}

.fa-area-chart:before, .fa-chart-area:before {
  content: "\f1fe";
}

.fa-bar-chart:before, .fa-chart-bar:before {
  content: "\f080";
}

.fa-chart-gantt:before {
  content: "\e0e4";
}

.fa-chart-line:before, .fa-line-chart:before {
  content: "\f201";
}

.fa-chart-pie:before, .fa-pie-chart:before {
  content: "\f200";
}

.fa-check:before {
  content: "\f00c";
}

.fa-check-double:before {
  content: "\f560";
}

.fa-check-to-slot:before, .fa-vote-yea:before {
  content: "\f772";
}

.fa-cheese:before {
  content: "\f7ef";
}

.fa-chess:before {
  content: "\f439";
}

.fa-chess-bishop:before {
  content: "\f43a";
}

.fa-chess-board:before {
  content: "\f43c";
}

.fa-chess-king:before {
  content: "\f43f";
}

.fa-chess-knight:before {
  content: "\f441";
}

.fa-chess-pawn:before {
  content: "\f443";
}

.fa-chess-queen:before {
  content: "\f445";
}

.fa-chess-rook:before {
  content: "\f447";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-church:before {
  content: "\f51d";
}

.fa-circle:before {
  content: "\f111";
}

.fa-arrow-circle-down:before, .fa-circle-arrow-down:before {
  content: "\f0ab";
}

.fa-arrow-circle-left:before, .fa-circle-arrow-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before, .fa-circle-arrow-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before, .fa-circle-arrow-up:before {
  content: "\f0aa";
}

.fa-check-circle:before, .fa-circle-check:before {
  content: "\f058";
}

.fa-chevron-circle-down:before, .fa-circle-chevron-down:before {
  content: "\f13a";
}

.fa-chevron-circle-left:before, .fa-circle-chevron-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before, .fa-circle-chevron-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before, .fa-circle-chevron-up:before {
  content: "\f139";
}

.fa-circle-dollar-to-slot:before, .fa-donate:before {
  content: "\f4b9";
}

.fa-circle-dot:before, .fa-dot-circle:before {
  content: "\f192";
}

.fa-arrow-alt-circle-down:before, .fa-circle-down:before {
  content: "\f358";
}

.fa-circle-exclamation:before, .fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-circle-h:before, .fa-hospital-symbol:before {
  content: "\f47e";
}

.fa-adjust:before, .fa-circle-half-stroke:before {
  content: "\f042";
}

.fa-circle-info:before, .fa-info-circle:before {
  content: "\f05a";
}

.fa-arrow-alt-circle-left:before, .fa-circle-left:before {
  content: "\f359";
}

.fa-circle-minus:before, .fa-minus-circle:before {
  content: "\f056";
}

.fa-circle-notch:before {
  content: "\f1ce";
}

.fa-circle-pause:before, .fa-pause-circle:before {
  content: "\f28b";
}

.fa-circle-play:before, .fa-play-circle:before {
  content: "\f144";
}

.fa-circle-plus:before, .fa-plus-circle:before {
  content: "\f055";
}

.fa-circle-question:before, .fa-question-circle:before {
  content: "\f059";
}

.fa-circle-radiation:before, .fa-radiation-alt:before {
  content: "\f7ba";
}

.fa-arrow-alt-circle-right:before, .fa-circle-right:before {
  content: "\f35a";
}

.fa-circle-stop:before, .fa-stop-circle:before {
  content: "\f28d";
}

.fa-arrow-alt-circle-up:before, .fa-circle-up:before {
  content: "\f35b";
}

.fa-circle-user:before, .fa-user-circle:before {
  content: "\f2bd";
}

.fa-circle-xmark:before, .fa-times-circle:before, .fa-xmark-circle:before {
  content: "\f057";
}

.fa-city:before {
  content: "\f64f";
}

.fa-clapperboard:before {
  content: "\e131";
}

.fa-clipboard:before {
  content: "\f328";
}

.fa-clipboard-check:before {
  content: "\f46c";
}

.fa-clipboard-list:before {
  content: "\f46d";
}

.fa-clock-four:before, .fa-clock:before {
  content: "\f017";
}

.fa-clock-rotate-left:before, .fa-history:before {
  content: "\f1da";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-closed-captioning:before {
  content: "\f20a";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-cloud-arrow-down:before, .fa-cloud-download-alt:before, .fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-arrow-up:before, .fa-cloud-upload-alt:before, .fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-cloud-meatball:before {
  content: "\f73b";
}

.fa-cloud-moon:before {
  content: "\f6c3";
}

.fa-cloud-moon-rain:before {
  content: "\f73c";
}

.fa-cloud-rain:before {
  content: "\f73d";
}

.fa-cloud-showers-heavy:before {
  content: "\f740";
}

.fa-cloud-sun:before {
  content: "\f6c4";
}

.fa-cloud-sun-rain:before {
  content: "\f743";
}

.fa-clover:before {
  content: "\e139";
}

.fa-code:before {
  content: "\f121";
}

.fa-code-branch:before {
  content: "\f126";
}

.fa-code-commit:before {
  content: "\f386";
}

.fa-code-compare:before {
  content: "\e13a";
}

.fa-code-fork:before {
  content: "\e13b";
}

.fa-code-merge:before {
  content: "\f387";
}

.fa-code-pull-request:before {
  content: "\e13c";
}

.fa-coins:before {
  content: "\f51e";
}

.fa-colon-sign:before {
  content: "\e140";
}

.fa-comment:before {
  content: "\f075";
}

.fa-comment-dollar:before {
  content: "\f651";
}

.fa-comment-dots:before, .fa-commenting:before {
  content: "\f4ad";
}

.fa-comment-medical:before {
  content: "\f7f5";
}

.fa-comment-slash:before {
  content: "\f4b3";
}

.fa-comment-sms:before, .fa-sms:before {
  content: "\f7cd";
}

.fa-comments:before {
  content: "\f086";
}

.fa-comments-dollar:before {
  content: "\f653";
}

.fa-compact-disc:before {
  content: "\f51f";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-compass-drafting:before, .fa-drafting-compass:before {
  content: "\f568";
}

.fa-compress:before {
  content: "\f066";
}

.fa-computer-mouse:before, .fa-mouse:before {
  content: "\f8cc";
}

.fa-cookie:before {
  content: "\f563";
}

.fa-cookie-bite:before {
  content: "\f564";
}

.fa-copy:before {
  content: "\f0c5";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-couch:before {
  content: "\f4b8";
}

.fa-credit-card-alt:before, .fa-credit-card:before {
  content: "\f09d";
}

.fa-crop:before {
  content: "\f125";
}

.fa-crop-alt:before, .fa-crop-simple:before {
  content: "\f565";
}

.fa-cross:before {
  content: "\f654";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-crow:before {
  content: "\f520";
}

.fa-crown:before {
  content: "\f521";
}

.fa-crutch:before {
  content: "\f7f7";
}

.fa-cruzeiro-sign:before {
  content: "\e152";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-d:before {
  content: "\44";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-backspace:before, .fa-delete-left:before {
  content: "\f55a";
}

.fa-democrat:before {
  content: "\f747";
}

.fa-desktop-alt:before, .fa-desktop:before {
  content: "\f390";
}

.fa-dharmachakra:before {
  content: "\f655";
}

.fa-diagram-project:before, .fa-project-diagram:before {
  content: "\f542";
}

.fa-diamond-turn-right:before, .fa-directions:before {
  content: "\f5eb";
}

.fa-dice:before {
  content: "\f522";
}

.fa-dice-d20:before {
  content: "\f6cf";
}

.fa-dice-d6:before {
  content: "\f6d1";
}

.fa-dice-five:before {
  content: "\f523";
}

.fa-dice-four:before {
  content: "\f524";
}

.fa-dice-one:before {
  content: "\f525";
}

.fa-dice-six:before {
  content: "\f526";
}

.fa-dice-three:before {
  content: "\f527";
}

.fa-dice-two:before {
  content: "\f528";
}

.fa-disease:before {
  content: "\f7fa";
}

.fa-divide:before {
  content: "\f529";
}

.fa-dna:before {
  content: "\f471";
}

.fa-dog:before {
  content: "\f6d3";
}

.fa-dollar-sign:before, .fa-dollar:before, .fa-usd:before {
  content: "\24";
}

.fa-dolly-box:before, .fa-dolly:before {
  content: "\f472";
}

.fa-dong-sign:before {
  content: "\e169";
}

.fa-door-closed:before {
  content: "\f52a";
}

.fa-door-open:before {
  content: "\f52b";
}

.fa-dove:before {
  content: "\f4ba";
}

.fa-compress-alt:before, .fa-down-left-and-up-right-to-center:before {
  content: "\f422";
}

.fa-down-long:before, .fa-long-arrow-alt-down:before {
  content: "\f309";
}

.fa-download:before {
  content: "\f019";
}

.fa-dragon:before {
  content: "\f6d5";
}

.fa-draw-polygon:before {
  content: "\f5ee";
}

.fa-droplet:before, .fa-tint:before {
  content: "\f043";
}

.fa-droplet-slash:before, .fa-tint-slash:before {
  content: "\f5c7";
}

.fa-drum:before {
  content: "\f569";
}

.fa-drum-steelpan:before {
  content: "\f56a";
}

.fa-drumstick-bite:before {
  content: "\f6d7";
}

.fa-dumbbell:before {
  content: "\f44b";
}

.fa-dumpster:before {
  content: "\f793";
}

.fa-dumpster-fire:before {
  content: "\f794";
}

.fa-dungeon:before {
  content: "\f6d9";
}

.fa-e:before {
  content: "\45";
}

.fa-deaf:before, .fa-deafness:before, .fa-ear-deaf:before, .fa-hard-of-hearing:before {
  content: "\f2a4";
}

.fa-assistive-listening-systems:before, .fa-ear-listen:before {
  content: "\f2a2";
}

.fa-earth-africa:before, .fa-globe-africa:before {
  content: "\f57c";
}

.fa-earth-americas:before, .fa-earth:before, .fa-globe-americas:before {
  content: "\f57d";
}

.fa-earth-asia:before, .fa-globe-asia:before {
  content: "\f57e";
}

.fa-earth-europa:before, .fa-globe-europe:before {
  content: "\f7a2";
}

.fa-egg:before {
  content: "\f7fb";
}

.fa-eject:before {
  content: "\f052";
}

.fa-elevator:before {
  content: "\e16d";
}

.fa-ellipsis-h:before, .fa-ellipsis:before {
  content: "\f141";
}

.fa-ellipsis-v:before, .fa-ellipsis-vertical:before {
  content: "\f142";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-text:before {
  content: "\f658";
}

.fa-envelopes-bulk:before, .fa-mail-bulk:before {
  content: "\f674";
}

.fa-equals:before {
  content: "\3d";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-ethernet:before {
  content: "\f796";
}

.fa-eur:before, .fa-euro-sign:before, .fa-euro:before {
  content: "\f153";
}

.fa-exclamation:before {
  content: "\21";
}

.fa-expand:before {
  content: "\f065";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-dropper-empty:before, .fa-eye-dropper:before, .fa-eyedropper:before {
  content: "\f1fb";
}

.fa-eye-low-vision:before, .fa-low-vision:before {
  content: "\f2a8";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-f:before {
  content: "\46";
}

.fa-angry:before, .fa-face-angry:before {
  content: "\f556";
}

.fa-dizzy:before, .fa-face-dizzy:before {
  content: "\f567";
}

.fa-face-flushed:before, .fa-flushed:before {
  content: "\f579";
}

.fa-face-frown:before, .fa-frown:before {
  content: "\f119";
}

.fa-face-frown-open:before, .fa-frown-open:before {
  content: "\f57a";
}

.fa-face-grimace:before, .fa-grimace:before {
  content: "\f57f";
}

.fa-face-grin:before, .fa-grin:before {
  content: "\f580";
}

.fa-face-grin-beam:before, .fa-grin-beam:before {
  content: "\f582";
}

.fa-face-grin-beam-sweat:before, .fa-grin-beam-sweat:before {
  content: "\f583";
}

.fa-face-grin-hearts:before, .fa-grin-hearts:before {
  content: "\f584";
}

.fa-face-grin-squint:before, .fa-grin-squint:before {
  content: "\f585";
}

.fa-face-grin-squint-tears:before, .fa-grin-squint-tears:before {
  content: "\f586";
}

.fa-face-grin-stars:before, .fa-grin-stars:before {
  content: "\f587";
}

.fa-face-grin-tears:before, .fa-grin-tears:before {
  content: "\f588";
}

.fa-face-grin-tongue:before, .fa-grin-tongue:before {
  content: "\f589";
}

.fa-face-grin-tongue-squint:before, .fa-grin-tongue-squint:before {
  content: "\f58a";
}

.fa-face-grin-tongue-wink:before, .fa-grin-tongue-wink:before {
  content: "\f58b";
}

.fa-face-grin-wide:before, .fa-grin-alt:before {
  content: "\f581";
}

.fa-face-grin-wink:before, .fa-grin-wink:before {
  content: "\f58c";
}

.fa-face-kiss:before, .fa-kiss:before {
  content: "\f596";
}

.fa-face-kiss-beam:before, .fa-kiss-beam:before {
  content: "\f597";
}

.fa-face-kiss-wink-heart:before, .fa-kiss-wink-heart:before {
  content: "\f598";
}

.fa-face-laugh:before, .fa-laugh:before {
  content: "\f599";
}

.fa-face-laugh-beam:before, .fa-laugh-beam:before {
  content: "\f59a";
}

.fa-face-laugh-squint:before, .fa-laugh-squint:before {
  content: "\f59b";
}

.fa-face-laugh-wink:before, .fa-laugh-wink:before {
  content: "\f59c";
}

.fa-face-meh:before, .fa-meh:before {
  content: "\f11a";
}

.fa-face-meh-blank:before, .fa-meh-blank:before {
  content: "\f5a4";
}

.fa-face-rolling-eyes:before, .fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

.fa-face-sad-cry:before, .fa-sad-cry:before {
  content: "\f5b3";
}

.fa-face-sad-tear:before, .fa-sad-tear:before {
  content: "\f5b4";
}

.fa-face-smile:before, .fa-smile:before {
  content: "\f118";
}

.fa-face-smile-beam:before, .fa-smile-beam:before {
  content: "\f5b8";
}

.fa-face-smile-wink:before, .fa-smile-wink:before {
  content: "\f4da";
}

.fa-face-surprise:before, .fa-surprise:before {
  content: "\f5c2";
}

.fa-face-tired:before, .fa-tired:before {
  content: "\f5c8";
}

.fa-fan:before {
  content: "\f863";
}

.fa-faucet:before {
  content: "\e005";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-feather:before {
  content: "\f52d";
}

.fa-feather-alt:before, .fa-feather-pointed:before {
  content: "\f56b";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-arrow-down:before, .fa-file-download:before {
  content: "\f56d";
}

.fa-file-arrow-up:before, .fa-file-upload:before {
  content: "\f574";
}

.fa-file-audio:before {
  content: "\f1c7";
}

.fa-file-code:before {
  content: "\f1c9";
}

.fa-file-contract:before {
  content: "\f56c";
}

.fa-file-csv:before {
  content: "\f6dd";
}

.fa-file-excel:before {
  content: "\f1c3";
}

.fa-arrow-right-from-file:before, .fa-file-export:before {
  content: "\f56e";
}

.fa-file-image:before {
  content: "\f1c5";
}

.fa-arrow-right-to-file:before, .fa-file-import:before {
  content: "\f56f";
}

.fa-file-invoice:before {
  content: "\f570";
}

.fa-file-invoice-dollar:before {
  content: "\f571";
}

.fa-file-alt:before, .fa-file-lines:before, .fa-file-text:before {
  content: "\f15c";
}

.fa-file-medical:before {
  content: "\f477";
}

.fa-file-pdf:before {
  content: "\f1c1";
}

.fa-file-powerpoint:before {
  content: "\f1c4";
}

.fa-file-prescription:before {
  content: "\f572";
}

.fa-file-signature:before {
  content: "\f573";
}

.fa-file-video:before {
  content: "\f1c8";
}

.fa-file-medical-alt:before, .fa-file-waveform:before {
  content: "\f478";
}

.fa-file-word:before {
  content: "\f1c2";
}

.fa-file-archive:before, .fa-file-zipper:before {
  content: "\f1c6";
}

.fa-fill:before {
  content: "\f575";
}

.fa-fill-drip:before {
  content: "\f576";
}

.fa-film:before {
  content: "\f008";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-filter-circle-dollar:before, .fa-funnel-dollar:before {
  content: "\f662";
}

.fa-filter-circle-xmark:before {
  content: "\e17b";
}

.fa-fingerprint:before {
  content: "\f577";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-fire-alt:before, .fa-fire-flame-curved:before {
  content: "\f7e4";
}

.fa-burn:before, .fa-fire-flame-simple:before {
  content: "\f46a";
}

.fa-fish:before {
  content: "\f578";
}

.fa-flag:before {
  content: "\f024";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-flag-usa:before {
  content: "\f74d";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-floppy-disk:before, .fa-save:before {
  content: "\f0c7";
}

.fa-florin-sign:before {
  content: "\e184";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-minus:before {
  content: "\f65d";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-folder-plus:before {
  content: "\f65e";
}

.fa-folder-tree:before {
  content: "\f802";
}

.fa-font:before {
  content: "\f031";
}

.fa-football-ball:before, .fa-football:before {
  content: "\f44e";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-fast-forward:before, .fa-forward-fast:before {
  content: "\f050";
}

.fa-forward-step:before, .fa-step-forward:before {
  content: "\f051";
}

.fa-franc-sign:before {
  content: "\e18f";
}

.fa-frog:before {
  content: "\f52e";
}

.fa-futbol-ball:before, .fa-futbol:before, .fa-soccer-ball:before {
  content: "\f1e3";
}

.fa-g:before {
  content: "\47";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-gas-pump:before {
  content: "\f52f";
}

.fa-gauge-simple-high:before, .fa-gauge-simple:before, .fa-tachometer:before {
  content: "\f62a";
}

.fa-gavel:before, .fa-legal:before {
  content: "\f0e3";
}

.fa-cog:before, .fa-gear:before {
  content: "\f013";
}

.fa-cogs:before, .fa-gears:before {
  content: "\f085";
}

.fa-gem:before {
  content: "\f3a5";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-ghost:before {
  content: "\f6e2";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-gifts:before {
  content: "\f79c";
}

.fa-glasses:before {
  content: "\f530";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-golf-ball-tee:before, .fa-golf-ball:before {
  content: "\f450";
}

.fa-gopuram:before {
  content: "\f664";
}

.fa-graduation-cap:before, .fa-mortar-board:before {
  content: "\f19d";
}

.fa-greater-than:before {
  content: "\3e";
}

.fa-greater-than-equal:before {
  content: "\f532";
}

.fa-grip-horizontal:before, .fa-grip:before {
  content: "\f58d";
}

.fa-grip-lines:before {
  content: "\f7a4";
}

.fa-grip-lines-vertical:before {
  content: "\f7a5";
}

.fa-grip-vertical:before {
  content: "\f58e";
}

.fa-guarani-sign:before {
  content: "\e19a";
}

.fa-guitar:before {
  content: "\f7a6";
}

.fa-gun:before {
  content: "\e19b";
}

.fa-h:before {
  content: "\48";
}

.fa-hammer:before {
  content: "\f6e3";
}

.fa-hamsa:before {
  content: "\f665";
}

.fa-hand-paper:before, .fa-hand:before {
  content: "\f256";
}

.fa-hand-back-fist:before, .fa-hand-rock:before {
  content: "\f255";
}

.fa-allergies:before, .fa-hand-dots:before {
  content: "\f461";
}

.fa-fist-raised:before, .fa-hand-fist:before {
  content: "\f6de";
}

.fa-hand-holding:before {
  content: "\f4bd";
}

.fa-hand-holding-dollar:before, .fa-hand-holding-usd:before {
  content: "\f4c0";
}

.fa-hand-holding-droplet:before, .fa-hand-holding-water:before {
  content: "\f4c1";
}

.fa-hand-holding-heart:before {
  content: "\f4be";
}

.fa-hand-holding-medical:before {
  content: "\e05c";
}

.fa-hand-lizard:before {
  content: "\f258";
}

.fa-hand-middle-finger:before {
  content: "\f806";
}

.fa-hand-peace:before {
  content: "\f25b";
}

.fa-hand-point-down:before {
  content: "\f0a7";
}

.fa-hand-point-left:before {
  content: "\f0a5";
}

.fa-hand-point-right:before {
  content: "\f0a4";
}

.fa-hand-point-up:before {
  content: "\f0a6";
}

.fa-hand-pointer:before {
  content: "\f25a";
}

.fa-hand-scissors:before {
  content: "\f257";
}

.fa-hand-sparkles:before {
  content: "\e05d";
}

.fa-hand-spock:before {
  content: "\f259";
}

.fa-hands:before, .fa-sign-language:before, .fa-signing:before {
  content: "\f2a7";
}

.fa-american-sign-language-interpreting:before, .fa-asl-interpreting:before, .fa-hands-american-sign-language-interpreting:before, .fa-hands-asl-interpreting:before {
  content: "\f2a3";
}

.fa-hands-bubbles:before, .fa-hands-wash:before {
  content: "\e05e";
}

.fa-hands-clapping:before {
  content: "\e1a8";
}

.fa-hands-holding:before {
  content: "\f4c2";
}

.fa-hands-praying:before, .fa-praying-hands:before {
  content: "\f684";
}

.fa-handshake:before {
  content: "\f2b5";
}

.fa-hands-helping:before, .fa-handshake-angle:before {
  content: "\f4c4";
}

.fa-handshake-alt-slash:before, .fa-handshake-simple-slash:before {
  content: "\e05f";
}

.fa-handshake-slash:before {
  content: "\e060";
}

.fa-hanukiah:before {
  content: "\f6e6";
}

.fa-hard-drive:before, .fa-hdd:before {
  content: "\f0a0";
}

.fa-hashtag:before {
  content: "\23";
}

.fa-hat-cowboy:before {
  content: "\f8c0";
}

.fa-hat-cowboy-side:before {
  content: "\f8c1";
}

.fa-hat-wizard:before {
  content: "\f6e8";
}

.fa-head-side-cough:before {
  content: "\e061";
}

.fa-head-side-cough-slash:before {
  content: "\e062";
}

.fa-head-side-mask:before {
  content: "\e063";
}

.fa-head-side-virus:before {
  content: "\e064";
}

.fa-header:before, .fa-heading:before {
  content: "\f1dc";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-headphones-alt:before, .fa-headphones-simple:before {
  content: "\f58f";
}

.fa-headset:before {
  content: "\f590";
}

.fa-heart:before {
  content: "\f004";
}

.fa-heart-broken:before, .fa-heart-crack:before {
  content: "\f7a9";
}

.fa-heart-pulse:before, .fa-heartbeat:before {
  content: "\f21e";
}

.fa-helicopter:before {
  content: "\f533";
}

.fa-hard-hat:before, .fa-hat-hard:before, .fa-helmet-safety:before {
  content: "\f807";
}

.fa-highlighter:before {
  content: "\f591";
}

.fa-hippo:before {
  content: "\f6ed";
}

.fa-hockey-puck:before {
  content: "\f453";
}

.fa-holly-berry:before {
  content: "\f7aa";
}

.fa-horse:before {
  content: "\f6f0";
}

.fa-horse-head:before {
  content: "\f7ab";
}

.fa-hospital:before {
  content: "\f0f8";
}

.fa-hospital-user:before {
  content: "\f80d";
}

.fa-hospital-alt:before, .fa-hospital-wide:before {
  content: "\f47d";
}

.fa-hot-tub-person:before, .fa-hot-tub:before {
  content: "\f593";
}

.fa-hotdog:before {
  content: "\f80f";
}

.fa-hotel:before {
  content: "\f594";
}

.fa-hourglass-2:before, .fa-hourglass-half:before, .fa-hourglass:before {
  content: "\f254";
}

.fa-hourglass-empty:before {
  content: "\f252";
}

.fa-hourglass-3:before, .fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass-1:before, .fa-hourglass-start:before {
  content: "\f251";
}

.fa-home:before, .fa-house:before {
  content: "\f015";
}

.fa-home-lg:before, .fa-house-chimney:before {
  content: "\e3af";
}

.fa-house-crack:before {
  content: "\e3b1";
}

.fa-house-laptop:before, .fa-laptop-house:before {
  content: "\e066";
}

.fa-house-medical:before {
  content: "\e3b2";
}

.fa-home-user:before, .fa-house-user:before {
  content: "\e1b0";
}

.fa-hryvnia-sign:before, .fa-hryvnia:before {
  content: "\f6f2";
}

.fa-i:before {
  content: "\49";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-ice-cream:before {
  content: "\f810";
}

.fa-icicles:before {
  content: "\f7ad";
}

.fa-heart-music-camera-bolt:before, .fa-icons:before {
  content: "\f86d";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-drivers-license:before, .fa-id-card:before {
  content: "\f2c2";
}

.fa-id-card-alt:before, .fa-id-card-clip:before {
  content: "\f47f";
}

.fa-igloo:before {
  content: "\f7ae";
}

.fa-image:before {
  content: "\f03e";
}

.fa-image-portrait:before, .fa-portrait:before {
  content: "\f3e0";
}

.fa-images:before {
  content: "\f302";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-indian-rupee-sign:before, .fa-indian-rupee:before, .fa-inr:before {
  content: "\e1bc";
}

.fa-industry:before {
  content: "\f275";
}

.fa-infinity:before {
  content: "\f534";
}

.fa-info:before {
  content: "\f129";
}

.fa-italic:before {
  content: "\f033";
}

.fa-j:before {
  content: "\4a";
}

.fa-jedi:before {
  content: "\f669";
}

.fa-fighter-jet:before, .fa-jet-fighter:before {
  content: "\f0fb";
}

.fa-joint:before {
  content: "\f595";
}

.fa-k:before {
  content: "\4b";
}

.fa-kaaba:before {
  content: "\f66b";
}

.fa-key:before {
  content: "\f084";
}

.fa-keyboard:before {
  content: "\f11c";
}

.fa-khanda:before {
  content: "\f66d";
}

.fa-kip-sign:before {
  content: "\e1c4";
}

.fa-first-aid:before, .fa-kit-medical:before {
  content: "\f479";
}

.fa-kiwi-bird:before {
  content: "\f535";
}

.fa-l:before {
  content: "\4c";
}

.fa-landmark:before {
  content: "\f66f";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-laptop-code:before {
  content: "\f5fc";
}

.fa-laptop-medical:before {
  content: "\f812";
}

.fa-lari-sign:before {
  content: "\e1c8";
}

.fa-layer-group:before {
  content: "\f5fd";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-left-long:before, .fa-long-arrow-alt-left:before {
  content: "\f30a";
}

.fa-arrows-alt-h:before, .fa-left-right:before {
  content: "\f337";
}

.fa-lemon:before {
  content: "\f094";
}

.fa-less-than:before {
  content: "\3c";
}

.fa-less-than-equal:before {
  content: "\f537";
}

.fa-life-ring:before {
  content: "\f1cd";
}

.fa-lightbulb:before {
  content: "\f0eb";
}

.fa-chain:before, .fa-link:before {
  content: "\f0c1";
}

.fa-chain-broken:before, .fa-chain-slash:before, .fa-link-slash:before, .fa-unlink:before {
  content: "\f127";
}

.fa-lira-sign:before {
  content: "\f195";
}

.fa-list-squares:before, .fa-list:before {
  content: "\f03a";
}

.fa-list-check:before, .fa-tasks:before {
  content: "\f0ae";
}

.fa-list-1-2:before, .fa-list-numeric:before, .fa-list-ol:before {
  content: "\f0cb";
}

.fa-list-dots:before, .fa-list-ul:before {
  content: "\f0ca";
}

.fa-litecoin-sign:before {
  content: "\e1d3";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-location-crosshairs:before, .fa-location:before {
  content: "\f601";
}

.fa-location-dot:before, .fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-location-pin:before, .fa-map-marker:before {
  content: "\f041";
}

.fa-lock:before {
  content: "\f023";
}

.fa-lock-open:before {
  content: "\f3c1";
}

.fa-lungs:before {
  content: "\f604";
}

.fa-lungs-virus:before {
  content: "\e067";
}

.fa-m:before {
  content: "\4d";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-magnifying-glass:before, .fa-search:before {
  content: "\f002";
}

.fa-magnifying-glass-dollar:before, .fa-search-dollar:before {
  content: "\f688";
}

.fa-magnifying-glass-location:before, .fa-search-location:before {
  content: "\f689";
}

.fa-magnifying-glass-minus:before, .fa-search-minus:before {
  content: "\f010";
}

.fa-magnifying-glass-plus:before, .fa-search-plus:before {
  content: "\f00e";
}

.fa-manat-sign:before {
  content: "\e1d5";
}

.fa-map:before {
  content: "\f279";
}

.fa-map-location:before, .fa-map-marked:before {
  content: "\f59f";
}

.fa-map-location-dot:before, .fa-map-marked-alt:before {
  content: "\f5a0";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-marker:before {
  content: "\f5a1";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mars-and-venus:before {
  content: "\f224";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-h:before, .fa-mars-stroke-right:before {
  content: "\f22b";
}

.fa-mars-stroke-up:before, .fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-glass-martini-alt:before, .fa-martini-glass:before {
  content: "\f57b";
}

.fa-cocktail:before, .fa-martini-glass-citrus:before {
  content: "\f561";
}

.fa-glass-martini:before, .fa-martini-glass-empty:before {
  content: "\f000";
}

.fa-mask:before {
  content: "\f6fa";
}

.fa-mask-face:before {
  content: "\e1d7";
}

.fa-masks-theater:before, .fa-theater-masks:before {
  content: "\f630";
}

.fa-expand-arrows-alt:before, .fa-maximize:before {
  content: "\f31e";
}

.fa-medal:before {
  content: "\f5a2";
}

.fa-memory:before {
  content: "\f538";
}

.fa-menorah:before {
  content: "\f676";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-comment-alt:before, .fa-message:before {
  content: "\f27a";
}

.fa-meteor:before {
  content: "\f753";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-alt:before, .fa-microphone-lines:before {
  content: "\f3c9";
}

.fa-microphone-alt-slash:before, .fa-microphone-lines-slash:before {
  content: "\f539";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-microscope:before {
  content: "\f610";
}

.fa-mill-sign:before {
  content: "\e1ed";
}

.fa-compress-arrows-alt:before, .fa-minimize:before {
  content: "\f78c";
}

.fa-minus:before, .fa-subtract:before {
  content: "\f068";
}

.fa-mitten:before {
  content: "\f7b5";
}

.fa-mobile-button:before {
  content: "\f10b";
}

.fa-mobile-alt:before, .fa-mobile-screen-button:before {
  content: "\f3cd";
}

.fa-money-bill:before {
  content: "\f0d6";
}

.fa-money-bill-1:before, .fa-money-bill-alt:before {
  content: "\f3d1";
}

.fa-money-bill-1-wave:before, .fa-money-bill-wave-alt:before {
  content: "\f53b";
}

.fa-money-bill-wave:before {
  content: "\f53a";
}

.fa-money-check:before {
  content: "\f53c";
}

.fa-money-check-alt:before, .fa-money-check-dollar:before {
  content: "\f53d";
}

.fa-monument:before {
  content: "\f5a6";
}

.fa-moon:before {
  content: "\f186";
}

.fa-mortar-pestle:before {
  content: "\f5a7";
}

.fa-mosque:before {
  content: "\f678";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-mountain:before {
  content: "\f6fc";
}

.fa-mug-hot:before {
  content: "\f7b6";
}

.fa-coffee:before, .fa-mug-saucer:before {
  content: "\f0f4";
}

.fa-music:before {
  content: "\f001";
}

.fa-n:before {
  content: "\4e";
}

.fa-naira-sign:before {
  content: "\e1f6";
}

.fa-network-wired:before {
  content: "\f6ff";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-newspaper:before {
  content: "\f1ea";
}

.fa-not-equal:before {
  content: "\f53e";
}

.fa-note-sticky:before, .fa-sticky-note:before {
  content: "\f249";
}

.fa-notes-medical:before {
  content: "\f481";
}

.fa-o:before {
  content: "\4f";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-oil-can:before {
  content: "\f613";
}

.fa-om:before {
  content: "\f679";
}

.fa-otter:before {
  content: "\f700";
}

.fa-dedent:before, .fa-outdent:before {
  content: "\f03b";
}

.fa-p:before {
  content: "\50";
}

.fa-pager:before {
  content: "\f815";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-paint-roller:before {
  content: "\f5aa";
}

.fa-palette:before {
  content: "\f53f";
}

.fa-pallet:before {
  content: "\f482";
}

.fa-panorama:before {
  content: "\e209";
}

.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-parachute-box:before {
  content: "\f4cd";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-passport:before {
  content: "\f5ab";
}

.fa-file-clipboard:before, .fa-paste:before {
  content: "\f0ea";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-peace:before {
  content: "\f67c";
}

.fa-pen:before {
  content: "\f304";
}

.fa-pen-alt:before, .fa-pen-clip:before {
  content: "\f305";
}

.fa-pen-fancy:before {
  content: "\f5ac";
}

.fa-pen-nib:before {
  content: "\f5ad";
}

.fa-pen-ruler:before, .fa-pencil-ruler:before {
  content: "\f5ae";
}

.fa-edit:before, .fa-pen-to-square:before {
  content: "\f044";
}

.fa-pencil-alt:before, .fa-pencil:before {
  content: "\f303";
}

.fa-people-arrows-left-right:before, .fa-people-arrows:before {
  content: "\e068";
}

.fa-people-carry-box:before, .fa-people-carry:before {
  content: "\f4ce";
}

.fa-pepper-hot:before {
  content: "\f816";
}

.fa-percent:before, .fa-percentage:before {
  content: "\25";
}

.fa-male:before, .fa-person:before {
  content: "\f183";
}

.fa-biking:before, .fa-person-biking:before {
  content: "\f84a";
}

.fa-person-booth:before {
  content: "\f756";
}

.fa-diagnoses:before, .fa-person-dots-from-line:before {
  content: "\f470";
}

.fa-female:before, .fa-person-dress:before {
  content: "\f182";
}

.fa-hiking:before, .fa-person-hiking:before {
  content: "\f6ec";
}

.fa-person-praying:before, .fa-pray:before {
  content: "\f683";
}

.fa-person-running:before, .fa-running:before {
  content: "\f70c";
}

.fa-person-skating:before, .fa-skating:before {
  content: "\f7c5";
}

.fa-person-skiing:before, .fa-skiing:before {
  content: "\f7c9";
}

.fa-person-skiing-nordic:before, .fa-skiing-nordic:before {
  content: "\f7ca";
}

.fa-person-snowboarding:before, .fa-snowboarding:before {
  content: "\f7ce";
}

.fa-person-swimming:before, .fa-swimmer:before {
  content: "\f5c4";
}

.fa-person-walking:before, .fa-walking:before {
  content: "\f554";
}

.fa-blind:before, .fa-person-walking-with-cane:before {
  content: "\f29d";
}

.fa-peseta-sign:before {
  content: "\e221";
}

.fa-peso-sign:before {
  content: "\e222";
}

.fa-phone:before {
  content: "\f095";
}

.fa-phone-alt:before, .fa-phone-flip:before {
  content: "\f879";
}

.fa-phone-slash:before {
  content: "\f3dd";
}

.fa-phone-volume:before, .fa-volume-control-phone:before {
  content: "\f2a0";
}

.fa-photo-film:before, .fa-photo-video:before {
  content: "\f87c";
}

.fa-piggy-bank:before {
  content: "\f4d3";
}

.fa-pills:before {
  content: "\f484";
}

.fa-pizza-slice:before {
  content: "\f818";
}

.fa-place-of-worship:before {
  content: "\f67f";
}

.fa-plane:before {
  content: "\f072";
}

.fa-plane-arrival:before {
  content: "\f5af";
}

.fa-plane-departure:before {
  content: "\f5b0";
}

.fa-plane-slash:before {
  content: "\e069";
}

.fa-play:before {
  content: "\f04b";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-add:before, .fa-plus:before {
  content: "\2b";
}

.fa-plus-minus:before {
  content: "\e43c";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-poo:before {
  content: "\f2fe";
}

.fa-poo-bolt:before, .fa-poo-storm:before {
  content: "\f75a";
}

.fa-poop:before {
  content: "\f619";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-prescription:before {
  content: "\f5b1";
}

.fa-prescription-bottle:before {
  content: "\f485";
}

.fa-prescription-bottle-alt:before, .fa-prescription-bottle-medical:before {
  content: "\f486";
}

.fa-print:before {
  content: "\f02f";
}

.fa-pump-medical:before {
  content: "\e06a";
}

.fa-pump-soap:before {
  content: "\e06b";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-q:before {
  content: "\51";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-question:before {
  content: "\3f";
}

.fa-broom-ball:before, .fa-quidditch-broom-ball:before, .fa-quidditch:before {
  content: "\f458";
}

.fa-quote-left-alt:before, .fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right-alt:before, .fa-quote-right:before {
  content: "\f10e";
}

.fa-r:before {
  content: "\52";
}

.fa-radiation:before {
  content: "\f7b9";
}

.fa-rainbow:before {
  content: "\f75b";
}

.fa-receipt:before {
  content: "\f543";
}

.fa-record-vinyl:before {
  content: "\f8d9";
}

.fa-ad:before, .fa-rectangle-ad:before {
  content: "\f641";
}

.fa-list-alt:before, .fa-rectangle-list:before {
  content: "\f022";
}

.fa-rectangle-times:before, .fa-rectangle-xmark:before, .fa-times-rectangle:before, .fa-window-close:before {
  content: "\f410";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-repeat:before {
  content: "\f363";
}

.fa-mail-reply:before, .fa-reply:before {
  content: "\f3e5";
}

.fa-mail-reply-all:before, .fa-reply-all:before {
  content: "\f122";
}

.fa-republican:before {
  content: "\f75e";
}

.fa-restroom:before {
  content: "\f7bd";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-ribbon:before {
  content: "\f4d6";
}

.fa-right-from-bracket:before, .fa-sign-out-alt:before {
  content: "\f2f5";
}

.fa-exchange-alt:before, .fa-right-left:before {
  content: "\f362";
}

.fa-long-arrow-alt-right:before, .fa-right-long:before {
  content: "\f30b";
}

.fa-right-to-bracket:before, .fa-sign-in-alt:before {
  content: "\f2f6";
}

.fa-ring:before {
  content: "\f70b";
}

.fa-road:before {
  content: "\f018";
}

.fa-robot:before {
  content: "\f544";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-rotate:before, .fa-sync-alt:before {
  content: "\f2f1";
}

.fa-rotate-back:before, .fa-rotate-backward:before, .fa-rotate-left:before, .fa-undo-alt:before {
  content: "\f2ea";
}

.fa-route:before {
  content: "\f4d7";
}

.fa-feed:before, .fa-rss:before {
  content: "\f09e";
}

.fa-rouble:before, .fa-rub:before, .fa-ruble-sign:before, .fa-ruble:before {
  content: "\f158";
}

.fa-ruler:before {
  content: "\f545";
}

.fa-ruler-combined:before {
  content: "\f546";
}

.fa-ruler-horizontal:before {
  content: "\f547";
}

.fa-ruler-vertical:before {
  content: "\f548";
}

.fa-rupee-sign:before, .fa-rupee:before {
  content: "\f156";
}

.fa-rupiah-sign:before {
  content: "\e23d";
}

.fa-s:before {
  content: "\53";
}

.fa-sailboat:before {
  content: "\e445";
}

.fa-satellite:before {
  content: "\f7bf";
}

.fa-satellite-dish:before {
  content: "\f7c0";
}

.fa-balance-scale:before, .fa-scale-balanced:before {
  content: "\f24e";
}

.fa-balance-scale-left:before, .fa-scale-unbalanced:before {
  content: "\f515";
}

.fa-balance-scale-right:before, .fa-scale-unbalanced-flip:before {
  content: "\f516";
}

.fa-school:before {
  content: "\f549";
}

.fa-cut:before, .fa-scissors:before {
  content: "\f0c4";
}

.fa-screwdriver:before {
  content: "\f54a";
}

.fa-screwdriver-wrench:before, .fa-tools:before {
  content: "\f7d9";
}

.fa-scroll:before {
  content: "\f70e";
}

.fa-scroll-torah:before, .fa-torah:before {
  content: "\f6a0";
}

.fa-sd-card:before {
  content: "\f7c2";
}

.fa-section:before {
  content: "\e447";
}

.fa-seedling:before, .fa-sprout:before {
  content: "\f4d8";
}

.fa-server:before {
  content: "\f233";
}

.fa-shapes:before, .fa-triangle-circle-square:before {
  content: "\f61f";
}

.fa-arrow-turn-right:before, .fa-mail-forward:before, .fa-share:before {
  content: "\f064";
}

.fa-share-from-square:before, .fa-share-square:before {
  content: "\f14d";
}

.fa-share-alt:before, .fa-share-nodes:before {
  content: "\f1e0";
}

.fa-ils:before, .fa-shekel-sign:before, .fa-shekel:before, .fa-sheqel-sign:before, .fa-sheqel:before {
  content: "\f20b";
}

.fa-shield-alt:before, .fa-shield-blank:before {
  content: "\f3ed";
}

.fa-shield-virus:before {
  content: "\e06c";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-shirt:before, .fa-t-shirt:before, .fa-tshirt:before {
  content: "\f553";
}

.fa-shoe-prints:before {
  content: "\f54b";
}

.fa-shop:before, .fa-store-alt:before {
  content: "\f54f";
}

.fa-shop-slash:before, .fa-store-alt-slash:before {
  content: "\e070";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-random:before, .fa-shuffle:before {
  content: "\f074";
}

.fa-shuttle-space:before, .fa-space-shuttle:before {
  content: "\f197";
}

.fa-sign-hanging:before, .fa-sign:before {
  content: "\f4d9";
}

.fa-signal-5:before, .fa-signal-perfect:before, .fa-signal:before {
  content: "\f012";
}

.fa-signature:before {
  content: "\f5b7";
}

.fa-map-signs:before, .fa-signs-post:before {
  content: "\f277";
}

.fa-sim-card:before {
  content: "\f7c4";
}

.fa-sink:before {
  content: "\e06d";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-skull:before {
  content: "\f54c";
}

.fa-skull-crossbones:before {
  content: "\f714";
}

.fa-slash:before {
  content: "\f715";
}

.fa-sleigh:before {
  content: "\f7cc";
}

.fa-sliders-h:before, .fa-sliders:before {
  content: "\f1de";
}

.fa-smog:before {
  content: "\f75f";
}

.fa-smoking:before {
  content: "\f48d";
}

.fa-snowflake:before {
  content: "\f2dc";
}

.fa-snowman:before {
  content: "\f7d0";
}

.fa-snowplow:before {
  content: "\f7d2";
}

.fa-soap:before {
  content: "\e06e";
}

.fa-socks:before {
  content: "\f696";
}

.fa-solar-panel:before {
  content: "\f5ba";
}

.fa-sort:before, .fa-unsorted:before {
  content: "\f0dc";
}

.fa-sort-desc:before, .fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-asc:before, .fa-sort-up:before {
  content: "\f0de";
}

.fa-spa:before {
  content: "\f5bb";
}

.fa-pastafarianism:before, .fa-spaghetti-monster-flying:before {
  content: "\f67b";
}

.fa-spell-check:before {
  content: "\f891";
}

.fa-spider:before {
  content: "\f717";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-splotch:before {
  content: "\f5bc";
}

.fa-spoon:before, .fa-utensil-spoon:before {
  content: "\f2e5";
}

.fa-spray-can:before {
  content: "\f5bd";
}

.fa-air-freshener:before, .fa-spray-can-sparkles:before {
  content: "\f5d0";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-caret-square-down:before, .fa-square-caret-down:before {
  content: "\f150";
}

.fa-caret-square-left:before, .fa-square-caret-left:before {
  content: "\f191";
}

.fa-caret-square-right:before, .fa-square-caret-right:before {
  content: "\f152";
}

.fa-caret-square-up:before, .fa-square-caret-up:before {
  content: "\f151";
}

.fa-check-square:before, .fa-square-check:before {
  content: "\f14a";
}

.fa-envelope-square:before, .fa-square-envelope:before {
  content: "\f199";
}

.fa-square-full:before {
  content: "\f45c";
}

.fa-h-square:before, .fa-square-h:before {
  content: "\f0fd";
}

.fa-minus-square:before, .fa-square-minus:before {
  content: "\f146";
}

.fa-parking:before, .fa-square-parking:before {
  content: "\f540";
}

.fa-pen-square:before, .fa-pencil-square:before, .fa-square-pen:before {
  content: "\f14b";
}

.fa-phone-square:before, .fa-square-phone:before {
  content: "\f098";
}

.fa-phone-square-alt:before, .fa-square-phone-flip:before {
  content: "\f87b";
}

.fa-plus-square:before, .fa-square-plus:before {
  content: "\f0fe";
}

.fa-poll-h:before, .fa-square-poll-horizontal:before {
  content: "\f682";
}

.fa-poll:before, .fa-square-poll-vertical:before {
  content: "\f681";
}

.fa-square-root-alt:before, .fa-square-root-variable:before {
  content: "\f698";
}

.fa-rss-square:before, .fa-square-rss:before {
  content: "\f143";
}

.fa-share-alt-square:before, .fa-square-share-nodes:before {
  content: "\f1e1";
}

.fa-external-link-square-alt:before, .fa-square-up-right:before {
  content: "\f360";
}

.fa-stairs:before {
  content: "\e289";
}

.fa-stamp:before {
  content: "\f5bf";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-and-crescent:before {
  content: "\f699";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-star-half-alt:before, .fa-star-half-stroke:before {
  content: "\f5c0";
}

.fa-star-of-david:before {
  content: "\f69a";
}

.fa-star-of-life:before {
  content: "\f621";
}

.fa-gbp:before, .fa-pound-sign:before, .fa-sterling-sign:before {
  content: "\f154";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-stopwatch:before {
  content: "\f2f2";
}

.fa-stopwatch-20:before {
  content: "\e06f";
}

.fa-store:before {
  content: "\f54e";
}

.fa-store-slash:before {
  content: "\e071";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-stroopwafel:before {
  content: "\f551";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-medkit:before, .fa-suitcase-medical:before {
  content: "\f0fa";
}

.fa-suitcase-rolling:before {
  content: "\f5c1";
}

.fa-sun:before {
  content: "\f185";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-swatchbook:before {
  content: "\f5c3";
}

.fa-synagogue:before {
  content: "\f69b";
}

.fa-syringe:before {
  content: "\f48e";
}

.fa-t:before {
  content: "\54";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-table-cells:before, .fa-th:before {
  content: "\f00a";
}

.fa-table-cells-large:before, .fa-th-large:before {
  content: "\f009";
}

.fa-columns:before, .fa-table-columns:before {
  content: "\f0db";
}

.fa-table-list:before, .fa-th-list:before {
  content: "\f00b";
}

.fa-ping-pong-paddle-ball:before, .fa-table-tennis-paddle-ball:before, .fa-table-tennis:before {
  content: "\f45d";
}

.fa-tablet-button:before {
  content: "\f10a";
}

.fa-tablet-alt:before, .fa-tablet-screen-button:before {
  content: "\f3fa";
}

.fa-tablets:before {
  content: "\f490";
}

.fa-digital-tachograph:before, .fa-tachograph-digital:before {
  content: "\f566";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-tape:before {
  content: "\f4db";
}

.fa-cab:before, .fa-taxi:before {
  content: "\f1ba";
}

.fa-teeth:before {
  content: "\f62e";
}

.fa-teeth-open:before {
  content: "\f62f";
}

.fa-temperature-0:before, .fa-temperature-empty:before, .fa-thermometer-0:before, .fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-temperature-4:before, .fa-temperature-full:before, .fa-thermometer-4:before, .fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-temperature-2:before, .fa-temperature-half:before, .fa-thermometer-2:before, .fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-temperature-high:before {
  content: "\f769";
}

.fa-temperature-low:before {
  content: "\f76b";
}

.fa-temperature-1:before, .fa-temperature-quarter:before, .fa-thermometer-1:before, .fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-temperature-3:before, .fa-temperature-three-quarters:before, .fa-thermometer-3:before, .fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-tenge-sign:before, .fa-tenge:before {
  content: "\f7d7";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-remove-format:before, .fa-text-slash:before {
  content: "\f87d";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-thermometer:before {
  content: "\f491";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumb-tack:before, .fa-thumbtack:before {
  content: "\f08d";
}

.fa-ticket-alt:before, .fa-ticket-simple:before {
  content: "\f3ff";
}

.fa-timeline:before {
  content: "\e29c";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-toilet:before {
  content: "\f7d8";
}

.fa-toilet-paper:before {
  content: "\f71e";
}

.fa-toilet-paper-slash:before {
  content: "\e072";
}

.fa-toolbox:before {
  content: "\f552";
}

.fa-tooth:before {
  content: "\f5c9";
}

.fa-torii-gate:before {
  content: "\f6a1";
}

.fa-broadcast-tower:before, .fa-tower-broadcast:before {
  content: "\f519";
}

.fa-tractor:before {
  content: "\f722";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-traffic-light:before {
  content: "\f637";
}

.fa-trailer:before {
  content: "\e041";
}

.fa-train:before {
  content: "\f238";
}

.fa-subway:before, .fa-train-subway:before {
  content: "\f239";
}

.fa-train-tram:before, .fa-tram:before {
  content: "\f7da";
}

.fa-transgender-alt:before, .fa-transgender:before {
  content: "\f225";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-arrow-up:before, .fa-trash-restore:before {
  content: "\f829";
}

.fa-trash-alt:before, .fa-trash-can:before {
  content: "\f2ed";
}

.fa-trash-can-arrow-up:before, .fa-trash-restore-alt:before {
  content: "\f82a";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-exclamation-triangle:before, .fa-triangle-exclamation:before, .fa-warning:before {
  content: "\f071";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-shipping-fast:before, .fa-truck-fast:before {
  content: "\f48b";
}

.fa-ambulance:before, .fa-truck-medical:before {
  content: "\f0f9";
}

.fa-truck-monster:before {
  content: "\f63b";
}

.fa-truck-moving:before {
  content: "\f4df";
}

.fa-truck-pickup:before {
  content: "\f63c";
}

.fa-truck-loading:before, .fa-truck-ramp-box:before {
  content: "\f4de";
}

.fa-teletype:before, .fa-tty:before {
  content: "\f1e4";
}

.fa-try:before, .fa-turkish-lira-sign:before, .fa-turkish-lira:before {
  content: "\e2bb";
}

.fa-level-down-alt:before, .fa-turn-down:before {
  content: "\f3be";
}

.fa-level-up-alt:before, .fa-turn-up:before {
  content: "\f3bf";
}

.fa-television:before, .fa-tv-alt:before, .fa-tv:before {
  content: "\f26c";
}

.fa-u:before {
  content: "\55";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-umbrella-beach:before {
  content: "\f5ca";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-unlock-alt:before, .fa-unlock-keyhole:before {
  content: "\f13e";
}

.fa-arrows-alt-v:before, .fa-up-down:before {
  content: "\f338";
}

.fa-arrows-alt:before, .fa-up-down-left-right:before {
  content: "\f0b2";
}

.fa-long-arrow-alt-up:before, .fa-up-long:before {
  content: "\f30c";
}

.fa-expand-alt:before, .fa-up-right-and-down-left-from-center:before {
  content: "\f424";
}

.fa-external-link-alt:before, .fa-up-right-from-square:before {
  content: "\f35d";
}

.fa-upload:before {
  content: "\f093";
}

.fa-user:before {
  content: "\f007";
}

.fa-user-astronaut:before {
  content: "\f4fb";
}

.fa-user-check:before {
  content: "\f4fc";
}

.fa-user-clock:before {
  content: "\f4fd";
}

.fa-user-doctor:before, .fa-user-md:before {
  content: "\f0f0";
}

.fa-user-cog:before, .fa-user-gear:before {
  content: "\f4fe";
}

.fa-user-graduate:before {
  content: "\f501";
}

.fa-user-friends:before, .fa-user-group:before {
  content: "\f500";
}

.fa-user-injured:before {
  content: "\f728";
}

.fa-user-alt:before, .fa-user-large:before {
  content: "\f406";
}

.fa-user-alt-slash:before, .fa-user-large-slash:before {
  content: "\f4fa";
}

.fa-user-lock:before {
  content: "\f502";
}

.fa-user-minus:before {
  content: "\f503";
}

.fa-user-ninja:before {
  content: "\f504";
}

.fa-user-nurse:before {
  content: "\f82f";
}

.fa-user-edit:before, .fa-user-pen:before {
  content: "\f4ff";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-shield:before {
  content: "\f505";
}

.fa-user-slash:before {
  content: "\f506";
}

.fa-user-tag:before {
  content: "\f507";
}

.fa-user-tie:before {
  content: "\f508";
}

.fa-user-times:before, .fa-user-xmark:before {
  content: "\f235";
}

.fa-group:before, .fa-users:before {
  content: "\f0c0";
}

.fa-users-cog:before, .fa-users-gear:before {
  content: "\f509";
}

.fa-users-slash:before {
  content: "\e073";
}

.fa-cutlery:before, .fa-utensils:before {
  content: "\f2e7";
}

.fa-v:before {
  content: "\56";
}

.fa-shuttle-van:before, .fa-van-shuttle:before {
  content: "\f5b6";
}

.fa-vault:before {
  content: "\e2c5";
}

.fa-vector-square:before {
  content: "\f5cb";
}

.fa-venus:before {
  content: "\f221";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-vest:before {
  content: "\e085";
}

.fa-vest-patches:before {
  content: "\e086";
}

.fa-vial:before {
  content: "\f492";
}

.fa-vials:before {
  content: "\f493";
}

.fa-video-camera:before, .fa-video:before {
  content: "\f03d";
}

.fa-video-slash:before {
  content: "\f4e2";
}

.fa-vihara:before {
  content: "\f6a7";
}

.fa-virus:before {
  content: "\e074";
}

.fa-virus-slash:before {
  content: "\e075";
}

.fa-viruses:before {
  content: "\e076";
}

.fa-voicemail:before {
  content: "\f897";
}

.fa-volleyball-ball:before, .fa-volleyball:before {
  content: "\f45f";
}

.fa-volume-high:before, .fa-volume-up:before {
  content: "\f028";
}

.fa-volume-down:before, .fa-volume-low:before {
  content: "\f027";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-mute:before, .fa-volume-times:before, .fa-volume-xmark:before {
  content: "\f6a9";
}

.fa-vr-cardboard:before {
  content: "\f729";
}

.fa-w:before {
  content: "\57";
}

.fa-wallet:before {
  content: "\f555";
}

.fa-magic:before, .fa-wand-magic:before {
  content: "\f0d0";
}

.fa-warehouse:before {
  content: "\f494";
}

.fa-water:before {
  content: "\f773";
}

.fa-ladder-water:before, .fa-swimming-pool:before, .fa-water-ladder:before {
  content: "\f5c5";
}

.fa-wave-square:before {
  content: "\f83e";
}

.fa-weight-hanging:before {
  content: "\f5cd";
}

.fa-weight-scale:before, .fa-weight:before {
  content: "\f496";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-glass-whiskey:before, .fa-whiskey-glass:before {
  content: "\f7a0";
}

.fa-wifi-3:before, .fa-wifi-strong:before, .fa-wifi:before {
  content: "\f1eb";
}

.fa-wind:before {
  content: "\f72e";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-wine-bottle:before {
  content: "\f72f";
}

.fa-wine-glass:before {
  content: "\f4e3";
}

.fa-wine-glass-alt:before, .fa-wine-glass-empty:before {
  content: "\f5ce";
}

.fa-krw:before, .fa-won-sign:before, .fa-won:before {
  content: "\f159";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-x:before {
  content: "\58";
}

.fa-x-ray:before {
  content: "\f497";
}

.fa-close:before, .fa-multiply:before, .fa-remove:before, .fa-times:before, .fa-xmark:before {
  content: "\f00d";
}

.fa-y:before {
  content: "\59";
}

.fa-cny:before, .fa-jpy:before, .fa-rmb:before, .fa-yen-sign:before, .fa-yen:before {
  content: "\f157";
}

.fa-yin-yang:before {
  content: "\f6ad";
}

.fa-z:before {
  content: "\5a";
}

.fa-sr-only, .fa-sr-only-focusable:not(:focus), .sr-only, .sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(webfonts/fa-brands-400.woff2) format("woff2"), url(webfonts/fa-brands-400.ttf) format("truetype");
}

.fa-brands, .fab {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa-42-group:before, .fa-innosoft:before {
  content: "\e080";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-acquisitions-incorporated:before {
  content: "\f6af";
}

.fa-adn:before {
  content: "\f170";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-airbnb:before {
  content: "\f834";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-alipay:before {
  content: "\f642";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-android:before {
  content: "\f17b";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-angular:before {
  content: "\f420";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-apper:before {
  content: "\f371";
}

.fa-apple:before {
  content: "\f179";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-artstation:before {
  content: "\f77a";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-atlassian:before {
  content: "\f77b";
}

.fa-audible:before {
  content: "\f373";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-aws:before {
  content: "\f375";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-battle-net:before {
  content: "\f835";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-bilibili:before {
  content: "\e3d9";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-bootstrap:before {
  content: "\f836";
}

.fa-bots:before {
  content: "\e340";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-buffer:before {
  content: "\f837";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-buy-n-large:before {
  content: "\f8a6";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-canadian-maple-leaf:before {
  content: "\f785";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-centos:before {
  content: "\f789";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-chromecast:before {
  content: "\f838";
}

.fa-cloudflare:before {
  content: "\e07d";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-cmplid:before {
  content: "\e360";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-confluence:before {
  content: "\f78d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-cotton-bureau:before {
  content: "\f89e";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-creative-commons-zero:before {
  content: "\f4f3";
}

.fa-critical-role:before {
  content: "\f6c9";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

.fa-dailymotion:before {
  content: "\e052";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-deezer:before {
  content: "\e077";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-dev:before {
  content: "\f6cc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-dhl:before {
  content: "\f790";
}

.fa-diaspora:before {
  content: "\f791";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-discord:before {
  content: "\f392";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-docker:before {
  content: "\f395";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-edge:before {
  content: "\f282";
}

.fa-edge-legacy:before {
  content: "\e078";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-ello:before {
  content: "\f5f1";
}

.fa-ember:before {
  content: "\f423";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-envira:before {
  content: "\f299";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-evernote:before {
  content: "\f839";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

.fa-fedex:before {
  content: "\f797";
}

.fa-fedora:before {
  content: "\f798";
}

.fa-figma:before {
  content: "\f799";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-firefox-browser:before {
  content: "\e007";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-fly:before {
  content: "\f417";
}

.fa-font-awesome-flag:before, .fa-font-awesome-logo-full:before, .fa-font-awesome:before {
  content: "\f2b4";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-git-alt:before {
  content: "\f841";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-github:before {
  content: "\f09b";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-golang:before {
  content: "\e40f";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-google-pay:before {
  content: "\e079";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-guilded:before {
  content: "\e07e";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-hips:before {
  content: "\f452";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-hive:before {
  content: "\e07f";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-ideal:before {
  content: "\e013";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-instagram-square:before {
  content: "\e055";
}

.fa-instalod:before {
  content: "\e081";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-itch-io:before {
  content: "\f83a";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-less:before {
  content: "\f41d";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-mdb:before {
  content: "\f8ca";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-medium-m:before, .fa-medium:before {
  content: "\f23a";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-microblog:before {
  content: "\e01a";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-mixer:before {
  content: "\e056";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-modx:before {
  content: "\f285";
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-neos:before {
  content: "\f612";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-node:before {
  content: "\f419";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-octopus-deploy:before {
  content: "\e082";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-orcid:before {
  content: "\f8d2";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-penny-arcade:before {
  content: "\f704";
}

.fa-perbyte:before {
  content: "\e083";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

.fa-php:before {
  content: "\f457";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-square:before {
  content: "\e01e";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-pix:before {
  content: "\e43a";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-react:before {
  content: "\f41b";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-rust:before {
  content: "\e07a";
}

.fa-safari:before {
  content: "\f267";
}

.fa-salesforce:before {
  content: "\f83b";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-shopify:before {
  content: "\e057";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-sith:before {
  content: "\f512";
}

.fa-sitrox:before {
  content: "\e44a";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-slack-hash:before, .fa-slack:before {
  content: "\f198";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-snapchat-ghost:before, .fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-speaker-deck:before {
  content: "\f83c";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-square-font-awesome:before {
  content: "\f425";
}

.fa-font-awesome-alt:before, .fa-square-font-awesome-stroke:before {
  content: "\f35c";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-stackpath:before {
  content: "\f842";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-strava:before {
  content: "\f428";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-swift:before {
  content: "\f8e1";
}

.fa-symfony:before {
  content: "\f83d";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-telegram-plane:before, .fa-telegram:before {
  content: "\f2c6";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-tiktok:before {
  content: "\e07b";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-trello:before {
  content: "\f181";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-uber:before {
  content: "\f402";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-umbraco:before {
  content: "\f8e8";
}

.fa-uncharted:before {
  content: "\e084";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-unity:before {
  content: "\e049";
}

.fa-unsplash:before {
  content: "\e07c";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-ups:before {
  content: "\f7e0";
}

.fa-usb:before {
  content: "\f287";
}

.fa-usps:before {
  content: "\f7e1";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-viber:before {
  content: "\f409";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-vk:before {
  content: "\f189";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-watchman-monitoring:before {
  content: "\e087";
}

.fa-waze:before {
  content: "\f83f";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-wirsindhandwerk:before, .fa-wsh:before {
  content: "\e2d0";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-wodu:before {
  content: "\e088";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-yammer:before {
  content: "\f840";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-zhihu:before {
  content: "\f63f";
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(webfonts/fa-regular-400.woff2) format("woff2"), url(webfonts/fa-regular-400.ttf) format("truetype");
}

.fa-regular, .far {
  font-weight: 400;
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(webfonts/fa-solid-900.woff2) format("woff2"), url(webfonts/fa-solid-900.ttf) format("truetype");
}

.fa-regular, .fa-solid, .far, .fas {
  font-family: "Font Awesome 6 Free";
}

.fa-solid, .fas {
  font-weight: 900;
}

.fa-linkedin-square:before {
  content: "\F08C";
}

@font-face {
  font-family: 'lunchtype24expanded_medium';
  src: url("fonts/lunchtype24-medium-expanded_1-webfont.woff2") format("woff2"), url("fonts/lunchtype24-medium-expanded_1-webfont.woff") format("woff"), url("fonts/lunchtype24-medium-expanded_1-webfont.ttf") format("truetype"), url("fonts/lunchtype24-medium-expanded_1-webfont.svg#lunchtype24expanded_medium") format("svg");
  font-weight: normal;
  font-style: normal;
}

.gs-sin-mem-desig,
.gs_team p, .gs_team li,
.edit-post-visual-editor__content-area p, .entry-content p,
.edit-post-visual-editor__content-area li, .entry-content li,
.edit-post-visual-editor__content-area dl, .entry-content dl,
.edit-post-visual-editor__content-area dd, .entry-content dd {
  font-family: "arimo", sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  font-weight: 300;
}

@media screen and (min-width: 768px) {
  .gs-sin-mem-desig,
  .gs_team p, .gs_team li,
  .edit-post-visual-editor__content-area p, .entry-content p,
  .edit-post-visual-editor__content-area li, .entry-content li,
  .edit-post-visual-editor__content-area dl, .entry-content dl,
  .edit-post-visual-editor__content-area dd, .entry-content dd {
    font-size: 22px;
    line-height: 33px;
  }
}

.gs-sin-mem-desig,
.gs_team b {
  font-weight: bold;
}

.gstm-details span {
  font-family: "arimo", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #1B2C58;
  font-weight: 300;
}

@media screen and (min-width: 768px) {
  .gstm-details span {
    font-size: 18px;
    line-height: 25px;
  }
}

.edit-post-visual-editor__content-area a, .entry-content a {
  color: #1B2C58;
}

.edit-post-visual-editor__content-area strong, .entry-content strong {
  font-weight: bold;
}

.edit-post-visual-editor__content-area ul.has-large-font-size li, .entry-content ul.has-large-font-size li,
.edit-post-visual-editor__content-area p.has-large-font-size, .entry-content p.has-large-font-size {
  font-size: 24px !important;
  line-height: 34px;
  color: #002D5D;
}

@media screen and (min-width: 768px) {
  .edit-post-visual-editor__content-area ul.has-large-font-size li, .entry-content ul.has-large-font-size li,
  .edit-post-visual-editor__content-area p.has-large-font-size, .entry-content p.has-large-font-size {
    font-size: 30px !important;
    line-height: 42px;
  }
}

.edit-post-visual-editor__content-area ul, .entry-content ul {
  margin: 0;
}

.edit-post-visual-editor__content-area li, .page .entry-content li,
.post .post-content li {
  position: relative;
  margin-bottom: 5px;
}

@media screen and (min-width: 768px) {
  .edit-post-visual-editor__content-area li, .page .entry-content li,
  .post .post-content li {
    margin-bottom: 10px;
  }
}

.edit-post-visual-editor__content-area li, .page .entry-content li {
  font-size: 18px;
  line-height: 30px;
  color: #000000;
}

@media screen and (min-width: 768px) {
  .edit-post-visual-editor__content-area li, .page .entry-content li {
    font-size: 23px;
    line-height: 32px;
  }
}

.page .entry-content > ul {
  padding-left: 2.25rem;
}

@media screen and (min-width: 768px) {
  .page .entry-content > ul {
    padding-left: 2.5rem;
  }
}

.page .entry-content > ul li {
  list-style-type: disc;
}

.gs_team h1, .gs_team h2,
.edit-post-visual-editor__content-area h1, .entry-content h1,
.edit-post-visual-editor__content-area h2, .entry-content h2 {
  font-size: 28px;
  line-height: 36px;
  color: #1B2C58;
  margin-top: 2rem;
  font-family: "lunchtype24expanded_medium", sans-serif;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 1.5px;
}

@media screen and (min-width: 768px) {
  .gs_team h1, .gs_team h2,
  .edit-post-visual-editor__content-area h1, .entry-content h1,
  .edit-post-visual-editor__content-area h2, .entry-content h2 {
    font-size: 42px;
    line-height: 50px;
    letter-spacing: 2.5px;
    margin-top: 3rem;
  }
}

.gs_team h3,
.edit-post-visual-editor__content-area h3, .entry-content h3 {
  color: #002D5D;
  font-size: 26px;
  line-height: 31px;
  text-transform: none;
  font-family: "lunchtype24expanded_medium", sans-serif;
}

@media screen and (min-width: 768px) {
  .gs_team h3,
  .edit-post-visual-editor__content-area h3, .entry-content h3 {
    font-size: 36px;
    line-height: 43px;
  }
}

.gs_team h4,
.edit-post-visual-editor__content-area h4, .entry-content h4 {
  color: #BF5B32;
  line-height: 22px;
  font-size: 15px;
  font-family: "lunchtype24expanded_medium", sans-serif;
}

@media screen and (min-width: 768px) {
  .gs_team h4,
  .edit-post-visual-editor__content-area h4, .entry-content h4 {
    font-size: 20px;
    line-height: 28px;
  }
}

.gs_team h5,
.edit-post-visual-editor__content-area h5, .entry-content h5 {
  color: #BF5B32;
  line-height: 19px;
  font-size: 14px;
  font-family: "arimo", sans-serif;
}

@media screen and (min-width: 768px) {
  .gs_team h5,
  .edit-post-visual-editor__content-area h5, .entry-content h5 {
    font-size: 16px;
    line-height: 25px;
  }
}

.gs_team h6,
.edit-post-visual-editor__content-area h6, .entry-content h6 {
  color: #BF5B32;
  line-height: 18px;
  font-size: 14px;
  font-weight: 700;
  font-family: "arimo", sans-serif;
}

@media screen and (min-width: 768px) {
  .gs_team h6,
  .edit-post-visual-editor__content-area h6, .entry-content h6 {
    font-size: 15px;
    line-height: 21px;
  }
}

.entry-content h3 + h2,
.edit-post-visual-editor__content-area h3 + h2 {
  margin-top: 0;
}

.has-white-color p,
.has-white-color .entry-content .has-white-color {
  color: white;
}

.rigid {
  font-family: "lunchtype24expanded_medium", sans-serif !important;
}

.industry {
  font-family: "lunchtype24expanded_medium", sans-serif !important;
}

.has-blue-green-color p,
.has-blue-green-color,
.entry-content .has-blue-green-color {
  color: #002D5D;
}

.has-lime-green-color p,
.has-lime-green-color,
.entry-content .has-lime-green-color {
  color: #3bc24a;
}

.has-yellow-color p,
.has-yellow-color,
.entry-content .has-yellow-color {
  color: #F79A6C;
}

background {
  background: linear-gradient(to bottom, #EFE9DE 17.5%, transparent 17.5%);
  background-size: 200% 200%;
  background-position: 0 100%;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: -10px;
}

background.active {
  animation: backgroundShift 3s ease forwards;
}

.team-section background,
.testimonials-section background,
.contact-section background,
.tan background,
.light-grey background,
.peach background,
.light-blue background {
  background: linear-gradient(to bottom, white 17.5%, transparent 17.5%);
  background-size: 200% 200%;
  background-position: 0 100%;
}

words {
  font-weight: bold;
  color: #F79A6C;
  display: inline;
  white-space: nowrap;
  position: relative;
  padding-right: 3px;
}

words.highlight {
  background: #F79A6C;
  color: white;
}

words:after {
  content: "";
  background: black;
  width: 1px;
  height: 100%;
  position: absolute;
  right: 0;
  display: inline-block;
}

words:before {
  content: "";
  width: 50px;
}

words.highlight:after {
  background: white;
}

words.waiting:after {
  animation: opacityChange 0.5s infinite;
}

block {
  display: block;
  margin-top: 25px;
}

a block {
  color: #F79A6C;
  text-decoration: none;
}

a block:after,
block a:after {
  content: "";
  background: url(img/right-chevron-yellow.svg) no-repeat center center/100%;
  width: 9px;
  height: 14px;
  display: inline-block;
  margin-left: 8px;
}

.entry-content block a {
  color: #F79A6C;
  text-decoration: none;
}

.entry-content p.has-medium-font-size {
  font-size: 20px !important;
  line-height: 29px;
}

@media screen and (min-width: 768px) {
  .entry-content p.has-medium-font-size {
    font-size: 22px !important;
    line-height: 34px;
  }
}

.entry-content p.has-large-font-size {
  font-size: 24px !important;
  line-height: 36px;
}

@media screen and (min-width: 768px) {
  .entry-content p.has-large-font-size {
    font-size: 30px !important;
    line-height: 42px;
  }
}

.upload-icon,
.icon-icon svg {
  max-width: 56px;
  width: 100%;
  height: auto;
}

#CybotCookiebotDialogBodyButtonAccept,
.buddypress .buddypress-wrap input[type=button],
.buddypress .buddypress-wrap .button,
.wp-block-button__link,
div.gs_team_area .gs-team-filter-cats li a,
a[download],
li.menu-item.nav-button a,
div.gform_wrapper input[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
a.wp-block-button__link,
div.gs_team_area .gs-team-filter-cats li a,
a[download],
li.menu-item.nav-button a,
input[type="submit"],
button.wp-button {
  background: #F6A22D;
  color: #002D5D;
  font-family: "arimo", sans-serif;
  font-size: 18px;
  line-height: 22px;
  padding: 17px 25px 13px;
  cursor: pointer;
  transition-property: background, color;
  transition-duration: .25s;
  text-decoration: none;
  border-radius: 0;
}

@media screen and (min-width: 768px) {
  #CybotCookiebotDialogBodyButtonAccept.is-small,
  .buddypress .buddypress-wrap input[type=button].is-small,
  .buddypress .buddypress-wrap .button.is-small,
  .wp-block-button__link.is-small,
  div.gs_team_area .gs-team-filter-cats li a.is-small,
  a.is-small[download],
  li.menu-item.nav-button a.is-small,
  div.gform_wrapper input.is-small[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
  a.wp-block-button__link.is-small,
  div.gs_team_area .gs-team-filter-cats li a.is-small,
  a.is-small[download],
  li.menu-item.nav-button a.is-small,
  input[type="submit"].is-small,
  button.wp-button.is-small {
    font-size: 17px;
    line-height: 19px;
    padding: 10px 22px 11px;
  }
}

#CybotCookiebotDialogBodyButtonAccept.bp-secondary-action, #CybotCookiebotDialogBodyButtonAccept.wp-cancel-pw,
.buddypress .buddypress-wrap input[type=button].bp-secondary-action,
.buddypress .buddypress-wrap input[type=button].wp-cancel-pw,
.buddypress .buddypress-wrap .button.bp-secondary-action,
.buddypress .buddypress-wrap .button.wp-cancel-pw,
.wp-block-button__link.bp-secondary-action,
div.gs_team_area .gs-team-filter-cats li a.bp-secondary-action,
a.bp-secondary-action[download],
li.menu-item.nav-button a.bp-secondary-action,
div.gform_wrapper input.bp-secondary-action[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
.wp-block-button__link.wp-cancel-pw,
div.gs_team_area .gs-team-filter-cats li a.wp-cancel-pw,
a.wp-cancel-pw[download],
li.menu-item.nav-button a.wp-cancel-pw,
div.gform_wrapper input.wp-cancel-pw[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
a.wp-block-button__link.bp-secondary-action,
div.gs_team_area .gs-team-filter-cats li a.bp-secondary-action,
a.bp-secondary-action[download],
li.menu-item.nav-button a.bp-secondary-action,
a.wp-block-button__link.wp-cancel-pw,
div.gs_team_area .gs-team-filter-cats li a.wp-cancel-pw,
a.wp-cancel-pw[download],
li.menu-item.nav-button a.wp-cancel-pw,
input[type="submit"].bp-secondary-action,
input[type="submit"].wp-cancel-pw,
button.wp-button.bp-secondary-action,
button.wp-button.wp-cancel-pw {
  background: none;
}

#CybotCookiebotDialogBodyButtonAccept.bp-secondary-action:hover, #CybotCookiebotDialogBodyButtonAccept.wp-cancel-pw:hover,
.buddypress .buddypress-wrap input[type=button].bp-secondary-action:hover,
.buddypress .buddypress-wrap input[type=button].wp-cancel-pw:hover,
.buddypress .buddypress-wrap .button.bp-secondary-action:hover,
.buddypress .buddypress-wrap .button.wp-cancel-pw:hover,
.wp-block-button__link.bp-secondary-action:hover,
div.gs_team_area .gs-team-filter-cats li a.bp-secondary-action:hover,
a.bp-secondary-action:hover[download],
li.menu-item.nav-button a.bp-secondary-action:hover,
div.gform_wrapper input.bp-secondary-action:hover[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
.wp-block-button__link.wp-cancel-pw:hover,
div.gs_team_area .gs-team-filter-cats li a.wp-cancel-pw:hover,
a.wp-cancel-pw:hover[download],
li.menu-item.nav-button a.wp-cancel-pw:hover,
div.gform_wrapper input.wp-cancel-pw:hover[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
a.wp-block-button__link.bp-secondary-action:hover,
div.gs_team_area .gs-team-filter-cats li a.bp-secondary-action:hover,
a.bp-secondary-action:hover[download],
li.menu-item.nav-button a.bp-secondary-action:hover,
a.wp-block-button__link.wp-cancel-pw:hover,
div.gs_team_area .gs-team-filter-cats li a.wp-cancel-pw:hover,
a.wp-cancel-pw:hover[download],
li.menu-item.nav-button a.wp-cancel-pw:hover,
input[type="submit"].bp-secondary-action:hover,
input[type="submit"].wp-cancel-pw:hover,
button.wp-button.bp-secondary-action:hover,
button.wp-button.wp-cancel-pw:hover {
  background: none;
  color: #BF5B32;
}

@media screen and (min-width: 768px) {
  #CybotCookiebotDialogBodyButtonAccept,
  .buddypress .buddypress-wrap input[type=button],
  .buddypress .buddypress-wrap .button,
  .wp-block-button__link,
  div.gs_team_area .gs-team-filter-cats li a,
  a[download],
  li.menu-item.nav-button a,
  div.gform_wrapper input[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
  a.wp-block-button__link,
  div.gs_team_area .gs-team-filter-cats li a,
  a[download],
  li.menu-item.nav-button a,
  input[type="submit"],
  button.wp-button {
    font-size: 22px;
    line-height: 22px;
    padding: 13px 25px 13px;
  }
}

#CybotCookiebotDialogBodyButtonAccept:visited,
.buddypress .buddypress-wrap input[type=button]:visited,
.buddypress .buddypress-wrap .button:visited,
.wp-block-button__link:visited,
div.gs_team_area .gs-team-filter-cats li a:visited,
a:visited[download],
li.menu-item.nav-button a:visited,
div.gform_wrapper input:visited[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
a.wp-block-button__link:visited,
div.gs_team_area .gs-team-filter-cats li a:visited,
a:visited[download],
li.menu-item.nav-button a:visited,
input[type="submit"]:visited,
button.wp-button:visited {
  color: #002D5D;
}

#CybotCookiebotDialogBodyButtonAccept:hover,
.buddypress .buddypress-wrap input[type=button]:hover,
.buddypress .buddypress-wrap .button:hover,
.wp-block-button__link:hover,
div.gs_team_area .gs-team-filter-cats li a:hover,
a:hover[download],
li.menu-item.nav-button a:hover,
div.gform_wrapper input:hover[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
a.wp-block-button__link:hover,
div.gs_team_area .gs-team-filter-cats li a:hover,
a:hover[download],
li.menu-item.nav-button a:hover,
input[type="submit"]:hover,
button.wp-button:hover {
  background: #002D5D;
  color: white;
}

#CybotCookiebotDialogBodyButtonAccept[disabled],
.buddypress .buddypress-wrap input[type=button][disabled],
.buddypress .buddypress-wrap .button[disabled],
.wp-block-button__link[disabled],
div.gs_team_area .gs-team-filter-cats li a[disabled],
a[disabled][download],
li.menu-item.nav-button a[disabled],
div.gform_wrapper input[disabled][type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
a.wp-block-button__link[disabled],
div.gs_team_area .gs-team-filter-cats li a[disabled],
a[disabled][download],
li.menu-item.nav-button a[disabled],
input[type="submit"][disabled],
button.wp-button[disabled] {
  opacity: .5;
  cursor: not-allowed;
}

div.gs_team_area .gs-team-filter-cats li a {
  border-top: 2px solid #BF5B32 !important;
  border-left: 2px solid #BF5B32 !important;
  border-right: 2px solid #BF5B32 !important;
  border-bottom: 4px solid #BF5B32 !important;
  border-radius: 0 !important;
  color: #BF5B32 !important;
}

@media screen and (min-width: 768px) {
  div.gs_team_area .gs-team-filter-cats li a {
    font-size: 22px;
    line-height: 22px !important;
    padding: 13px 25px 13px !important;
  }
}

div.gs_team_area .gs-team-filter-cats li a:hover {
  background: #BF5B32 !important;
  color: white !important;
}

ul.gs-team-filter-cats li.filter.active > a {
  background: #BF5B32 !important;
  border-color: #BF5B32 !important;
}

.is-style-text-yellow-play-arrow .wp-block-button__link, .is-style-text-yellow-play-arrow div.gs_team_area .gs-team-filter-cats li a, div.gs_team_area .gs-team-filter-cats li .is-style-text-yellow-play-arrow a, .is-style-text-yellow-play-arrow a[download], .is-style-text-yellow-play-arrow li.menu-item.nav-button a, li.menu-item.nav-button .is-style-text-yellow-play-arrow a, .is-style-text-yellow-play-arrow div.gform_wrapper input[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]), div.gform_wrapper .is-style-text-yellow-play-arrow input[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]) {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg height='48' viewBox='0 0 48 48' width='48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-838-2232H562v3600H-838z' fill='none'/%3E%3Cpath d='M16 10v28l22-14z'/%3E%3Cpath d='M0 0h48v48H0z' fill='none'/%3E%3C/svg%3E");
  background-position: calc(100% - 10px) center;
  background-size: 24px;
  background-repeat: no-repeat;
  padding-right: 35px;
  max-width: 300px;
}

.is-style-text-yellow-play-arrow .wp-block-button__link:hover, .is-style-text-yellow-play-arrow div.gs_team_area .gs-team-filter-cats li a:hover, div.gs_team_area .gs-team-filter-cats li .is-style-text-yellow-play-arrow a:hover, .is-style-text-yellow-play-arrow a:hover[download], .is-style-text-yellow-play-arrow li.menu-item.nav-button a:hover, li.menu-item.nav-button .is-style-text-yellow-play-arrow a:hover, .is-style-text-yellow-play-arrow div.gform_wrapper input:hover[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]), div.gform_wrapper .is-style-text-yellow-play-arrow input:hover[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]) {
  background-color: #F6A22D;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg height='48' viewBox='0 0 48 48' width='48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-838-2232H562v3600H-838z' fill='none'/%3E%3Cpath d='M16 10v28l22-14z'/%3E%3Cpath d='M0 0h48v48H0z' fill='none'/%3E%3C/svg%3E");
  color: #002D5D;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: calc(100% - 5px) center;
}

.fixed-buttons {
  position: relative;
}

@media screen and (min-width: 1080px) {
  .fixed-buttons {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: end;
        justify-content: flex-end;
    z-index: 9999;
  }
}

.fixed-buttons .fixed-wrapper {
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: end;
      justify-content: end;
  padding-left: 0;
  padding-right: 0;
  pointer-events: none;
}

@media screen and (min-width: 1080px) {
  .fixed-buttons .fixed-wrapper {
    padding-right: 1.25rem;
    padding-bottom: 1.25rem;
    padding-left: 1.25rem;
  }
}

.fixed-buttons .fixed-wrapper a.wp-block-button__link, .fixed-buttons .fixed-wrapper div.gs_team_area .gs-team-filter-cats li a, div.gs_team_area .gs-team-filter-cats li .fixed-buttons .fixed-wrapper a, .fixed-buttons .fixed-wrapper a[download], .fixed-buttons .fixed-wrapper li.menu-item.nav-button a, li.menu-item.nav-button .fixed-buttons .fixed-wrapper a {
  font-size: 14px;
  line-height: 18px;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 15px;
  padding-right: 15px;
  pointer-events: auto;
}

@media screen and (min-width: 768px) {
  .fixed-buttons .fixed-wrapper a.wp-block-button__link, .fixed-buttons .fixed-wrapper div.gs_team_area .gs-team-filter-cats li a, div.gs_team_area .gs-team-filter-cats li .fixed-buttons .fixed-wrapper a, .fixed-buttons .fixed-wrapper a[download], .fixed-buttons .fixed-wrapper li.menu-item.nav-button a, li.menu-item.nav-button .fixed-buttons .fixed-wrapper a {
    font-size: 16px;
    line-height: 20px;
    padding: 13px 25px 13px;
  }
}

.wp-button.is-style-solid-yellow-arrow:after,
.wp-block-button.is-style-solid-yellow-arrow .wp-block-button__link:after,
.wp-block-button.is-style-solid-yellow-arrow div.gs_team_area .gs-team-filter-cats li a:after,
div.gs_team_area .gs-team-filter-cats li .wp-block-button.is-style-solid-yellow-arrow a:after,
.wp-block-button.is-style-solid-yellow-arrow a[download]:after,
.wp-block-button.is-style-solid-yellow-arrow li.menu-item.nav-button a:after,
li.menu-item.nav-button .wp-block-button.is-style-solid-yellow-arrow a:after,
.wp-block-button.is-style-solid-yellow-arrow div.gform_wrapper input:not([type=file]):not([type=image]):not([type=checkbox])[type="submit"]:after,
div.gform_wrapper .wp-block-button.is-style-solid-yellow-arrow input:not([type=file]):not([type=image]):not([type=checkbox])[type="submit"]:after {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-left: 9px;
  margin-bottom: -1px;
  background: url(img/right-chevron-yellow.svg) no-repeat center center/15px;
  transition-property: transform;
  transition-duration: .3s;
}

.wp-button.is-style-solid-yellow-arrow:hover:after,
.wp-block-button.is-style-solid-yellow-arrow:hover .wp-block-button__link:after,
.wp-block-button.is-style-solid-yellow-arrow:hover div.gs_team_area .gs-team-filter-cats li a:after,
div.gs_team_area .gs-team-filter-cats li .wp-block-button.is-style-solid-yellow-arrow:hover a:after,
.wp-block-button.is-style-solid-yellow-arrow:hover a[download]:after,
.wp-block-button.is-style-solid-yellow-arrow:hover li.menu-item.nav-button a:after,
li.menu-item.nav-button .wp-block-button.is-style-solid-yellow-arrow:hover a:after,
.wp-block-button.is-style-solid-yellow-arrow:hover div.gform_wrapper input:not([type=file]):not([type=image]):not([type=checkbox])[type="submit"]:after,
div.gform_wrapper .wp-block-button.is-style-solid-yellow-arrow:hover input:not([type=file]):not([type=image]):not([type=checkbox])[type="submit"]:after {
  background: url(img/right-chevron-yellow.svg) no-repeat center center/15px;
}

.wp-button.is-style-solid-yellow-arrow:hover:after,
.wp-block-button.is-style-solid-yellow-arrow .wp-block-button__link:hover:after,
.wp-block-button.is-style-solid-yellow-arrow div.gs_team_area .gs-team-filter-cats li a:hover:after,
div.gs_team_area .gs-team-filter-cats li .wp-block-button.is-style-solid-yellow-arrow a:hover:after,
.wp-block-button.is-style-solid-yellow-arrow a[download]:hover:after,
.wp-block-button.is-style-solid-yellow-arrow li.menu-item.nav-button a:hover:after,
li.menu-item.nav-button .wp-block-button.is-style-solid-yellow-arrow a:hover:after,
.wp-block-button.is-style-solid-yellow-arrow div.gform_wrapper input:not([type=file]):not([type=image]):not([type=checkbox])[type="submit"]:hover:after,
div.gform_wrapper .wp-block-button.is-style-solid-yellow-arrow input:not([type=file]):not([type=image]):not([type=checkbox])[type="submit"]:hover:after {
  transform: translateX(5px);
}

.wp-button.is-style-solid-yellow,
.wp-block-button.is-style-solid-yellow .wp-block-button__link,
.wp-block-button.is-style-solid-yellow div.gs_team_area .gs-team-filter-cats li a,
div.gs_team_area .gs-team-filter-cats li .wp-block-button.is-style-solid-yellow a,
.wp-block-button.is-style-solid-yellow a[download],
.wp-block-button.is-style-solid-yellow li.menu-item.nav-button a,
li.menu-item.nav-button .wp-block-button.is-style-solid-yellow a,
.wp-block-button.is-style-solid-yellow div.gform_wrapper input[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
div.gform_wrapper .wp-block-button.is-style-solid-yellow input[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]) {
  background: #F79A6C;
  color: #1B2C58;
}

.wp-block-button__link.is-style-solid-blue-green, div.gs_team_area .gs-team-filter-cats li a.is-style-solid-blue-green, a.is-style-solid-blue-green[download], li.menu-item.nav-button a.is-style-solid-blue-green, div.gform_wrapper input.is-style-solid-blue-green[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
.wp-button.is-style-solid-blue-green,
.wp-block-button.is-style-solid-blue-green .wp-block-button__link,
.wp-block-button.is-style-solid-blue-green div.gs_team_area .gs-team-filter-cats li a,
div.gs_team_area .gs-team-filter-cats li .wp-block-button.is-style-solid-blue-green a,
.wp-block-button.is-style-solid-blue-green a[download],
.wp-block-button.is-style-solid-blue-green li.menu-item.nav-button a,
li.menu-item.nav-button .wp-block-button.is-style-solid-blue-green a,
.wp-block-button.is-style-solid-blue-green div.gform_wrapper input[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
div.gform_wrapper .wp-block-button.is-style-solid-blue-green input[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]) {
  background: #008FA0;
  color: white;
}

.wp-block-button__link.is-style-solid-blue-green:hover, div.gs_team_area .gs-team-filter-cats li a.is-style-solid-blue-green:hover, a.is-style-solid-blue-green:hover[download], li.menu-item.nav-button a.is-style-solid-blue-green:hover, div.gform_wrapper input.is-style-solid-blue-green:hover[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
.wp-button.is-style-solid-blue-green:hover,
.wp-block-button.is-style-solid-blue-green .wp-block-button__link:hover,
.wp-block-button.is-style-solid-blue-green div.gs_team_area .gs-team-filter-cats li a:hover,
div.gs_team_area .gs-team-filter-cats li .wp-block-button.is-style-solid-blue-green a:hover,
.wp-block-button.is-style-solid-blue-green a:hover[download],
.wp-block-button.is-style-solid-blue-green li.menu-item.nav-button a:hover,
li.menu-item.nav-button .wp-block-button.is-style-solid-blue-green a:hover,
.wp-block-button.is-style-solid-blue-green div.gform_wrapper input:hover[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
div.gform_wrapper .wp-block-button.is-style-solid-blue-green input:hover[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]) {
  color: #002D5D;
  background: #EBA23A;
}

.wp-block-button__link.is-style-solid-navy, div.gs_team_area .gs-team-filter-cats li a.is-style-solid-navy, a.is-style-solid-navy[download], li.menu-item.nav-button a.is-style-solid-navy, div.gform_wrapper input.is-style-solid-navy[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
.wp-button.is-style-solid-navy,
.wp-block-button.is-style-solid-navy .wp-block-button__link,
.wp-block-button.is-style-solid-navy div.gs_team_area .gs-team-filter-cats li a,
div.gs_team_area .gs-team-filter-cats li .wp-block-button.is-style-solid-navy a,
.wp-block-button.is-style-solid-navy a[download],
.wp-block-button.is-style-solid-navy li.menu-item.nav-button a,
li.menu-item.nav-button .wp-block-button.is-style-solid-navy a,
.wp-block-button.is-style-solid-navy div.gform_wrapper input[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
div.gform_wrapper .wp-block-button.is-style-solid-navy input[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]) {
  background: #002D5D;
  color: white;
}

.wp-block-button__link.is-style-solid-navy:hover, div.gs_team_area .gs-team-filter-cats li a.is-style-solid-navy:hover, a.is-style-solid-navy:hover[download], li.menu-item.nav-button a.is-style-solid-navy:hover, div.gform_wrapper input.is-style-solid-navy:hover[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
.wp-button.is-style-solid-navy:hover,
.wp-block-button.is-style-solid-navy .wp-block-button__link:hover,
.wp-block-button.is-style-solid-navy div.gs_team_area .gs-team-filter-cats li a:hover,
div.gs_team_area .gs-team-filter-cats li .wp-block-button.is-style-solid-navy a:hover,
.wp-block-button.is-style-solid-navy a:hover[download],
.wp-block-button.is-style-solid-navy li.menu-item.nav-button a:hover,
li.menu-item.nav-button .wp-block-button.is-style-solid-navy a:hover,
.wp-block-button.is-style-solid-navy div.gform_wrapper input:hover[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
div.gform_wrapper .wp-block-button.is-style-solid-navy input:hover[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]) {
  color: white;
  background: #002D5D;
}

.wp-block-button__link.is-style-text-yellow-arrow, div.gs_team_area .gs-team-filter-cats li a.is-style-text-yellow-arrow, a.is-style-text-yellow-arrow[download], li.menu-item.nav-button a.is-style-text-yellow-arrow, div.gform_wrapper input.is-style-text-yellow-arrow[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
.wp-button.is-style-text-yellow-arrow,
.wp-block-button.is-style-text-yellow-arrow .wp-block-button__link,
.wp-block-button.is-style-text-yellow-arrow div.gs_team_area .gs-team-filter-cats li a,
div.gs_team_area .gs-team-filter-cats li .wp-block-button.is-style-text-yellow-arrow a,
.wp-block-button.is-style-text-yellow-arrow a[download],
.wp-block-button.is-style-text-yellow-arrow li.menu-item.nav-button a,
li.menu-item.nav-button .wp-block-button.is-style-text-yellow-arrow a,
.wp-block-button.is-style-text-yellow-arrow div.gform_wrapper input[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
div.gform_wrapper .wp-block-button.is-style-text-yellow-arrow input[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]) {
  background: none;
  color: #BF5B32;
  padding: 0;
  border-radius: 0;
  border: none;
  padding-right: 12px;
  background: url(img/right-arrow.svg) no-repeat center right/7px;
}

.wp-block-button__link.is-style-text-yellow-arrow:hover, div.gs_team_area .gs-team-filter-cats li a.is-style-text-yellow-arrow:hover, a.is-style-text-yellow-arrow:hover[download], li.menu-item.nav-button a.is-style-text-yellow-arrow:hover, div.gform_wrapper input.is-style-text-yellow-arrow:hover[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
.wp-button.is-style-text-yellow-arrow:hover,
.wp-block-button.is-style-text-yellow-arrow .wp-block-button__link:hover,
.wp-block-button.is-style-text-yellow-arrow div.gs_team_area .gs-team-filter-cats li a:hover,
div.gs_team_area .gs-team-filter-cats li .wp-block-button.is-style-text-yellow-arrow a:hover,
.wp-block-button.is-style-text-yellow-arrow a:hover[download],
.wp-block-button.is-style-text-yellow-arrow li.menu-item.nav-button a:hover,
li.menu-item.nav-button .wp-block-button.is-style-text-yellow-arrow a:hover,
.wp-block-button.is-style-text-yellow-arrow div.gform_wrapper input:hover[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
div.gform_wrapper .wp-block-button.is-style-text-yellow-arrow input:hover[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]) {
  color: navy;
  background: transparent url(img/right-arrow-blue.svg) no-repeat center right/7px;
}

.wp-button.is-style-text-yellow-arrow:hover:after,
.wp-block-button.is-style-text-yellow-arrow .wp-block-button__link:hover:after,
.wp-block-button.is-style-text-yellow-arrow div.gs_team_area .gs-team-filter-cats li a:hover:after,
div.gs_team_area .gs-team-filter-cats li .wp-block-button.is-style-text-yellow-arrow a:hover:after,
.wp-block-button.is-style-text-yellow-arrow a[download]:hover:after,
.wp-block-button.is-style-text-yellow-arrow li.menu-item.nav-button a:hover:after,
li.menu-item.nav-button .wp-block-button.is-style-text-yellow-arrow a:hover:after,
.wp-block-button.is-style-text-yellow-arrow div.gform_wrapper input:not([type=file]):not([type=image]):not([type=checkbox])[type="submit"]:hover:after,
div.gform_wrapper .wp-block-button.is-style-text-yellow-arrow input:not([type=file]):not([type=image]):not([type=checkbox])[type="submit"]:hover:after {
  transform: translateX(5px);
}

.wp-button.is-style-outline,
.wp-block-button.is-style-outline .wp-block-button__link,
.wp-block-button.is-style-outline div.gs_team_area .gs-team-filter-cats li a,
div.gs_team_area .gs-team-filter-cats li .wp-block-button.is-style-outline a,
.wp-block-button.is-style-outline a[download],
.wp-block-button.is-style-outline li.menu-item.nav-button a,
li.menu-item.nav-button .wp-block-button.is-style-outline a,
.wp-block-button.is-style-outline div.gform_wrapper input[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
div.gform_wrapper .wp-block-button.is-style-outline input[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]) {
  border: 2px solid white;
  color: white;
}

.wp-button.is-style-outline:hover,
.wp-block-button.is-style-outline .wp-block-button__link:hover,
.wp-block-button.is-style-outline div.gs_team_area .gs-team-filter-cats li a:hover,
div.gs_team_area .gs-team-filter-cats li .wp-block-button.is-style-outline a:hover,
.wp-block-button.is-style-outline a:hover[download],
.wp-block-button.is-style-outline li.menu-item.nav-button a:hover,
li.menu-item.nav-button .wp-block-button.is-style-outline a:hover,
.wp-block-button.is-style-outline div.gform_wrapper input:hover[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
div.gform_wrapper .wp-block-button.is-style-outline input:hover[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]) {
  background: white;
  color: black;
}

.wp-button.is-style-outline:visited,
.wp-block-button.is-style-outline .wp-block-button__link:visited,
.wp-block-button.is-style-outline div.gs_team_area .gs-team-filter-cats li a:visited,
div.gs_team_area .gs-team-filter-cats li .wp-block-button.is-style-outline a:visited,
.wp-block-button.is-style-outline a:visited[download],
.wp-block-button.is-style-outline li.menu-item.nav-button a:visited,
li.menu-item.nav-button .wp-block-button.is-style-outline a:visited,
.wp-block-button.is-style-outline div.gform_wrapper input:visited[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
div.gform_wrapper .wp-block-button.is-style-outline input:visited[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]) {
  color: white;
}


.wp-block-button__link:visited,
div.gs_team_area .gs-team-filter-cats li a:visited,
a:visited[download],
li.menu-item.nav-button a:visited,
div.gform_wrapper input:visited[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
button.wp-button:visited {
  color: #BF5B32;
}


.wp-block-button__link:hover,
div.gs_team_area .gs-team-filter-cats li a:hover,
a:hover[download],
li.menu-item.nav-button a:hover,
div.gform_wrapper input:hover[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
button.wp-button:hover {
  color: white;
}

a[download] {
  display: inline-block;
  text-decoration: none;
  border-radius: 0;
}

body.logged-in .site-header {
  margin-top: 32px;
}

@media screen and (max-width: 782px) {
  body.logged-in .site-header {
    margin-top: 46px;
  }
}

body.nav-active {
  overflow: auto;
}

@media screen and (min-width: 1080px) {
  body.nav-active {
    overflow: scroll;
  }
}

.site-header {
  width: 100%;
}

a.custom-logo-link {
  display: block;
}

.main-content-nav {
  position: relative;
  background: #ffffff;
  z-index: 999;
}

.site-header .custom-logo {
  max-width: 190px;
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (min-width: 768px) {
  .site-header .custom-logo {
    max-width: 215px;
    min-width: 56px;
  }
}

.fixed-buttons {
  display: none;
}

@media screen and (min-width: 1080px) {
  .fixed-buttons {
    display: block;
  }
}

.main-content-nav .fixed-buttons {
  display: block;
}

@media screen and (min-width: 1080px) {
  .main-content-nav .fixed-buttons {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .main-navigation .menu-item-48094 .sub-menu {
    min-width: 375px;
  }
}

.site-header.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  animation: transitionDown 0.75s ease forwards;
}

.site-header .site-title {
  text-indent: -10000px;
  font-size: 0;
  line-height: 0;
}

.main-navigation .nav-menu > .menu-item > .sub-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 1080px) {
  .main-navigation .nav-menu > .menu-item > .sub-menu {
    padding: 2rem;
  }
}

.main-navigation .sub-menu li.menu-item {
  font-style: italic;
  font-weight: bold;
  text-transform: capitalize;
  font-size: 16px;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .main-navigation .sub-menu li.menu-item {
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 15px;
  }
}

@media screen and (min-width: 768px) {
  .main-navigation .sub-menu li.menu-item:last-of-type {
    margin-bottom: 0;
  }
}

.menu-icon {
  display: inline-block;
  position: absolute;
  top: -3px;
  left: 0;
  width: inherit;
  max-width: 25px;
}

.menu-icon img {
  display: inline-block;
  max-width: 25px;
  width: 100%;
  transform: translateY(5px);
}

.main-navigation .sub-menu li.menu-item a {
  font-style: normal;
  display: inline;
}

@media screen and (min-width: 1080px) {
  .main-navigation .sub-menu li.menu-item a {
    display: block;
  }
}

.main-navigation .sub-menu .sub-menu {
  margin-top: 8px;
  display: block;
}

@media screen and (min-width: 1080px) {
  .main-navigation .sub-menu .sub-menu {
    margin-top: 10px;
  }
}

.main-navigation .nav-menu > .menu-item > .sub-menu > .menu-item {
  width: 100%;
}

@media screen and (min-width: 1080px) {
  .main-navigation .nav-menu > .menu-item > .sub-menu > .menu-item {
    width: 50%;
    padding-right: 1.25rem;
  }
}

.main-navigation ul ul ul {
  position: relative;
  background: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  float: none;
  padding-left: 0;
  padding-right: 0;
  min-width: auto;
  left: 0;
}

@media screen and (min-width: 1080px) {
  .main-navigation ul ul ul {
    left: 0;
  }
}

.menu-toggle {
  position: relative;
  z-index: 2;
  padding: 0;
  border: none;
  border-radius: 0;
  text-indent: -10000px;
  width: 30px;
  height: 30px;
  background: url(img/nav-open.svg) no-repeat center center/100%;
  -ms-flex-order: 2;
      order: 2;
  margin-left: 7%;
  cursor: pointer;
}

@media screen and (min-width: 1080px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle[aria-expanded="true"] {
  background: url(img/nav-close.svg) no-repeat center center/85%;
}

.menu-primary-button-menu-container .menu {
  display: block;
}

.site-header .site-description {
  text-indent: -10000px;
  font-size: 0;
  line-height: 0;
}

.site-header .wrapper {
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.main-navigation button.toggle-menu {
  background: transparent url(img/down-chevron.svg) no-repeat center center/15px;
  width: 30px;
  height: 30px;
  border: none;
  display: block;
  text-indent: -10000px;
  margin-top: -3px;
  cursor: pointer;
}

@media screen and (min-width: 1080px) {
  .main-navigation button.toggle-menu {
    display: none;
  }
}

.main-navigation {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
}

.site-header .main-wrapper {
  height: 80px;
}

@media screen and (min-width: 768px) {
  .site-header .main-wrapper {
    height: 90px;
  }
}

.main-navigation.toggled .menu-primary-menu-container,
.main-navigation.toggled .menu-logged-out-container,
.main-navigation.toggled .menu-logged-in-container,
.main-navigation.toggled .menu-all-pages-container {
  display: -ms-flexbox;
  display: flex;
}

.menu-primary-menu-container,
.menu-logged-out-container,
.menu-logged-in-container,
.menu-all-pages-container {
  display: none;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  position: absolute;
  background: white;
  height: 45vh;
  top: 80px;
  left: 0;
  overflow: auto;
  -ms-flex: 1;
      flex: 1;
  width: 100%;
}

@media screen and (min-width: 768px) and (max-width: 1080px) {
  .menu-primary-menu-container,
  .menu-logged-out-container,
  .menu-logged-in-container,
  .menu-all-pages-container {
    height: 45vh;
    top: 90px;
    overflow: visible;
  }
}

@media screen and (min-width: 1080px) {
  .menu-primary-menu-container,
  .menu-logged-out-container,
  .menu-logged-in-container,
  .menu-all-pages-container {
    display: -ms-flexbox;
    display: flex;
    position: relative;
    top: inherit;
    left: inherit;
    -ms-flex-align: end;
        align-items: flex-end;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    height: auto;
    overflow: visible;
    background: transparent;
    -ms-flex-pack: end;
        justify-content: flex-end;
  }
}

li.menu-item.nav-button a {
  display: block;
  color: #002D5D;
  padding: 16px 25px 16px;
  background: #F6A22D;
  font-size: 16px;
  line-height: 16px;
}

li.menu-item.nav-button a:hover {
  background: #002D5D;
  color: white;
}

li.menu-item.nav-button a:visited {
  color: #002D5D;
}

@media screen and (min-width: 1080px) {
  li.menu-item.nav-button a {
    font-size: 17px;
    line-height: 17px;
  }
}

.main-navigation .menu-item a,
.main-navigation .menu-item {
  color: #002D5D;
  font-family: "arimo", sans-serif;
  font-size: 18px;
  text-align: left;
  text-transform: uppercase;
  display: inline-block;
  width: 100%;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media screen and (min-width: 1080px) {
  .main-navigation .menu-item a,
  .main-navigation .menu-item {
    text-align: left;
    color: #002D5D;
    display: inline;
    width: auto;
    font-size: 19px;
    line-height: 24px;
  }
}

@media screen and (min-width: 1080px) and (max-width: 1200px) {
  .main-navigation .menu-item {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}

@media screen and (min-width: 1201px) {
  .main-navigation .menu-item {
    margin-left: 1.8rem;
    margin-right: 1.8rem;
  }
}

.main-navigation .menu-item a:hover {
  color: #EBA23A;
}

.menu-primary-menu-container .menu-item,
.menu-all-pages-container .menu-item {
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 1080px) {
  .menu-primary-menu-container .menu-item,
  .menu-all-pages-container .menu-item {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1080px) {
  .main-navigation .nav-menu > .menu-item.nav-button {
    padding-top: 22px;
    padding-bottom: 22px;
  }
}

.main-navigation .nav-menu > .menu-item {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  padding-top: 6px;
  margin-bottom: 15px;
}

@media screen and (min-width: 1080px) and (max-width: 1200px) {
  .main-navigation .nav-menu > .menu-item {
    margin-bottom: 0;
    width: auto;
    padding-top: 26px;
    padding-bottom: 26px;
    -ms-flex-pack: center;
        justify-content: center;
  }
}

@media screen and (min-width: 1201px) {
  .main-navigation .nav-menu > .menu-item {
    margin-bottom: 0;
    width: auto;
    padding-top: 26px;
    padding-bottom: 26px;
    -ms-flex-pack: center;
        justify-content: center;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .main-navigation .menu-item:last-of-type {
    margin-right: 0;
  }
}

@media screen and (min-width: 1201px) {
  .main-navigation .menu-item:last-of-type {
    margin-right: 0;
  }
}

.main-navigation ul.nav-menu {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 30px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media screen and (min-width: 1080px) {
  .main-navigation ul.nav-menu {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.main-navigation .sub-menu li.menu-item a .menu-item {
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .main-navigation .sub-menu li.menu-item a .menu-item {
    text-align: left;
  }
}

.main-navigation .nav-menu > .menu-item > .sub-menu {
  background: linear-gradient(to left, #002D5D, #002D5D);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 30% 1px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: none;
}

@media screen and (min-width: 1080px) {
  .main-navigation .nav-menu > .menu-item > .sub-menu {
    background: white;
    padding-top: 2rem;
    padding-bottom: 1.5rem;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-navigation .sub-menu li.menu-item a {
  margin-top: 10px;
  margin-bottom: 10px;
}

@media screen and (min-width: 1080px) {
  .main-navigation .sub-menu li.menu-item a {
    margin-top: 0;
    margin-bottom: 0;
    background: white;
    padding-top: 0;
    padding-bottom: 0;
    display: block;
  }
}

.main-navigation .nav-menu > .menu-item.active > .sub-menu {
  display: block;
}

@media screen and (min-width: 1080px) {
  .main-navigation .nav-menu > .menu-item.active > .sub-menu {
    display: -ms-flexbox;
    display: flex;
  }
}

.secondary-navigation .menu {
  list-style-type: none;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
}

.secondary-navigation .menu li a {
  position: relative;
}

.secondary-navigation .menu li a:before {
  content: "";
  position: absolute;
  right: 0;
  width: 2px;
  background: white;
  height: 100%;
  right: 0;
}

.secondary-navigation .menu li a,
.secondary-navigation p a {
  color: white;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  letter-spacing: 0.35px;
  font-size: 15px;
  font-family: "arimo", sans-serif;
}

@media screen and (min-width: 768px) {
  .secondary-navigation .menu li a,
  .secondary-navigation p a {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 17px;
    letter-spacing: 0.5px;
  }
}

.secondary-navigation .menu li a:hover {
  color: #EBA23A;
}

.secondary-navigation .menu li:last-of-type a {
  padding-right: 0;
}

@media screen and (min-width: 768px) {
  .secondary-navigation .menu li:last-of-type a {
    padding-right: 0;
  }
}

.secondary-navigation .menu li:last-of-type a:before {
  display: none;
}

.secondary-navigation p:last-of-type a {
  padding-right: 0;
}

@media screen and (min-width: 768px) {
  .secondary-navigation p:last-of-type a {
    padding-right: 0;
  }
}

.main-navigation .sub-menu .menu-item a {
  width: 100%;
  font-size: 16px;
  color: #4d4d4d;
  font-family: "arimo", sans-serif;
  text-transform: none;
  line-height: 27px;
  position: relative;
  padding-left: 35px;
}

.main-navigation .sub-menu .menu-item a:hover {
  color: #F79A6C;
}

@media screen and (min-width: 1080px) {
  .main-navigation .sub-menu .menu-item a {
    font-size: 18px;
    line-height: 28px;
    text-transform: none;
    color: #4d4d4d;
  }
}

.secondary-navigation {
  height: 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  background: #002D5D;
  transition-duration: .3s;
  transition-property: height;
}

@media screen and (min-width: 768px) {
  .secondary-navigation {
    height: 50px;
  }
}

.secondary-navigation .wrapper {
  -ms-flex-pack: center;
      justify-content: center;
}

@media screen and (min-width: 768px) {
  .secondary-navigation .wrapper {
    -ms-flex-pack: end;
        justify-content: flex-end;
  }
}

.menu-secondary-menu-container {
  width: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
}

.menu-secondary-menu-container ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.menu-secondary-menu-container .menu-item,
.menu-secondary-menu-container .menu-item a {
  text-transform: uppercase;
  color: #313133;
  text-decoration: none;
  font-family: "arimo", sans-serif;
  font-size: 13px;
  line-height: 18px;
}

@media screen and (min-width: 1201px) {
  .menu-secondary-menu-container .menu-item,
  .menu-secondary-menu-container .menu-item a {
    font-size: 16px;
    line-height: 20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .menu-secondary-menu-container .menu-item,
  .menu-secondary-menu-container .menu-item a {
    font-size: 14px;
    line-height: 18px;
  }
}

@media screen and (min-width: 1080px) {
  .main-navigation ul.nav-menu > li:hover > ul,
  .main-navigation ul.nav-menu > li.focus > ul {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (min-width: 1080px) {
  .main-navigation ul.nav-menu > li:hover > ul:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: solid 24px #EDF5FE;
    border-left: solid 16px transparent;
    border-right: solid 16px transparent;
  }
}

@media screen and (min-width: 1080px) {
  .main-navigation ul.nav-menu > li:hover > ul:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: solid 20px white;
    border-left: solid 14px transparent;
    border-right: solid 14px transparent;
  }
}

/**
 * Swiper 6.0.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 9, 2020
 */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  -ms-flex-direction: column;
      flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: column;
      flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: auto;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -ms-flex-align: start;
      align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.entry-content {
  overflow-x: hidden;
}

.entry-content > p,
.entry-content > h1,
.entry-content > h2,
.entry-content > h3,
.entry-content > h4,
.entry-content > h5,
.entry-content > h6,
.entry-content > ul,
.entry-content > dl,
.entry-content > ol,
.entry-content > address,
.entry-content > code,
.entry-content > pre,
.entry-content > figure,
.entry-content > table,
.entry-content > .wp-block-buttons {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

div.components-select-control {
  display: block;
  height: auto;
}

h1 {
  font-size: 42px;
  line-height: 49px;
  color: #1B2C58;
  font-family: "lunchtype24expanded_medium", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.75px;
  margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  h1 {
    color: white;
    font-size: 65px;
    line-height: 80px;
    margin-top: 0;
  }
}

h3 {
  text-transform: uppercase;
  color: #1B2C58;
  font-family: "lunchtype24expanded_medium", sans-serif;
  font-size: 35px;
  line-height: 40px;
  margin-top: 1.15rem;
  margin-bottom: 1.15rem;
}

@media screen and (min-width: 768px) {
  h3 {
    font-size: 55px;
    line-height: 63px;
    letter-spacing: 0.25px;
    font-weight: 400;
    margin-bottom: 1.75rem;
    margin-top: 1.75rem;
  }
}

h4 {
  font-family: "arimo", sans-serif;
  color: #1B2C58;
  font-weight: 700;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: 0.16px;
}

@media screen and (min-width: 768px) {
  h4 {
    font-size: 26px;
    line-height: 34px;
    letter-spacing: 0.25px;
  }
}

.content p {
  font-family: "arimo", sans-serif;
  color: #000000;
}

.content p:first-of-type {
  margin-top: 0;
}

.navy {
  background: #002D5D;
}

.white {
  background: white;
}

.blue-green {
  background: #002D5D;
}

.yellow {
  background: #F79A6C;
}

.orange {
  background: #EBA23A;
}

.grey {
  background: #878787;
}

.purple {
  background: #671C61;
}

.light-grey {
  background: #F4F4F4;
}

.light-blue {
  background: #E7F2F7;
}

.teal-gradient {
  background: linear-gradient(to top, #29bcd1, #1c8f9e, #29bcd1);
}

.peach {
  background: #FDEFE8;
}

.tan {
  background: #EFE9DE;
}

.resources-grid:not(.swiper-wrapper) .block-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.with-overlay {
  position: relative;
}

.with-overlay:before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  position: absolute;
}

.with-overlay * {
  position: relative;
}

.resource-card .wp-button {
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
}

.resource-card .wp-buttons {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  text-align: left;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .resource-card .wp-buttons {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    text-align: left;
  }
}

.resource-card .content {
  margin-top: 20px;
}

.resource-card {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .resource-card {
    width: calc(50% - 2.5rem);
    margin: 0 1.25rem 2.5rem;
  }
}

@media screen and (min-width: 1201px) {
  .resource-card {
    width: calc(33.3333% - 2.5rem);
    margin: 0 1.25rem 2.5rem;
  }
}

.resource-card .resource-card .resource-extra {
  width: 100%;
}

.resource-card .cont-wrap {
  width: 100%;
}

@supports (display: grid) {
  div.resources-grid:not(.swiper-wrapper) .block-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    max-width: 1680px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    width: 100%;
    margin: 0 auto;
  }
  @media screen and (min-width: 768px) and (max-width: 1200px) {
    div.resources-grid:not(.swiper-wrapper) .block-wrapper {
      -ms-grid-columns: 1fr 1fr;
          grid-template-columns: 1fr 1fr;
      grid-column-gap: 1.5rem;
      grid-row-gap: 1.5rem;
      padding-left: 2rem;
      padding-right: 2rem;
    }
  }
  @media screen and (min-width: 1201px) {
    div.resources-grid:not(.swiper-wrapper) .block-wrapper {
      -ms-grid-columns: 1fr 1fr 1fr;
          grid-template-columns: 1fr 1fr 1fr;
      grid-column-gap: 2.5rem;
      grid-row-gap: 2.5rem;
      padding-left: 2.5rem;
      padding-right: 2.5rem;
    }
  }
  .resource-card {
    width: 100%;
  }
  @media screen and (min-width: 768px) and (max-width: 1200px) {
    .resource-card {
      width: 100%;
      margin: 0;
    }
  }
  @media screen and (min-width: 1201px) {
    .resource-card {
      width: 100%;
      margin: 0;
    }
  }
  .columns-3 .grid {
    display: -ms-grid;
    display: grid;
    display: grid;
  }
  @media screen and (min-width: 1201px) {
    .columns-3 .grid {
      -ms-grid-columns: 1fr 1fr 1fr;
          grid-template-columns: 1fr 1fr 1fr;
      grid-row-gap: 25px;
      grid-column-gap: 55px;
    }
  }
  @media screen and (min-width: 768px) and (max-width: 1200px) {
    .columns-3 .grid {
      -ms-grid-columns: 1fr 1fr;
          grid-template-columns: 1fr 1fr;
      grid-row-gap: 20px;
      grid-column-gap: 40px;
    }
  }
  .grid {
    display: -ms-grid;
    display: grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-row-gap: 15px;
    grid-column-gap: 15px;
  }
  @media screen and (min-width: 1201px) {
    .grid {
      -ms-grid-columns: 1fr 1fr 1fr;
          grid-template-columns: 1fr 1fr 1fr;
      grid-row-gap: 25px;
      grid-column-gap: 55px;
    }
  }
  @media screen and (min-width: 768px) and (max-width: 1200px) {
    .grid {
      -ms-grid-columns: 1fr 1fr;
          grid-template-columns: 1fr 1fr;
      grid-row-gap: 20px;
      grid-column-gap: 40px;
    }
  }
}

.light-yellow .resource-card {
  background: white;
}

.resource-card {
  padding-bottom: 1.25rem;
  background: #F2EBDB;
}

@media screen and (min-width: 768px) {
  .resource-card {
    padding-bottom: 2.1875rem;
  }
}

.resource-card.video img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.resource-card img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.resource-card .image-cont {
  width: 100%;
  position: relative;
  padding-bottom: 50%;
  overflow: hidden;
}

.resource-card p.resource-excerpt {
  overflow-wrap: anywhere;
  font-family: "arimo", sans-serif;
  color: #000000;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .resource-card p.resource-excerpt {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    text-align: left;
  }
}

.resource-card.whitepaper .image-cont img {
  position: absolute;
  top: 22%;
  width: 42.5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.resource-card.video .image-cont {
  position: relative;
}

.resource-card.video .image-cont:after {
  content: "";
  width: 16.66667%;
  height: 32.3333%;
  background: url(img/video-button.svg) no-repeat center center/95%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.resource-excerpt p {
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.175px;
  margin-bottom: 1.15rem;
}

@media screen and (min-width: 768px) {
  .resource-excerpt p {
    font-size: 23px;
    line-height: 32px;
    letter-spacing: 0.225px;
    margin-bottom: 1.5rem;
  }
}

.resource-card a {
  text-decoration: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.resource-card .image-cont {
  width: 100%;
}

.resource-card .image-cont img {
  width: 100%;
  display: block;
  height: 100%;
}

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

.resource-card .tax-links {
  -ms-flex-pack: start;
      justify-content: flex-start;
  margin-top: 15px;
  margin-bottom: 6px;
}

@media screen and (min-width: 768px) {
  .resource-card .tax-links {
    margin-top: 27px;
  }
}

.entry-content .resource-card .tax-item {
  text-transform: uppercase;
  font-family: "lunchtype24expanded_medium", sans-serif;
  color: #002D5D;
  font-size: 15px;
  letter-spacing: 0.65px;
  margin-bottom: 0;
  font-weight: 500;
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .entry-content .resource-card .tax-item {
    font-size: 17px;
  }
}

h4.resource-type,
.editor-styles-wrapper h4.resource-type {
  font-family: "arimo", sans-serif;
  text-transform: uppercase;
  color: #F8AE2B;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.25px;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  h4.resource-type,
  .editor-styles-wrapper h4.resource-type {
    font-size: 20px;
    line-height: 27px;
    letter-spacing: 0.5px;
  }
}

h3.resource-title,
.editor-styles-wrapper h3.resource-title {
  color: #BF5B32;
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
  font-family: "lunchtype24expanded_medium", sans-serif;
  text-transform: none;
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}

@media screen and (min-width: 768px) {
  h3.resource-title,
  .editor-styles-wrapper h3.resource-title {
    font-size: 20px;
    line-height: 27px;
    margin-bottom: .9rem;
  }
}

.resource-card h3.resource-title {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  font-size: 24px;
  line-height: 32px;
}

@media screen and (min-width: 768px) {
  .resource-card h3.resource-title {
    font-size: 28px;
    line-height: 38px;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.resource-card.no-img .resource-title {
  margin-top: 0;
}

div.wprs_unslider {
  max-width: 1580px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  width: calc(100% - 4rem);
}

.flex {
  display: -ms-flexbox;
  display: flex;
}

.align-center {
  -ms-flex-align: center;
      align-items: center;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.j-center {
  -ms-flex-pack: center;
      justify-content: center;
}

.editor-styles-wrapper ul li {
  list-style-type: none;
  margin-bottom: 5px;
  padding-left: 15px;
}

@media screen and (min-width: 768px) {
  .editor-styles-wrapper ul li {
    margin-bottom: 10px;
    padding-left: 23px;
  }
}

.editor-styles-wrapper ul li {
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  letter-spacing: 0.16px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .editor-styles-wrapper ul li {
    font-size: 23px;
    line-height: 32px;
    letter-spacing: 0.25px;
  }
}

.editor-styles-wrapper .wp-block.is-reusable {
  max-width: 100%;
}

.wp-block-columns {
  max-width: 1680px;
  margin: 0 auto;
}

.entry-content > .wp-block-columns {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

i.fa.fa-external-link:before {
  content: "\F08E";
}

.gs-team-filter-cats li a {
  text-decoration: none;
}

.single-member--wraper {
  margin: 20px 15px;
}

div#CybotCookiebotDialog {
  border-color: white;
}

#CybotCookiebotDialogBodyButtons a {
  padding-top: 8px;
  padding-bottom: 7px;
}

div#CybotCookiebotDialog {
  box-shadow: 2px 2px 14px 2px rgba(0, 0, 0, 0.05);
}

div#CybotCookiebotDialogBody {
  max-width: 1200px;
}

h2#CybotCookiebotDialogBodyContentTitle {
  font-family: "Plus Jakarta Sans",sans-serif;
  color: #19303F;
  font-weight: 700;
  font-size: 23px;
  line-height: 30px;
  margin-bottom: 0.5rem;
  display: inline-block;
  padding-left: 4px;
  padding-right: 4px;
  background: linear-gradient(to bottom, transparent 50%, #EDF5FF 50%);
}

#CybotCookiebotDialog div#CybotCookiebotDialogBodyContentText {
  font-size: 15px;
  line-height: 21px;
  font-family: "Mulish",sans-serif;
  color: #19303F;
}

#CybotCookiebotDialogBodyContent {
  max-width: 750px;
}

div.gform_wrapper input[type=color],
div.gform_wrapper input[type=date],
div.gform_wrapper input[type=datetime-local],
div.gform_wrapper input[type=datetime],
div.gform_wrapper input[type=email],
div.gform_wrapper input[type=month],
div.gform_wrapper input[type=number],
div.gform_wrapper input[type=password],
div.gform_wrapper input[type=search],
div.gform_wrapper input[type=tel],
div.gform_wrapper input[type=text],
div.gform_wrapper input[type=time],
div.gform_wrapper input[type=url],
div.gform_wrapper input[type=week],
div.gform_wrapper select,
div.gform_wrapper textarea {
  background: #FCF7EC;
  border: none;
  border-radius: 0;
  font-family: "arimo", sans-serif;
  color: #000000;
  font-size: 18px;
  line-height: 30px;
  padding-left: 0.75rem;
}

@media screen and (min-width: 641px) {
  div.gform_wrapper input[type=color],
  div.gform_wrapper input[type=date],
  div.gform_wrapper input[type=datetime-local],
  div.gform_wrapper input[type=datetime],
  div.gform_wrapper input[type=email],
  div.gform_wrapper input[type=month],
  div.gform_wrapper input[type=number],
  div.gform_wrapper input[type=password],
  div.gform_wrapper input[type=search],
  div.gform_wrapper input[type=tel],
  div.gform_wrapper input[type=text],
  div.gform_wrapper input[type=time],
  div.gform_wrapper input[type=url],
  div.gform_wrapper input[type=week],
  div.gform_wrapper select,
  div.gform_wrapper textarea {
    font-size: 18px;
    line-height: 32px;
    padding-left: 1.3125rem;
  }
}

.gform_wrapper.gravity-theme .gfield textarea {
  padding-left: 0;
  padding-right: 0;
}

@media screen and (min-width: 641px) {
  div.gform_wrapper div.ginput_complex {
    grid-column-gap: 35px;
  }
}

@media screen and (min-width: 641px) {
  div.gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full) {
    padding-right: 0;
  }
}

div.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-field {
  width: 100%;
  position: relative;
}

div.gform_wrapper.gravity-theme .chosen-container-multi input.chosen-search-input {
  width: 100% !important;
  box-shadow: none !important;
  font-family: "arimo", sans-serif;
  color: #000000;
  font-size: 18px;
  line-height: 30px;
  padding: 0;
  border-radius: 0;
}

@media screen and (min-width: 641px) {
  div.gform_wrapper.gravity-theme .chosen-container-multi input.chosen-search-input {
    font-size: 18px;
    line-height: 32px;
    padding: 0;
  }
}

div.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-choice {
  background-image: none;
  border: none;
  background: #BF5B32;
  font-size: 15px;
  color: white;
  border: none;
  padding: 5px 25px 5px 10px;
}

div.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  top: 6px;
  right: 6px;
  background-position: -42px -10px;
}

div.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
div.gform_wrapper input[type=color], .blue div.gform_wrapper input[type=color], [class*="wp-block"].white div.gform_wrapper input[type=color],
div.gform_wrapper input[type=date], .blue div.gform_wrapper input[type=date], [class*="wp-block"].white div.gform_wrapper input[type=date],
div.gform_wrapper input[type=datetime-local], .blue div.gform_wrapper input[type=datetime-local], [class*="wp-block"].white div.gform_wrapper input[type=datetime-local],
div.gform_wrapper input[type=datetime], .blue div.gform_wrapper input[type=datetime], [class*="wp-block"].white div.gform_wrapper input[type=datetime],
div.gform_wrapper input[type=email], .blue div.gform_wrapper input[type=email], [class*="wp-block"].white div.gform_wrapper input[type=email],
div.gform_wrapper input[type=month], .blue div.gform_wrapper input[type=month], [class*="wp-block"].white div.gform_wrapper input[type=month],
div.gform_wrapper input[type=number], .blue div.gform_wrapper input[type=number], [class*="wp-block"].white div.gform_wrapper input[type=number],
div.gform_wrapper input[type=password], .blue div.gform_wrapper input[type=password], [class*="wp-block"].white div.gform_wrapper input[type=password],
div.gform_wrapper input[type=search],
div.gform_wrapper input[type=tel],
div.gform_wrapper input[type=text],
div.gform_wrapper input[type=time],
div.gform_wrapper input[type=url],
div.gform_wrapper input[type=week],
div.gform_wrapper select,
div.gform_wrapper textarea,
div.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):not([class=chosen-search-input]) {
  background: transparent;
  border-radius: 0;
  border-bottom: 2px solid #0359AD;
  -webkit-appearance: none;
  padding-left: 0;
  padding-right: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 18px;
  line-height: 27px;
  color: #000000;
  font-family: "arimo", sans-serif;
  font-weight: 300;
  width: 100%;
}

@media screen and (min-width: 641px) {
  div.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
  div.gform_wrapper input[type=color], .blue div.gform_wrapper input[type=color], [class*="wp-block"].white div.gform_wrapper input[type=color],
  div.gform_wrapper input[type=date], .blue div.gform_wrapper input[type=date], [class*="wp-block"].white div.gform_wrapper input[type=date],
  div.gform_wrapper input[type=datetime-local], .blue div.gform_wrapper input[type=datetime-local], [class*="wp-block"].white div.gform_wrapper input[type=datetime-local],
  div.gform_wrapper input[type=datetime], .blue div.gform_wrapper input[type=datetime], [class*="wp-block"].white div.gform_wrapper input[type=datetime],
  div.gform_wrapper input[type=email], .blue div.gform_wrapper input[type=email], [class*="wp-block"].white div.gform_wrapper input[type=email],
  div.gform_wrapper input[type=month], .blue div.gform_wrapper input[type=month], [class*="wp-block"].white div.gform_wrapper input[type=month],
  div.gform_wrapper input[type=number], .blue div.gform_wrapper input[type=number], [class*="wp-block"].white div.gform_wrapper input[type=number],
  div.gform_wrapper input[type=password], .blue div.gform_wrapper input[type=password], [class*="wp-block"].white div.gform_wrapper input[type=password],
  div.gform_wrapper input[type=search],
  div.gform_wrapper input[type=tel],
  div.gform_wrapper input[type=text],
  div.gform_wrapper input[type=time],
  div.gform_wrapper input[type=url],
  div.gform_wrapper input[type=week],
  div.gform_wrapper select,
  div.gform_wrapper textarea,
  div.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):not([class=chosen-search-input]) {
    font-size: 22px;
    line-height: 34px;
  }
}

div.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-field input[type=text] {
  padding-left: 0 !important;
}

div.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices {
  background: transparent url(img/down-chevron.svg) no-repeat calc(100%) center/10px;
}

div.gform_wrapper.gravity-theme .chosen-container .chosen-results li.highlighted {
  background-image: none;
  background: #FFF1EA;
  color: #000000;
}

div.gform_wrapper.gravity-theme .chosen-container .chosen-results li {
  color: #000000;
  font-family: "arimo", sans-serif;
  font-weight: 300;
  width: 100%;
}

@media screen and (min-width: 641px) {
  div.gform_wrapper.gravity-theme .chosen-container .chosen-results li {
    font-size: 22px;
    line-height: 34px;
  }
}

div.gform_wrapper .ginput_container_select {
  position: relative;
}

body div.gform_wrapper .ginput_complex {
  grid-row-gap: 0;
}

@media screen and (min-width: 641px) {
  body div.gform_wrapper .ginput_complex {
    grid-row-gap: 0;
  }
}

div.gform_wrapper.gravity-theme textarea {
  font-size: 18px;
  line-height: 27px;
}

@media screen and (min-width: 641px) {
  div.gform_wrapper.gravity-theme textarea {
    font-size: 22px;
    line-height: 34px;
  }
}

div.gform_wrapper .ginput_container_select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent url(img/down-chevron.svg) no-repeat calc(100%) center/10px;
  border-radius: 0;
  padding-left: 0;
  padding-right: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 18px;
  line-height: 27px;
  color: #000000;
  font-family: "arimo", sans-serif;
  font-weight: 300;
  margin-bottom: 0;
}

@media screen and (min-width: 641px) {
  div.gform_wrapper .ginput_container_select select {
    font-size: 22px;
    line-height: 34px;
    margin-bottom: 0;
  }
}

div.gform_wrapper .top_label .ginput_complex.ginput_container.ginput_container_email,
div.gform_wrapper .top_label div.ginput_complex.ginput_container.gf_name_has_1,
div.gform_wrapper .top_label div.ginput_complex.ginput_container.gf_name_has_2,
div.gform_wrapper .top_label div.ginput_complex.ginput_container.gf_name_has_3 {
  width: 100%;
}

@media screen and (min-width: 641px) {
  div.gform_wrapper .top_label .ginput_complex.ginput_container.ginput_container_email,
  div.gform_wrapper .top_label div.ginput_complex.ginput_container.gf_name_has_1,
  div.gform_wrapper .top_label div.ginput_complex.ginput_container.gf_name_has_2,
  div.gform_wrapper .top_label div.ginput_complex.ginput_container.gf_name_has_3 {
    width: 100%;
  }
}

div.gform_wrapper .ginput_complex .ginput_full,
div.gform_wrapper .ginput_complex .ginput_left,
div.gform_wrapper .ginput_complex .ginput_right {
  min-width: 0;
}

div.gform_wrapper div.ginput_complex.ginput_container.gf_name_has_2 > span {
  width: 100%;
}

@media screen and (min-width: 641px) {
  div.gform_wrapper div.ginput_complex.ginput_container.gf_name_has_2 > span {
    width: 100%;
  }
}

@media screen and (max-width: 641px) {
  .fancybox__container div.gform_wrapper .ginput_container span:not(.ginput_price) {
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 641px) {
  div.gform_wrapper .ginput_container span:not(.ginput_price) {
    margin-bottom: 0;
  }
}

div.gform_wrapper.gravity-theme .gfield.gfield--width-half,
div.gform_wrapper li.hidden_label input,
div.gform_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text] {
  margin-top: 0;
  margin-bottom: 6px;
}

@media screen and (min-width: 641px) {
  div.gform_wrapper.gravity-theme .gfield.gfield--width-half,
  div.gform_wrapper li.hidden_label input,
  div.gform_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text] {
    margin-bottom: 0px;
  }
}

div.gform_wrapper.gravity-theme .gfield.gfield--width-half {
  -ms-grid-column: span 12;
      grid-column: span 12;
  text-align: left;
}

@media screen and (min-width: 641px) {
  div.gform_wrapper.gravity-theme .gfield.gfield--width-half {
    -ms-grid-column: span 6;
        grid-column: span 6;
  }
}

@media screen and (min-width: 641px) {
  div.gform_wrapper.gravity-theme .gform_fields {
    grid-column-gap: 28px;
    grid-row-gap: 14px;
  }
}

.hero-block-wrap div.gform_wrapper.gravity-theme .gfield.gfield--width-half,
.hero-block-wrap div.gform_wrapper li.hidden_label input,
.hero-block-wrap div.gform_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text] {
  margin-top: 0;
  margin-bottom: 10px;
}

@media screen and (min-width: 641px) {
  .hero-block-wrap div.gform_wrapper.gravity-theme .gfield.gfield--width-half,
  .hero-block-wrap div.gform_wrapper li.hidden_label input,
  .hero-block-wrap div.gform_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text] {
    margin-bottom: 35px;
  }
}

.hero-block-wrap div.gform_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text] {
  margin-bottom: 25px;
}

@media screen and (min-width: 641px) {
  .hero-block-wrap div.gform_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text] {
    margin-bottom: 35px;
  }
}

@media screen and (min-width: 641px) {
  body div.gform_wrapper .top_label .gfield.gf_left_half,
  body div.gform_wrapper .gfield.gf_left_half {
    padding-right: 2.25%;
  }
}

@media screen and (min-width: 641px) {
  body div.gform_wrapper .top_label .gfield.gf_right_half,
  body div.gform_wrapper .gfield.gf_right_half {
    padding-left: 2.25%;
    padding-right: 0;
  }
}

body div.gform_wrapper ul li.gfield {
  margin-top: 0;
  margin-bottom: 0;
}

@media screen and (min-width: 641px) {
  body div.gform_wrapper ul li.gfield {
    margin-top: 0;
    margin-bottom: 0;
  }
}

div.gform_wrapper label.gfield_label {
  font-size: 18px;
  line-height: 27px;
  font-family: "arimo", sans-serif;
  font-weight: 400;
}

@media screen and (min-width: 641px) {
  div.gform_wrapper label.gfield_label {
    font-size: 20px;
    line-height: 32px;
  }
}

@media screen and (min-width: 641px) {
  div.gform_wrapper div.ginput_complex .ginput_left,
  div.gform_wrapper div.ginput_complex .ginput_right {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}

div.gform_legacy_markup_wrapper ul.gform_fields li.gfield {
  padding-right: 0;
  padding-left: 0;
}

div.gform_wrapper textarea {
  resize: none;
}

div.gform_wrapper input[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]) {
  min-height: 52px;
  width: auto;
  border: none;
}

@media only screen and (max-width: 641px) {
  div.gform_wrapper input[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]) {
    line-height: inherit !important;
    width: auto;
  }
}

div.gform_wrapper input[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]):hover {
  color: #F79A6C;
}

div.gform_wrapper .gform_heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1.375rem;
  border: none;
  text-align: center;
}

div.gform_wrapper h2.gform_title {
  font-size: 25px;
  line-height: 35px;
  margin-top: 0;
  text-transform: uppercase;
  font-family: "lunchtype24expanded_medium", sans-serif;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0;
  margin-right: 3.5%;
  margin-left: 3.5%;
  max-width: calc(100% - 30px);
}

@media screen and (min-width: 641px) {
  div.gform_wrapper h2.gform_title {
    font-size: 30px;
    line-height: 40px;
  }
}

body div.gform_wrapper .top_label div.ginput_container,
body div.gform_wrapper .top_label div.ginput_container.ginput_container_checkbox {
  margin-top: 0;
  margin-bottom: 6px;
}

@media screen and (min-width: 641px) {
  body div.gform_wrapper .top_label div.ginput_container,
  body div.gform_wrapper .top_label div.ginput_container.ginput_container_checkbox {
    margin-top: 0;
    margin-bottom: 15px;
  }
}

div.gform_wrapper.gravity-theme .gfield_checkbox label,
div.gform_wrapper.gravity-theme .gfield-choice-input + label {
  color: #000000;
  font-family: "arimo", sans-serif;
  font-size: 16px;
  font-weight: 300;
  margin-left: 0;
  position: relative;
}

@media screen and (min-width: 641px) {
  div.gform_wrapper.gravity-theme .gfield_checkbox label,
  div.gform_wrapper.gravity-theme .gfield-choice-input + label {
    font-size: 16px;
  }
}

.gfield_checkbox .gchoice {
  position: relative;
  margin-bottom: 5px;
}

@media screen and (min-width: 641px) {
  .gfield_checkbox .gchoice {
    margin-bottom: 0px;
  }
}

.gfield_checkbox .gchoice label:before {
  content: "";
  width: 17px;
  height: 17px;
  transform: translateY(2px);
  background: white;
  display: inline-block;
  margin-right: 11px;
}

@media screen and (min-width: 641px) {
  div.gform_wrapper .gfield.gf_list_2col .gfield_checkbox,
  div.gform_wrapper .gfield.gf_list_2col .gfield_radio {
    grid-column-gap: 0;
  }
}

.radio-cont {
  position: relative;
  margin-top: 5px;
}

@media screen and (min-width: 641px) {
  .radio-cont {
    margin-top: 8px;
  }
}

.radio-cont label:before,
.gfield_radio .gchoice label:before {
  content: "";
  width: 15px;
  height: 15px;
  transform: translateY(2px);
  background: #000000;
  display: inline-block;
  border-radius: 17px;
  margin-right: 12px;
}

.radio-cont input[type=radio]:checked + label:after,
.gfield_radio .gfield-choice-input:checked + label:after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 10px;
  position: absolute;
  top: 8px;
  left: 4px;
  display: inline-block;
  background: white;
}

.gfield_checkbox .gfield-choice-input:checked + label:after {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  top: 6px;
  left: 2px;
  display: inline-block;
  background: #000000;
}

.radio-cont {
  margin-right: 25px;
}

@media screen and (min-width: 641px) {
  .radio-cont {
    margin-right: 35px;
  }
}

.radio-cont label {
  font-size: 18px;
  line-height: 28px;
}

@media screen and (min-width: 768px) {
  .radio-cont label {
    font-size: 22px;
    line-height: 34px;
  }
}

.radio-cont input[type="radio"],
div.gform_wrapper.gravity-theme .gfield-choice-input {
  opacity: 0;
  position: absolute;
  width: 17px;
  height: 17px;
  top: 2px;
  left: 0;
  z-index: 2;
}

div.gform_wrapper h2.gform_title:after {
  content: "";
  width: auto;
  height: 2px;
  background: black;
}

div.gform_wrapper .gform_fields {
  grid-column-gap: 4.5%;
  grid-row-gap: 15px;
}

@media screen and (min-width: 641px) {
  div.gform_wrapper .gform_fields {
    grid-row-gap: 35px;
  }
}

@media only screen and (max-width: 641px) {
  div.gform_wrapper .ginput_complex span {
    margin-bottom: 0;
  }
}

.gform_wrapper ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-family: "arimo", sans-serif;
  line-height: 30px;
  color: #000000;
  font-size: 18px;
}

@media screen and (min-width: 641px) {
  .gform_wrapper ::-webkit-input-placeholder {
    font-size: 22px;
    line-height: 32px;
  }
}

.gform_wrapper ::-moz-placeholder {
  /* Firefox 19+ */
  font-family: "arimo", sans-serif;
  line-height: 30px;
  color: #000000;
  font-size: 18px;
}

@media screen and (min-width: 641px) {
  .gform_wrapper ::-moz-placeholder {
    font-size: 22px;
    line-height: 32px;
  }
}

.gform_wrapper :-ms-input-placeholder {
  /* IE 10+ */
  font-family: "arimo", sans-serif;
  line-height: 30px;
  color: #000000;
  font-size: 18px;
}

@media screen and (min-width: 641px) {
  .gform_wrapper :-ms-input-placeholder {
    font-size: 22px;
    line-height: 32px;
  }
}

.gform_wrapper :-moz-placeholder {
  /* Firefox 18- */
  font-family: "arimo", sans-serif;
  line-height: 30px;
  color: #000000;
  font-size: 18px;
}

@media screen and (min-width: 641px) {
  .gform_wrapper :-moz-placeholder {
    font-size: 22px;
    line-height: 32px;
  }
}

div.gform_wrapper .ginput_complex {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 35px;
  grid-row-gap: 15px;
}

@media screen and (min-width: 641px) {
  div.gform_wrapper .ginput_complex {
    grid-row-gap: 35px;
  }
}

div.gform_wrapper .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full) {
  padding-right: 0;
}

div.gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full) ~ span:not(.ginput_full) {
  padding-left: 0;
}

div.gform_wrapper .gform_footer,
div.gform_wrapper .gform_page_footer {
  padding-top: 0;
  margin-top: 20px;
}

@media screen and (min-width: 641px) {
  div.gform_wrapper .gform_footer,
  div.gform_wrapper .gform_page_footer {
    margin-top: 35px;
  }
}

.fancybox__container div.gform_wrapper .gform_heading:before,
.fancybox__container div.gform_wrapper .gform_heading:after,
.contact-section div.gform_wrapper .gform_heading:before,
.contact-section div.gform_wrapper .gform_heading:after {
  display: none;
}

.fancybox__container div.gform_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text] {
  margin-bottom: 0;
}

.fancybox__container div.gform_wrapper .gform_title,
.contact-section div.gform_wrapper .gform_title {
  text-transform: none;
  font-size: 26px;
  line-height: 36px;
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 768px) {
  .fancybox__container div.gform_wrapper .gform_title,
  .contact-section div.gform_wrapper .gform_title {
    font-size: 42px;
    line-height: 51px;
    margin-bottom: 1.95rem;
  }
}

.fancybox__container div.gform_wrapper .gform_description,
.contact-section div.gform_wrapper .gform_description {
  color: white;
  text-align: center;
  width: 100%;
  font-size: 18px;
  line-height: 30px;
  font-family: "arimo", sans-serif;
}

@media screen and (min-width: 768px) {
  .fancybox__container div.gform_wrapper .gform_description,
  .contact-section div.gform_wrapper .gform_description {
    font-size: 18px;
    line-height: 32px;
  }
}

.fancybox__container div.gform_wrapper .top_label .gfield_label,
.fancybox__container div.gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label,
.fancybox__container div.gform_wrapper ul.gfield_checkbox li label, .fancybox__container div.gform_wrapper ul.gfield_radio li label,
.contact-section div.gform_wrapper ul.gfield_checkbox li label, .contact-section div.gform_wrapper ul.gfield_radio li label,
.contact-section div.gform_wrapper div.charleft.warningTextareaInfo,
.contact-section div.gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label,
.contact-section div.gform_wrapper .top_label .gfield_label {
  color: #000000;
  font-family: "arimo", sans-serif;
  font-size: 18px;
  line-height: 29px;
  font-weight: normal;
}

@media screen and (min-width: 768px) {
  .fancybox__container div.gform_wrapper .top_label .gfield_label,
  .fancybox__container div.gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label,
  .fancybox__container div.gform_wrapper ul.gfield_checkbox li label, .fancybox__container div.gform_wrapper ul.gfield_radio li label,
  .contact-section div.gform_wrapper ul.gfield_checkbox li label, .contact-section div.gform_wrapper ul.gfield_radio li label,
  .contact-section div.gform_wrapper div.charleft.warningTextareaInfo,
  .contact-section div.gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label,
  .contact-section div.gform_wrapper .top_label .gfield_label {
    font-size: 22px;
    line-height: 34px;
  }
}

.contact-section div.gform_wrapper .gfield_required {
  color: white;
}

.contact-section div.gform_wrapper input[type=color], .contact-section div.gform_wrapper input[type=color], [class*="wp-block"].contact-section div.gform_wrapper input[type=color],
.contact-section div.gform_wrapper input[type=date], .contact-section div.gform_wrapper input[type=date], [class*="wp-block"].contact-section div.gform_wrapper input[type=date],
.contact-section div.gform_wrapper input[type=datetime-local], .contact-section div.gform_wrapper input[type=datetime-local], [class*="wp-block"].contact-section div.gform_wrapper input[type=datetime-local],
.contact-section div.gform_wrapper input[type=datetime], .contact-section div.gform_wrapper input[type=datetime], [class*="wp-block"].contact-section div.gform_wrapper input[type=datetime],
.contact-section div.gform_wrapper input[type=email], .contact-section div.gform_wrapper input[type=email], [class*="wp-block"].contact-section div.gform_wrapper input[type=email],
.contact-section div.gform_wrapper input[type=month], .contact-section div.gform_wrapper input[type=month], [class*="wp-block"].contact-section div.gform_wrapper input[type=month],
.contact-section div.gform_wrapper input[type=number], .contact-section div.gform_wrapper input[type=number], [class*="wp-block"].contact-section div.gform_wrapper input[type=number],
.contact-section div.gform_wrapper input[type=password], .contact-section div.gform_wrapper input[type=password], [class*="wp-block"].contact-section div.gform_wrapper input[type=password],
.contact-section div.gform_wrapper input[type=search],
.contact-section div.gform_wrapper input[type=tel],
.contact-section div.gform_wrapper input[type=text],
.contact-section div.gform_wrapper input[type=time],
.contact-section div.gform_wrapper input[type=url],
.contact-section div.gform_wrapper input[type=week],
.contact-section div.gform_wrapper select,
.contact-section div.gform_wrapper textarea,
.contact-section div.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  color: #000000;
}

div.gform_wrapper ul.gfield_checkbox li {
  -ms-flex: 0 50%;
      flex: 0 50%;
}

@media screen and (min-width: 768px) {
  div.gform_wrapper ul.gfield_checkbox li {
    -ms-flex: 0 25%;
        flex: 0 25%;
  }
}

body div.gform_wrapper ul.gfield_checkbox label {
  position: relative;
  display: block;
  padding-left: 25px;
  line-height: 20px;
}

@media screen and (min-width: 768px) {
  body div.gform_wrapper ul.gfield_checkbox label {
    padding-left: 35px;
    line-height: 35px;
  }
}

div.gform_wrapper ul.gfield_checkbox label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  width: 20px;
  height: 20px;
}

@media screen and (min-width: 768px) {
  div.gform_wrapper ul.gfield_checkbox label:before {
    width: 30px;
    height: 30px;
  }
}

div.gform_wrapper ul.gfield_checkbox input:checked + label:after {
  content: "";
  position: absolute;
  background: #F79A6C;
  width: 16px;
  height: 16px;
  left: 2px;
  top: 2px;
}

@media screen and (min-width: 768px) {
  div.gform_wrapper ul.gfield_checkbox input:checked + label:after {
    width: 20px;
    height: 20px;
    left: 5px;
    top: 5px;
  }
}

div.gform_wrapper ul.gfield_checkbox li input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

div.gform_wrapper .gfield_checkbox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.fancybox__container .gform_wrapper.gravity-theme .ginput_container_address span {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  padding-left: .9804%;
  padding-right: .9804%;
  margin-bottom: 15px !important;
}

.fancybox__container .gform_wrapper.gravity-theme .gfield-choice-input + label {
  color: white;
}

div.gform_wrapper h3 {
  color: white;
  font-size: 24px;
  line-height: 28px;
}

@media screen and (min-width: 768px) {
  div.gform_wrapper h3 {
    font-size: 28px;
    line-height: 34px;
  }
}

div.gform_wrapper .gsection {
  margin-top: 25px;
}

@media screen and (min-width: 768px) {
  div.gform_wrapper .gsection {
    margin-top: 35px;
  }
}

div.gform_wrapper h4 {
  color: white;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  div.gform_wrapper h4 {
    font-size: 24px;
    line-height: 28px;
  }
}

.fancybox__container .gform_wrapper.gravity-theme .top_label .gsection_description,
div.gform_wrapper p {
  color: white;
}

input[type="range"] {
  background: white;
  background-image: linear-gradient(#F79A6C, #F79A6C);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  border: none;
  border-radius: 6px;
  padding: 0;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: transparent;
  border-radius: 6px;
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: transparent;
  border-radius: 6px;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 28px;
  width: 28px;
  border-radius: 28px;
  background: #F79A6C;
  cursor: pointer;
  margin-top: -12px;
  /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
}

input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 28px;
  width: 28px;
  border-radius: 28px;
  background: #F79A6C;
  cursor: pointer;
}

input[type=number] {
  height: 56px;
}

.submit-wrap {
  margin-top: 25px;
}

@media screen and (min-width: 768px) {
  .submit-wrap {
    margin-top: 40px;
  }
}

div.gform_wrapper .gform_drop_area {
  background: white;
  padding: 15px;
  border: none;
  position: relative;
}

div.gform_wrapper .gform_drop_area:before {
  content: "";
  display: block;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  position: absolute;
  border-radius: 5px;
  border: 1px dashed #4d4d4d;
  top: 15px;
  left: 15px;
}

div.gform_wrapper .gform_drop_area .gform_drop_instructions {
  padding: 5px;
}

div.gform_wrapper .gform_fileupload_rules {
  color: #000000;
}

div.gform_wrapper .gform_drop_area button.gform_button_select_files {
  margin: 10px;
}

.gform_confirmation_message {
  text-align: center;
  color: #000000;
  text-transform: capitalize;
  font-size: 26px;
  line-height: 32px;
  font-family: "lunchtype24expanded_medium", sans-serif;
}

div.gform_wrapper.gravity-theme .gfield.gfield--width-full {
  text-align: left;
}

.site-footer {
  padding-top: 30px;
  background: #002D5D;
}

@media screen and (min-width: 768px) {
  .site-footer {
    padding-top: 4.125rem;
  }
}

.site-footer .wrapper {
  max-width: 1320px;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .site-footer .wrapper {
    padding-bottom: 70px;
  }
}

.site-footer .custom-logo {
  max-width: 55%;
  margin: 0 auto 15px;
}

@media screen and (min-width: 768px) {
  .site-footer .custom-logo {
    max-width: 170px;
    margin: 0 0 15px;
  }
}

.site-footer .wrapper .col {
  width: 100%;
  margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  .site-footer .wrapper .col {
    -ms-flex: 0 calc(33.3333% - 2.5rem);
        flex: 0 calc(33.3333% - 2.5rem);
    margin-top: 0;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.site-footer .wrapper .col-locations {
  width: 100%;
  margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  .site-footer .wrapper .col-locations {
    -ms-flex: 0 calc(75% - 2.5rem);
        flex: 0 calc(75% - 2.5rem);
    margin-top: 0;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.site-footer li.menu-item.nav-button a {
  display: inline-block;
}

.site-footer li.menu-item.nav-button a:visited {
  color: white;
}

.col-locations {
  display: -ms-grid;
  display: grid;
  list-style-type: none;
  margin: 0;
  padding: 0;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

@media screen and (min-width: 768px) {
  .col-locations {
    grid-auto-flow: column;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: (1fr)[2];
        grid-template-rows: repeat(2, 1fr);
  }
}

.site-footer .contact-col {
  display: block;
}

.site-footer .menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.site-footer .menu-tertiary-footer-container {
  width: 100%;
}

.site-footer .menu-tertiary-footer-container .menu {
  width: 100%;
}

.footer-copyright {
  text-align: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-top: 1px solid white;
  padding-top: 25px;
  padding-bottom: 25px;
}

.site-footer .footer-copyright p a {
  color: white;
  text-decoration: none;
}

ul.social {
  padding: 0;
  margin: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style-type: none;
  margin-top: 15px;
  -ms-flex-pack: center;
      justify-content: center;
}

@media screen and (min-width: 768px) {
  ul.social {
    -ms-flex-pack: center;
        justify-content: center;
    margin-top: 25px;
  }
}

ul.social a {
  font-size: 35px;
  text-decoration: none;
}

ul.social a:hover {
  color: #0054B1;
}

ul.social a:visited {
  color: white;
}

ul.social li {
  -ms-flex: 0 15%;
      flex: 0 15%;
  color: transparent;
}

.site-footer .logo-columns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
}

a.footer-home {
  width: 167px;
  height: 190px;
  background-color: red;
  display: block;
  text-indent: -10000px;
  margin: 0 auto;
  background: url(img/h1h2-footer-logo.svg) no-repeat center center/100%;
}

.site-footer .footer-links .menu,
.site-footer .footer-links .menu ul {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
}

.site-footer .footer-links .menu li {
  width: 100%;
  text-align: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media screen and (min-width: 768px) {
  .site-footer .footer-links .menu li {
    width: calc(33.33333% - 2.5rem);
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.logo-columns .inner-col {
  -ms-flex: 0 50%;
      flex: 0 50%;
}

.site-footer .col {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .site-footer .col {
    text-align: center;
  }
}

.site-footer .menu {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.site-footer .menu .sub-menu {
  padding: 0;
  margin-left: 0;
  margin-right: 0;
  list-style-type: none;
  margin-bottom: 15px;
  margin-top: 5px;
}

.site-footer .menu a {
  text-decoration: none;
  font-family: "arimo", sans-serif;
  font-size: 17px;
  line-height: 26px;
}

.site-footer .menu-item.menu-item-has-children a {
  font-weight: 700;
}

.site-footer .menu-item .sub-menu a {
  font-weight: 400;
}

.site-footer .menu ul a:hover {
  color: white;
  text-decoration: underline;
}

.site-footer .contact-link {
  display: block;
}

.site-footer p,
.site-footer li {
  font-family: "arimo", sans-serif;
  font-weight: 400;
  line-height: 33px;
  margin-top: 0;
  font-size: 18px;
}

@media screen and (min-width: 768px) {
  .site-footer p,
  .site-footer li {
    font-size: 22px;
    margin-top: 1rem;
  }
}

.site-footer li {
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .site-footer li {
    margin-bottom: 0;
  }
}

.site-footer p:first-of-type {
  margin-top: 0;
}

.site-footer p:last-of-type {
  margin-bottom: 0;
}

.site-footer address {
  font-style: normal;
  margin-bottom: 0;
  margin-top: 15px;
}

.site-footer address p {
  margin-bottom: 0;
  margin-top: 0;
}

.site-footer * {
  color: white;
}

.site-footer h4 {
  margin-top: 0;
  margin-bottom: 0;
}

.site-footer .inner-col {
  -ms-flex: 0 calc(50% - 15px);
      flex: 0 calc(50% - 15px);
}

@media screen and (min-width: 768px) {
  .site-footer .inner-col {
    -ms-flex: 0 50%;
        flex: 0 50%;
  }
}

.footer-links {
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  list-style-type: none;
  margin-top: 40px;
  border-top: 1px solid white;
  padding-top: 20px;
}

@media screen and (min-width: 768px) {
  .footer-links {
    padding-top: 20px;
    margin-top: 50px;
  }
}

.footer-links a {
  text-decoration: none;
  color: white;
  font-family: "lunchtype24expanded_medium", sans-serif;
}

.site-footer .grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  grid-row-gap: initial;
  grid-column-gap: initial;
  gap: 15px 15px;
}

@media screen and (min-width: 768px) {
  .site-footer .grid {
    grid-row-gap: 5px;
    grid-column-gap: 20px;
    display: -ms-grid;
    display: grid;
  }
}

.site-footer p a {
  text-decoration: none;
}

.site-footer p a:visited,
.site-footer p a:hover {
  color: white;
}

.site-footer address p,
.site-footer .contact-link,
.site-footer .menu-item a {
  color: white;
  font-weight: 400;
  text-decoration: none;
  font-family: "arimo", sans-serif;
  font-size: 18px;
}

@media screen and (min-width: 1080px) {
  .site-footer address p,
  .site-footer .contact-link,
  .site-footer .menu-item a {
    font-size: 22px;
    line-height: 25px;
  }
}

.social-icons li {
  margin-left: 7.5px;
  margin-right: 7.5px;
}

.social-icons {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
}

.site-footer .location {
  margin-bottom: 25px;
  font-size: 18px;
}

@media screen and (min-width: 768px) {
  .site-footer .location {
    margin-bottom: 40px;
    font-size: 20px;
  }
}

.site-footer .location:not(.socials) a {
  text-decoration: none;
  font-family: "arimo", sans-serif;
}

.social-icons .social .fab {
  border-radius: 5px;
  color: white;
  text-decoration: none;
  padding: 0px 5px;
  line-height: 43px;
  font-size: 40px;
}

.site-footer .location a:hover {
  color: white;
}

.site-footer .location h4 {
  font-family: "lunchtype24expanded_medium", sans-serif;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0;
}

@media screen and (min-width: 768px) {
  .site-footer .location h4 {
    font-size: 20px;
    line-height: 25px;
  }
}

.page-template-page-boilerplate .entry-header,
.single .entry-header {
  width: 100%;
  position: relative;
  -ms-flex-align: stretch;
      align-items: stretch;
}

.single .entry-header.no-image {
  min-height: inherit;
}

@media screen and (min-width: 768px) {
  .single .entry-header.no-image {
    min-height: inherit;
  }
}

.single .entry-header.no-image .content-wrap {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.single .post-content {
  max-width: 1200px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .single .post-content {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}

.single .hero-block-content {
  background: white;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .single .hero-block-content {
    width: 100%;
  }
}

.single .entry-header.no-image .hero-block-wrap {
  padding-left: 0;
  padding-right: 0;
}

.single .entry-header.no-image .wrapper {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.single .entry-header.no-image .hero-block-content {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.single .post-thumbnail {
  width: 100%;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  min-height: 325px;
}

.single .post-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.single .content-wrap.small-image .hero-block-content {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .single .content-wrap.small-image .hero-block-content {
    width: 100%;
  }
}

.single .post-thumbnail.small-image {
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

.single .post-thumbnail.small-image img {
  max-width: 1200px;
}

.single .post-thumbnail.small-image + .content-wrap {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .single .post-thumbnail.small-image + .content-wrap {
    margin-left: -100%;
    margin-top: 2rem;
    position: relative;
  }
}

.single .content-wrap.small-image .wrapper {
  max-width: 1200px;
  padding-left: 0;
  padding-right: 0;
}

@media screen and (min-width: 768px) {
  .single .content-wrap.small-image .wrapper {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.single .entry-header .wrapper {
  max-width: 1680px;
  margin: 0 auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.single .entry-header .post-thumbnail.large-image + .content-wrap {
  width: 100%;
  text-align: center;
  padding-top: 1.5rem;
}

@media screen and (min-width: 768px) {
  .single .entry-header .post-thumbnail.large-image + .content-wrap {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    z-index: 2;
    padding-top: 0;
    text-align: center;
  }
}

.entry-header .entry-meta {
  color: #002D5D;
  text-transform: uppercase;
  font-family: "lunchtype24expanded_medium", sans-serif;
  display: inline-block;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.2px;
  font-weight: 500;
  border-bottom: 2px solid #002D5D;
  margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
  .entry-header .entry-meta {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.25px;
    font-weight: 500;
    margin-bottom: 1.25rem;
  }
}

.single h1.header-title, .single body.blog .entry-header h1, body.blog .entry-header .single h1,
.single body.archive .entry-header h1, body.archive .entry-header .single h1 {
  margin-top: 0;
  margin-bottom: 0;
  text-transform: capitalize;
}

.single .wp-block-image figure.aligncenter {
  width: 100%;
}

.single .wp-block-image figure.aligncenter img {
  display: block;
  width: 100%;
  height: auto;
}

.single .wp-block-image figcaption {
  text-align: center;
  color: #1B2C58;
  margin-top: 0;
  font-family: "arimo", sans-serif;
  font-size: 16px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.entry-footer .extra-wrap {
  max-width: 1200px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin: 0 auto;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.entry-footer .extra-wrap .col-6 {
  width: 100%;
  text-align: center;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .entry-footer .extra-wrap .col-6 {
    width: 50%;
    margin-bottom: 0;
  }
}

.entry-footer .form-wrapper {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.entry-footer .gform_heading {
  text-align: center;
  font-family: "arimo", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.2px;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .entry-footer .gform_heading {
    font-size: 32px;
    letter-spacing: 0.25px;
    margin-bottom: 2.875rem;
  }
}

.entry-footer .gform_wrapper {
  width: 100%;
}

.entry-footer .form-wrapper form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: stretch;
      align-items: stretch;
}

.entry-footer .gform_body {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .entry-footer .gform_body {
    width: 82.5%;
  }
}

h3.footer-header {
  text-transform: uppercase;
  font-family: "arimo", sans-serif;
  font-size: 18px;
  color: white;
  letter-spacing: 0.35px;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  h3.footer-header {
    font-size: 22px;
    letter-spacing: 0.5px;
  }
}

.entry-footer header.section-header {
  padding-top: 2rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .entry-footer header.section-header {
    padding-top: 3rem;
  }
}

.entry-footer header.section-header .header-title {
  text-transform: uppercase;
}

.entry-footer div.gform_wrapper div.gform_footer {
  width: 100%;
  margin-top: 15px;
  padding-bottom: 0;
  margin-bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
}

@media screen and (min-width: 768px) {
  .entry-footer div.gform_wrapper div.gform_footer {
    width: 17.5%;
    padding-left: 30px;
    margin-top: 0;
  }
}

.entry-footer .gform_description {
  color: white;
  text-align: center;
}

.entry-footer .gform_wrapper.gravity-theme input[type="submit"] {
  border-radius: 0 !important;
  width: 100%;
  margin-bottom: 0;
}

.tax-links {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.tax-link a {
  text-decoration: none;
  color: #002D5D;
  text-transform: capitalize;
  font-family: "arimo", sans-serif;
  display: block;
  border-radius: 5px;
  background: white;
  font-size: 16px;
  line-height: 17px;
  padding: 7px 10px;
  letter-spacing: 0.2px;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .tax-link a {
    padding: 13px 17px;
    display: block;
    font-size: 22px;
    line-height: 22px;
    letter-spacing: 0.25px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
  }
}

.entry-footer div.gform_wrapper.gravity-theme .gform_fields {
  grid-column-gap: 15px;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

@media screen and (min-width: 768px) {
  .entry-footer div.gform_wrapper.gravity-theme .gform_fields {
    grid-column-gap: 30px;
    -ms-grid-columns: (1fr)[12];
        grid-template-columns: repeat(12, 1fr);
  }
}

.entry-footer .wrapper.form-wrapper {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media screen and (min-width: 768px) {
  .entry-footer .wrapper.form-wrapper {
    padding-top: 8.125rem;
    padding-bottom: 8.125rem;
  }
}

.entry-footer .wrapper {
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .entry-footer .wrapper {
    padding-top: 8.125rem;
    padding-bottom: 8.125rem;
  }
}

.entry-footer div.gform_wrapper.gravity-theme .ginput_complex {
  grid-column-gap: 15px;
}

@media screen and (min-width: 768px) {
  .entry-footer div.gform_wrapper.gravity-theme .ginput_complex {
    grid-column-gap: 30px;
  }
}

@media screen and (min-width: 768px) {
  .entry-footer .gform_wrapper.gravity-theme .gfield:nth-child(odd) {
    grid-column: 1/9;
  }
}

@media screen and (min-width: 768px) {
  .entry-footer .gform_wrapper.gravity-theme .gfield:nth-child(even) {
    grid-column: 9/13;
  }
}

.entry-footer .resources-grid {
  padding-bottom: 4rem;
  border-bottom: 1px solid #002D5D;
}

@media screen and (min-width: 768px) {
  .entry-footer .resources-grid {
    padding-bottom: 8.125rem;
  }
}

.video-cont button.play {
  position: absolute;
  top: 50%;
  left: 50%;
  background: url(img/video-button.svg) no-repeat center center/40px;
  width: 100%;
  height: 100%;
  text-indent: -10000px;
  border: none;
  border-radius: 0;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
  transition-property: opacity;
  transition-duration: .2s;
}

@media screen and (min-width: 768px) {
  .video-cont button.play {
    width: 100%;
    height: 100%;
    background: url(img/video-button.svg) no-repeat center center/150px;
  }
}

.featured-video .video-cont video {
  display: block;
  width: 100%;
  height: auto;
}

.post-type-archive-gs_team h1.gs-arc-mem-name, .single-gs_team h1.gs-sin-mem-name {
  color: #4d4d4d;
}

.single .gs-containeer .gs_team {
  margin-top: 8.75rem;
}

@media screen and (min-width: 768px) {
  .single .gs-containeer .gs_team {
    margin-top: 8.75rem;
  }
}

/*


Single Video


*/
.single-videos .entry-header .entry-meta {
  color: white;
  border-bottom: white;
}

@media screen and (min-width: 768px) {
  .single.single-videos .entry-header {
    min-height: 400px;
  }
}

.single.single-videos .post-content {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  max-width: 1120px;
}

.single-videos .hero-block-content {
  margin: 0 auto;
  text-align: center;
  background: none;
}

.single-videos .hero-block-content .header-title {
  color: white;
}

.single-videos .featured-video {
  max-width: 1120px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin: 0 auto;
  width: 100%;
}

.single-videos.single .entry-header .content-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  padding-bottom: 3.5rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .single-videos.single .entry-header .content-wrap {
    position: relative;
    padding-bottom: 8.25rem;
    top: inherit;
    left: inherit;
    transform: none;
  }
}

.single-videos .entry-header {
  background: #008FA0;
}

.single-videos .post-content {
  padding-top: 0;
}

.featured-video .video-cont {
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
}

@media screen and (min-width: 768px) {
  .featured-video .video-cont {
    margin-top: -8.125rem;
  }
}

.featured-video .video-cont iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.featured-video .video-cont.playing button.play {
  opacity: 0;
  pointer-events: none;
}

.video-cont button.play {
  position: absolute;
  top: 50%;
  left: 50%;
  background: url(img/video-button.svg) no-repeat center center/40px;
  width: 100%;
  height: 100%;
  text-indent: -10000px;
  border: none;
  border-radius: 0;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
  transition-property: opacity;
  transition-duration: .2s;
}

@media screen and (min-width: 768px) {
  .video-cont button.play {
    width: 100%;
    height: 100%;
    background: url(img/video-button.svg) no-repeat center center/150px;
  }
}

.featured-video .video-cont video {
  display: block;
  width: 100%;
  height: auto;
}

body.archive .resources-grid .section-header {
  display: none;
}

body.blog .entry-header,
body.archive .entry-header {
  min-height: 175px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  position: relative;
  overflow: hidden;
  background: #1B2C58;
}

@media screen and (min-width: 768px) {
  body.blog .entry-header,
  body.archive .entry-header {
    min-height: 200px;
  }
}

body.blog .entry-header .wrapper,
body.archive .entry-header .wrapper {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  max-width: 1120px;
  margin: 0 auto;
}

body.blog .entry-header h1,
body.archive .entry-header h1 {
  font-family: "lunchtype24expanded_medium", sans-serif;
  text-transform: uppercase;
  color: white;
  margin-top: 0;
  position: relative;
  margin-bottom: 0;
}

body.blog .resources-grid .block-wrapper,
body.archive .resources-grid .block-wrapper {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.resources-grid .button-wrapper .inner-wrap {
  max-width: 1680px;
  margin: 0 auto;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

@media screen and (min-width: 768px) {
  .resources-grid .button-wrapper .inner-wrap {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }
}

.grid-default {
  display: -ms-inline-grid;
  display: inline-grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
}

@media screen and (min-width: 768px) {
  .grid-default {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }
}

.share-content a svg {
  max-width: 35px;
}

@media screen and (min-width: 768px) {
  .share-content a svg {
    max-width: 50px;
  }
}

.page-template-page-boilerplate .entry-content {
  max-width: 800px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
}

.page-template-page-boilerplate .entry-header .content-wrap {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  text-align: center;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

@media screen and (min-width: 768px) {
  .page-template-page-boilerplate .entry-header .content-wrap {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.page-template-page-boilerplate .entry-header {
  margin-top: 5.125rem;
}

@media screen and (min-width: 768px) {
  .page-template-page-boilerplate .entry-header {
    margin-top: 5.625rem;
  }
}

.page-template-page-boilerplate .header-title {
  margin-top: 0;
  margin-bottom: 0;
}

.single .disclosure {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #F8AE2B;
}

@media screen and (min-width: 768px) {
  .single .disclosure {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
  }
}

.gs-team--fixed-height .single-member {
  max-height: 450px !important;
}

.gs-team--fixed-height .single-member .gs_team_image__wrapper img {
  -o-object-position: top;
     object-position: top;
}

div.gs-member-name a {
  font-weight: bold;
  font-family: "arimo", sans-serif;
}

@media screen and (min-width: 768px) {
  div.gs-member-name a {
    font-size: 23px;
    line-height: 36px;
  }
}

div.gs_tm_theme23 .single-member-div {
  margin-bottom: 45px;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.gs_team_image__wrapper {
  height: 100%;
}

.prev-next-navigation .next a:hover, .prev-next-navigation .previous a:hover {
  background: #002D5D;
  border: 1px solid #002D5D;
}

.wp-block-table table {
  margin-bottom: 0;
}

.wp-block-table table th {
  font-family: "lunchtype24expanded_medium", sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 0.5rem;
}

@media screen and (min-width: 768px) {
  .wp-block-table table th {
    font-size: 24px;
    padding: 1rem;
  }
}

.wp-block-table table td {
  font-family: "arimo", sans-serif;
  padding: 0.5rem 1rem;
  font-weight: 300;
  line-height: 27px;
  font-size: 16px;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .wp-block-table table td {
    padding: 1.25rem 1rem;
    font-size: 18px;
    line-height: 29px;
    white-space: normal;
  }
}

.wp-block-table table td > a,
.wp-block-table table td > img {
  display: inline-block;
  margin-right: 2.5%;
}

.wp-block-table table td img {
  max-width: 55px;
}

@media screen and (min-width: 768px) {
  .wp-block-table table td img {
    max-width: inherit;
  }
}

.wp-block-table table {
  margin-top: 2rem;
}

.wp-block-table {
  border-collapse: collapse;
}

.wp-block-table tr {
  border-bottom: 1px solid black;
}

.wp-block-table td,
.wp-block-table th {
  text-align: left;
}

.wp-block-table th {
  background: #3bc24a;
  color: white;
}

td.year-sum {
  font-weight: bold;
  background: #002D5D;
}

.single-portfolio .post-content {
  max-width: 1680px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media screen and (min-width: 768px) {
  .single-portfolio .post-content {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    padding-top: 8.125rem;
  }
}

.single-portfolio .wp-block-gallery {
  margin-top: 4rem;
}

@media screen and (min-width: 768px) {
  .single-portfolio .wp-block-gallery {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    margin-top: 7rem;
  }
}

.single-portfolio h1.header-title, .single-portfolio body.blog .entry-header h1, body.blog .entry-header .single-portfolio h1,
.single-portfolio body.archive .entry-header h1, body.archive .entry-header .single-portfolio h1 {
  text-transform: uppercase;
  background: #F0F0F0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .single-portfolio h1.header-title, .single-portfolio body.blog .entry-header h1, body.blog .entry-header .single-portfolio h1,
  .single-portfolio body.archive .entry-header h1, body.archive .entry-header .single-portfolio h1 {
    padding-top: 3.125rem;
    padding-bottom: 3rem;
  }
}

.single-portfolio h1.header-title + p, .single-portfolio body.blog .entry-header h1 + p, body.blog .entry-header .single-portfolio h1 + p, .single-portfolio body.archive .entry-header h1 + p, body.archive .entry-header .single-portfolio h1 + p {
  background: #F0F0F0;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  margin-top: 0;
  padding-bottom: 1.85rem;
  text-align: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media screen and (min-width: 768px) {
  .single-portfolio h1.header-title + p, .single-portfolio body.blog .entry-header h1 + p, body.blog .entry-header .single-portfolio h1 + p, .single-portfolio body.archive .entry-header h1 + p, body.archive .entry-header .single-portfolio h1 + p {
    padding-bottom: 3rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .single-portfolio .post-content p,
  .single-portfolio .post-content > ul {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}

.single .blocks-gallery-item img {
  border-radius: 5px;
}

@media screen and (min-width: 600px) {
  .single .blocks-gallery-grid.columns-3 .blocks-gallery-image,
  .single .blocks-gallery-grid.columns-3 .blocks-gallery-item,
  .single .wp-block-gallery.columns-3 .blocks-gallery-image,
  .single .wp-block-gallery.columns-3 .blocks-gallery-item {
    width: calc(33.33333% - 1.333333333em);
    margin-right: 2em;
    margin-bottom: 2em;
  }
}

@media screen and (min-width: 600px) {
  .single .wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n),
  .single .wp-block-gallery .blocks-gallery-item:last-child {
    margin-right: 0;
  }
}

.single-portfolio .footer-header {
  color: #3bc24a;
  text-align: center;
}

.fancybox__container {
  border-radius: 5px;
  overflow-y: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media screen and (min-width: 768px) {
  .fancybox__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.fancybox__container .wrapper {
  max-width: 1080px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .fancybox__container .wrapper {
    padding: 1.25rem;
  }
}

.fancybox__container iframe {
  border: none;
}

.fancybox__container video {
  width: 100%;
}

div.wprevpro_t1_DIV_2 {
  box-shadow: none;
  padding-right: 20px;
  padding-left: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media screen and (min-width: 768px) {
  div.wprevpro_t1_DIV_2 {
    padding-left: 42px;
    padding-right: 42px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

div.wprevpro_t1_DIV_2:after {
  filter: none;
}

.wprevpro_star_imgs_T1 {
  display: block;
}

div.wprevpro_t1_DIV_2:before {
  display: none;
}

div.wprevpro_t1_DIV_2 p {
  font-family: "arimo", sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #000000;
  font-style: normal;
}

@media screen and (min-width: 768px) {
  div.wprevpro_t1_DIV_2 p {
    font-size: 24px;
    line-height: 32px;
  }
}

.wprevpro button.slickwprev-arrow {
  z-index: 998;
}

.wprevpro_star_imgs span.svgicons {
  width: 20px !important;
  height: 20px !important;
  background: #EDA321 !important;
  color: #EDA321;
  margin-right: 3px !important;
}

.wprs_rd_more {
  color: #BF5B32 !important;
}

.wprevpro_t1_DIV_2:after {
  border-right: 44px solid transparent !important;
  border-top: 44px solid white !important;
  bottom: -44px !important;
  width: 44px !important;
}

div.wprevpro_t1_SPAN_5 {
  padding-top: 30px;
}

div.wprev_preview_tcolor2_T1 > div.wprevpro_t1_rname {
  color: #002D5D;
  font-family: "arimo", sans-serif;
  font-weight: 900;
  text-transform: none;
  font-size: 18px;
  line-height: 22px;
}

@media screen and (min-width: 768px) {
  div.wprev_preview_tcolor2_T1 > div.wprevpro_t1_rname {
    font-size: 24px;
    line-height: 28px;
  }
}

button.slickwprev-prev {
  right: -20px;
}

@media screen and (min-width: 768px) {
  button.slickwprev-prev {
    left: -40px;
  }
}

button.slickwprev-next {
  right: -20px;
}

@media screen and (min-width: 768px) {
  button.slickwprev-next {
    right: -40px;
  }
}

button.slickwprev-prev,
button.slickwprev-next {
  width: 29px;
  height: 29px;
}

@media screen and (min-width: 768px) {
  button.slickwprev-prev,
  button.slickwprev-next {
    width: 38px;
    height: 38px;
  }
}

button.slickwprev-prev:before,
button.slickwprev-next:before {
  font-size: 0;
  width: 29px;
  height: 29px;
  background: #BAC2C8;
  border-radius: 29px;
  opacity: 1;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  button.slickwprev-prev:before,
  button.slickwprev-next:before {
    width: 38px;
    height: 38px;
    border-radius: 38px;
  }
}

button.slickwprev-next:before {
  background: #BAC2C8 url(img/right-chevron-1.svg) no-repeat calc(50% + 1px) center/9px;
}

@media screen and (min-width: 768px) {
  button.slickwprev-next:before {
    background: #BAC2C8 url(img/right-chevron-1.svg) no-repeat calc(50% + 1px) center/10px;
  }
}

button.slickwprev-prev:before {
  background: #BAC2C8 url(img/left-chevron-1.svg) no-repeat calc(50% + 1px) center/9px;
}

@media screen and (min-width: 768px) {
  button.slickwprev-prev:before {
    background: #BAC2C8 url(img/left-chevron-1.svg) no-repeat calc(50% + 1px) center/10px;
  }
}

.wprevpro .indrevdiv {
  border: none;
}

.wprevpro span.wprevpro_t1_DIV_title {
  display: none;
}

.single-member-alt a {
  text-decoration: none;
}

#gs_team_area_1 h3.gs-member-name {
  background: transparent;
  color: #1B2C58;
  text-transform: none;
  padding: 0;
  margin-top: 15px;
  margin-bottom: 0;
  letter-spacing: 0.35px;
}

.single-member-alt h4.gs-member-desig-alt {
  margin-top: 0;
  font-weight: normal;
  font-size: 16px;
  color: #008FA0;
}

.gs_team_filter .gs-filter-single-item.gs-col-lg-3 {
  box-sizing: border-box;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.gs-team--fixed-height .single-member .gs_team_image__wrapper img {
  transition-property: all;
}

.gs_team_area .gs-team-filter-cats li {
  line-height: 22px;
}

.single-member .single-member-name-desig {
  display: none;
}

.gs-filter-single-item:hover .gs_team_image__wrapper img {
  filter: none;
}

.single-member:hover .gs_team_overlay {
  display: none;
}

.gs_team_area {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media screen and (min-width: 768px) {
  .gs_team_area {
    padding-left: 0;
    padding-right: 0;
  }
}

.single-member:hover .single-member-name-desig {
  display: block;
  left: 0;
  transform: translateX(0);
}

#gs_team_area_1 .single-member .gs-member-name {
  color: white;
  background: #BF5B32 !important;
  font-family: "arimo", sans-serif;
  font-size: 18px;
}

.single-member:hover .gs-member-name {
  transform: none !important;
}

div.gs_team_popup {
  border-radius: 0 !important;
}

.shortcode-section .header-intro-block h3 {
  margin-top: 0;
}

.shortcode-section .wpex.horizontal-timeline {
  overflow: hidden;
}

ul.gs-team-filter-cats, ul.search-filter {
  margin-top: 0 !important;
}

div.gs_tm_theme12 .single-member {
  margin-bottom: 40px;
}

div.gs_team_area .gs-containeer .gs-roow {
  margin-left: 0;
  margin-right: 0;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}

div.gs-team-popup--default .gs-member-desc ul {
  padding-left: 20px;
  margin-left: 0;
}

div.gs-team-popup--default .gs-member-desc ul li {
  margin-bottom: 15px;
}

div.gs-team-popup--default .gs-member-desc ul li,
div.gs-team-popup--default .gs-member-desc {
  color: #000000;
  font-family: "arimo", sans-serif;
  font-size: 18px;
  line-height: 24px;
}

@media screen and (min-width: 768px) {
  div.gs-team-popup--default .gs-member-desc ul li,
  div.gs-team-popup--default .gs-member-desc {
    font-size: 22px;
    line-height: 32px;
  }
}

.mfp-content--container {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

div.mfp-gsteam .mfp-container .mfp-arrow {
  background: rgba(255, 255, 255, 0.3) !important;
}

div.gs-team-popup--default .mfp-container .mfp-content .gs_team_popup .mfp-content--container .gs_team_popup_details {
  padding-left: 0 !important;
}

div.gs-team-popup--default .mfp-content--container .gs_team_popup_details {
  width: 100%;
  padding-left: 0 !important;
}

@media screen and (min-width: 768px) {
  div.gs-team-popup--default .mfp-content--container .gs_team_popup_details {
    width: 70%;
  }
}

div.gs-team-popup--default .mfp-content--container .gs_team_popup_left__wrapper {
  width: 100%;
}

@media screen and (min-width: 768px) {
  div.gs-team-popup--default .mfp-content--container .gs_team_popup_left__wrapper {
    width: 30%;
    padding-right: 20px;
  }
}

@media (min-width: 1025px) {
  .gs_team_area div.gs-col-lg-3 {
    padding-right: 20px !important;
    padding-left: 20px !important;
    width: 25%;
    max-width: 25%;
  }
}

/*--------------------------------------------------------------
 Custom Blocks
--------------------------------------------------------------*/
.hero__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: stretch;
      align-items: stretch;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .hero__inner {
    position: relative;
  }
}

.hero-block-image {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

[class*="wp-block"][data-scrolled='1'] .img-container:after {
  background: rgba(255, 255, 255, 0.01);
  -webkit-backdrop-filter: blur(0.15px);
          backdrop-filter: blur(0.15px);
}

[class*="wp-block"][data-scrolled='2'] .img-container:after {
  background: rgba(255, 255, 255, 0.02);
  -webkit-backdrop-filter: blur(0.3px);
          backdrop-filter: blur(0.3px);
}

[class*="wp-block"][data-scrolled='3'] .img-container:after {
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(0.45px);
          backdrop-filter: blur(0.45px);
}

[class*="wp-block"][data-scrolled='4'] .img-container:after {
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(0.6px);
          backdrop-filter: blur(0.6px);
}

[class*="wp-block"][data-scrolled='5'] .img-container:after {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(0.75px);
          backdrop-filter: blur(0.75px);
}

[class*="wp-block"][data-scrolled='6'] .img-container:after {
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(0.9px);
          backdrop-filter: blur(0.9px);
}

[class*="wp-block"][data-scrolled='7'] .img-container:after {
  background: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(1.05px);
          backdrop-filter: blur(1.05px);
}

[class*="wp-block"][data-scrolled='8'] .img-container:after {
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(1.2px);
          backdrop-filter: blur(1.2px);
}

[class*="wp-block"][data-scrolled='9'] .img-container:after {
  background: rgba(255, 255, 255, 0.09);
  -webkit-backdrop-filter: blur(1.35px);
          backdrop-filter: blur(1.35px);
}

[class*="wp-block"][data-scrolled='10'] .img-container:after {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(1.5px);
          backdrop-filter: blur(1.5px);
}

[class*="wp-block"][data-scrolled='11'] .img-container:after {
  background: rgba(255, 255, 255, 0.11);
  -webkit-backdrop-filter: blur(1.65px);
          backdrop-filter: blur(1.65px);
}

[class*="wp-block"][data-scrolled='12'] .img-container:after {
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(1.8px);
          backdrop-filter: blur(1.8px);
}

[class*="wp-block"][data-scrolled='13'] .img-container:after {
  background: rgba(255, 255, 255, 0.13);
  -webkit-backdrop-filter: blur(1.95px);
          backdrop-filter: blur(1.95px);
}

[class*="wp-block"][data-scrolled='14'] .img-container:after {
  background: rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(2.1px);
          backdrop-filter: blur(2.1px);
}

[class*="wp-block"][data-scrolled='15'] .img-container:after {
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(2.25px);
          backdrop-filter: blur(2.25px);
}

[class*="wp-block"][data-scrolled='16'] .img-container:after {
  background: rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(2.4px);
          backdrop-filter: blur(2.4px);
}

[class*="wp-block"][data-scrolled='17'] .img-container:after {
  background: rgba(255, 255, 255, 0.17);
  -webkit-backdrop-filter: blur(2.55px);
          backdrop-filter: blur(2.55px);
}

[class*="wp-block"][data-scrolled='18'] .img-container:after {
  background: rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(2.7px);
          backdrop-filter: blur(2.7px);
}

[class*="wp-block"][data-scrolled='19'] .img-container:after {
  background: rgba(255, 255, 255, 0.19);
  -webkit-backdrop-filter: blur(2.85px);
          backdrop-filter: blur(2.85px);
}

[class*="wp-block"][data-scrolled='20'] .img-container:after {
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

[class*="wp-block"][data-scrolled='21'] .img-container:after {
  background: rgba(255, 255, 255, 0.21);
  -webkit-backdrop-filter: blur(3.15px);
          backdrop-filter: blur(3.15px);
}

[class*="wp-block"][data-scrolled='22'] .img-container:after {
  background: rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(3.3px);
          backdrop-filter: blur(3.3px);
}

[class*="wp-block"][data-scrolled='23'] .img-container:after {
  background: rgba(255, 255, 255, 0.23);
  -webkit-backdrop-filter: blur(3.45px);
          backdrop-filter: blur(3.45px);
}

[class*="wp-block"][data-scrolled='24'] .img-container:after {
  background: rgba(255, 255, 255, 0.24);
  -webkit-backdrop-filter: blur(3.6px);
          backdrop-filter: blur(3.6px);
}

[class*="wp-block"][data-scrolled='25'] .img-container:after {
  background: rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(3.75px);
          backdrop-filter: blur(3.75px);
}

[class*="wp-block"][data-scrolled='26'] .img-container:after {
  background: rgba(255, 255, 255, 0.26);
  -webkit-backdrop-filter: blur(3.9px);
          backdrop-filter: blur(3.9px);
}

[class*="wp-block"][data-scrolled='27'] .img-container:after {
  background: rgba(255, 255, 255, 0.27);
  -webkit-backdrop-filter: blur(4.05px);
          backdrop-filter: blur(4.05px);
}

[class*="wp-block"][data-scrolled='28'] .img-container:after {
  background: rgba(255, 255, 255, 0.28);
  -webkit-backdrop-filter: blur(4.2px);
          backdrop-filter: blur(4.2px);
}

[class*="wp-block"][data-scrolled='29'] .img-container:after {
  background: rgba(255, 255, 255, 0.29);
  -webkit-backdrop-filter: blur(4.35px);
          backdrop-filter: blur(4.35px);
}

[class*="wp-block"][data-scrolled='30'] .img-container:after {
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(4.5px);
          backdrop-filter: blur(4.5px);
}

[class*="wp-block"][data-scrolled='31'] .img-container:after {
  background: rgba(255, 255, 255, 0.31);
  -webkit-backdrop-filter: blur(4.65px);
          backdrop-filter: blur(4.65px);
}

[class*="wp-block"][data-scrolled='32'] .img-container:after {
  background: rgba(255, 255, 255, 0.32);
  -webkit-backdrop-filter: blur(4.8px);
          backdrop-filter: blur(4.8px);
}

[class*="wp-block"][data-scrolled='33'] .img-container:after {
  background: rgba(255, 255, 255, 0.33);
  -webkit-backdrop-filter: blur(4.95px);
          backdrop-filter: blur(4.95px);
}

[class*="wp-block"][data-scrolled='34'] .img-container:after {
  background: rgba(255, 255, 255, 0.34);
  -webkit-backdrop-filter: blur(5.1px);
          backdrop-filter: blur(5.1px);
}

[class*="wp-block"][data-scrolled='35'] .img-container:after {
  background: rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(5.25px);
          backdrop-filter: blur(5.25px);
}

[class*="wp-block"][data-scrolled='36'] .img-container:after {
  background: rgba(255, 255, 255, 0.36);
  -webkit-backdrop-filter: blur(5.4px);
          backdrop-filter: blur(5.4px);
}

[class*="wp-block"][data-scrolled='37'] .img-container:after {
  background: rgba(255, 255, 255, 0.37);
  -webkit-backdrop-filter: blur(5.55px);
          backdrop-filter: blur(5.55px);
}

[class*="wp-block"][data-scrolled='38'] .img-container:after {
  background: rgba(255, 255, 255, 0.38);
  -webkit-backdrop-filter: blur(5.7px);
          backdrop-filter: blur(5.7px);
}

[class*="wp-block"][data-scrolled='39'] .img-container:after {
  background: rgba(255, 255, 255, 0.39);
  -webkit-backdrop-filter: blur(5.85px);
          backdrop-filter: blur(5.85px);
}

[class*="wp-block"][data-scrolled='40'] .img-container:after {
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

[class*="wp-block"][data-scrolled='41'] .img-container:after {
  background: rgba(255, 255, 255, 0.41);
  -webkit-backdrop-filter: blur(6.15px);
          backdrop-filter: blur(6.15px);
}

[class*="wp-block"][data-scrolled='42'] .img-container:after {
  background: rgba(255, 255, 255, 0.42);
  -webkit-backdrop-filter: blur(6.3px);
          backdrop-filter: blur(6.3px);
}

[class*="wp-block"][data-scrolled='43'] .img-container:after {
  background: rgba(255, 255, 255, 0.43);
  -webkit-backdrop-filter: blur(6.45px);
          backdrop-filter: blur(6.45px);
}

[class*="wp-block"][data-scrolled='44'] .img-container:after {
  background: rgba(255, 255, 255, 0.44);
  -webkit-backdrop-filter: blur(6.6px);
          backdrop-filter: blur(6.6px);
}

[class*="wp-block"][data-scrolled='45'] .img-container:after {
  background: rgba(255, 255, 255, 0.45);
  -webkit-backdrop-filter: blur(6.75px);
          backdrop-filter: blur(6.75px);
}

[class*="wp-block"][data-scrolled='46'] .img-container:after {
  background: rgba(255, 255, 255, 0.46);
  -webkit-backdrop-filter: blur(6.9px);
          backdrop-filter: blur(6.9px);
}

[class*="wp-block"][data-scrolled='47'] .img-container:after {
  background: rgba(255, 255, 255, 0.47);
  -webkit-backdrop-filter: blur(7.05px);
          backdrop-filter: blur(7.05px);
}

[class*="wp-block"][data-scrolled='48'] .img-container:after {
  background: rgba(255, 255, 255, 0.48);
  -webkit-backdrop-filter: blur(7.2px);
          backdrop-filter: blur(7.2px);
}

[class*="wp-block"][data-scrolled='49'] .img-container:after {
  background: rgba(255, 255, 255, 0.49);
  -webkit-backdrop-filter: blur(7.35px);
          backdrop-filter: blur(7.35px);
}

[class*="wp-block"][data-scrolled='50'] .img-container:after {
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
}

[class*="wp-block"][data-scrolled='51'] .img-container:after {
  background: rgba(255, 255, 255, 0.51);
  -webkit-backdrop-filter: blur(7.65px);
          backdrop-filter: blur(7.65px);
}

[class*="wp-block"][data-scrolled='52'] .img-container:after {
  background: rgba(255, 255, 255, 0.52);
  -webkit-backdrop-filter: blur(7.8px);
          backdrop-filter: blur(7.8px);
}

[class*="wp-block"][data-scrolled='53'] .img-container:after {
  background: rgba(255, 255, 255, 0.53);
  -webkit-backdrop-filter: blur(7.95px);
          backdrop-filter: blur(7.95px);
}

[class*="wp-block"][data-scrolled='54'] .img-container:after {
  background: rgba(255, 255, 255, 0.54);
  -webkit-backdrop-filter: blur(8.1px);
          backdrop-filter: blur(8.1px);
}

[class*="wp-block"][data-scrolled='55'] .img-container:after {
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(8.25px);
          backdrop-filter: blur(8.25px);
}

[class*="wp-block"][data-scrolled='56'] .img-container:after {
  background: rgba(255, 255, 255, 0.56);
  -webkit-backdrop-filter: blur(8.4px);
          backdrop-filter: blur(8.4px);
}

[class*="wp-block"][data-scrolled='57'] .img-container:after {
  background: rgba(255, 255, 255, 0.57);
  -webkit-backdrop-filter: blur(8.55px);
          backdrop-filter: blur(8.55px);
}

[class*="wp-block"][data-scrolled='58'] .img-container:after {
  background: rgba(255, 255, 255, 0.58);
  -webkit-backdrop-filter: blur(8.7px);
          backdrop-filter: blur(8.7px);
}

[class*="wp-block"][data-scrolled='59'] .img-container:after {
  background: rgba(255, 255, 255, 0.59);
  -webkit-backdrop-filter: blur(8.85px);
          backdrop-filter: blur(8.85px);
}

[class*="wp-block"][data-scrolled='60'] .img-container:after {
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(9px);
          backdrop-filter: blur(9px);
}

[class*="wp-block"][data-scrolled='61'] .img-container:after {
  background: rgba(255, 255, 255, 0.61);
  -webkit-backdrop-filter: blur(9.15px);
          backdrop-filter: blur(9.15px);
}

[class*="wp-block"][data-scrolled='62'] .img-container:after {
  background: rgba(255, 255, 255, 0.62);
  -webkit-backdrop-filter: blur(9.3px);
          backdrop-filter: blur(9.3px);
}

[class*="wp-block"][data-scrolled='63'] .img-container:after {
  background: rgba(255, 255, 255, 0.63);
  -webkit-backdrop-filter: blur(9.45px);
          backdrop-filter: blur(9.45px);
}

[class*="wp-block"][data-scrolled='64'] .img-container:after {
  background: rgba(255, 255, 255, 0.64);
  -webkit-backdrop-filter: blur(9.6px);
          backdrop-filter: blur(9.6px);
}

[class*="wp-block"][data-scrolled='65'] .img-container:after {
  background: rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(9.75px);
          backdrop-filter: blur(9.75px);
}

[class*="wp-block"][data-scrolled='66'] .img-container:after {
  background: rgba(255, 255, 255, 0.66);
  -webkit-backdrop-filter: blur(9.9px);
          backdrop-filter: blur(9.9px);
}

[class*="wp-block"][data-scrolled='67'] .img-container:after {
  background: rgba(255, 255, 255, 0.67);
  -webkit-backdrop-filter: blur(10.05px);
          backdrop-filter: blur(10.05px);
}

[class*="wp-block"][data-scrolled='68'] .img-container:after {
  background: rgba(255, 255, 255, 0.68);
  -webkit-backdrop-filter: blur(10.2px);
          backdrop-filter: blur(10.2px);
}

[class*="wp-block"][data-scrolled='69'] .img-container:after {
  background: rgba(255, 255, 255, 0.69);
  -webkit-backdrop-filter: blur(10.35px);
          backdrop-filter: blur(10.35px);
}

[class*="wp-block"][data-scrolled='70'] .img-container:after {
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(10.5px);
          backdrop-filter: blur(10.5px);
}

[class*="wp-block"][data-scrolled='71'] .img-container:after {
  background: rgba(255, 255, 255, 0.71);
  -webkit-backdrop-filter: blur(10.65px);
          backdrop-filter: blur(10.65px);
}

[class*="wp-block"][data-scrolled='72'] .img-container:after {
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(10.8px);
          backdrop-filter: blur(10.8px);
}

[class*="wp-block"][data-scrolled='73'] .img-container:after {
  background: rgba(255, 255, 255, 0.73);
  -webkit-backdrop-filter: blur(10.95px);
          backdrop-filter: blur(10.95px);
}

[class*="wp-block"][data-scrolled='74'] .img-container:after {
  background: rgba(255, 255, 255, 0.74);
  -webkit-backdrop-filter: blur(11.1px);
          backdrop-filter: blur(11.1px);
}

[class*="wp-block"][data-scrolled='75'] .img-container:after {
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(11.25px);
          backdrop-filter: blur(11.25px);
}

[class*="wp-block"][data-scrolled='76'] .img-container:after {
  background: rgba(255, 255, 255, 0.76);
  -webkit-backdrop-filter: blur(11.4px);
          backdrop-filter: blur(11.4px);
}

[class*="wp-block"][data-scrolled='77'] .img-container:after {
  background: rgba(255, 255, 255, 0.77);
  -webkit-backdrop-filter: blur(11.55px);
          backdrop-filter: blur(11.55px);
}

[class*="wp-block"][data-scrolled='78'] .img-container:after {
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(11.7px);
          backdrop-filter: blur(11.7px);
}

[class*="wp-block"][data-scrolled='79'] .img-container:after {
  background: rgba(255, 255, 255, 0.79);
  -webkit-backdrop-filter: blur(11.85px);
          backdrop-filter: blur(11.85px);
}

[class*="wp-block"][data-scrolled='80'] .img-container:after {
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}

[class*="wp-block"][data-scrolled='81'] .img-container:after {
  background: rgba(255, 255, 255, 0.81);
  -webkit-backdrop-filter: blur(12.15px);
          backdrop-filter: blur(12.15px);
}

[class*="wp-block"][data-scrolled='82'] .img-container:after {
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(12.3px);
          backdrop-filter: blur(12.3px);
}

[class*="wp-block"][data-scrolled='83'] .img-container:after {
  background: rgba(255, 255, 255, 0.83);
  -webkit-backdrop-filter: blur(12.45px);
          backdrop-filter: blur(12.45px);
}

[class*="wp-block"][data-scrolled='84'] .img-container:after {
  background: rgba(255, 255, 255, 0.84);
  -webkit-backdrop-filter: blur(12.6px);
          backdrop-filter: blur(12.6px);
}

[class*="wp-block"][data-scrolled='85'] .img-container:after {
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(12.75px);
          backdrop-filter: blur(12.75px);
}

[class*="wp-block"][data-scrolled='86'] .img-container:after {
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(12.9px);
          backdrop-filter: blur(12.9px);
}

[class*="wp-block"][data-scrolled='87'] .img-container:after {
  background: rgba(255, 255, 255, 0.87);
  -webkit-backdrop-filter: blur(13.05px);
          backdrop-filter: blur(13.05px);
}

[class*="wp-block"][data-scrolled='88'] .img-container:after {
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(13.2px);
          backdrop-filter: blur(13.2px);
}

[class*="wp-block"][data-scrolled='89'] .img-container:after {
  background: rgba(255, 255, 255, 0.89);
  -webkit-backdrop-filter: blur(13.35px);
          backdrop-filter: blur(13.35px);
}

[class*="wp-block"][data-scrolled='90'] .img-container:after {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(13.5px);
          backdrop-filter: blur(13.5px);
}

[class*="wp-block"][data-scrolled='91'] .img-container:after {
  background: rgba(255, 255, 255, 0.91);
  -webkit-backdrop-filter: blur(13.65px);
          backdrop-filter: blur(13.65px);
}

[class*="wp-block"][data-scrolled='92'] .img-container:after {
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(13.8px);
          backdrop-filter: blur(13.8px);
}

[class*="wp-block"][data-scrolled='93'] .img-container:after {
  background: rgba(255, 255, 255, 0.93);
  -webkit-backdrop-filter: blur(13.95px);
          backdrop-filter: blur(13.95px);
}

[class*="wp-block"][data-scrolled='94'] .img-container:after {
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(14.1px);
          backdrop-filter: blur(14.1px);
}

[class*="wp-block"][data-scrolled='95'] .img-container:after {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(14.25px);
          backdrop-filter: blur(14.25px);
}

[class*="wp-block"][data-scrolled='96'] .img-container:after {
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(14.4px);
          backdrop-filter: blur(14.4px);
}

[class*="wp-block"][data-scrolled='97'] .img-container:after {
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(14.55px);
          backdrop-filter: blur(14.55px);
}

[class*="wp-block"][data-scrolled='98'] .img-container:after {
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(14.7px);
          backdrop-filter: blur(14.7px);
}

[class*="wp-block"][data-scrolled='99'] .img-container:after {
  background: rgba(255, 255, 255, 0.99);
  -webkit-backdrop-filter: blur(14.85px);
          backdrop-filter: blur(14.85px);
}

[class*="wp-block"][data-scrolled='100'] .img-container:after {
  background: white;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}

.hero .hero-asset {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero background {
  background-image: linear-gradient(to bottom, rgba(3, 89, 173, 0.65) 17.5%, transparent 17.5%);
}

.hero .img-container:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.wp-block.hero {
  max-width: 100%;
  width: 100%;
  margin-bottom: 0;
  position: relative;
  min-height: 450px;
  height: 100vh;
}

@media screen and (min-width: 768px) {
  .wp-block.hero {
    min-height: 800px;
  }
}

.hero .media-controls {
  position: absolute;
  z-index: 2;
}

.hero {
  position: relative;
  min-height: 450px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: stretch;
      align-items: stretch;
}

@media screen and (min-width: 768px) {
  .hero {
    min-height: 800px;
  }
}

.hero .img-container {
  position: relative;
}

.hero .block-wrapper {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
}

@media screen and (min-width: 768px) {
  .hero .block-wrapper {
    position: static;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-align: stretch;
        align-items: stretch;
  }
}

.hero-block-image-wrap, .page-template-page-boilerplate .entry-header,
.single .entry-header {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  min-height: 450px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .hero-block-image-wrap, .page-template-page-boilerplate .entry-header,
  .single .entry-header {
    min-height: 800px;
  }
}

.hero h1 {
  margin-top: 0;
  color: white;
  font-size: 34px;
  line-height: 42px;
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .hero h1 {
    font-size: 67px;
    line-height: 88px;
  }
}

.hero p {
  color: white;
}

.hero .description p {
  font-size: 20px;
  line-height: 29px;
  color: white;
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .hero .description p {
    font-size: 25px;
    line-height: 35px;
  }
}

.hero-block-image:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-block-image:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: .7;
  background: url(img/h1h2-watermark.svg) no-repeat center center/cover;
  width: 33vw;
  height: 27.5vw;
  z-index: 2;
  pointer-event: none;
}

@media screen and (min-width: 768px) {
  .hero-block-image:before {
    width: 60vw;
    height: 50vw;
    max-width: 246px;
    max-height: 200px;
  }
}

.hero .description a {
  color: white;
}

.hero-block-content {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .hero-block-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
  }
}

.hero-block-form {
  width: 100%;
}

@media screen and (min-width: 1201px) {
  .hero-block-form {
    width: 33.33333%;
    margin-left: 16.66667%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .hero-block-form {
    width: 50%;
  }
}

.hero-block-image-wrap .img-container, .page-template-page-boilerplate .entry-header .img-container, .single .entry-header .img-container {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
}

.hero__inner .content-wrap {
  position: relative;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  width: 100%;
  max-width: 1680px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 2;
  margin-top: 40px;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .hero__inner .content-wrap {
    position: relative;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    width: 100%;
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

.hero-block-wrap {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .hero-block-wrap {
    width: 50%;
  }
}

.wp-block.header-intro-block {
  max-width: 100%;
  width: 100%;
}

.header-intro-block .block-wrapper {
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media screen and (min-width: 768px) {
  .header-intro-block .block-wrapper {
    padding-right: 0;
    padding-left: 0;
  }
}

.header-intro-block h3 {
  margin-bottom: 15px;
}

.header-intro-block h3 + h2 {
  margin-top: 0;
}

.header-intro-block .block-content > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block {
  max-width: 100%;
}

.header-intro-block .header-title {
  text-transform: uppercase;
}

.header-intro-block h2 {
  margin-bottom: 25px;
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .header-intro-block h2 {
    margin-bottom: 45px;
  }
}

.header-intro-block ul {
  text-align: center;
  list-style-type: none;
  max-width: 950px;
  margin: 0 auto;
}

.header-intro-block {
  padding-top: 3.875rem;
  padding-bottom: 3.875rem;
}

@media screen and (min-width: 768px) {
  .header-intro-block {
    padding-bottom: 6.75rem;
    padding-top: 8rem;
  }
}

.header-intro-block .block-content .wp-block-buttons + p {
  margin-top: 35px;
}

@media screen and (min-width: 768px) {
  .header-intro-block .block-content .wp-block-buttons + p {
    margin-top: 65px;
  }
}

.header-intro-block .block-content p:last-of-type {
  margin-bottom: 0;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link {
  background: #1B2C58;
  border-radius: 0 !important;
}

.header-intro-block .wp-block-social-links {
  margin-top: 30px;
  -ms-flex-pack: center;
      justify-content: center;
}

.header-intro-block .es-widget {
  margin-top: 25px;
}

@media screen and (min-width: 768px) {
  .header-intro-block .es-widget {
    margin-top: 55px;
  }
}

.header-intro-block .block-content h1,
.header-intro-block .block-content h2,
.header-intro-block .block-content h3,
.header-intro-block .block-content h4,
.header-intro-block .block-content h5,
.header-intro-block .block-content h6,
.header-intro-block .block-content p {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.header-intro-block .block-content {
  margin: 0 auto;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .header-intro-block .block-content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.header-intro-block .block-wrapper.with-bg {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media screen and (min-width: 768px) {
  .header-intro-block .block-wrapper.with-bg {
    padding-top: 55px;
    padding-bottom: 55px;
    padding-left: 70px;
    padding-right: 70px;
  }
}

.editor-styles-wrapper .header-intro-block .wp-block-buttons,
.header-intro-block .wp-block-buttons {
  margin-top: 35px;
}

@media screen and (min-width: 768px) {
  .editor-styles-wrapper .header-intro-block .wp-block-buttons,
  .header-intro-block .wp-block-buttons {
    margin-top: 55px;
  }
}

.wp-block.text-card {
  max-width: 100%;
}

.text-card {
  width: 100%;
  text-align: center;
  position: relative;
  margin-bottom: 0;
  text-decoration: none;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: stretch;
      align-items: stretch;
  -ms-flex-pack: center;
      justify-content: center;
  background: linear-gradient(to bottom, transparent 45px, white 0);
  border-bottom: 6px solid #0359AD;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .text-card {
    margin-bottom: 0;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
    background: linear-gradient(to bottom, transparent 80px, white 0);
  }
}

.text-card .block-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: stretch;
      align-items: stretch;
}

.text-card .block-wrapper .block-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
}

.text-card .content-card p:last-of-type {
  margin-bottom: 0;
}

.text-card .wp-block-buttons {
  margin-top: auto;
}

.text-card .img-container {
  width: 100%;
}

.icon-wrap {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.text-card h1,
.text-card h2,
.text-card h3,
.text-card h4,
.text-card h5,
.text-card h6 {
  margin-top: 10px;
  margin-bottom: 0;
  text-transform: none;
  font-family: "arimo", sans-serif;
  color: #0054B1;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .text-card h1,
  .text-card h2,
  .text-card h3,
  .text-card h4,
  .text-card h5,
  .text-card h6 {
    margin-top: 15px;
  }
}

.text-card h3 {
  font-size: 18px;
  line-height: 27px;
  margin-top: 20px;
  color: #0054B1;
}

@media screen and (min-width: 768px) {
  .text-card h3 {
    font-size: 26px;
    line-height: 31px;
    margin-top: 45px;
  }
}

.text-card p:first-of-type {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .text-card p:first-of-type {
    margin-top: 15px;
  }
}

.text-card.width-100 {
  -ms-grid-column: 1;
      grid-column-start: 1;
  grid-column-end: 3;
}

.columns-3 .text-card.width-100 {
  -ms-grid-column: 1;
      grid-column-start: 1;
  grid-column-end: 4;
}

.text-card .block-buttons {
  margin-top: 25px;
}

@media screen and (min-width: 768px) {
  .text-card .block-buttons {
    margin-top: 35px;
  }
}

.icon-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%;
  left: 0;
  top: 0;
}

.icon-icon {
  width: 100%;
  height: 90px;
  border: none;
  max-width: 90px;
  border-radius: 200px;
  text-align: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

@media screen and (min-width: 768px) {
  .icon-icon {
    height: 160px;
    max-width: 160px;
  }
}

.text-card .upload-icon,
.text-card .icon-icon svg {
  max-width: 56px;
  width: 100%;
  max-height: 50px;
  height: auto;
}

.section-block.green .text-card .icon-icon,
.section-block.lime-green .text-card .icon-icon {
  color: white;
}

.section-block.green .text-card .icon-icon svg,
.section-block.lime-green .text-card .icon-icon svg {
  color: white;
}

.wp-block.text-cards-grid {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.text-cards-grid .cta .block-wrapper {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.header-intro-block + .text-cards-grid {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .header-intro-block + .text-cards-grid {
    margin-top: 0;
  }
}

.text-cards-grid {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-bottom: 3.125rem;
}

@media screen and (min-width: 768px) {
  .text-cards-grid {
    padding-bottom: 6.25rem;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.columns-group + .text-cards-grid {
  margin-top: 3.125rem;
}

@media screen and (min-width: 768px) {
  .columns-group + .text-cards-grid {
    margin-top: 6.25rem;
  }
}

.text-cards-grid .cta .wp-block-buttons {
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: 100%;
}

.text-cards-grid + .shortcode-section .header-intro-block {
  padding-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .text-cards-grid + .shortcode-section .header-intro-block {
    padding-top: 3.75rem;
  }
}

.text-cards-grid > .block-wrapper {
  max-width: 1680px;
  padding-left: 0;
  padding-right: 0;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .text-cards-grid > .block-wrapper {
    padding-left: 45px;
    padding-right: 45px;
  }
}

.text-cards-grid .header-intro-block h2 {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .text-cards-grid .header-intro-block h2 {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1201px) {
  .wp-block.text-cards-grid.columns-3 .section-header,
  .text-cards-grid:not(.wp-block).columns-3 .section-header,
  .text-cards-grid:not(.wp-block).columns-3 .header-intro-block,
  .wp-block.text-cards-grid.columns-3 .header-intro-block {
    -ms-grid-column: 1;
        grid-column-start: 1;
    grid-column-end: 4;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .wp-block.text-cards-grid.columns-3 .section-header,
  .text-cards-grid:not(.wp-block).columns-3 .section-header,
  .text-cards-grid:not(.wp-block).columns-3 .header-intro-block,
  .wp-block.text-cards-grid.columns-3 .header-intro-block {
    -ms-grid-column: 1;
        grid-column-start: 1;
    grid-column-end: 3;
  }
}

.text-cards-grid .header-intro-block {
  padding-bottom: 0;
}

@media screen and (min-width: 768px) {
  .text-cards-grid .header-intro-block {
    padding-bottom: 6.75rem;
  }
}

@media screen and (min-width: 1201px) {
  .text-cards-grid .section-header,
  .text-cards-grid .header-intro-block {
    -ms-grid-column: 1;
        grid-column-start: 1;
    grid-column-end: 3;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .text-cards-grid .section-header,
  .text-cards-grid .header-intro-block {
    -ms-grid-column: 1;
        grid-column-start: 1;
    grid-column-end: 3;
  }
}

@media screen and (min-width: 768px) {
  .text-cards-grid .section-header,
  .text-cards-grid .header-intro-block {
    padding-bottom: 0;
  }
}

.wp-block.text-cards-grid > .block-wrapper > .block-content > .block-editor-inner-blocks > .block-editor-block-list__layout,
.text-cards-grid:not(.wp-block) > .block-wrapper > .block-content {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-row-gap: 35px;
  grid-column-gap: 15px;
}

@media screen and (min-width: 1201px) {
  .wp-block.text-cards-grid > .block-wrapper > .block-content > .block-editor-inner-blocks > .block-editor-block-list__layout,
  .text-cards-grid:not(.wp-block) > .block-wrapper > .block-content {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-row-gap: 55px;
    grid-column-gap: 55px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .wp-block.text-cards-grid > .block-wrapper > .block-content > .block-editor-inner-blocks > .block-editor-block-list__layout,
  .text-cards-grid:not(.wp-block) > .block-wrapper > .block-content {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-row-gap: 45px;
    grid-column-gap: 45px;
  }
}

.wp-block.text-cards-grid.columns-3 > .block-wrapper > .block-content > .block-editor-inner-blocks > .block-editor-block-list__layout,
.text-cards-grid:not(.wp-block).columns-3 > .block-wrapper > .block-content {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-row-gap: 35px;
  grid-column-gap: 15px;
}

@media screen and (min-width: 1201px) {
  .wp-block.text-cards-grid.columns-3 > .block-wrapper > .block-content > .block-editor-inner-blocks > .block-editor-block-list__layout,
  .text-cards-grid:not(.wp-block).columns-3 > .block-wrapper > .block-content {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    grid-row-gap: 55px;
    grid-column-gap: 55px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .wp-block.text-cards-grid.columns-3 > .block-wrapper > .block-content > .block-editor-inner-blocks > .block-editor-block-list__layout,
  .text-cards-grid:not(.wp-block).columns-3 > .block-wrapper > .block-content {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-row-gap: 45px;
    grid-column-gap: 45px;
  }
}

.text-cards-grid .cta .content p {
  color: #1B2C58;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}

@media screen and (min-width: 768px) {
  .text-cards-grid .cta .content p {
    font-size: 26px;
    line-height: 32px;
  }
}

.text-cards-grid .cta .content-footer p:not(:empty) {
  border-top: 1px solid #ccc;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .text-cards-grid .cta .content-footer p:not(:empty) {
    margin-top: 2rem;
  }
}

.text-cards-grid .cta .content-footer p {
  color: #1B2C58;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  font-style: italic;
}

@media screen and (min-width: 768px) {
  .text-cards-grid .cta .content-footer p {
    font-size: 18px;
    line-height: 24px;
  }
}

.text-cards-grid .text-card + .header-intro-block {
  padding-top: 0;
}

@media screen and (min-width: 768px) {
  .text-cards-grid .text-card + .header-intro-block {
    padding-top: 0;
  }
}

.wp-block.image-columns {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.image-columns {
  width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}

@media screen and (min-width: 768px) {
  .image-columns {
    padding-top: 6.75rem;
    padding-bottom: 6.75rem;
  }
}

.columns-group.wp-block {
  max-width: 100%;
}

.columns-group .header-intro-block {
  padding-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .columns-group .header-intro-block {
    padding-bottom: 2.5rem;
  }
}

.columns-group .image-columns {
  padding-top: 0;
}

.image-columns + .image-columns {
  padding-top: 0;
}

@media screen and (min-width: 768px) {
  .image-columns + .image-columns {
    padding-top: 0;
  }
}

.image-columns .block-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .image-columns .block-wrapper {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.image-columns > .block-wrapper > .block-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
}

.image-columns .faq:last-of-type {
  margin-bottom: 0;
}

.image-columns .content-columns {
  width: 100%;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) and (max-width: 1080px) {
  .image-columns .content-columns {
    width: 62.5%;
    padding-left: 2.5rem;
  }
}

@media screen and (min-width: 1080px) and (max-width: 1200px) {
  .image-columns .content-columns {
    width: 55%;
    padding-left: 2.5rem;
  }
}

@media screen and (min-width: 1200px) {
  .image-columns .content-columns {
    width: 50%;
    padding-left: 2.5rem;
  }
}

.image-columns .image-col {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) and (max-width: 1080px) {
  .image-columns .image-col {
    width: calc(37.5% - 15px);
    max-width: calc(37.5% - 15px);
  }
}

@media screen and (min-width: 1080px) and (max-width: 1200px) {
  .image-columns .image-col {
    width: calc(45% - 20px);
    max-width: calc(45% - 20px);
  }
}

@media screen and (min-width: 1200px) {
  .image-columns .image-col {
    width: calc(50% - 36px);
    max-width: calc(50% - 36px);
  }
}

.img-container img {
  display: block;
  margin: 0 auto;
  position: relative;
}

.image-columns.img-right .content-columns {
  margin-top: 25px;
}

@media screen and (min-width: 768px) {
  .image-columns.img-right .content-columns {
    padding-left: 0;
    padding-right: 1.25rem;
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .image-columns.img-right.no-ds .content-columns {
    padding-left: 1.25rem;
  }
}

.image-columns .image-col {
  position: relative;
}

@media screen and (min-width: 768px) and (max-width: 1080px) {
  .image-columns.img-right .image-col {
    margin-right: 15px;
  }
}

@media screen and (min-width: 1080px) and (max-width: 1200px) {
  .image-columns.img-right .image-col {
    margin-right: 20px;
  }
}

@media screen and (min-width: 1200px) {
  .image-columns.img-right .image-col {
    margin-right: 36px;
  }
}

.image-columns.img-left.animate-complete .image-col:before {
  left: initial;
  opacity: 1;
}

@media screen and (min-width: 768px) and (max-width: 1080px) {
  .image-columns.img-left.animate-complete .image-col:before {
    right: 15px;
  }
}

@media screen and (min-width: 1080px) and (max-width: 1200px) {
  .image-columns.img-left.animate-complete .image-col:before {
    right: 20px;
  }
}

@media screen and (min-width: 1200px) {
  .image-columns.img-left.animate-complete .image-col:before {
    right: 34px;
  }
}

.image-columns.img-right.animate-complete .image-col:before {
  left: initial;
  opacity: 1;
}

@media screen and (min-width: 768px) and (max-width: 1080px) {
  .image-columns.img-right.animate-complete .image-col:before {
    right: -15px;
  }
}

@media screen and (min-width: 1080px) and (max-width: 1200px) {
  .image-columns.img-right.animate-complete .image-col:before {
    right: -20px;
  }
}

@media screen and (min-width: 1200px) {
  .image-columns.img-right.animate-complete .image-col:before {
    right: -34px;
  }
}

.image-columns.img-left .image-col:before {
  content: "";
  position: absolute;
  background: #0054B1;
  height: 100%;
  opacity: 0;
  transition-duration: 0.75s;
  transition-property: left, right, opacity;
}

@media screen and (min-width: 768px) and (max-width: 1080px) {
  .image-columns.img-left .image-col:before {
    width: 100%;
    top: 15px;
    right: 0;
    left: inherit;
  }
}

@media screen and (min-width: 1080px) and (max-width: 1200px) {
  .image-columns.img-left .image-col:before {
    width: 100%;
    top: 20px;
    right: 0;
    left: inherit;
  }
}

@media screen and (min-width: 1200px) {
  .image-columns.img-left .image-col:before {
    width: 100%;
    top: 34px;
    left: inherit;
    right: 0;
  }
}

.image-columns.img-right .image-col:before {
  content: "";
  position: absolute;
  background: #0054B1;
  height: 100%;
  opacity: 0;
  transition-duration: 0.75s;
  transition-property: left, right, opacity;
}

@media screen and (min-width: 768px) and (max-width: 1080px) {
  .image-columns.img-right .image-col:before {
    width: 100%;
    top: 15px;
    right: 0;
    left: inherit;
  }
}

@media screen and (min-width: 1080px) and (max-width: 1200px) {
  .image-columns.img-right .image-col:before {
    width: 100%;
    top: 20px;
    right: 0;
    left: inherit;
  }
}

@media screen and (min-width: 1200px) {
  .image-columns.img-right .image-col:before {
    width: 100%;
    top: 34px;
    left: inherit;
    right: 0;
  }
}

.image-columns.no-ds .image-col {
  box-shadow: none;
}

.image-columns .image-comp {
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .image-columns .image-comp {
    margin-bottom: 0;
  }
}

.image-columns .content-columns br {
  display: block;
}

@media screen and (min-width: 395px) and (max-width: 768px) {
  .image-columns .content-columns br {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 875px) {
  .image-columns .content-columns br {
    display: block;
  }
}

@media screen and (min-width: 875px) and (max-width: 1080px) {
  .image-columns .content-columns br {
    display: block;
  }
}

@media screen and (min-width: 1080px) and (max-width: 1200px) {
  .image-columns .content-columns br {
    display: block;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1680px) {
  .image-columns .content-columns br {
    display: none;
  }
}

@media screen and (min-width: 1680px) {
  .image-columns .content-columns br {
    display: block;
  }
}

.image-columns .wrap > *:first-child {
  margin-top: 0;
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .image-columns .wrap > *:first-child {
    margin-bottom: 20px;
  }
}

.image-columns .wrap h1 {
  font-size: 32px;
  line-height: 44px;
  letter-spacing: 0.4px;
}

@media screen and (min-width: 768px) {
  .image-columns .wrap h1 {
    font-size: 40px;
    line-height: 53px;
    letter-spacing: 0.5px;
  }
}

.image-columns .wrap h2 {
  font-size: 29px;
  line-height: 40px;
}

@media screen and (min-width: 768px) {
  .image-columns .wrap h2 {
    font-size: 34px;
    line-height: 50px;
  }
}

.image-columns video {
  max-width: 100%;
  display: block;
  height: auto;
  border-radius: 10px;
}

.image-columns .wp-block-buttons {
  margin-top: 25px;
}

@media screen and (min-width: 768px) {
  .image-columns .wp-block-buttons {
    margin-top: 60px;
  }
}

.image-columns.img-right .image-col {
  -ms-flex-order: 1;
      order: 1;
}

@media screen and (min-width: 768px) {
  .image-columns.img-right .image-col {
    -ms-flex-order: 2;
        order: 2;
  }
}

.image-columns.img-right .content-columns {
  -ms-flex-order: 2;
      order: 2;
}

@media screen and (min-width: 768px) {
  .image-columns.img-right .content-columns {
    -ms-flex-order: 1;
        order: 1;
  }
}

.playing .custom-video-button {
  display: none;
}

.custom-video-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  background: url(img/play-button.svg) no-repeat center center/100%;
  text-indent: -10000px;
  border-radius: 0;
  border: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .custom-video-button {
    width: 100px;
    height: 100px;
  }
}

.contact-section {
  width: 100%;
  padding-top: 4.2rem;
  padding-bottom: 6.2rem;
  background: url(img/painted-brick.jpg.webp) no-repeat center center/cover;
  position: relative;
}

@media screen and (min-width: 768px) {
  .contact-section {
    padding-top: 8.75rem;
    padding-bottom: 9.125rem;
  }
}

.contact-section .form-column p:first-of-type {
  margin-top: 0;
}

.contact-section .header-intro-block {
  padding-top: 0;
  padding-bottom: 0;
}

.contact-section .block-wrapper {
  width: 100%;
  max-width: 1680px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin: 0 auto;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .contact-section .block-wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media screen and (min-width: 1201px) {
  .contact-section .block-wrapper {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
}

.form-column h1:first-of-type,
.form-column h2:first-of-type {
  margin-top: 0;
}

.contact-section div.gform_wrapper .gform_heading {
  -ms-flex-pack: start;
      justify-content: flex-start;
  display: none;
}

.contact-section div.gform_wrapper {
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  .contact-section div.gform_wrapper {
    margin-top: 3.25rem;
  }
}

.contact-section div.gform_wrapper .gform_title {
  display: block;
  margin-left: 0;
  margin-right: 0;
}

@media screen and (min-width: 768px) {
  .contact-section div.gform_wrapper .gform_title {
    display: none;
  }
}

.contact-section .block-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
}

.contact-section div.gform_wrapper fieldset {
  padding: 0;
  border: none;
}

.hidden_label .gfield_label {
  display: none;
}

.contact-section .column {
  padding-bottom: 1.75rem;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .contact-section .column {
    padding-bottom: 0;
  }
}

.contact-section .form-column {
  width: 100%;
  text-align: center;
}

.contact-section .gform_title {
  margin-top: 2rem;
}

.contact-section .content-column {
  box-sizing: border-box;
  width: 100%;
  border: 2px solid #BF5B32;
  text-align: center;
  padding: 1rem;
}

@media screen and (min-width: 768px) {
  .contact-section .content-column {
    width: 28%;
    padding: 1.25rem;
    margin-top: 8px;
  }
}

.contact-section .content p {
  color: white;
  font-size: 16px;
  line-height: 25px;
  font-family: "lunchtype24expanded_medium", sans-serif;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .contact-section .content p {
    font-size: 18px;
    line-height: 29px;
  }
}

.contact-icon.fa {
  color: #F8AE2B;
  font-size: 32px;
  line-height: 44px;
  margin-right: 1rem;
}

.contact-section .icon-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .contact-section .icon-row {
    margin-bottom: 1.85rem;
  }
}

p.contact-item a {
  text-decoration: none;
}

p.contact-item a,
p.contact-item {
  font-family: "lunchtype24expanded_medium", sans-serif;
  color: white;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  margin-top: 0;
  margin-bottom: 0;
  letter-spacing: 0.35px;
}

@media screen and (min-width: 768px) {
  p.contact-item a,
  p.contact-item {
    font-size: 22px;
    line-height: 34px;
  }
}

.contact-section .header-suptitle {
  color: #F79A6C;
  text-transform: none;
  font-family: "arimo", sans-serif;
  font-size: 20px;
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .contact-section .header-suptitle {
    font-size: 25px;
  }
}

.wp-block.is-reusable {
  width: 100%;
  max-width: 100%;
}

.wp-block.contact-section {
  width: 100%;
  max-width: 100%;
  padding-top: 8.125rem;
  padding-bottom: 8.125rem;
}

.contact-section .block-wrapper {
  width: 100%;
  max-width: 1040px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin: 0 auto;
  box-sizing: border-box;
}

.contact-section .block-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
}

.contact-section .block-content > .block-editor-inner-blocks {
  width: 100%;
}

.contact-section .block-content > .block-editor-inner-blocks > .block-editor-block-list__layout {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.contact-section .content {
  margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
  .contact-section .content {
    margin-bottom: 45px;
  }
}

.contact-section .content-column h4 {
  margin-bottom: 0;
}

.contact-section .content-column a {
  text-decoration: none;
}

.contact-section .content-column h4 + p {
  margin-top: 0;
}

.contact-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
}

.contact-controls {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  margin-bottom: 1.85rem;
}

.contact-section .header-title {
  margin-top: 0;
}

.contact-section.white .form-column {
  background: #3bc24a;
}

.wp-block.shortcode-section {
  width: 100%;
  max-width: 100%;
}

.shortcode-section {
  width: 100%;
  max-width: 100%;
  padding-bottom: 3.125rem;
}

@media screen and (min-width: 768px) {
  .shortcode-section {
    padding-bottom: 6.75rem;
  }
}

.shortcode-section > .block-wrapper {
  width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}

@media screen and (min-width: 768px) {
  .shortcode-section > .block-wrapper {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.shortcode-section .gs_team_area {
  max-width: 840px;
  width: 100%;
}

.shortcode-section .wprev-slick-slider {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

@media screen and (min-width: 768px) {
  .shortcode-section .wprev-slick-slider {
    padding-left: 0;
    padding-right: 0;
  }
}

.shortcode-section .header-intro-block {
  padding-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .shortcode-section .header-intro-block {
    padding-bottom: 2.5rem;
  }
}

.team-section:before {
  content: "";
  width: 33vw;
  height: 27.5vw;
  position: absolute;
  top: calc(50% - 27.5vw);
  left: 0px;
  background: url(img/h1h2-watermark-white.svg) no-repeat center center/cover;
}

@media screen and (min-width: 768px) {
  .team-section:before {
    width: 100vw;
    height: 81.3vw;
    max-width: 246px;
    max-height: 200px;
    top: calc(35% - 200px);
  }
}

.team-section {
  position: relative;
  background: linear-gradient(to bottom, #EFE9DE 50%, transparent 50%);
}

@media screen and (min-width: 768px) {
  .team-section {
    background: linear-gradient(to bottom, #EFE9DE 35%, transparent 35%);
  }
}

.single-member-div.active[data-category="remote"] {
  display: block;
}

.single-member-div[data-category="remote"] {
  display: none;
}

@media screen and (min-width: 768px) {
  .gs_team div.single-member-div {
    padding-right: 17.5px !important;
    padding-left: 17.5px !important;
    margin-bottom: 30px;
  }
}

.shortcode-section + .image-links .header-intro-block {
  padding-top: 0;
}

.wp-block.tab {
  width: 100%;
  max-width: 100%;
}

.editor-styles-wrapper .wp-block.tab .wp-block {
  width: 100%;
  max-width: 100%;
}

.wp-block.tab-group {
  max-width: 100%;
  width: 100%;
}

.tab-group .block-wrapper {
  max-width: 1680px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.tab-group {
  padding-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .tab-group {
    padding-bottom: 3.75rem;
  }
}

.tab-group .tabs-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout,
.tab-group .tabs-wrap {
  position: relative;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
}

.tab-group:after {
  content: "";
  clear: both;
  display: table;
}

.tab-group .tab {
  position: relative;
  width: auto;
  -ms-flex-order: 0;
      order: 0;
}

@media screen and (min-width: 768px) {
  .tab-group .tab {
    width: auto;
    position: static;
    float: left;
  }
}

.tab-group .tab-content {
  width: 100%;
  -ms-flex-order: 2;
      order: 2;
}

.tab-group .tab.loaded:first-of-type .header-title.active ~ .tab-content,
.tab-group .header-title.active ~ .tab-content,
.tab-group [type=radio]:checked ~ label ~ .tab-content {
  z-index: 1;
  display: block;
}

.tab-group .tab.loaded:first-of-type .header-title ~ .tab-content {
  display: none;
}

.tab-group [type=radio] {
  display: none;
}

.wp-block.tab-group .tab.has-child-selected .tab-content,
.wp-block.tab-group .tab.is-selected .tab-content {
  display: block;
  background: #F0F0F0;
}

.wp-block.tab-group .tab .tab-content {
  display: none;
}

.tab-group .tab .tab-content {
  display: none;
}

.tab-group .tab:first-of-type .tab-content {
  z-index: 1;
  display: block;
}

.tabs.has-child-selected .tab:first-of-type .tab-content {
  display: none;
}

.tabs.has-child-selected .tab.has-child-selected:first-of-type .tab-content,
.tabs.has-child-selected .tab.is-selected:first-of-type .tab-content {
  display: block;
}

.wp-block.tabs {
  width: 100%;
  max-width: 100%;
}

.tabs .header-intro-block {
  padding-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .tabs .header-intro-block {
    padding-bottom: 2.5rem;
  }
}

.tabs .content-cols {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
}

.tabs .content {
  width: 100%;
  -ms-flex-order: 1;
      order: 1;
}

@media screen and (min-width: 768px) {
  .tabs .content {
    width: 75%;
    -ms-flex-order: 0;
        order: 0;
    max-width: calc(100% - 220px);
  }
}

.tabs .img-col {
  width: 100%;
  margin-top: 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-order: 0;
      order: 0;
}

@media screen and (min-width: 768px) {
  .tabs .img-col {
    width: 25%;
    -ms-flex-order: 1;
        order: 1;
    min-width: 220px;
    margin-top: 3rem;
  }
}

.tabs .wp-block-buttons {
  margin-top: 25px;
}

@media screen and (min-width: 768px) {
  .tabs .wp-block-buttons {
    margin-top: 35px;
  }
}

.tab .header-title {
  text-align: center;
  border: none;
  font-size: 18px;
  line-height: 24px;
  font-family: "lunchtype24expanded_medium", sans-serif;
  display: block;
  cursor: pointer;
  color: #BF5B32;
  margin-bottom: 0;
  position: relative;
  padding-bottom: 5px;
}

@media screen and (min-width: 768px) {
  .tab .header-title {
    font-size: 22px;
    padding-bottom: 8px;
    line-height: 27px;
  }
}

.tab .header-title:before {
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0;
  height: 0;
  position: absolute;
  background: #BF5B32;
  transition-property: width;
  transition-duration: 0.65s;
}

.tab.active .header-title:before {
  width: 100%;
  height: 3px;
}

.tab {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .tab {
    margin-bottom: 55px;
  }
}

.tabs .header-intro-block {
  padding-bottom: 0;
}

.tabs .content-cols h3:first-of-type {
  margin-bottom: 0;
  margin-top: 0;
}

.tabs .tab-content.content-cols {
  display: block;
}

.tab-content.content-cols ul {
  column-count: 2;
  padding-left: 0;
}

@media screen and (min-width: 768px) {
  .tab-content.content-cols ul {
    list-style-type: disc;
  }
}

.tab-content.content-cols ul li {
  margin-bottom: 0;
  list-style-type: none;
  break-inside: avoid;
  position: relative;
  padding-left: 20px;
}

@media screen and (min-width: 768px) {
  .tab-content.content-cols ul li {
    margin-right: 25px;
  }
}

.tab-content.content-cols ul li:before {
  content: "";
  background: #BF5B32;
  border-radius: 7px;
  width: 7px;
  height: 7px;
  position: absolute;
  left: 0;
  top: 8px;
  display: inline-block;
}

.tabs .tab-container {
  padding-bottom: 1.25rem;
  box-sizing: border-box;
  -ms-flex-order: 1;
      order: 1;
}

@media screen and (min-width: 768px) {
  .tabs .tab-container {
    padding-bottom: 3.75rem;
  }
}

.tab + .tab-container {
  display: none;
}

.tab-container > .content-cols > .block-editor-inner-blocks > .block-editor-block-list__layout {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
}

.tab.has-child-selected + .tab-container,
.tab.is-selected + .tab-container,
.tab.active + .tab-container {
  display: block;
}

.tabs .tab-container p + ul {
  margin-top: -14px;
}

@media screen and (min-width: 768px) {
  .tabs .tab-container p + ul {
    margin-top: -28px;
  }
}

.tabs .tab-container {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .tabs .tab-container {
    text-align: left;
  }
}

.tab-content.content-cols ul li {
  text-align: left;
}

.tab-content.content-cols ul li,
.tabs .tab-container p {
  font-size: 18px;
  line-height: 24px;
}

@media screen and (min-width: 768px) {
  .tab-content.content-cols ul li,
  .tabs .tab-container p {
    font-size: 24px;
    line-height: 32px;
  }
}

.tabs .wp-block-image img {
  width: 100%;
  position: relative;
}

.tabs .wp-block-image figcaption {
  display: none;
}

.tabs .wp-block-image {
  padding-right: 0;
  position: relative;
}

@media screen and (min-width: 768px) and (max-width: 1080px) {
  .tabs .wp-block-image {
    margin-left: 15px;
    width: calc(50% - 15px);
  }
}

@media screen and (min-width: 1080px) and (max-width: 1200px) {
  .tabs .wp-block-image {
    margin-left: 20px;
    width: calc(50% - 20px);
  }
}

@media screen and (min-width: 1200px) {
  .tabs .wp-block-image {
    margin-left: 36px;
    width: calc(50% - 36px);
  }
}

.tabs .wp-block-image:before {
  content: "";
  position: absolute;
  background: #E7F2F7;
  height: 100%;
  opacity: 0;
  transition-duration: 0.75s;
  transition-property: left, right, opacity;
}

@media screen and (min-width: 768px) and (max-width: 1080px) {
  .tabs .wp-block-image:before {
    width: 100%;
    top: 15px;
    right: 0;
    left: inherit;
  }
}

@media screen and (min-width: 1080px) and (max-width: 1200px) {
  .tabs .wp-block-image:before {
    width: 100%;
    top: 20px;
    right: 0;
    left: inherit;
  }
}

@media screen and (min-width: 1200px) {
  .tabs .wp-block-image:before {
    width: 100%;
    top: 34px;
    left: inherit;
    right: 0;
  }
}

.tabs.animate-complete .wp-block-image:before {
  left: initial;
  opacity: 1;
}

@media screen and (min-width: 768px) and (max-width: 1080px) {
  .tabs.animate-complete .wp-block-image:before {
    right: 15px;
  }
}

@media screen and (min-width: 1080px) and (max-width: 1200px) {
  .tabs.animate-complete .wp-block-image:before {
    right: 20px;
  }
}

@media screen and (min-width: 1200px) {
  .tabs.animate-complete .wp-block-image:before {
    right: 34px;
  }
}

.tabs .tab-content {
  padding-left: 0;
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .tabs .tab-content {
    padding-left: 54px;
  }
}

.tabs .tab-content {
  width: 100%;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .tabs .tab-content {
    width: 50%;
  }
}

.tabs + .selected-resources .resources-block {
  padding-top: 0;
}

@media screen and (min-width: 768px) {
  .tabs + .selected-resources .resources-block {
    padding-top: 0;
  }
}

.wp-block.cta {
  max-width: 100%;
  width: 100%;
}

.cta {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 45px;
  text-align: center;
  position: relative;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media screen and (min-width: 768px) {
  .cta {
    padding-top: 80px;
    padding-bottom: 90px;
  }
}

.cta .content-footer p {
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
}

@media screen and (min-width: 768px) {
  .cta .content-footer p {
    font-size: 18px;
    line-height: 29px;
  }
}

.editor-styles-wrapper .cta .wp-block-buttons {
  -ms-flex-pack: center;
      justify-content: center;
}

.cta .block-wrapper {
  max-width: 1120px;
  background: #EFE9DE;
  padding: 25px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .cta .block-wrapper {
    padding: 35px;
  }
}

.cta .wp-block-buttons {
  max-width: 1120px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin: 25 auto;
  -ms-flex-pack: center;
      justify-content: center;
}

@media screen and (min-width: 768px) {
  .cta .wp-block-buttons {
    margin: 50px auto 0;
  }
}

.cta .header-title {
  text-transform: none;
  font-family: "lunchtype24expanded_medium", sans-serif;
  font-size: 23px;
  line-height: 32px;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .cta .header-title {
    font-size: 28px;
    line-height: 40px;
  }
}

.cta .content-footer p {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}

@media screen and (min-width: 768px) {
  .cta .content-footer p {
    font-size: 22px;
    line-height: 34px;
  }
}

.wp-block.image-link {
  max-width: 484px;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
}

.image-links.slideshow-1-per .wp-block.image-link {
  max-width: 100%;
}

.image-background {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.image-background .img-container img {
  display: block;
  max-width: 484px;
  width: 100%;
}

.image-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: stretch;
      align-items: stretch;
}

.image-link p {
  color: #0054B1;
}

.wp-block.image-links {
  width: 100%;
  max-width: 100%;
}

.image-links {
  width: 100%;
  padding-bottom: 4rem;
}

@media screen and (min-width: 768px) {
  .image-links {
    padding-bottom: 6.1875rem;
  }
}

.image-links > .block-wrapper {
  max-width: 1680px;
  margin: 0 auto;
  width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media screen and (min-width: 768px) {
  .image-links > .block-wrapper {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.image-links .header-intro-block {
  padding-bottom: 0;
  padding-top: 1.9375rem;
}

@media screen and (min-width: 768px) {
  .image-links .header-intro-block {
    padding-top: 8.75rem;
    -ms-grid-column: 1;
        grid-column-start: 1;
    grid-column-end: 3;
  }
}

.image-links .image-link {
  height: auto;
}

.image-links .swiper-wrapper {
  height: auto;
}

.image-swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 25px;
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .image-swiper {
    margin-top: 45px;
  }
}

.image-swiper .swiper {
  overflow: hidden;
  width: calc(100% - 4rem);
  margin-left: 2rem;
  margin-right: 2rem;
}

@media screen and (min-width: 768px) {
  .image-swiper .swiper {
    width: calc(100% - 6rem);
    margin-left: 3rem;
    margin-right: 3rem;
  }
}

.swiper-button-prev {
  background: url(img/left-chevron.svg) no-repeat left center/14px;
}

@media screen and (min-width: 768px) {
  .swiper-button-prev {
    background: url(img/left-chevron.svg) no-repeat left center/17px;
  }
}

.swiper-button-next {
  background: url(img/right-chevron.svg) no-repeat right center/14px;
}

@media screen and (min-width: 768px) {
  .swiper-button-next {
    background: url(img/right-chevron.svg) no-repeat right center/17px;
  }
}

.swiper-button-prev:after {
  content: '';
}

.swiper-button-next:after {
  content: '';
}

@media screen and (min-width: 768px) {
  .links-wrapper .header-intro-block h2 {
    margin-bottom: 55px;
  }
}

.image-swiper .swiper-wrapper > .block-editor-inner-blocks {
  width: 100%;
}

.image-swiper .swiper-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  overflow: auto;
}

.image-links.cols .image-swiper .swiper-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout {
  display: -ms-grid;
  display: grid;
  overflow: visible;
}

@media screen and (min-width: 768px) {
  .image-links.cols .image-swiper .swiper-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    grid-row-gap: 45px;
    grid-column-gap: 45px;
  }
}

.image-links.cols [class*="swiper-button"] {
  display: none;
}

.block-editor-block-list__block.image-links.cols .swiper-wrapper {
  display: block;
}

.image-links.cols .swiper-wrapper {
  display: -ms-grid;
  display: grid;
}

@media screen and (min-width: 768px) {
  .image-links.cols .swiper-wrapper {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    grid-row-gap: 45px;
    grid-column-gap: 45px;
  }
}

.image-link .text-card {
  text-align: center;
  border-bottom: none;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .image-links.slideshow-1-per .swiper:before {
    content: "";
    height: 100%;
    width: 45px;
    background: linear-gradient(to right, #fff 55%, rgba(255, 255, 255, 0));
    top: 0;
    left: 0;
    position: absolute;
    z-index: 2;
  }
}

@media screen and (min-width: 768px) {
  .image-links.slideshow-1-per .swiper:after {
    content: "";
    height: 100%;
    width: 45px;
    background: linear-gradient(to left, #fff 55%, rgba(255, 255, 255, 0));
    top: 0;
    right: 0;
    position: absolute;
    z-index: 2;
  }
}

.section-header,
.wp-block.section-header {
  width: 100%;
  max-width: 100%;
}

.section-header * {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .section-header * {
    font-size: 30px;
    line-height: 38px;
  }
}

.section-header {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
}

.section-header:after {
  content: "";
  -ms-flex: 1;
      flex: 1;
  height: 1.5px;
  background: #878787;
  margin-left: 10px;
}

.wp-block.selected-resources {
  width: 100%;
  max-width: 100%;
  padding-top: 8.125rem;
  padding-bottom: 8.125rem;
}

.resources-block {
  padding-bottom: 4.25rem;
}

@media screen and (min-width: 768px) {
  .resources-block {
    padding-bottom: 6.75rem;
  }
}

@supports (display: grid) {
  @media screen and (min-width: 1201px) {
    .selected-resources .grid {
      -ms-grid-columns: 1fr 1fr;
          grid-template-columns: 1fr 1fr;
    }
  }
}

.resources-block .header-description {
  max-width: 1065px;
  margin: 0 auto;
}

.resource-extra {
  width: 100%;
}

.resources-block .header {
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
}

.resources-block .block-wrapper {
  width: 100%;
  max-width: 1680px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .resources-block .block-wrapper {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.resources-block .resources-slides {
  position: relative;
  width: calc(100% - 4rem);
  margin-left: 2em;
  margin-right: 2rem;
}

@media screen and (min-width: 768px) {
  .resources-block .resources-slides {
    width: calc(100% - 5rem);
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }
}

.selected-resources:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .selected-resources:last-child {
    margin-bottom: 0;
  }
}

.selected-resources header.section-header {
  padding-top: 0;
}

.selected-resources .wp-block-buttons {
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 35px;
}

@media screen and (min-width: 768px) {
  .selected-resources .wp-block-buttons {
    margin-top: 50px;
  }
}

.wp-block-h1h2-blocks-resources {
  padding-bottom: 8.125rem;
}

.wp-block-h1h2-blocks-resources .resources-block {
  padding-top: 0;
}

.wp-block-h1h2-blocks-resources .resources-block .header-title {
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  .wp-block-h1h2-blocks-resources .resources-block .header-title {
    margin-top: 3rem;
  }
}

@media screen and (min-width: 768px) {
  .wp-block-h1h2-blocks-resources header.section-header {
    padding-top: 4.125rem;
  }
}

.form-filters {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 1.25rem;
  padding-left: 1.25rem;
}

@media screen and (min-width: 768px) {
  .form-filters {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.form-filters .wrapper {
  max-width: 1680px;
  margin: 0 auto 25px;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #002D5D;
  border-bottom: 1px solid #002D5D;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

@media screen and (min-width: 768px) {
  .form-filters .wrapper.one-col {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.form-filters .wrapper .filter-block {
  -ms-grid-column: 1;
      grid-column: 1;
}

@media screen and (min-width: 768px) {
  .form-filters .wrapper .filter-block {
    -ms-grid-column: 1;
        grid-column: 1;
  }
}

.form-filters .wrapper .filter-block:nth-child(2n) {
  -ms-grid-column: 1;
      grid-column: 1;
}

@media screen and (min-width: 768px) {
  .form-filters .wrapper .filter-block:nth-child(2n) {
    -ms-grid-column: 2;
        grid-column: 2;
  }
}

.form-filters .tax-filter-button,
.form-filters .components-button {
  border: none;
  border-radius: 0;
  color: #002D5D;
  font-family: "arimo", sans-serif;
  font-size: 18px;
  letter-spacing: 0.3px;
  line-height: 24px;
  cursor: pointer;
  background: url(img/filter-icon.svg) no-repeat center left/14px;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 1.25rem;
}

@media screen and (min-width: 768px) {
  .form-filters .tax-filter-button,
  .form-filters .components-button {
    font-size: 19px;
    line-height: 24px;
    background: url(img/filter-icon.svg) no-repeat center left/18px;
    padding-top: 1.85rem;
    padding-bottom: 1.85rem;
    padding-left: 1.75rem;
  }
}

.form-filters .tax-cont {
  display: none;
}

.form-filters [class*="col"].active {
  position: relative;
}

.form-filters [class*="col"].active .tax-cont {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.65);
  z-index: 9999;
}

@media screen and (min-width: 768px) {
  .form-filters [class*="col"].active .tax-cont {
    position: absolute;
    top: 100%;
    left: 0;
    height: auto;
    z-index: 998;
    min-width: 300px;
    max-width: 450px;
    border-radius: 0;
    border: 2px solid #BF5B32;
    background: white;
  }
}

@media screen and (min-width: 768px) {
  .form-filters [class*="col"].active .tax-cont:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: -24px;
    left: 10%;
    transform: translateX(-50%);
    border-bottom: solid 24px #BF5B32;
    border-left: solid 16px transparent;
    border-right: solid 16px transparent;
  }
}

@media screen and (min-width: 768px) {
  .form-filters [class*="col"].active .tax-cont:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: -20px;
    left: 10%;
    transform: translateX(-50%);
    border-bottom: solid 20px white;
    border-left: solid 14px transparent;
    border-right: solid 14px transparent;
  }
}

.tax-cont .tax-wrapper {
  padding: 5rem 1.25rem 4rem;
  list-style-type: none;
  margin: 1.25rem 0 0 1.25rem;
  width: calc(100% - 2.5rem);
  height: calc(100% - 2.5rem);
  background: white;
  position: relative;
  border: 2px solid #BF5B32;
  border-radius: 12px;
}

@media screen and (min-width: 768px) {
  .tax-cont .tax-wrapper {
    box-shadow: none;
    background: transparent;
    border: none;
    border-radius: 0;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }
}

ul.tax-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  list-style-type: none;
}

@media screen and (min-width: 768px) {
  ul.tax-list {
    padding: 1.5rem 2rem;
    margin: 0;
    display: -ms-grid;
    display: grid;
    width: 100%;
    height: auto;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-row-gap: 15px;
    grid-column-gap: 15px;
  }
}

.tax-wrapper {
  position: relative;
}

.tax-wrapper .tax-close {
  position: absolute;
  top: 0.75rem;
  right: 1.75rem;
  color: grey;
  padding: 0;
  text-indent: -10000px;
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url(img/nav-close.svg) no-repeat center center/100%;
}

@media screen and (min-width: 768px) {
  .tax-wrapper .tax-close {
    display: none;
  }
}

ul.tax-list li.tax-item {
  width: 50%;
  margin-bottom: 1.25rem;
  line-height: 22px;
}

@media screen and (min-width: 768px) {
  ul.tax-list li.tax-item {
    width: auto;
    margin-bottom: 0;
  }
}

ul.tax-list li.tax-item:before {
  display: none;
}

.entry-content ul.tax-list li.tax-item {
  padding-left: 0;
}

ul.tax-list .checkbox-component {
  width: 22px;
  height: 22px;
  opacity: 0;
  position: absolute;
  top: 2px;
  left: 0;
  z-index: 3;
  cursor: pointer;
}

ul.tax-list .checkbox-component:checked + label:after {
  content: "";
  position: absolute;
  top: 9px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #BF5B32;
}

ul.tax-list label {
  font-family: "arimo", sans-serif;
  font-size: 16px;
  cursor: pointer;
  color: #1B2C58;
  display: inline-block;
  margin-top: 6px;
}

@media screen and (min-width: 768px) {
  ul.tax-list label {
    font-size: 18px;
  }
}

ul.tax-list .tax-wrap {
  padding-left: 2rem;
  position: relative;
}

ul.tax-list .tax-wrap:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 22px;
  height: 22px;
  background: white;
  border: 1px solid #BF5B32;
}

h2.no-success-header {
  width: 100%;
  text-align: center;
  grid-column: 1/4;
  font-size: 24px;
  color: #BF5B32;
  font-family: "arimo", sans-serif;
}

.resources-grid .pagination {
  width: 100%;
  grid-column: 1/4;
}

.pagination span,
.pagination a {
  font-family: "lunchtype24expanded_medium", sans-serif;
  color: #1B2C58;
  font-size: 19px;
  text-decoration: none;
  margin-right: 5px;
}

.pagination a.page-numbers:not(.prev):not(.next) {
  padding: 5px;
  display: inline-block;
  border: 1px solid #1B2C58;
}

header.section-header {
  text-align: center;
  padding-top: 7.8125rem;
  margin-bottom: 0;
  margin-top: 0;
}

.filter-resources .resources-block .block-wrapper {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.wp-block.filter-resources {
  width: 100%;
  max-width: 100%;
  margin-top: 0;
}

.wp-block.filter-resources .resources-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  max-width: 1680px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  width: 100%;
  margin: 0 auto;
}

.form-filters {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.tax-wrapper .tax-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  color: grey;
  padding: 0;
  line-height: 22px;
  font-size: 22px;
  opacity: .5;
}

@media screen and (min-width: 768px) {
  .tax-wrapper .tax-close {
    display: none;
  }
}

.form-filters .components-button {
  border: none;
  border-radius: 0;
  color: white;
  text-transform: uppercase;
  font-family: "arimo", sans-serif;
  font-size: 22px;
  letter-spacing: 0.35px;
  line-height: 34px;
  cursor: pointer;
  background: url(img/filter-icon.svg) no-repeat center left/18px;
  padding-top: 1.85rem;
  padding-bottom: 1.85rem;
  padding-left: 1.75rem;
  height: auto;
}

.form-filters .tax-cont {
  display: none;
}

.form-filters [class*="col"].active {
  position: relative;
}

.form-filters [class*="col"].active .tax-cont {
  display: block;
  width: 100%;
  z-index: 1003;
  min-width: 400px;
}

ul.tax-list {
  padding: 1.5rem 2rem;
  list-style-type: none;
  margin: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-row-gap: 15px;
  grid-column-gap: 15px;
}

ul.tax-list .checkbox-component {
  width: 22px;
  height: 22px;
  opacity: 0;
  position: absolute;
  top: 2px;
  left: 0;
  z-index: 3;
  cursor: pointer;
}

ul.tax-list label {
  font-family: "arimo", sans-serif;
  font-size: 18px;
  cursor: pointer;
  color: #1B2C58;
}

ul.tax-list .tax-wrap {
  padding-left: 2rem;
  position: relative;
}

.columns-group .wp-block-buttons {
  width: 100%;
  padding-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .columns-group .wp-block-buttons {
    padding-bottom: 3.25rem;
  }
}

.columns-group .image-columns {
  padding-bottom: 2.5rem;
}

@media screen and (min-width: 768px) {
  .columns-group .image-columns {
    padding-bottom: 3.25rem;
  }
}

.comparison-table > .block-wrapper {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-bottom: 3.25rem;
}

@media screen and (min-width: 768px) {
  .comparison-table > .block-wrapper {
    padding-bottom: 7.5rem;
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}

.wp-block.comparison-table {
  max-width: 100%;
}

.comparison-table {
  border-top: 2px solid #878787;
}

.comparison-table > .block-wrapper > p {
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-table .header-intro-block {
  padding-bottom: 0;
}

.wp-block.table-row {
  max-width: 100%;
}

.table-row > .block-editor-inner-blocks > .block-editor-block-list__layout,
.table-row:not(.wp-block) {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: 8px;
  margin-bottom: 8px;
}

.table-row:first-child .table-cell li,
.table-row:first-child .table-cell p {
  color: white;
  font-weight: 900;
}

.table-row .table-cell p:last-of-type:first-of-type,
.table-row .table-cell p:first-of-type {
  margin-top: 0;
}

.table-row .table-cell p:last-of-type:first-of-type {
  margin-bottom: 0;
}

.table-row .table-cell {
  width: 100%;
  margin: 0;
}

.table {
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .table {
    margin-bottom: 50px;
  }
}

.table-row .table-cell {
  position: relative;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 25px;
  padding-left: 20px;
}

@media screen and (min-width: 768px) {
  .table-row .table-cell {
    padding-top: 25px;
    padding-right: 30px;
    padding-bottom: 25px;
    padding-left: 30px;
  }
}

.comparison-table .table-row .table-cell:only-child {
  grid-column: 1/3;
}

.comparison-table .table-row:first-child .table-cell:nth-of-type(odd) {
  background: #002D5D;
}

.comparison-table .table-row:first-child .table-cell:nth-of-type(even) {
  background: #878787;
}

.comparison-table .table-row .table-cell:nth-of-type(odd) {
  background: #E7F2F7;
}

.comparison-table .table-row:not(:first-child) .table-cell:nth-of-type(odd):before {
  content: "";
  display: inline-block;
  float: left;
  width: 21px;
  height: 15px;
  margin-right: 8px;
  margin-top: 10px;
  background: url(img/v.svg) no-repeat center center/100%;
}

.comparison-table .table-row:not(:first-child) .table-cell:nth-of-type(even):before {
  content: "";
  display: inline-block;
  float: left;
  width: 15px;
  height: 15px;
  margin-right: 8px;
  margin-top: 10px;
  background: url(img/x.svg) no-repeat center center/100%;
}

.comparison-table .table-row .table-cell:nth-of-type(even) {
  background: #878787;
}

.side-table > .block-wrapper {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media screen and (min-width: 768px) {
  .side-table > .block-wrapper {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}

.wp-block.side-table {
  max-width: 100%;
}

.side-table > .block-wrapper > p {
  max-width: 1000px;
  margin: 0 auto;
}

.side-table .header-intro-block {
  padding-bottom: 0;
  margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
  .side-table .header-intro-block {
    margin-bottom: 55px;
  }
}

.side-table .table-row > .block-editor-inner-blocks > .block-editor-block-list__layout,
.side-table .table-row:not(.wp-block) {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 8px;
  margin-bottom: 8px;
}

@media screen and (min-width: 768px) {
  .side-table .table-row > .block-editor-inner-blocks > .block-editor-block-list__layout,
  .side-table .table-row:not(.wp-block) {
    -ms-grid-columns: 300px 1fr;
        grid-template-columns: 300px 1fr;
  }
}

.side-table .table-row-head.table-row .table-cell {
  background: #E7F2F7;
}

.side-table .table-row .table-cell {
  background: #E7F2F7;
  -ms-flex-order: 1;
      order: 1;
  grid-column: 1/2;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .side-table .table-row .table-cell {
    -ms-flex-order: 0;
        order: 0;
    text-align: left;
    -ms-flex-pack: start;
        justify-content: flex-start;
    -ms-grid-column: auto;
        grid-column: auto;
  }
}

.side-table .table-row .table-cell:nth-of-type(3) {
  grid-column: 3/5;
}

@media screen and (min-width: 768px) {
  .side-table .table-row .table-cell:nth-of-type(3) {
    -ms-grid-column: auto;
        grid-column: auto;
  }
}

.side-table .table-row-head .table-cell li,
.side-table .table-row-head .table-cell p {
  color: white;
  font-weight: 900;
}

.side-table .table-row-head .table-cell:nth-of-type(2) {
  display: block;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .side-table .table-row-head .table-cell:nth-of-type(2) {
    display: block;
  }
}

.side-table .table-row .table-cell-icon {
  background: #002D5D;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  margin: 0;
  box-sizing: border-box;
  padding-top: 15px;
  padding-right: 10px;
  padding-bottom: 15px;
  padding-left: 10px;
  -ms-flex-order: 0;
      order: 0;
}

@media screen and (min-width: 768px) {
  .side-table .table-row .table-cell-icon {
    padding-top: 25px;
    -ms-flex-order: 0;
        order: 0;
    padding-right: 30px;
    padding-bottom: 25px;
    padding-left: 30px;
  }
}

.side-table .icon-row {
  margin-bottom: 0;
}

.side-table .icon-icon svg {
  max-width: 40px;
  max-height: 40px;
}

@media screen and (min-width: 768px) {
  .side-table .icon-icon svg {
    max-width: 60px;
    max-height: 60px;
  }
}

.table-cell-icon .icon-icon {
  max-height: 60px;
}

.table-cell-icon p.contact-item {
  text-align: center;
  width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  color: #E7F2F7;
  margin-top: 5px;
  font-weight: 900;
}

@media screen and (min-width: 768px) {
  .table-cell-icon p.contact-item {
    margin-top: 10px;
  }
}

.wp-block.numbered-list {
  max-width: 100%;
  width: 100%;
}

.numbered-list .block-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 55px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media screen and (min-width: 768px) {
  .numbered-list .block-wrapper {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
}

.numbered-list .block-wrapper {
  counter-reset: number-list;
}

.numbered-list .wp-block-buttons {
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  .numbered-list .wp-block-buttons {
    margin-top: 3.75rem;
  }
}

.numbered-list .block-wrapper > p:first-of-type {
  margin-top: 25px;
}

@media screen and (min-width: 768px) {
  .numbered-list .block-wrapper > p:first-of-type {
    margin-top: 35px;
  }
}

.numbered-list .header-intro-block {
  padding-bottom: 0;
}

.wp-block.list-item {
  max-width: 100%;
}

.list-item .wrap {
  background: #002D5D;
  width: 90px;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .list-item .wrap {
    width: 160px;
  }
}

.list-item .content {
  background: #E7F2F7;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  padding: 10px 20px;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .list-item .content {
    width: 100%;
    padding: 15px 30px;
  }
}

.list-item .content p:last-of-type,
.list-item .content p:first-of-type:last-of-type {
  margin-bottom: 0;
}

.list-item .content:before {
  counter-increment: number-list;
  content: counter(number-list);
  display: inline-block;
  float: left;
  color: #002D5D;
  font-family: "arimo", sans-serif;
  font-weight: 900;
  font-size: 22px;
  margin-right: 8px;
  width: 25px;
}

@media screen and (min-width: 768px) {
  .list-item .content:before {
    font-size: 28px;
    margin-right: 15px;
    width: 30px;
  }
}

.list-item .content p {
  width: calc(100% - 33px);
}

@media screen and (min-width: 768px) {
  .list-item .content p {
    width: calc(100% - 45px);
  }
}

.list-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
      align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 5px;
}

@media screen and (min-width: 768px) {
  .list-item {
    margin-bottom: 8px;
  }
}

.list-item .icon-row {
  margin-bottom: 0;
}

.list-item .icon-icon {
  height: 90px;
}

@media screen and (min-width: 768px) {
  .list-item .icon-icon {
    height: 120px;
  }
}

.list-item .icon-icon svg {
  max-width: 55px;
  max-height: 45px;
}

@media screen and (min-width: 768px) {
  .list-item .icon-icon svg {
    max-width: 75px;
    max-height: 60px;
  }
}
