/*
Theme Name: cls
Theme URI: https://redeggmarketing.com/
Author: Red Egg Marketing
Author URI: https://redeggmarketing.com/
Description: cls 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: cls
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,
.accordion h5 button,
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: none;
  border-color: #ccc #ccc #bbb;
  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 {
  background: #f1f1f1;
  border: none;
  border-radius: 0;
  font-family: "Lato", sans-serif;
  color: #000000;
  font-size: 18px;
  line-height: 30px;
  padding-left: 0.75rem;
}

@media screen and (min-width: 1250px) {
  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 {
    font-size: 20px;
    line-height: 40px;
    padding-left: 1.3125rem;
    padding-right: 25px;
    padding-left: 25px;
    padding-top: 17px;
    padding-bottom: 17px;
  }
}

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 {
  width: 100%;
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #f1f1f1 url(img/down-chevron.svg) no-repeat calc(100% - 25px) center/10px;
  border-radius: 0;
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 18px;
  line-height: 27px;
  color: #000000;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  margin-bottom: 0;
  border: none;
}

@media screen and (min-width: 1250px) {
  select {
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 0;
    padding-right: 25px;
    padding-left: 25px;
    padding-top: 17px;
    padding-bottom: 17px;
  }
}

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%;
    min-width: 220px;
    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;
}

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

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

.center-margin {
  margin: 0 auto;
}

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

.flex-end {
  -ms-flex-pack: end;
      justify-content: flex-end;
}

.width-100 {
  width: 100%;
}

/*!
 * Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2023 Fonticons, Inc.
 */
.fa {
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900);
}

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

.fas,
.fa-classic,
.fa-solid,
.far,
.fa-regular {
  font-family: 'Font Awesome 6 Free';
}

.fab,
.fa-brands {
  font-family: 'Font Awesome 6 Brands';
}

.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: 0.625em;
  line-height: 0.1em;
  vertical-align: 0.225em;
}

.fa-xs {
  font-size: 0.75em;
  line-height: 0.08333em;
  vertical-align: 0.125em;
}

.fa-sm {
  font-size: 0.875em;
  line-height: 0.07143em;
  vertical-align: 0.05357em;
}

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

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

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

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

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

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

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

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

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

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

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

.fa-bounce {
  animation-name: fa-bounce;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
}

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

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

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

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

.fa-spin {
  animation-name: fa-spin;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 2s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  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: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, steps(8));
}

@media (prefers-reduced-motion: reduce) {
  .fa-beat,
  .fa-bounce,
  .fa-fade,
  .fa-beat-fade,
  .fa-flip,
  .fa-pulse,
  .fa-shake,
  .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(var(--fa-beat-scale, 1.25));
  }
}

@keyframes fa-bounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
  }
  30% {
    transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
  }
  50% {
    transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}

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

@keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(var(--fa-beat-fade-scale, 1.125));
  }
}

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

@keyframes fa-shake {
  0% {
    transform: rotate(-15deg);
  }
  4% {
    transform: rotate(15deg);
  }
  8%, 24% {
    transform: rotate(-18deg);
  }
  12%, 28% {
    transform: rotate(18deg);
  }
  16% {
    transform: rotate(-22deg);
  }
  20% {
    transform: rotate(22deg);
  }
  32% {
    transform: rotate(-12deg);
  }
  36% {
    transform: rotate(12deg);
  }
  40%, 100% {
    transform: rotate(0deg);
  }
}

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

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

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

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

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

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

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

.fa-rotate-by {
  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: var(--fa-stack-z-index, auto);
}

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

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

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

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.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-fill-drip::before {
  content: "\f576";
}

.fa-arrows-to-circle::before {
  content: "\e4bd";
}

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

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

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

.fa-trash-can::before {
  content: "\f2ed";
}

.fa-trash-alt::before {
  content: "\f2ed";
}

.fa-text-height::before {
  content: "\f034";
}

.fa-user-xmark::before {
  content: "\f235";
}

.fa-user-times::before {
  content: "\f235";
}

.fa-stethoscope::before {
  content: "\f0f1";
}

.fa-message::before {
  content: "\f27a";
}

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

.fa-info::before {
  content: "\f129";
}

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

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

.fa-explosion::before {
  content: "\e4e9";
}

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

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

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

.fa-wave-square::before {
  content: "\f83e";
}

.fa-ring::before {
  content: "\f70b";
}

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

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

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

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

.fa-anchor-circle-check::before {
  content: "\e4aa";
}

.fa-building-circle-arrow-right::before {
  content: "\e4d1";
}

.fa-volleyball::before {
  content: "\f45f";
}

.fa-volleyball-ball::before {
  content: "\f45f";
}

.fa-arrows-up-to-line::before {
  content: "\e4c2";
}

.fa-sort-down::before {
  content: "\f0dd";
}

.fa-sort-desc::before {
  content: "\f0dd";
}

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

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

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

.fa-right-from-bracket::before {
  content: "\f2f5";
}

.fa-sign-out-alt::before {
  content: "\f2f5";
}

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

.fa-soap::before {
  content: "\e06e";
}

.fa-icons::before {
  content: "\f86d";
}

.fa-heart-music-camera-bolt::before {
  content: "\f86d";
}

.fa-microphone-lines-slash::before {
  content: "\f539";
}

.fa-microphone-alt-slash::before {
  content: "\f539";
}

.fa-bridge-circle-check::before {
  content: "\e4c9";
}

.fa-pump-medical::before {
  content: "\e06a";
}

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

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

.fa-magnifying-glass-location::before {
  content: "\f689";
}

.fa-search-location::before {
  content: "\f689";
}

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

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

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

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

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

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

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

.fa-school-circle-exclamation::before {
  content: "\e56c";
}

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

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

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

.fa-users-rectangle::before {
  content: "\e594";
}

.fa-people-roof::before {
  content: "\e537";
}

.fa-people-line::before {
  content: "\e534";
}

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

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

.fa-diagram-predecessor::before {
  content: "\e477";
}

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

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

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

.fa-burn::before {
  content: "\f46a";
}

.fa-person::before {
  content: "\f183";
}

.fa-male::before {
  content: "\f183";
}

.fa-laptop::before {
  content: "\f109";
}

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

.fa-menorah::before {
  content: "\f676";
}

.fa-truck-plane::before {
  content: "\e58f";
}

.fa-record-vinyl::before {
  content: "\f8d9";
}

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

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

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

.fa-spaghetti-monster-flying::before {
  content: "\f67b";
}

.fa-pastafarianism::before {
  content: "\f67b";
}

.fa-arrow-down-up-across-line::before {
  content: "\e4af";
}

.fa-spoon::before {
  content: "\f2e5";
}

.fa-utensil-spoon::before {
  content: "\f2e5";
}

.fa-jar-wheat::before {
  content: "\e517";
}

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

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

.fa-file-circle-exclamation::before {
  content: "\e4eb";
}

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

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

.fa-pager::before {
  content: "\f815";
}

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

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

.fa-strikethrough::before {
  content: "\f0cc";
}

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

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

.fa-pencil::before {
  content: "\f303";
}

.fa-pencil-alt::before {
  content: "\f303";
}

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

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

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

.fa-paste::before {
  content: "\f0ea";
}

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

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

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

.fa-truck-ramp-box::before {
  content: "\f4de";
}

.fa-truck-loading::before {
  content: "\f4de";
}

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

.fa-vial-virus::before {
  content: "\e597";
}

.fa-sheet-plastic::before {
  content: "\e571";
}

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

.fa-user-ninja::before {
  content: "\f504";
}

.fa-person-arrow-up-from-line::before {
  content: "\e539";
}

.fa-scroll-torah::before {
  content: "\f6a0";
}

.fa-torah::before {
  content: "\f6a0";
}

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

.fa-quidditch::before {
  content: "\f458";
}

.fa-quidditch-broom-ball::before {
  content: "\f458";
}

.fa-toggle-off::before {
  content: "\f204";
}

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

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

.fa-person-drowning::before {
  content: "\e545";
}

.fa-arrow-down-9-1::before {
  content: "\f886";
}

.fa-sort-numeric-desc::before {
  content: "\f886";
}

.fa-sort-numeric-down-alt::before {
  content: "\f886";
}

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

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

.fa-spray-can::before {
  content: "\f5bd";
}

.fa-truck-monster::before {
  content: "\f63b";
}

.fa-w::before {
  content: "\57";
}

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

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

.fa-rainbow::before {
  content: "\f75b";
}

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

.fa-tablet-screen-button::before {
  content: "\f3fa";
}

.fa-tablet-alt::before {
  content: "\f3fa";
}

.fa-paw::before {
  content: "\f1b0";
}

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

.fa-trowel-bricks::before {
  content: "\e58a";
}

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

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

.fa-hospital-user::before {
  content: "\f80d";
}

.fa-tent-arrow-left-right::before {
  content: "\e57f";
}

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

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

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

.fa-microphone-slash::before {
  content: "\f131";
}

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

.fa-motorcycle::before {
  content: "\f21c";
}

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

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

.fa-pen-ruler::before {
  content: "\f5ae";
}

.fa-pencil-ruler::before {
  content: "\f5ae";
}

.fa-people-arrows::before {
  content: "\e068";
}

.fa-people-arrows-left-right::before {
  content: "\e068";
}

.fa-mars-and-venus-burst::before {
  content: "\e523";
}

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

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

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

.fa-cut::before {
  content: "\f0c4";
}

.fa-sun-plant-wilt::before {
  content: "\e57a";
}

.fa-toilets-portable::before {
  content: "\e584";
}

.fa-hockey-puck::before {
  content: "\f453";
}

.fa-table::before {
  content: "\f0ce";
}

.fa-magnifying-glass-arrow-right::before {
  content: "\e521";
}

.fa-tachograph-digital::before {
  content: "\f566";
}

.fa-digital-tachograph::before {
  content: "\f566";
}

.fa-users-slash::before {
  content: "\e073";
}

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

.fa-reply::before {
  content: "\f3e5";
}

.fa-mail-reply::before {
  content: "\f3e5";
}

.fa-star-and-crescent::before {
  content: "\f699";
}

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

.fa-square-minus::before {
  content: "\f146";
}

.fa-minus-square::before {
  content: "\f146";
}

.fa-helicopter::before {
  content: "\f533";
}

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

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

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

.fa-file-circle-question::before {
  content: "\e4ef";
}

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

.fa-swatchbook::before {
  content: "\f5c3";
}

.fa-prescription-bottle::before {
  content: "\f485";
}

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

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

.fa-people-group::before {
  content: "\e533";
}

.fa-hourglass-end::before {
  content: "\f253";
}

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

.fa-heart-crack::before {
  content: "\f7a9";
}

.fa-heart-broken::before {
  content: "\f7a9";
}

.fa-square-up-right::before {
  content: "\f360";
}

.fa-external-link-square-alt::before {
  content: "\f360";
}

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

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

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

.fa-ruler-horizontal::before {
  content: "\f547";
}

.fa-people-robbery::before {
  content: "\e536";
}

.fa-lightbulb::before {
  content: "\f0eb";
}

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

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

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

.fa-school-circle-xmark::before {
  content: "\e56d";
}

.fa-arrow-right-from-bracket::before {
  content: "\f08b";
}

.fa-sign-out::before {
  content: "\f08b";
}

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

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

.fa-unlock-keyhole::before {
  content: "\f13e";
}

.fa-unlock-alt::before {
  content: "\f13e";
}

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

.fa-headphones-simple::before {
  content: "\f58f";
}

.fa-headphones-alt::before {
  content: "\f58f";
}

.fa-sitemap::before {
  content: "\f0e8";
}

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

.fa-donate::before {
  content: "\f4b9";
}

.fa-memory::before {
  content: "\f538";
}

.fa-road-spikes::before {
  content: "\e568";
}

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

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

.fa-hanukiah::before {
  content: "\f6e6";
}

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

.fa-volume-low::before {
  content: "\f027";
}

.fa-volume-down::before {
  content: "\f027";
}

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

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

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

.fa-wheat-awn::before {
  content: "\e2cd";
}

.fa-wheat-alt::before {
  content: "\e2cd";
}

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

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

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

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

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

.fa-peseta-sign::before {
  content: "\e221";
}

.fa-heading::before {
  content: "\f1dc";
}

.fa-header::before {
  content: "\f1dc";
}

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

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

.fa-list-squares::before {
  content: "\f03a";
}

.fa-square-phone-flip::before {
  content: "\f87b";
}

.fa-phone-square-alt::before {
  content: "\f87b";
}

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

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

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

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

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

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

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

.fa-house-medical-circle-xmark::before {
  content: "\e513";
}

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

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

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

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

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

.fa-paintbrush::before {
  content: "\f1fc";
}

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

.fa-lock::before {
  content: "\f023";
}

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

.fa-hot-tub-person::before {
  content: "\f593";
}

.fa-hot-tub::before {
  content: "\f593";
}

.fa-map-location::before {
  content: "\f59f";
}

.fa-map-marked::before {
  content: "\f59f";
}

.fa-house-flood-water::before {
  content: "\e50e";
}

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

.fa-bridge-lock::before {
  content: "\e4cc";
}

.fa-sack-dollar::before {
  content: "\f81d";
}

.fa-pen-to-square::before {
  content: "\f044";
}

.fa-edit::before {
  content: "\f044";
}

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

.fa-share-nodes::before {
  content: "\f1e0";
}

.fa-share-alt::before {
  content: "\f1e0";
}

.fa-heart-circle-minus::before {
  content: "\e4ff";
}

.fa-hourglass-half::before {
  content: "\f252";
}

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

.fa-microscope::before {
  content: "\f610";
}

.fa-sink::before {
  content: "\e06d";
}

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

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

.fa-arrow-down-z-a::before {
  content: "\f881";
}

.fa-sort-alpha-desc::before {
  content: "\f881";
}

.fa-sort-alpha-down-alt::before {
  content: "\f881";
}

.fa-mitten::before {
  content: "\f7b5";
}

.fa-person-rays::before {
  content: "\e54d";
}

.fa-users::before {
  content: "\f0c0";
}

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

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

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

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

.fa-om::before {
  content: "\f679";
}

.fa-worm::before {
  content: "\e599";
}

.fa-house-circle-xmark::before {
  content: "\e50b";
}

.fa-plug::before {
  content: "\f1e6";
}

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

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

.fa-stopwatch::before {
  content: "\f2f2";
}

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

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

.fa-bridge-circle-xmark::before {
  content: "\e4cb";
}

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

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

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

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

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

.fa-ear-deaf::before {
  content: "\f2a4";
}

.fa-deaf::before {
  content: "\f2a4";
}

.fa-deafness::before {
  content: "\f2a4";
}

.fa-hard-of-hearing::before {
  content: "\f2a4";
}

.fa-road-circle-check::before {
  content: "\e564";
}

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

.fa-square-rss::before {
  content: "\f143";
}

.fa-rss-square::before {
  content: "\f143";
}

.fa-land-mine-on::before {
  content: "\e51b";
}

.fa-i-cursor::before {
  content: "\f246";
}

.fa-stamp::before {
  content: "\f5bf";
}

.fa-stairs::before {
  content: "\e289";
}

.fa-i::before {
  content: "\49";
}

.fa-hryvnia-sign::before {
  content: "\f6f2";
}

.fa-hryvnia::before {
  content: "\f6f2";
}

.fa-pills::before {
  content: "\f484";
}

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

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

.fa-tooth::before {
  content: "\f5c9";
}

.fa-v::before {
  content: "\56";
}

.fa-bangladeshi-taka-sign::before {
  content: "\e2e6";
}

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

.fa-staff-snake::before {
  content: "\e579";
}

.fa-rod-asclepius::before {
  content: "\e579";
}

.fa-rod-snake::before {
  content: "\e579";
}

.fa-staff-aesculapius::before {
  content: "\e579";
}

.fa-head-side-cough-slash::before {
  content: "\e062";
}

.fa-truck-medical::before {
  content: "\f0f9";
}

.fa-ambulance::before {
  content: "\f0f9";
}

.fa-wheat-awn-circle-exclamation::before {
  content: "\e598";
}

.fa-snowman::before {
  content: "\f7d0";
}

.fa-mortar-pestle::before {
  content: "\f5a7";
}

.fa-road-barrier::before {
  content: "\e562";
}

.fa-school::before {
  content: "\f549";
}

.fa-igloo::before {
  content: "\f7ae";
}

.fa-joint::before {
  content: "\f595";
}

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

.fa-horse::before {
  content: "\f6f0";
}

.fa-q::before {
  content: "\51";
}

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

.fa-notes-medical::before {
  content: "\f481";
}

.fa-temperature-half::before {
  content: "\f2c9";
}

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

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

.fa-thermometer-half::before {
  content: "\f2c9";
}

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

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

.fa-poo-storm::before {
  content: "\f75a";
}

.fa-poo-bolt::before {
  content: "\f75a";
}

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

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

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

.fa-money-bill::before {
  content: "\f0d6";
}

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

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

.fa-umbrella-beach::before {
  content: "\f5ca";
}

.fa-helmet-un::before {
  content: "\e503";
}

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

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

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

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

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

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

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

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

.fa-radiation::before {
  content: "\f7b9";
}

.fa-chart-simple::before {
  content: "\e473";
}

.fa-mars-stroke::before {
  content: "\f229";
}

.fa-vial::before {
  content: "\f492";
}

.fa-gauge::before {
  content: "\f624";
}

.fa-dashboard::before {
  content: "\f624";
}

.fa-gauge-med::before {
  content: "\f624";
}

.fa-tachometer-alt-average::before {
  content: "\f624";
}

.fa-wand-magic-sparkles::before {
  content: "\e2ca";
}

.fa-magic-wand-sparkles::before {
  content: "\e2ca";
}

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

.fa-pen-clip::before {
  content: "\f305";
}

.fa-pen-alt::before {
  content: "\f305";
}

.fa-bridge-circle-exclamation::before {
  content: "\e4ca";
}

.fa-user::before {
  content: "\f007";
}

.fa-school-circle-check::before {
  content: "\e56b";
}

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

.fa-van-shuttle::before {
  content: "\f5b6";
}

.fa-shuttle-van::before {
  content: "\f5b6";
}

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

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

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

.fa-highlighter::before {
  content: "\f591";
}

.fa-key::before {
  content: "\f084";
}

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

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

.fa-synagogue::before {
  content: "\f69b";
}

.fa-person-half-dress::before {
  content: "\e548";
}

.fa-road-bridge::before {
  content: "\e563";
}

.fa-location-arrow::before {
  content: "\f124";
}

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

.fa-tablet-button::before {
  content: "\f10a";
}

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

.fa-pizza-slice::before {
  content: "\f818";
}

.fa-money-bill-wave::before {
  content: "\f53a";
}

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

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

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

.fa-person-circle-minus::before {
  content: "\e540";
}

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

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

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

.fa-spray-can-sparkles::before {
  content: "\f5d0";
}

.fa-air-freshener::before {
  content: "\f5d0";
}

.fa-star::before {
  content: "\f005";
}

.fa-repeat::before {
  content: "\f363";
}

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

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

.fa-venus-mars::before {
  content: "\f228";
}

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

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

.fa-maximize::before {
  content: "\f31e";
}

.fa-expand-arrows-alt::before {
  content: "\f31e";
}

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

.fa-shapes::before {
  content: "\f61f";
}

.fa-triangle-circle-square::before {
  content: "\f61f";
}

.fa-shuffle::before {
  content: "\f074";
}

.fa-random::before {
  content: "\f074";
}

.fa-person-running::before {
  content: "\f70c";
}

.fa-running::before {
  content: "\f70c";
}

.fa-mobile-retro::before {
  content: "\e527";
}

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

.fa-spider::before {
  content: "\f717";
}

.fa-hands-bound::before {
  content: "\e4f9";
}

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

.fa-plane-circle-exclamation::before {
  content: "\e556";
}

.fa-x-ray::before {
  content: "\f497";
}

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

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

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

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

.fa-arrow-right-to-bracket::before {
  content: "\f090";
}

.fa-sign-in::before {
  content: "\f090";
}

.fa-shop-slash::before {
  content: "\e070";
}

.fa-store-alt-slash::before {
  content: "\e070";
}

.fa-server::before {
  content: "\f233";
}

.fa-virus-covid-slash::before {
  content: "\e4a9";
}

.fa-shop-lock::before {
  content: "\e4a5";
}

.fa-hourglass-start::before {
  content: "\f251";
}

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

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

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

.fa-person-breastfeeding::before {
  content: "\e53a";
}

.fa-right-to-bracket::before {
  content: "\f2f6";
}

.fa-sign-in-alt::before {
  content: "\f2f6";
}

.fa-venus::before {
  content: "\f221";
}

.fa-passport::before {
  content: "\f5ab";
}

.fa-heart-pulse::before {
  content: "\f21e";
}

.fa-heartbeat::before {
  content: "\f21e";
}

.fa-people-carry-box::before {
  content: "\f4ce";
}

.fa-people-carry::before {
  content: "\f4ce";
}

.fa-temperature-high::before {
  content: "\f769";
}

.fa-microchip::before {
  content: "\f2db";
}

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

.fa-weight-hanging::before {
  content: "\f5cd";
}

.fa-xmarks-lines::before {
  content: "\e59a";
}

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

.fa-weight-scale::before {
  content: "\f496";
}

.fa-weight::before {
  content: "\f496";
}

.fa-user-group::before {
  content: "\f500";
}

.fa-user-friends::before {
  content: "\f500";
}

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

.fa-sort-alpha-up::before {
  content: "\f15e";
}

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

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

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

.fa-wheelchair::before {
  content: "\f193";
}

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

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

.fa-toggle-on::before {
  content: "\f205";
}

.fa-person-walking::before {
  content: "\f554";
}

.fa-walking::before {
  content: "\f554";
}

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

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

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

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

.fa-shuttle-space::before {
  content: "\f197";
}

.fa-space-shuttle::before {
  content: "\f197";
}

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

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

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

.fa-heart-circle-plus::before {
  content: "\e500";
}

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

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

.fa-microphone-lines::before {
  content: "\f3c9";
}

.fa-microphone-alt::before {
  content: "\f3c9";
}

.fa-pepper-hot::before {
  content: "\f816";
}

.fa-unlock::before {
  content: "\f09c";
}

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

.fa-headset::before {
  content: "\f590";
}

.fa-store-slash::before {
  content: "\e071";
}

.fa-road-circle-xmark::before {
  content: "\e566";
}

.fa-user-minus::before {
  content: "\f503";
}

.fa-mars-stroke-up::before {
  content: "\f22a";
}

.fa-mars-stroke-v::before {
  content: "\f22a";
}

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

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

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

.fa-house-circle-exclamation::before {
  content: "\e50a";
}

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

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

.fa-wifi::before {
  content: "\f1eb";
}

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

.fa-wifi-strong::before {
  content: "\f1eb";
}

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

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

.fa-underline::before {
  content: "\f0cd";
}

.fa-user-pen::before {
  content: "\f4ff";
}

.fa-user-edit::before {
  content: "\f4ff";
}

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

.fa-stroopwafel::before {
  content: "\f551";
}

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

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

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

.fa-manat-sign::before {
  content: "\e1d5";
}

.fa-not-equal::before {
  content: "\f53e";
}

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

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

.fa-map-location-dot::before {
  content: "\f5a0";
}

.fa-map-marked-alt::before {
  content: "\f5a0";
}

.fa-jedi::before {
  content: "\f669";
}

.fa-square-poll-vertical::before {
  content: "\f681";
}

.fa-poll::before {
  content: "\f681";
}

.fa-mug-hot::before {
  content: "\f7b6";
}

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

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

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

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

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

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

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

.fa-building-circle-check::before {
  content: "\e4d2";
}

.fa-person-chalkboard::before {
  content: "\e53d";
}

.fa-mars-stroke-right::before {
  content: "\f22b";
}

.fa-mars-stroke-h::before {
  content: "\f22b";
}

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

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

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

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

.fa-cloud-showers-water::before {
  content: "\e4e4";
}

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

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

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

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

.fa-less-than-equal::before {
  content: "\f537";
}

.fa-train::before {
  content: "\f238";
}

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

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

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

.fa-sailboat::before {
  content: "\e445";
}

.fa-window-restore::before {
  content: "\f2d2";
}

.fa-square-plus::before {
  content: "\f0fe";
}

.fa-plus-square::before {
  content: "\f0fe";
}

.fa-torii-gate::before {
  content: "\f6a1";
}

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

.fa-bucket::before {
  content: "\e4cf";
}

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

.fa-microphone::before {
  content: "\f130";
}

.fa-cow::before {
  content: "\f6c8";
}

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

.fa-screwdriver::before {
  content: "\f54a";
}

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

.fa-house-tsunami::before {
  content: "\e515";
}

.fa-square-nfi::before {
  content: "\e576";
}

.fa-arrow-up-from-ground-water::before {
  content: "\e4b5";
}

.fa-martini-glass::before {
  content: "\f57b";
}

.fa-glass-martini-alt::before {
  content: "\f57b";
}

.fa-rotate-left::before {
  content: "\f2ea";
}

.fa-rotate-back::before {
  content: "\f2ea";
}

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

.fa-undo-alt::before {
  content: "\f2ea";
}

.fa-table-columns::before {
  content: "\f0db";
}

.fa-columns::before {
  content: "\f0db";
}

.fa-lemon::before {
  content: "\f094";
}

.fa-head-side-mask::before {
  content: "\e063";
}

.fa-handshake::before {
  content: "\f2b5";
}

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

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

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

.fa-smoking::before {
  content: "\f48d";
}

.fa-minimize::before {
  content: "\f78c";
}

.fa-compress-arrows-alt::before {
  content: "\f78c";
}

.fa-monument::before {
  content: "\f5a6";
}

.fa-snowplow::before {
  content: "\f7d2";
}

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

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

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

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

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

.fa-tablets::before {
  content: "\f490";
}

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

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

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

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

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

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

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

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

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

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

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

.fa-plate-wheat::before {
  content: "\e55a";
}

.fa-icicles::before {
  content: "\f7ad";
}

.fa-person-shelter::before {
  content: "\e54f";
}

.fa-neuter::before {
  content: "\f22c";
}

.fa-id-badge::before {
  content: "\f2c1";
}

.fa-marker::before {
  content: "\f5a1";
}

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

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

.fa-helicopter-symbol::before {
  content: "\e502";
}

.fa-universal-access::before {
  content: "\f29a";
}

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

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

.fa-lari-sign::before {
  content: "\e1c8";
}

.fa-volcano::before {
  content: "\f770";
}

.fa-person-walking-dashed-line-arrow-right::before {
  content: "\e553";
}

.fa-sterling-sign::before {
  content: "\f154";
}

.fa-gbp::before {
  content: "\f154";
}

.fa-pound-sign::before {
  content: "\f154";
}

.fa-viruses::before {
  content: "\e076";
}

.fa-square-person-confined::before {
  content: "\e577";
}

.fa-user-tie::before {
  content: "\f508";
}

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

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

.fa-tent-arrow-down-to-line::before {
  content: "\e57e";
}

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

.fa-reply-all::before {
  content: "\f122";
}

.fa-mail-reply-all::before {
  content: "\f122";
}

.fa-suitcase::before {
  content: "\f0f2";
}

.fa-person-skating::before {
  content: "\f7c5";
}

.fa-skating::before {
  content: "\f7c5";
}

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

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

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

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

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

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

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

.fa-square-arrow-up-right::before {
  content: "\f14c";
}

.fa-external-link-square::before {
  content: "\f14c";
}

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

.fa-scroll::before {
  content: "\f70e";
}

.fa-spa::before {
  content: "\f5bb";
}

.fa-location-pin-lock::before {
  content: "\e51f";
}

.fa-pause::before {
  content: "\f04c";
}

.fa-hill-avalanche::before {
  content: "\e507";
}

.fa-temperature-empty::before {
  content: "\f2cb";
}

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

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

.fa-thermometer-empty::before {
  content: "\f2cb";
}

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

.fa-registered::before {
  content: "\f25d";
}

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

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

.fa-vcard::before {
  content: "\f2bb";
}

.fa-scale-unbalanced-flip::before {
  content: "\f516";
}

.fa-balance-scale-right::before {
  content: "\f516";
}

.fa-subscript::before {
  content: "\f12c";
}

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

.fa-directions::before {
  content: "\f5eb";
}

.fa-burst::before {
  content: "\e4dc";
}

.fa-house-laptop::before {
  content: "\e066";
}

.fa-laptop-house::before {
  content: "\e066";
}

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

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

.fa-money-bills::before {
  content: "\e1f3";
}

.fa-smog::before {
  content: "\f75f";
}

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

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

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

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

.fa-palette::before {
  content: "\f53f";
}

.fa-arrows-turn-right::before {
  content: "\e4c0";
}

.fa-vest::before {
  content: "\e085";
}

.fa-ferry::before {
  content: "\e4ea";
}

.fa-arrows-down-to-people::before {
  content: "\e4b9";
}

.fa-seedling::before {
  content: "\f4d8";
}

.fa-sprout::before {
  content: "\f4d8";
}

.fa-left-right::before {
  content: "\f337";
}

.fa-arrows-alt-h::before {
  content: "\f337";
}

.fa-boxes-packing::before {
  content: "\e4c7";
}

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

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

.fa-group-arrows-rotate::before {
  content: "\e4f6";
}

.fa-bowl-food::before {
  content: "\e4c6";
}

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

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

.fa-sort-amount-asc::before {
  content: "\f160";
}

.fa-sort-amount-down::before {
  content: "\f160";
}

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

.fa-thunderstorm::before {
  content: "\f76c";
}

.fa-text-slash::before {
  content: "\f87d";
}

.fa-remove-format::before {
  content: "\f87d";
}

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

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

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

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

.fa-arrows-left-right::before {
  content: "\f07e";
}

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

.fa-house-lock::before {
  content: "\e510";
}

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

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

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

.fa-children::before {
  content: "\e4e1";
}

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

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

.fa-user-large-slash::before {
  content: "\f4fa";
}

.fa-user-alt-slash::before {
  content: "\f4fa";
}

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

.fa-handshake-simple-slash::before {
  content: "\e05f";
}

.fa-handshake-alt-slash::before {
  content: "\e05f";
}

.fa-mattress-pillow::before {
  content: "\e525";
}

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

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

.fa-refresh::before {
  content: "\f021";
}

.fa-sync::before {
  content: "\f021";
}

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

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

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

.fa-shield-halved::before {
  content: "\f3ed";
}

.fa-shield-alt::before {
  content: "\f3ed";
}

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

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

.fa-virus::before {
  content: "\e074";
}

.fa-envelope-circle-check::before {
  content: "\e4e8";
}

.fa-layer-group::before {
  content: "\f5fd";
}

.fa-arrows-to-dot::before {
  content: "\e4be";
}

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

.fa-heart-circle-check::before {
  content: "\e4fd";
}

.fa-house-chimney-crack::before {
  content: "\f6f1";
}

.fa-house-damage::before {
  content: "\f6f1";
}

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

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

.fa-square::before {
  content: "\f0c8";
}

.fa-martini-glass-empty::before {
  content: "\f000";
}

.fa-glass-martini::before {
  content: "\f000";
}

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

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

.fa-italic::before {
  content: "\f033";
}

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

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

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

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

.fa-person-skiing::before {
  content: "\f7c9";
}

.fa-skiing::before {
  content: "\f7c9";
}

.fa-road-lock::before {
  content: "\e567";
}

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

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

.fa-temperature-down::before {
  content: "\e03f";
}

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

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

.fa-p::before {
  content: "\50";
}

.fa-snowflake::before {
  content: "\f2dc";
}

.fa-newspaper::before {
  content: "\f1ea";
}

.fa-rectangle-ad::before {
  content: "\f641";
}

.fa-ad::before {
  content: "\f641";
}

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

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

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

.fa-locust::before {
  content: "\e520";
}

.fa-sort::before {
  content: "\f0dc";
}

.fa-unsorted::before {
  content: "\f0dc";
}

.fa-list-ol::before {
  content: "\f0cb";
}

.fa-list-1-2::before {
  content: "\f0cb";
}

.fa-list-numeric::before {
  content: "\f0cb";
}

.fa-person-dress-burst::before {
  content: "\e544";
}

.fa-money-check-dollar::before {
  content: "\f53d";
}

.fa-money-check-alt::before {
  content: "\f53d";
}

.fa-vector-square::before {
  content: "\f5cb";
}

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

.fa-language::before {
  content: "\f1ab";
}

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

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

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

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

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

.fa-up-down-left-right::before {
  content: "\f0b2";
}

.fa-arrows-alt::before {
  content: "\f0b2";
}

.fa-house-chimney-user::before {
  content: "\e065";
}

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

.fa-puzzle-piece::before {
  content: "\f12e";
}

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

.fa-star-half-stroke::before {
  content: "\f5c0";
}

.fa-star-half-alt::before {
  content: "\f5c0";
}

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

.fa-whiskey-glass::before {
  content: "\f7a0";
}

.fa-glass-whiskey::before {
  content: "\f7a0";
}

.fa-building-circle-exclamation::before {
  content: "\e4d3";
}

.fa-magnifying-glass-chart::before {
  content: "\e522";
}

.fa-arrow-up-right-from-square::before {
  content: "\f08e";
}

.fa-external-link::before {
  content: "\f08e";
}

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

.fa-won-sign::before {
  content: "\f159";
}

.fa-krw::before {
  content: "\f159";
}

.fa-won::before {
  content: "\f159";
}

.fa-virus-covid::before {
  content: "\e4a8";
}

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

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

.fa-leaf::before {
  content: "\f06c";
}

.fa-road::before {
  content: "\f018";
}

.fa-taxi::before {
  content: "\f1ba";
}

.fa-cab::before {
  content: "\f1ba";
}

.fa-person-circle-plus::before {
  content: "\e541";
}

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

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

.fa-bolt-lightning::before {
  content: "\e0b7";
}

.fa-sack-xmark::before {
  content: "\e56a";
}

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

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

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

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

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

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

.fa-object-ungroup::before {
  content: "\f248";
}

.fa-poop::before {
  content: "\f619";
}

.fa-location-pin::before {
  content: "\f041";
}

.fa-map-marker::before {
  content: "\f041";
}

.fa-kaaba::before {
  content: "\f66b";
}

.fa-toilet-paper::before {
  content: "\f71e";
}

.fa-helmet-safety::before {
  content: "\f807";
}

.fa-hard-hat::before {
  content: "\f807";
}

.fa-hat-hard::before {
  content: "\f807";
}

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

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

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

.fa-plane-circle-check::before {
  content: "\e555";
}

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

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

.fa-object-group::before {
  content: "\f247";
}

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

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

.fa-mask-ventilator::before {
  content: "\e524";
}

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

.fa-signs-post::before {
  content: "\f277";
}

.fa-map-signs::before {
  content: "\f277";
}

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

.fa-person-circle-question::before {
  content: "\e542";
}

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

.fa-tarp::before {
  content: "\e57b";
}

.fa-screwdriver-wrench::before {
  content: "\f7d9";
}

.fa-tools::before {
  content: "\f7d9";
}

.fa-arrows-to-eye::before {
  content: "\e4bf";
}

.fa-plug-circle-bolt::before {
  content: "\e55b";
}

.fa-heart::before {
  content: "\f004";
}

.fa-mars-and-venus::before {
  content: "\f224";
}

.fa-house-user::before {
  content: "\e1b0";
}

.fa-home-user::before {
  content: "\e1b0";
}

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

.fa-house-crack::before {
  content: "\e3b1";
}

.fa-martini-glass-citrus::before {
  content: "\f561";
}

.fa-cocktail::before {
  content: "\f561";
}

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

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

.fa-bottle-water::before {
  content: "\e4c5";
}

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

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

.fa-toilet-paper-slash::before {
  content: "\e072";
}

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

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

.fa-kitchen-set::before {
  content: "\e51a";
}

.fa-r::before {
  content: "\52";
}

.fa-temperature-quarter::before {
  content: "\f2ca";
}

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

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

.fa-thermometer-quarter::before {
  content: "\f2ca";
}

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

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

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

.fa-solar-panel::before {
  content: "\f5ba";
}

.fa-lock-open::before {
  content: "\f3c1";
}

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

.fa-money-bill-transfer::before {
  content: "\e528";
}

.fa-money-bill-trend-up::before {
  content: "\e529";
}

.fa-house-flood-water-circle-arrow-right::before {
  content: "\e50f";
}

.fa-square-poll-horizontal::before {
  content: "\f682";
}

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

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

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

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

.fa-recycle::before {
  content: "\f1b8";
}

.fa-user-astronaut::before {
  content: "\f4fb";
}

.fa-plane-slash::before {
  content: "\e069";
}

.fa-trademark::before {
  content: "\f25c";
}

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

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

.fa-satellite-dish::before {
  content: "\f7c0";
}

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

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

.fa-mobile-screen-button::before {
  content: "\f3cd";
}

.fa-mobile-alt::before {
  content: "\f3cd";
}

.fa-volume-high::before {
  content: "\f028";
}

.fa-volume-up::before {
  content: "\f028";
}

.fa-users-rays::before {
  content: "\e593";
}

.fa-wallet::before {
  content: "\f555";
}

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

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

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

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

.fa-wrench::before {
  content: "\f0ad";
}

.fa-bugs::before {
  content: "\e4d0";
}

.fa-rupee-sign::before {
  content: "\f156";
}

.fa-rupee::before {
  content: "\f156";
}

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

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

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

.fa-plane-departure::before {
  content: "\f5b0";
}

.fa-handshake-slash::before {
  content: "\e060";
}

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

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

.fa-hat-cowboy::before {
  content: "\f8c0";
}

.fa-bridge::before {
  content: "\e4c8";
}

.fa-phone-flip::before {
  content: "\f879";
}

.fa-phone-alt::before {
  content: "\f879";
}

.fa-truck-front::before {
  content: "\e2b7";
}

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

.fa-anchor-circle-exclamation::before {
  content: "\e4ab";
}

.fa-truck-field::before {
  content: "\e58d";
}

.fa-route::before {
  content: "\f4d7";
}

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

.fa-panorama::before {
  content: "\e209";
}

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

.fa-teeth-open::before {
  content: "\f62f";
}

.fa-file-circle-minus::before {
  content: "\e4ed";
}

.fa-tags::before {
  content: "\f02c";
}

.fa-wine-glass::before {
  content: "\f4e3";
}

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

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

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

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

.fa-square-parking::before {
  content: "\f540";
}

.fa-parking::before {
  content: "\f540";
}

.fa-house-signal::before {
  content: "\e012";
}

.fa-bars-progress::before {
  content: "\f828";
}

.fa-tasks-alt::before {
  content: "\f828";
}

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

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

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

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

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

.fa-terminal::before {
  content: "\f120";
}

.fa-mobile-button::before {
  content: "\f10b";
}

.fa-house-medical-flag::before {
  content: "\e514";
}

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

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

.fa-tape::before {
  content: "\f4db";
}

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

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

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

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

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

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

.fa-person-military-to-person::before {
  content: "\e54c";
}

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

.fa-user-slash::before {
  content: "\f506";
}

.fa-pen::before {
  content: "\f304";
}

.fa-tower-observation::before {
  content: "\e586";
}

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

.fa-signal::before {
  content: "\f012";
}

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

.fa-signal-perfect::before {
  content: "\f012";
}

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

.fa-heart-circle-xmark::before {
  content: "\e501";
}

.fa-house-chimney::before {
  content: "\e3af";
}

.fa-home-lg::before {
  content: "\e3af";
}

.fa-window-maximize::before {
  content: "\f2d0";
}

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

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

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

.fa-shop::before {
  content: "\f54f";
}

.fa-store-alt::before {
  content: "\f54f";
}

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

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

.fa-vihara::before {
  content: "\f6a7";
}

.fa-scale-unbalanced::before {
  content: "\f515";
}

.fa-balance-scale-left::before {
  content: "\f515";
}

.fa-sort-up::before {
  content: "\f0de";
}

.fa-sort-asc::before {
  content: "\f0de";
}

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

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

.fa-plant-wilt::before {
  content: "\e5aa";
}

.fa-diamond::before {
  content: "\f219";
}

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

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

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

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

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

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

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

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

.fa-hands-praying::before {
  content: "\f684";
}

.fa-praying-hands::before {
  content: "\f684";
}

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

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

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

.fa-redo::before {
  content: "\f01e";
}

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

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

.fa-location::before {
  content: "\f601";
}

.fa-mars-double::before {
  content: "\f227";
}

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

.fa-users-between-lines::before {
  content: "\e591";
}

.fa-lungs-virus::before {
  content: "\e067";
}

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

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

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

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

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

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

.fa-head-side-virus::before {
  content: "\e064";
}

.fa-user-gear::before {
  content: "\f4fe";
}

.fa-user-cog::before {
  content: "\f4fe";
}

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

.fa-sort-numeric-up::before {
  content: "\f163";
}

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

.fa-shield-virus::before {
  content: "\e06c";
}

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

.fa-mosquito-net::before {
  content: "\e52c";
}

.fa-bridge-water::before {
  content: "\e4ce";
}

.fa-person-booth::before {
  content: "\f756";
}

.fa-text-width::before {
  content: "\f035";
}

.fa-hat-wizard::before {
  content: "\f6e8";
}

.fa-pen-fancy::before {
  content: "\f5ac";
}

.fa-person-digging::before {
  content: "\f85e";
}

.fa-digging::before {
  content: "\f85e";
}

.fa-trash::before {
  content: "\f1f8";
}

.fa-gauge-simple::before {
  content: "\f629";
}

.fa-gauge-simple-med::before {
  content: "\f629";
}

.fa-tachometer-average::before {
  content: "\f629";
}

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

.fa-poo::before {
  content: "\f2fe";
}

.fa-quote-right::before {
  content: "\f10e";
}

.fa-quote-right-alt::before {
  content: "\f10e";
}

.fa-shirt::before {
  content: "\f553";
}

.fa-t-shirt::before {
  content: "\f553";
}

.fa-tshirt::before {
  content: "\f553";
}

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

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

.fa-tenge-sign::before {
  content: "\f7d7";
}

.fa-tenge::before {
  content: "\f7d7";
}

.fa-headphones::before {
  content: "\f025";
}

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

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

.fa-republican::before {
  content: "\f75e";
}

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

.fa-person-circle-xmark::before {
  content: "\e543";
}

.fa-ruler::before {
  content: "\f545";
}

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

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

.fa-restroom::before {
  content: "\f7bd";
}

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

.fa-users-viewfinder::before {
  content: "\e595";
}

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

.fa-up-right-from-square::before {
  content: "\f35d";
}

.fa-external-link-alt::before {
  content: "\f35d";
}

.fa-table-cells::before {
  content: "\f00a";
}

.fa-th::before {
  content: "\f00a";
}

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

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

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

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

.fa-suitcase-medical::before {
  content: "\f0fa";
}

.fa-medkit::before {
  content: "\f0fa";
}

.fa-user-secret::before {
  content: "\f21b";
}

.fa-otter::before {
  content: "\f700";
}

.fa-person-dress::before {
  content: "\f182";
}

.fa-female::before {
  content: "\f182";
}

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

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

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

.fa-table-cells-large::before {
  content: "\f009";
}

.fa-th-large::before {
  content: "\f009";
}

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

.fa-tanakh::before {
  content: "\f827";
}

.fa-phone-volume::before {
  content: "\f2a0";
}

.fa-volume-control-phone::before {
  content: "\f2a0";
}

.fa-hat-cowboy-side::before {
  content: "\f8c1";
}

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

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

.fa-lira-sign::before {
  content: "\f195";
}

.fa-satellite::before {
  content: "\f7bf";
}

.fa-plane-lock::before {
  content: "\e558";
}

.fa-tag::before {
  content: "\f02b";
}

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

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

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

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

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

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

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

.fa-paperclip::before {
  content: "\f0c6";
}

.fa-arrow-right-to-city::before {
  content: "\e4b3";
}

.fa-ribbon::before {
  content: "\f4d6";
}

.fa-lungs::before {
  content: "\f604";
}

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

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

.fa-litecoin-sign::before {
  content: "\e1d3";
}

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

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

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

.fa-indent::before {
  content: "\f03c";
}

.fa-truck-field-un::before {
  content: "\e58e";
}

.fa-hourglass::before {
  content: "\f254";
}

.fa-hourglass-empty::before {
  content: "\f254";
}

.fa-mountain::before {
  content: "\f6fc";
}

.fa-user-doctor::before {
  content: "\f0f0";
}

.fa-user-md::before {
  content: "\f0f0";
}

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

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

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

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

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

.fa-square-virus::before {
  content: "\e578";
}

.fa-meteor::before {
  content: "\f753";
}

.fa-car-on::before {
  content: "\e4dd";
}

.fa-sleigh::before {
  content: "\f7cc";
}

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

.fa-sort-numeric-asc::before {
  content: "\f162";
}

.fa-sort-numeric-down::before {
  content: "\f162";
}

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

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

.fa-water::before {
  content: "\f773";
}

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

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

.fa-prescription-bottle-medical::before {
  content: "\f486";
}

.fa-prescription-bottle-alt::before {
  content: "\f486";
}

.fa-landmark::before {
  content: "\f66f";
}

.fa-truck::before {
  content: "\f0d1";
}

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

.fa-person-cane::before {
  content: "\e53c";
}

.fa-tent::before {
  content: "\e57d";
}

.fa-vest-patches::before {
  content: "\e086";
}

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

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

.fa-sort-alpha-asc::before {
  content: "\f15d";
}

.fa-sort-alpha-down::before {
  content: "\f15d";
}

.fa-money-bill-wheat::before {
  content: "\e52a";
}

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

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

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

.fa-arrow-rotate-back::before {
  content: "\f0e2";
}

.fa-arrow-rotate-backward::before {
  content: "\f0e2";
}

.fa-undo::before {
  content: "\f0e2";
}

.fa-hard-drive::before {
  content: "\f0a0";
}

.fa-hdd::before {
  content: "\f0a0";
}

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

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

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

.fa-rectangle-list::before {
  content: "\f022";
}

.fa-list-alt::before {
  content: "\f022";
}

.fa-tarp-droplet::before {
  content: "\e57c";
}

.fa-house-medical-circle-check::before {
  content: "\e511";
}

.fa-person-skiing-nordic::before {
  content: "\f7ca";
}

.fa-skiing-nordic::before {
  content: "\f7ca";
}

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

.fa-plane-arrival::before {
  content: "\f5af";
}

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

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

.fa-train-subway::before {
  content: "\f239";
}

.fa-subway::before {
  content: "\f239";
}

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

.fa-indian-rupee-sign::before {
  content: "\e1bc";
}

.fa-indian-rupee::before {
  content: "\e1bc";
}

.fa-inr::before {
  content: "\e1bc";
}

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

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

.fa-money-bill-1::before {
  content: "\f3d1";
}

.fa-money-bill-alt::before {
  content: "\f3d1";
}

.fa-left-long::before {
  content: "\f30a";
}

.fa-long-arrow-alt-left::before {
  content: "\f30a";
}

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

.fa-virus-slash::before {
  content: "\e075";
}

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

.fa-subtract::before {
  content: "\f068";
}

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

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

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

.fa-plug-circle-check::before {
  content: "\e55c";
}

.fa-street-view::before {
  content: "\f21d";
}

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

.fa-volume-off::before {
  content: "\f026";
}

.fa-hands-asl-interpreting::before {
  content: "\f2a3";
}

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

.fa-asl-interpreting::before {
  content: "\f2a3";
}

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

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

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

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

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

.fa-mosque::before {
  content: "\f678";
}

.fa-mosquito::before {
  content: "\e52b";
}

.fa-star-of-david::before {
  content: "\f69a";
}

.fa-person-military-rifle::before {
  content: "\e54b";
}

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

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

.fa-vials::before {
  content: "\f493";
}

.fa-plug-circle-plus::before {
  content: "\e55f";
}

.fa-place-of-worship::before {
  content: "\f67f";
}

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

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

.fa-level-up::before {
  content: "\f148";
}

.fa-u::before {
  content: "\55";
}

.fa-square-root-variable::before {
  content: "\f698";
}

.fa-square-root-alt::before {
  content: "\f698";
}

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

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

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

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

.fa-pallet::before {
  content: "\f482";
}

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

.fa-baseball-bat-ball::before {
  content: "\f432";
}

.fa-s::before {
  content: "\53";
}

.fa-timeline::before {
  content: "\e29c";
}

.fa-keyboard::before {
  content: "\f11c";
}

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

.fa-house-chimney-medical::before {
  content: "\f7f2";
}

.fa-clinic-medical::before {
  content: "\f7f2";
}

.fa-temperature-three-quarters::before {
  content: "\f2c8";
}

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

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

.fa-thermometer-three-quarters::before {
  content: "\f2c8";
}

.fa-mobile-screen::before {
  content: "\f3cf";
}

.fa-mobile-android-alt::before {
  content: "\f3cf";
}

.fa-plane-up::before {
  content: "\e22d";
}

.fa-piggy-bank::before {
  content: "\f4d3";
}

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

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

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

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

.fa-khanda::before {
  content: "\f66d";
}

.fa-sliders::before {
  content: "\f1de";
}

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

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

.fa-network-wired::before {
  content: "\f6ff";
}

.fa-map-pin::before {
  content: "\f276";
}

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

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

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

.fa-person-pregnant::before {
  content: "\e31e";
}

.fa-wand-sparkles::before {
  content: "\f72b";
}

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

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

.fa-ticket::before {
  content: "\f145";
}

.fa-power-off::before {
  content: "\f011";
}

.fa-right-long::before {
  content: "\f30b";
}

.fa-long-arrow-alt-right::before {
  content: "\f30b";
}

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

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

.fa-tty::before {
  content: "\f1e4";
}

.fa-teletype::before {
  content: "\f1e4";
}

.fa-diagram-next::before {
  content: "\e476";
}

.fa-person-rifle::before {
  content: "\e54e";
}

.fa-house-medical-circle-exclamation::before {
  content: "\e512";
}

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

.fa-person-hiking::before {
  content: "\f6ec";
}

.fa-hiking::before {
  content: "\f6ec";
}

.fa-venus-double::before {
  content: "\f226";
}

.fa-images::before {
  content: "\f302";
}

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

.fa-people-pulling::before {
  content: "\e535";
}

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

.fa-cable-car::before {
  content: "\f7da";
}

.fa-tram::before {
  content: "\f7da";
}

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

.fa-building-circle-xmark::before {
  content: "\e4d4";
}

.fa-ship::before {
  content: "\f21a";
}

.fa-arrows-down-to-line::before {
  content: "\e4b8";
}

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

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

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

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

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

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

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

.fa-eyedropper::before {
  content: "\f1fb";
}

.fa-file-circle-check::before {
  content: "\e5a0";
}

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

.fa-mobile::before {
  content: "\f3ce";
}

.fa-mobile-android::before {
  content: "\f3ce";
}

.fa-mobile-phone::before {
  content: "\f3ce";
}

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

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

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

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

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

.fa-id-card::before {
  content: "\f2c2";
}

.fa-drivers-license::before {
  content: "\f2c2";
}

.fa-outdent::before {
  content: "\f03b";
}

.fa-dedent::before {
  content: "\f03b";
}

.fa-heart-circle-exclamation::before {
  content: "\e4fe";
}

.fa-house::before {
  content: "\f015";
}

.fa-home::before {
  content: "\f015";
}

.fa-home-alt::before {
  content: "\f015";
}

.fa-home-lg-alt::before {
  content: "\f015";
}

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

.fa-laptop-medical::before {
  content: "\f812";
}

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

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

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

.fa-kiwi-bird::before {
  content: "\f535";
}

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

.fa-exchange::before {
  content: "\f0ec";
}

.fa-rotate-right::before {
  content: "\f2f9";
}

.fa-redo-alt::before {
  content: "\f2f9";
}

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

.fa-utensils::before {
  content: "\f2e7";
}

.fa-cutlery::before {
  content: "\f2e7";
}

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

.fa-sort-amount-up::before {
  content: "\f161";
}

.fa-mill-sign::before {
  content: "\e1ed";
}

.fa-bowl-rice::before {
  content: "\e2eb";
}

.fa-skull::before {
  content: "\f54c";
}

.fa-tower-broadcast::before {
  content: "\f519";
}

.fa-broadcast-tower::before {
  content: "\f519";
}

.fa-truck-pickup::before {
  content: "\f63c";
}

.fa-up-long::before {
  content: "\f30c";
}

.fa-long-arrow-alt-up::before {
  content: "\f30c";
}

.fa-stop::before {
  content: "\f04d";
}

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

.fa-upload::before {
  content: "\f093";
}

.fa-hurricane::before {
  content: "\f751";
}

.fa-mound::before {
  content: "\e52d";
}

.fa-toilet-portable::before {
  content: "\e583";
}

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

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

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

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

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

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

.fa-zap::before {
  content: "\f0e7";
}

.fa-glass-water::before {
  content: "\e4f4";
}

.fa-oil-well::before {
  content: "\e532";
}

.fa-vault::before {
  content: "\e2c5";
}

.fa-mars::before {
  content: "\f222";
}

.fa-toilet::before {
  content: "\f7d8";
}

.fa-plane-circle-xmark::before {
  content: "\e557";
}

.fa-yen-sign::before {
  content: "\f157";
}

.fa-cny::before {
  content: "\f157";
}

.fa-jpy::before {
  content: "\f157";
}

.fa-rmb::before {
  content: "\f157";
}

.fa-yen::before {
  content: "\f157";
}

.fa-ruble-sign::before {
  content: "\f158";
}

.fa-rouble::before {
  content: "\f158";
}

.fa-rub::before {
  content: "\f158";
}

.fa-ruble::before {
  content: "\f158";
}

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

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

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

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

.fa-horse-head::before {
  content: "\f7ab";
}

.fa-bore-hole::before {
  content: "\e4c3";
}

.fa-industry::before {
  content: "\f275";
}

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

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

.fa-arrows-turn-to-dots::before {
  content: "\e4c1";
}

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

.fa-arrow-down-short-wide::before {
  content: "\f884";
}

.fa-sort-amount-desc::before {
  content: "\f884";
}

.fa-sort-amount-down-alt::before {
  content: "\f884";
}

.fa-less-than::before {
  content: "\3c";
}

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

.fa-car-tunnel::before {
  content: "\e4de";
}

.fa-head-side-cough::before {
  content: "\e061";
}

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

.fa-thumbs-down::before {
  content: "\f165";
}

.fa-user-lock::before {
  content: "\f502";
}

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

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

.fa-anchor-circle-xmark::before {
  content: "\e4ac";
}

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

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

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

.fa-kit-medical::before {
  content: "\f479";
}

.fa-first-aid::before {
  content: "\f479";
}

.fa-person-through-window::before {
  content: "\e5a9";
}

.fa-toolbox::before {
  content: "\f552";
}

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

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

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

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

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

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

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

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

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

.fa-mountain-sun::before {
  content: "\e52f";
}

.fa-arrows-left-right-to-line::before {
  content: "\e4ba";
}

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

.fa-truck-droplet::before {
  content: "\e58c";
}

.fa-file-circle-xmark::before {
  content: "\e5a1";
}

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

.fa-temperature-up::before {
  content: "\e040";
}

.fa-medal::before {
  content: "\f5a2";
}

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

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

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

.fa-podcast::before {
  content: "\f2ce";
}

.fa-temperature-full::before {
  content: "\f2c7";
}

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

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

.fa-thermometer-full::before {
  content: "\f2c7";
}

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

.fa-superscript::before {
  content: "\f12b";
}

.fa-plug-circle-xmark::before {
  content: "\e560";
}

.fa-star-of-life::before {
  content: "\f621";
}

.fa-phone-slash::before {
  content: "\f3dd";
}

.fa-paint-roller::before {
  content: "\f5aa";
}

.fa-handshake-angle::before {
  content: "\f4c4";
}

.fa-hands-helping::before {
  content: "\f4c4";
}

.fa-location-dot::before {
  content: "\f3c5";
}

.fa-map-marker-alt::before {
  content: "\f3c5";
}

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

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

.fa-person-swimming::before {
  content: "\f5c4";
}

.fa-swimmer::before {
  content: "\f5c4";
}

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

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

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

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

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

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

.fa-earth-america::before {
  content: "\f57d";
}

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

.fa-person-burst::before {
  content: "\e53b";
}

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

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

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

.fa-socks::before {
  content: "\f696";
}

.fa-inbox::before {
  content: "\f01c";
}

.fa-section::before {
  content: "\e447";
}

.fa-gauge-high::before {
  content: "\f625";
}

.fa-tachometer-alt::before {
  content: "\f625";
}

.fa-tachometer-alt-fast::before {
  content: "\f625";
}

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

.fa-hospital::before {
  content: "\f0f8";
}

.fa-hospital-alt::before {
  content: "\f0f8";
}

.fa-hospital-wide::before {
  content: "\f0f8";
}

.fa-wine-bottle::before {
  content: "\f72f";
}

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

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

.fa-reorder::before {
  content: "\f550";
}

.fa-stream::before {
  content: "\f550";
}

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

.fa-hotdog::before {
  content: "\f80f";
}

.fa-person-walking-with-cane::before {
  content: "\f29d";
}

.fa-blind::before {
  content: "\f29d";
}

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

.fa-ice-cream::before {
  content: "\f810";
}

.fa-heart-circle-bolt::before {
  content: "\e4fc";
}

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

.fa-paragraph::before {
  content: "\f1dd";
}

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

.fa-vote-yea::before {
  content: "\f772";
}

.fa-star-half::before {
  content: "\f089";
}

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

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

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

.fa-link::before {
  content: "\f0c1";
}

.fa-chain::before {
  content: "\f0c1";
}

.fa-ear-listen::before {
  content: "\f2a2";
}

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

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

.fa-play::before {
  content: "\f04b";
}

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

.fa-rupiah-sign::before {
  content: "\e23d";
}

.fa-magnifying-glass::before {
  content: "\f002";
}

.fa-search::before {
  content: "\f002";
}

.fa-table-tennis-paddle-ball::before {
  content: "\f45d";
}

.fa-ping-pong-paddle-ball::before {
  content: "\f45d";
}

.fa-table-tennis::before {
  content: "\f45d";
}

.fa-person-dots-from-line::before {
  content: "\f470";
}

.fa-diagnoses::before {
  content: "\f470";
}

.fa-trash-can-arrow-up::before {
  content: "\f82a";
}

.fa-trash-restore-alt::before {
  content: "\f82a";
}

.fa-naira-sign::before {
  content: "\e1f6";
}

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

.fa-walkie-talkie::before {
  content: "\f8ef";
}

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

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

.fa-receipt::before {
  content: "\f543";
}

.fa-square-pen::before {
  content: "\f14b";
}

.fa-pen-square::before {
  content: "\f14b";
}

.fa-pencil-square::before {
  content: "\f14b";
}

.fa-suitcase-rolling::before {
  content: "\f5c1";
}

.fa-person-circle-exclamation::before {
  content: "\e53f";
}

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

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

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

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

.fa-skull-crossbones::before {
  content: "\f714";
}

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

.fa-list-ul::before {
  content: "\f0ca";
}

.fa-list-dots::before {
  content: "\f0ca";
}

.fa-school-lock::before {
  content: "\e56f";
}

.fa-tower-cell::before {
  content: "\e585";
}

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

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

.fa-ranking-star::before {
  content: "\e561";
}

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

.fa-person-harassing::before {
  content: "\e549";
}

.fa-brazilian-real-sign::before {
  content: "\e46c";
}

.fa-landmark-dome::before {
  content: "\f752";
}

.fa-landmark-alt::before {
  content: "\f752";
}

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

.fa-tv::before {
  content: "\f26c";
}

.fa-television::before {
  content: "\f26c";
}

.fa-tv-alt::before {
  content: "\f26c";
}

.fa-shrimp::before {
  content: "\e448";
}

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

.fa-tasks::before {
  content: "\f0ae";
}

.fa-jug-detergent::before {
  content: "\e519";
}

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

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

.fa-user-shield::before {
  content: "\f505";
}

.fa-wind::before {
  content: "\f72e";
}

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

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

.fa-y::before {
  content: "\59";
}

.fa-person-snowboarding::before {
  content: "\f7ce";
}

.fa-snowboarding::before {
  content: "\f7ce";
}

.fa-truck-fast::before {
  content: "\f48b";
}

.fa-shipping-fast::before {
  content: "\f48b";
}

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

.fa-user-graduate::before {
  content: "\f501";
}

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

.fa-adjust::before {
  content: "\f042";
}

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

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

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

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

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

.fa-jet-fighter-up::before {
  content: "\e518";
}

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

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

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

.fa-volume-xmark::before {
  content: "\f6a9";
}

.fa-volume-mute::before {
  content: "\f6a9";
}

.fa-volume-times::before {
  content: "\f6a9";
}

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

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

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

.fa-share-from-square::before {
  content: "\f14d";
}

.fa-share-square::before {
  content: "\f14d";
}

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

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

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

.fa-square-phone::before {
  content: "\f098";
}

.fa-phone-square::before {
  content: "\f098";
}

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

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

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

.fa-computer::before {
  content: "\e4e5";
}

.fa-xmark::before {
  content: "\f00d";
}

.fa-close::before {
  content: "\f00d";
}

.fa-multiply::before {
  content: "\f00d";
}

.fa-remove::before {
  content: "\f00d";
}

.fa-times::before {
  content: "\f00d";
}

.fa-arrows-up-down-left-right::before {
  content: "\f047";
}

.fa-arrows::before {
  content: "\f047";
}

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

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

.fa-peso-sign::before {
  content: "\e222";
}

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

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

.fa-users-line::before {
  content: "\e592";
}

.fa-quote-left::before {
  content: "\f10d";
}

.fa-quote-left-alt::before {
  content: "\f10d";
}

.fa-tractor::before {
  content: "\f722";
}

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

.fa-trash-restore::before {
  content: "\f829";
}

.fa-arrow-down-up-lock::before {
  content: "\e4b0";
}

.fa-lines-leaning::before {
  content: "\e51e";
}

.fa-ruler-combined::before {
  content: "\f546";
}

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

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

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

.fa-teeth::before {
  content: "\f62e";
}

.fa-shekel-sign::before {
  content: "\f20b";
}

.fa-ils::before {
  content: "\f20b";
}

.fa-shekel::before {
  content: "\f20b";
}

.fa-sheqel::before {
  content: "\f20b";
}

.fa-sheqel-sign::before {
  content: "\f20b";
}

.fa-map::before {
  content: "\f279";
}

.fa-rocket::before {
  content: "\f135";
}

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

.fa-photo-video::before {
  content: "\f87c";
}

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

.fa-store::before {
  content: "\f54e";
}

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

.fa-plug-circle-minus::before {
  content: "\e55e";
}

.fa-sign-hanging::before {
  content: "\f4d9";
}

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

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

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

.fa-tablet::before {
  content: "\f3fb";
}

.fa-tablet-android::before {
  content: "\f3fb";
}

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

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

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

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

.fa-holly-berry::before {
  content: "\f7aa";
}

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

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

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

.fa-notdef::before {
  content: "\e1fe";
}

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

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

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

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

.fa-retweet::before {
  content: "\f079";
}

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

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

.fa-pump-soap::before {
  content: "\e06b";
}

.fa-video-slash::before {
  content: "\f4e2";
}

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

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

.fa-radio::before {
  content: "\f8d7";
}

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

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

.fa-traffic-light::before {
  content: "\f637";
}

.fa-thermometer::before {
  content: "\f491";
}

.fa-vr-cardboard::before {
  content: "\f729";
}

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

.fa-percent::before {
  content: "\25";
}

.fa-percentage::before {
  content: "\25";
}

.fa-truck-moving::before {
  content: "\f4df";
}

.fa-glass-water-droplet::before {
  content: "\e4f5";
}

.fa-display::before {
  content: "\e163";
}

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

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

.fa-thumbtack::before {
  content: "\f08d";
}

.fa-thumb-tack::before {
  content: "\f08d";
}

.fa-trophy::before {
  content: "\f091";
}

.fa-person-praying::before {
  content: "\f683";
}

.fa-pray::before {
  content: "\f683";
}

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

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

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

.fa-sync-alt::before {
  content: "\f2f1";
}

.fa-spinner::before {
  content: "\f110";
}

.fa-robot::before {
  content: "\f544";
}

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

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

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

.fa-warehouse::before {
  content: "\f494";
}

.fa-arrow-up-right-dots::before {
  content: "\e4b7";
}

.fa-splotch::before {
  content: "\f5bc";
}

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

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

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

.fa-sim-card::before {
  content: "\f7c4";
}

.fa-transgender::before {
  content: "\f225";
}

.fa-transgender-alt::before {
  content: "\f225";
}

.fa-mercury::before {
  content: "\f223";
}

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

.fa-level-down::before {
  content: "\f149";
}

.fa-person-falling-burst::before {
  content: "\e547";
}

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

.fa-ticket-simple::before {
  content: "\f3ff";
}

.fa-ticket-alt::before {
  content: "\f3ff";
}

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

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

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

.fa-qrcode::before {
  content: "\f029";
}

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

.fa-history::before {
  content: "\f1da";
}

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

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

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

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

.fa-shield::before {
  content: "\f132";
}

.fa-shield-blank::before {
  content: "\f132";
}

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

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

.fa-house-medical::before {
  content: "\e3b2";
}

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

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

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

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

.fa-house-chimney-window::before {
  content: "\e00d";
}

.fa-pen-nib::before {
  content: "\f5ad";
}

.fa-tent-arrow-turn-left::before {
  content: "\e580";
}

.fa-tents::before {
  content: "\e582";
}

.fa-wand-magic::before {
  content: "\f0d0";
}

.fa-magic::before {
  content: "\f0d0";
}

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

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

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

.fa-wine-glass-empty::before {
  content: "\f5ce";
}

.fa-wine-glass-alt::before {
  content: "\f5ce";
}

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

.fa-yin-yang::before {
  content: "\f6ad";
}

.fa-music::before {
  content: "\f001";
}

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

.fa-temperature-low::before {
  content: "\f76b";
}

.fa-person-biking::before {
  content: "\f84a";
}

.fa-biking::before {
  content: "\f84a";
}

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

.fa-shield-heart::before {
  content: "\e574";
}

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

.fa-earth-oceania::before {
  content: "\e47b";
}

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

.fa-square-xmark::before {
  content: "\f2d3";
}

.fa-times-square::before {
  content: "\f2d3";
}

.fa-xmark-square::before {
  content: "\f2d3";
}

.fa-hashtag::before {
  content: "\23";
}

.fa-up-right-and-down-left-from-center::before {
  content: "\f424";
}

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

.fa-oil-can::before {
  content: "\f613";
}

.fa-t::before {
  content: "\54";
}

.fa-hippo::before {
  content: "\f6ed";
}

.fa-chart-column::before {
  content: "\e0e3";
}

.fa-infinity::before {
  content: "\f534";
}

.fa-vial-circle-check::before {
  content: "\e596";
}

.fa-person-arrow-down-to-line::before {
  content: "\e538";
}

.fa-voicemail::before {
  content: "\f897";
}

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

.fa-person-walking-luggage::before {
  content: "\e554";
}

.fa-up-down::before {
  content: "\f338";
}

.fa-arrows-alt-v::before {
  content: "\f338";
}

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

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

.fa-trailer::before {
  content: "\e041";
}

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

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

.fa-sd-card::before {
  content: "\f7c2";
}

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

.fa-shoe-prints::before {
  content: "\f54b";
}

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

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

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

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

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

.fa-plug-circle-exclamation::before {
  content: "\e55d";
}

.fa-link-slash::before {
  content: "\f127";
}

.fa-chain-broken::before {
  content: "\f127";
}

.fa-chain-slash::before {
  content: "\f127";
}

.fa-unlink::before {
  content: "\f127";
}

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

.fa-person-walking-arrow-loop-left::before {
  content: "\e551";
}

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

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

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

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

.fa-tornado::before {
  content: "\f76f";
}

.fa-file-circle-plus::before {
  content: "\e494";
}

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

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

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

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

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

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

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

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

.fa-rss::before {
  content: "\f09e";
}

.fa-feed::before {
  content: "\f09e";
}

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

.fa-scale-balanced::before {
  content: "\f24e";
}

.fa-balance-scale::before {
  content: "\f24e";
}

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

.fa-tachometer::before {
  content: "\f62a";
}

.fa-tachometer-fast::before {
  content: "\f62a";
}

.fa-shower::before {
  content: "\f2cc";
}

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

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

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

.fa-table-list::before {
  content: "\f00b";
}

.fa-th-list::before {
  content: "\f00b";
}

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

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

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

.fa-user-plus::before {
  content: "\f234";
}

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

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

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

.fa-house-circle-check::before {
  content: "\e509";
}

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

.fa-diagram-successor::before {
  content: "\e47a";
}

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

.fa-arrows-split-up-and-left::before {
  content: "\e4bc";
}

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

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

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

.fa-briefcase::before {
  content: "\f0b1";
}

.fa-person-falling::before {
  content: "\e546";
}

.fa-image-portrait::before {
  content: "\f3e0";
}

.fa-portrait::before {
  content: "\f3e0";
}

.fa-user-tag::before {
  content: "\f507";
}

.fa-rug::before {
  content: "\e569";
}

.fa-earth-europe::before {
  content: "\f7a2";
}

.fa-globe-europe::before {
  content: "\f7a2";
}

.fa-cart-flatbed-suitcase::before {
  content: "\f59d";
}

.fa-luggage-cart::before {
  content: "\f59d";
}

.fa-rectangle-xmark::before {
  content: "\f410";
}

.fa-rectangle-times::before {
  content: "\f410";
}

.fa-times-rectangle::before {
  content: "\f410";
}

.fa-window-close::before {
  content: "\f410";
}

.fa-baht-sign::before {
  content: "\e0ac";
}

.fa-book-open::before {
  content: "\f518";
}

.fa-book-journal-whills::before {
  content: "\f66a";
}

.fa-journal-whills::before {
  content: "\f66a";
}

.fa-handcuffs::before {
  content: "\e4f8";
}

.fa-triangle-exclamation::before {
  content: "\f071";
}

.fa-exclamation-triangle::before {
  content: "\f071";
}

.fa-warning::before {
  content: "\f071";
}

.fa-database::before {
  content: "\f1c0";
}

.fa-share::before {
  content: "\f064";
}

.fa-arrow-turn-right::before {
  content: "\f064";
}

.fa-mail-forward::before {
  content: "\f064";
}

.fa-bottle-droplet::before {
  content: "\e4c4";
}

.fa-mask-face::before {
  content: "\e1d7";
}

.fa-hill-rockslide::before {
  content: "\e508";
}

.fa-right-left::before {
  content: "\f362";
}

.fa-exchange-alt::before {
  content: "\f362";
}

.fa-paper-plane::before {
  content: "\f1d8";
}

.fa-road-circle-exclamation::before {
  content: "\e565";
}

.fa-dungeon::before {
  content: "\f6d9";
}

.fa-align-right::before {
  content: "\f038";
}

.fa-money-bill-1-wave::before {
  content: "\f53b";
}

.fa-money-bill-wave-alt::before {
  content: "\f53b";
}

.fa-life-ring::before {
  content: "\f1cd";
}

.fa-hands::before {
  content: "\f2a7";
}

.fa-sign-language::before {
  content: "\f2a7";
}

.fa-signing::before {
  content: "\f2a7";
}

.fa-calendar-day::before {
  content: "\f783";
}

.fa-water-ladder::before {
  content: "\f5c5";
}

.fa-ladder-water::before {
  content: "\f5c5";
}

.fa-swimming-pool::before {
  content: "\f5c5";
}

.fa-arrows-up-down::before {
  content: "\f07d";
}

.fa-arrows-v::before {
  content: "\f07d";
}

.fa-face-grimace::before {
  content: "\f57f";
}

.fa-grimace::before {
  content: "\f57f";
}

.fa-wheelchair-move::before {
  content: "\e2ce";
}

.fa-wheelchair-alt::before {
  content: "\e2ce";
}

.fa-turn-down::before {
  content: "\f3be";
}

.fa-level-down-alt::before {
  content: "\f3be";
}

.fa-person-walking-arrow-right::before {
  content: "\e552";
}

.fa-square-envelope::before {
  content: "\f199";
}

.fa-envelope-square::before {
  content: "\f199";
}

.fa-dice::before {
  content: "\f522";
}

.fa-bowling-ball::before {
  content: "\f436";
}

.fa-brain::before {
  content: "\f5dc";
}

.fa-bandage::before {
  content: "\f462";
}

.fa-band-aid::before {
  content: "\f462";
}

.fa-calendar-minus::before {
  content: "\f272";
}

.fa-circle-xmark::before {
  content: "\f057";
}

.fa-times-circle::before {
  content: "\f057";
}

.fa-xmark-circle::before {
  content: "\f057";
}

.fa-gifts::before {
  content: "\f79c";
}

.fa-hotel::before {
  content: "\f594";
}

.fa-earth-asia::before {
  content: "\f57e";
}

.fa-globe-asia::before {
  content: "\f57e";
}

.fa-id-card-clip::before {
  content: "\f47f";
}

.fa-id-card-alt::before {
  content: "\f47f";
}

.fa-magnifying-glass-plus::before {
  content: "\f00e";
}

.fa-search-plus::before {
  content: "\f00e";
}

.fa-thumbs-up::before {
  content: "\f164";
}

.fa-user-clock::before {
  content: "\f4fd";
}

.fa-hand-dots::before {
  content: "\f461";
}

.fa-allergies::before {
  content: "\f461";
}

.fa-file-invoice::before {
  content: "\f570";
}

.fa-window-minimize::before {
  content: "\f2d1";
}

.fa-mug-saucer::before {
  content: "\f0f4";
}

.fa-coffee::before {
  content: "\f0f4";
}

.fa-brush::before {
  content: "\f55d";
}

.fa-mask::before {
  content: "\f6fa";
}

.fa-magnifying-glass-minus::before {
  content: "\f010";
}

.fa-search-minus::before {
  content: "\f010";
}

.fa-ruler-vertical::before {
  content: "\f548";
}

.fa-user-large::before {
  content: "\f406";
}

.fa-user-alt::before {
  content: "\f406";
}

.fa-train-tram::before {
  content: "\e5b4";
}

.fa-user-nurse::before {
  content: "\f82f";
}

.fa-syringe::before {
  content: "\f48e";
}

.fa-cloud-sun::before {
  content: "\f6c4";
}

.fa-stopwatch-20::before {
  content: "\e06f";
}

.fa-square-full::before {
  content: "\f45c";
}

.fa-magnet::before {
  content: "\f076";
}

.fa-jar::before {
  content: "\e516";
}

.fa-note-sticky::before {
  content: "\f249";
}

.fa-sticky-note::before {
  content: "\f249";
}

.fa-bug-slash::before {
  content: "\e490";
}

.fa-arrow-up-from-water-pump::before {
  content: "\e4b6";
}

.fa-bone::before {
  content: "\f5d7";
}

.fa-user-injured::before {
  content: "\f728";
}

.fa-face-sad-tear::before {
  content: "\f5b4";
}

.fa-sad-tear::before {
  content: "\f5b4";
}

.fa-plane::before {
  content: "\f072";
}

.fa-tent-arrows-down::before {
  content: "\e581";
}

.fa-exclamation::before {
  content: "\21";
}

.fa-arrows-spin::before {
  content: "\e4bb";
}

.fa-print::before {
  content: "\f02f";
}

.fa-turkish-lira-sign::before {
  content: "\e2bb";
}

.fa-try::before {
  content: "\e2bb";
}

.fa-turkish-lira::before {
  content: "\e2bb";
}

.fa-dollar-sign::before {
  content: "\24";
}

.fa-dollar::before {
  content: "\24";
}

.fa-usd::before {
  content: "\24";
}

.fa-x::before {
  content: "\58";
}

.fa-magnifying-glass-dollar::before {
  content: "\f688";
}

.fa-search-dollar::before {
  content: "\f688";
}

.fa-users-gear::before {
  content: "\f509";
}

.fa-users-cog::before {
  content: "\f509";
}

.fa-person-military-pointing::before {
  content: "\e54a";
}

.fa-building-columns::before {
  content: "\f19c";
}

.fa-bank::before {
  content: "\f19c";
}

.fa-institution::before {
  content: "\f19c";
}

.fa-museum::before {
  content: "\f19c";
}

.fa-university::before {
  content: "\f19c";
}

.fa-umbrella::before {
  content: "\f0e9";
}

.fa-trowel::before {
  content: "\e589";
}

.fa-d::before {
  content: "\44";
}

.fa-stapler::before {
  content: "\e5af";
}

.fa-masks-theater::before {
  content: "\f630";
}

.fa-theater-masks::before {
  content: "\f630";
}

.fa-kip-sign::before {
  content: "\e1c4";
}

.fa-hand-point-left::before {
  content: "\f0a5";
}

.fa-handshake-simple::before {
  content: "\f4c6";
}

.fa-handshake-alt::before {
  content: "\f4c6";
}

.fa-jet-fighter::before {
  content: "\f0fb";
}

.fa-fighter-jet::before {
  content: "\f0fb";
}

.fa-square-share-nodes::before {
  content: "\f1e1";
}

.fa-share-alt-square::before {
  content: "\f1e1";
}

.fa-barcode::before {
  content: "\f02a";
}

.fa-plus-minus::before {
  content: "\e43c";
}

.fa-video::before {
  content: "\f03d";
}

.fa-video-camera::before {
  content: "\f03d";
}

.fa-graduation-cap::before {
  content: "\f19d";
}

.fa-mortar-board::before {
  content: "\f19d";
}

.fa-hand-holding-medical::before {
  content: "\e05c";
}

.fa-person-circle-check::before {
  content: "\e53e";
}

.fa-turn-up::before {
  content: "\f3bf";
}

.fa-level-up-alt::before {
  content: "\f3bf";
}

.sr-only,
.fa-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sr-only-focusable:not(:focus),
.fa-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;
}

:root, :host {
  --fa-style-family-brands: 'Font Awesome 6 Brands';
  --fa-font-brands: normal 400 1em/1 'Font Awesome 6 Brands';
}

@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");
}

.fab,
.fa-brands {
  font-weight: 400;
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-aws:before {
  content: "\f375";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-cloudflare:before {
  content: "\e07d";
}

.fa-ups:before {
  content: "\f7e0";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-stackpath:before {
  content: "\f842";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-modx:before {
  content: "\f285";
}

.fa-guilded:before {
  content: "\e07e";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-square-js:before {
  content: "\f3b9";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-orcid:before {
  content: "\f8d2";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-unity:before {
  content: "\e049";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-vk:before {
  content: "\f189";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-square-reddit:before {
  content: "\f1a2";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-square-font-awesome:before {
  content: "\e5ad";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-square-instagram:before {
  content: "\e055";
}

.fa-instagram-square:before {
  content: "\e055";
}

.fa-battle-net:before {
  content: "\f835";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-square-hacker-news:before {
  content: "\f3af";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-edge:before {
  content: "\f282";
}

.fa-threads:before {
  content: "\e618";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-square-snapchat:before {
  content: "\f2ad";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-artstation:before {
  content: "\f77a";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-diaspora:before {
  content: "\f791";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-safari:before {
  content: "\f267";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-square-font-awesome-stroke:before {
  content: "\f35c";
}

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-atlassian:before {
  content: "\f77b";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-chromecast:before {
  content: "\f838";
}

.fa-evernote:before {
  content: "\f839";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-watchman-monitoring:before {
  content: "\e087";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-git-alt:before {
  content: "\f841";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-square-viadeo:before {
  content: "\f2aa";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-centos:before {
  content: "\f789";
}

.fa-adn:before {
  content: "\f170";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-square-dribbble:before {
  content: "\f397";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-node:before {
  content: "\f419";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-debian:before {
  content: "\e60b";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-instalod:before {
  content: "\e081";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-square-twitter:before {
  content: "\f081";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-golang:before {
  content: "\e40f";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-uncharted:before {
  content: "\e084";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-square-youtube:before {
  content: "\f431";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-rendact:before {
  content: "\f3e4";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-nfc-directional:before {
  content: "\e530";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-fedora:before {
  content: "\f798";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-meta:before {
  content: "\e49b";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-creative-commons-zero:before {
  content: "\f4f3";
}

.fa-hips:before {
  content: "\f452";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-discord:before {
  content: "\f392";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-confluence:before {
  content: "\f78d";
}

.fa-mdb:before {
  content: "\f8ca";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-unsplash:before {
  content: "\e07c";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-square-steam:before {
  content: "\f1b7";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-square-vimeo:before {
  content: "\f194";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-font-awesome-flag:before {
  content: "\f2b4";
}

.fa-font-awesome-logo-full:before {
  content: "\f2b4";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-apple:before {
  content: "\f179";
}

.fa-hive:before {
  content: "\e07f";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-padlet:before {
  content: "\e4a0";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-square-github:before {
  content: "\f092";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-fedex:before {
  content: "\f797";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-shopify:before {
  content: "\e057";
}

.fa-neos:before {
  content: "\f612";
}

.fa-square-threads:before {
  content: "\e619";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-swift:before {
  content: "\f8e1";
}

.fa-angular:before {
  content: "\f420";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-envira:before {
  content: "\f299";
}

.fa-square-gitlab:before {
  content: "\e5ae";
}

.fa-gitlab-square:before {
  content: "\e5ae";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-square-odnoklassniki:before {
  content: "\f264";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-sith:before {
  content: "\f512";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-hashnode:before {
  content: "\e499";
}

.fa-react:before {
  content: "\f41b";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-itch-io:before {
  content: "\f83a";
}

.fa-umbraco:before {
  content: "\f8e8";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-gg:before {
  content: "\f260";
}

.fa-dhl:before {
  content: "\f790";
}

.fa-square-pinterest:before {
  content: "\f0d3";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-xing:before {
  content: "\f168";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-less:before {
  content: "\f41d";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-dailymotion:before {
  content: "\e052";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-bootstrap:before {
  content: "\f836";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-nfc-symbol:before {
  content: "\e531";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-speaker-deck:before {
  content: "\f83c";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-ello:before {
  content: "\f5f1";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-square-google-plus:before {
  content: "\f0d4";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-square-xing:before {
  content: "\f169";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-usps:before {
  content: "\f7e1";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-fly:before {
  content: "\f417";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-viber:before {
  content: "\f409";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-symfony:before {
  content: "\f83d";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-audible:before {
  content: "\f373";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-bilibili:before {
  content: "\e3d9";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-x-twitter:before {
  content: "\e61b";
}

.fa-cotton-bureau:before {
  content: "\f89e";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-42-group:before {
  content: "\e080";
}

.fa-innosoft:before {
  content: "\e080";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-square-pied-piper:before {
  content: "\e01e";
}

.fa-pied-piper-square:before {
  content: "\e01e";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-tiktok:before {
  content: "\e07b";
}

.fa-square-facebook:before {
  content: "\f082";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-mixer:before {
  content: "\e056";
}

.fa-square-lastfm:before {
  content: "\f203";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-figma:before {
  content: "\f799";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-cmplid:before {
  content: "\e360";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-deezer:before {
  content: "\e077";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-docker:before {
  content: "\f395";
}

.fa-screenpal:before {
  content: "\e570";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-microblog:before {
  content: "\e01a";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-wirsindhandwerk:before {
  content: "\e2d0";
}

.fa-wsh:before {
  content: "\e2d0";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-salesforce:before {
  content: "\f83b";
}

.fa-octopus-deploy:before {
  content: "\e082";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-apper:before {
  content: "\f371";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-waze:before {
  content: "\f83f";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ab";
}

.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

.fa-rust:before {
  content: "\e07a";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-square-behance:before {
  content: "\f1b5";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-space-awesome:before {
  content: "\e5ac";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-square-git:before {
  content: "\f1d2";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-square-tumblr:before {
  content: "\f174";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-trello:before {
  content: "\f181";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-perbyte:before {
  content: "\e083";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-android:before {
  content: "\f17b";
}

.fa-bots:before {
  content: "\e340";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-ideal:before {
  content: "\e013";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-dev:before {
  content: "\f6cc";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-uber:before {
  content: "\f402";
}

.fa-github:before {
  content: "\f09b";
}

.fa-php:before {
  content: "\f457";
}

.fa-alipay:before {
  content: "\f642";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-firefox-browser:before {
  content: "\e007";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-buffer:before {
  content: "\f837";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-yammer:before {
  content: "\f840";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-stubber:before {
  content: "\e5c7";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f2c6";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-odysee:before {
  content: "\e5c6";
}

.fa-square-whatsapp:before {
  content: "\f40c";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-edge-legacy:before {
  content: "\e078";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f198";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-usb:before {
  content: "\f287";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-square-x-twitter:before {
  content: "\e61a";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f23a";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-critical-role:before {
  content: "\f6c9";
}

.fa-sitrox:before {
  content: "\e44a";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-airbnb:before {
  content: "\f834";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-buy-n-large:before {
  content: "\f8a6";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-strava:before {
  content: "\f428";
}

.fa-ember:before {
  content: "\f423";
}

.fa-canadian-maple-leaf:before {
  content: "\f785";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-wodu:before {
  content: "\e088";
}

.fa-google-pay:before {
  content: "\e079";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-zhihu:before {
  content: "\f63f";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-pix:before {
  content: "\e43a";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

:root, :host {
  --fa-style-family-classic: 'Font Awesome 6 Free';
  --fa-font-regular: normal 400 1em/1 'Font Awesome 6 Free';
}

@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");
}

.far,
.fa-regular {
  font-weight: 400;
}

:root, :host {
  --fa-style-family-classic: 'Font Awesome 6 Free';
  --fa-font-solid: normal 900 1em/1 'Font Awesome 6 Free';
}

@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");
}

.fas,
.fa-solid {
  font-weight: 900;
}

@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-display: block;
  font-weight: 400;
  src: url("webfonts/fa-brands-400.woff2") format("woff2"), url("webfonts/fa-brands-400.ttf") format("truetype");
}

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-display: block;
  font-weight: 900;
  src: url("webfonts/fa-solid-900.woff2") format("woff2"), url("webfonts/fa-solid-900.ttf") format("truetype");
}

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-display: block;
  font-weight: 400;
  src: url("webfonts/fa-regular-400.woff2") format("woff2"), url("webfonts/fa-regular-400.ttf") format("truetype");
}

@font-face {
  font-family: 'FontAwesome';
  font-display: block;
  src: url("webfonts/fa-solid-900.woff2") format("woff2"), url("webfonts/fa-solid-900.ttf") format("truetype");
}

@font-face {
  font-family: 'FontAwesome';
  font-display: block;
  src: url("webfonts/fa-brands-400.woff2") format("woff2"), url("webfonts/fa-brands-400.ttf") format("truetype");
}

@font-face {
  font-family: 'FontAwesome';
  font-display: block;
  src: url("webfonts/fa-regular-400.woff2") format("woff2"), url("webfonts/fa-regular-400.ttf") format("truetype");
  unicode-range: U+F003,U+F006,U+F014,U+F016-F017,U+F01A-F01B,U+F01D,U+F022,U+F03E,U+F044,U+F046,U+F05C-F05D,U+F06E,U+F070,U+F087-F088,U+F08A,U+F094,U+F096-F097,U+F09D,U+F0A0,U+F0A2,U+F0A4-F0A7,U+F0C5,U+F0C7,U+F0E5-F0E6,U+F0EB,U+F0F6-F0F8,U+F10C,U+F114-F115,U+F118-F11A,U+F11C-F11D,U+F133,U+F147,U+F14E,U+F150-F152,U+F185-F186,U+F18E,U+F190-F192,U+F196,U+F1C1-F1C9,U+F1D9,U+F1DB,U+F1E3,U+F1EA,U+F1F7,U+F1F9,U+F20A,U+F247-F248,U+F24A,U+F24D,U+F255-F25B,U+F25D,U+F271-F274,U+F278,U+F27B,U+F28C,U+F28E,U+F29C,U+F2B5,U+F2B7,U+F2BA,U+F2BC,U+F2BE,U+F2C0-F2C1,U+F2C3,U+F2D0,U+F2D2,U+F2D4,U+F2DC;
}

@font-face {
  font-family: 'FontAwesome';
  font-display: block;
  src: url("webfonts/fa-v4compatibility.woff2") format("woff2"), url("webfonts/fa-v4compatibility.ttf") format("truetype");
  unicode-range: U+F041,U+F047,U+F065-F066,U+F07D-F07E,U+F080,U+F08B,U+F08E,U+F090,U+F09A,U+F0AC,U+F0AE,U+F0B2,U+F0D0,U+F0D6,U+F0E4,U+F0EC,U+F10A-F10B,U+F123,U+F13E,U+F148-F149,U+F14C,U+F156,U+F15E,U+F160-F161,U+F163,U+F175-F178,U+F195,U+F1F8,U+F219,U+F27A;
}

.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: "Lato", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  font-weight: 400;
}

@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: 20px;
    line-height: 34px;
  }
}

table td {
  font-family: "Lato", sans-serif;
}

.edit-post-visual-editor__content-area strong, .entry-content strong {
  font-family: "Lato", sans-serif;
}

.edit-post-visual-editor__content-area ul li, .entry-content li {
  list-style-type: none;
  padding-left: 25px;
  position: relative;
}

i.fa {
  font-size: 17px;
  line-height: 18px;
}

.entry-content ul li li,
.edit-post-visual-editor__content-area ul li li {
  list-style-type: circle;
  padding-left: 0;
}

.edit-post-visual-editor__content-area ul li li:before,
.entry-content ul li li:before {
  display: none;
}

.edit-post-visual-editor__content-area ul li:not([class]):before, .entry-content ul li:not([class]):before {
  content: "\2022";
  color: #000000;
  position: absolute;
  top: 0;
  left: 0;
}

.gs-sin-mem-desig,
.gs_team b {
  font-weight: bold;
}

.gstm-details span {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #FFCB17;
  font-weight: 500;
}

@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: #000000;
}

.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;
}

@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: 15px;
}

@media screen and (min-width: 768px) {
  .edit-post-visual-editor__content-area li, .page .entry-content li,
  .post .post-content li {
    margin-bottom: 25px;
  }
}

.page .entry-content > ul {
  padding-left: 2.25rem;
}

@media screen and (min-width: 768px) {
  .page .entry-content > ul {
    padding-left: 2.5rem;
  }
}

.gs_team h1, .gs_team h1,
.edit-post-visual-editor__content-area h1, .entry-content h1 {
  font-size: 35px;
  line-height: 44px;
  color: #000000;
  margin-top: 2rem;
  font-family: "Lato", sans-serif;
  text-transform: none;
  font-weight: 900;
}

@media screen and (min-width: 768px) {
  .gs_team h1, .gs_team h1,
  .edit-post-visual-editor__content-area h1, .entry-content h1 {
    font-size: 55px;
    line-height: 60px;
    margin-top: 3rem;
    letter-spacing: 0.3px;
  }
}

.gs_team h2,
.edit-post-visual-editor__content-area h2, .entry-content h2 {
  font-size: 30px;
  line-height: 44px;
  color: #000000;
  margin-top: 1.75rem;
  font-family: "Lato", sans-serif;
  text-transform: none;
  font-weight: 900;
}

@media screen and (min-width: 768px) {
  .gs_team h2,
  .edit-post-visual-editor__content-area h2, .entry-content h2 {
    font-size: 35px;
    line-height: 40px;
    margin-top: 2.5rem;
  }
}

.related-posts h3,
.gs_team h3,
.edit-post-visual-editor__content-area h3, .entry-content h3 {
  color: #000000;
  font-size: 23px;
  line-height: 31px;
  text-transform: none;
  font-family: "Lato", sans-serif;
  font-weight: 900;
}

@media screen and (min-width: 768px) {
  .related-posts h3,
  .gs_team h3,
  .edit-post-visual-editor__content-area h3, .entry-content h3 {
    font-size: 27px;
    line-height: 38px;
  }
}

.gs_team h4,
.edit-post-visual-editor__content-area h4, .entry-content h4 {
  color: #505050;
  line-height: 24px;
  font-size: 21px;
  font-family: "Lato", sans-serif;
  letter-spacing: 1px;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .gs_team h4,
  .edit-post-visual-editor__content-area h4, .entry-content h4 {
    font-size: 21px;
    line-height: 34px;
    letter-spacing: 1.25px;
  }
}

.gs_team h5, .gs_team .accordion h5 button, .accordion h5 .gs_team button,
.edit-post-visual-editor__content-area h5,
.edit-post-visual-editor__content-area .accordion h5 button,
.accordion h5 .edit-post-visual-editor__content-area button, .entry-content h5, .entry-content .accordion h5 button, .accordion h5 .entry-content button {
  color: #000000;
  line-height: 18px;
  font-size: 19px;
  font-family: "Lato", sans-serif;
  font-weight: 900;
}

@media screen and (min-width: 768px) {
  .gs_team h5, .gs_team .accordion h5 button, .accordion h5 .gs_team button,
  .edit-post-visual-editor__content-area h5,
  .edit-post-visual-editor__content-area .accordion h5 button,
  .accordion h5 .edit-post-visual-editor__content-area button, .entry-content h5, .entry-content .accordion h5 button, .accordion h5 .entry-content button {
    font-size: 20px;
    line-height: 30px;
  }
}

.gs_team h6,
.edit-post-visual-editor__content-area h6, .entry-content h6 {
  color: #000000;
  line-height: 19px;
  font-size: 24px;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  font-weight: 900;
}

@media screen and (min-width: 768px) {
  .gs_team h6,
  .edit-post-visual-editor__content-area h6, .entry-content h6 {
    font-size: 20px;
    line-height: 26px;
  }
}

.entry-content h3 + h2,
.edit-post-visual-editor__content-area h3 + h2 {
  margin-top: 0;
}

.rigid {
  font-family: "Lato", sans-serif !important;
}

.industry {
  font-family: "Lato", sans-serif !important;
}

.has-red-color p,
.has-red-color,
.entry-content .has-red-color {
  color: #FFCB17;
}

background {
  background: linear-gradient(to bottom, #F2EBDC 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;
  }
}

button.wprevpro_load_more_btn,
#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: #FFCB17;
  color: #003474;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 22px;
  border: none;
  padding: 13px 25px 13px;
  cursor: pointer;
  transition-property: background, color;
  transition-duration: .25s;
  text-decoration: none;
  letter-spacing: 0.85px;
  border-radius: 0;
}

@media screen and (min-width: 768px) {
  button.wprevpro_load_more_btn.is-small,
  #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: 14px;
    line-height: 19px;
    padding: 10px 22px 11px;
  }
}

button.wprevpro_load_more_btn.bp-secondary-action, button.wprevpro_load_more_btn.wp-cancel-pw,
#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;
}

button.wprevpro_load_more_btn.bp-secondary-action:hover, button.wprevpro_load_more_btn.wp-cancel-pw:hover,
#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: #FFCB17;
}

@media screen and (min-width: 768px) {
  button.wprevpro_load_more_btn,
  #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: 20px;
    line-height: 24px;
    padding: 15px 25px;
  }
}

button.wprevpro_load_more_btn:visited,
#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: #003474;
}

button.wprevpro_load_more_btn:hover,
#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: #01819d;
  color: white;
}

button.wprevpro_load_more_btn[disabled],
#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 #FFCB17 !important;
  border-left: 2px solid #FFCB17 !important;
  border-right: 2px solid #FFCB17 !important;
  border-bottom: 4px solid #FFCB17 !important;
  border-radius: 0 !important;
  color: #FFCB17 !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: 17px 25px 17px !important;
  }
}

div.gs_team_area .gs-team-filter-cats li a:hover {
  background: #FFCB17 !important;
  color: white !important;
}

ul.gs-team-filter-cats li.filter.active > a {
  background: #FFCB17 !important;
  border-color: #FFCB17 !important;
}

.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: 1920px;
  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: #FFCB17;
}

.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: #003474;
  background: #FFCB17;
}

.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: #003474;
  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: #003474;
}

.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: #FFCB17;
  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,
div.gs_team_area .gs-team-filter-cats li .wp-block-button.is-style-outline > a,
.wp-block-button.is-style-outline > a[download],
li.menu-item.nav-button .wp-block-button.is-style-outline > a,
div.gform_wrapper .wp-block-button.is-style-outline > input[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color),
div.gs_team_area .gs-team-filter-cats li .wp-block-button.is-style-outline > a:not(.has-text-color),
.wp-block-button.is-style-outline > a:not(.has-text-color)[download],
li.menu-item.nav-button .wp-block-button.is-style-outline > a:not(.has-text-color),
div.gform_wrapper .wp-block-button.is-style-outline > input:not(.has-text-color)[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,
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],
li.menu-item.nav-button .wp-block-button.is-style-outline > a:hover,
div.gform_wrapper .wp-block-button.is-style-outline > input:hover[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color):hover,
div.gs_team_area .gs-team-filter-cats li .wp-block-button.is-style-outline > a:not(.has-text-color):hover,
.wp-block-button.is-style-outline > a:not(.has-text-color):hover[download],
li.menu-item.nav-button .wp-block-button.is-style-outline > a:not(.has-text-color):hover,
div.gform_wrapper .wp-block-button.is-style-outline > input:not(.has-text-color):hover[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]) {
  background: rgba(255, 255, 255, 0.8);
  color: black;
}

.wp-button.is-style-outline:visited,
.wp-block-button.is-style-outline > .wp-block-button__link: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],
li.menu-item.nav-button .wp-block-button.is-style-outline > a:visited,
div.gform_wrapper .wp-block-button.is-style-outline > input:visited[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color):visited,
div.gs_team_area .gs-team-filter-cats li .wp-block-button.is-style-outline > a:not(.has-text-color):visited,
.wp-block-button.is-style-outline > a:not(.has-text-color):visited[download],
li.menu-item.nav-button .wp-block-button.is-style-outline > a:not(.has-text-color):visited,
div.gform_wrapper .wp-block-button.is-style-outline > input:not(.has-text-color):visited[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]) {
  background: rgba(255, 255, 255, 0.8);
  color: white;
}

.wp-button.is-style-outline:hover:visited,
.wp-block-button.is-style-outline > .wp-block-button__link:hover:visited,
div.gs_team_area .gs-team-filter-cats li .wp-block-button.is-style-outline > a:hover:visited,
.wp-block-button.is-style-outline > a:hover:visited[download],
li.menu-item.nav-button .wp-block-button.is-style-outline > a:hover:visited,
div.gform_wrapper .wp-block-button.is-style-outline > input:hover:visited[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]),
.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color):hover:visited,
div.gs_team_area .gs-team-filter-cats li .wp-block-button.is-style-outline > a:not(.has-text-color):hover:visited,
.wp-block-button.is-style-outline > a:not(.has-text-color):hover:visited[download],
li.menu-item.nav-button .wp-block-button.is-style-outline > a:not(.has-text-color):hover:visited,
div.gform_wrapper .wp-block-button.is-style-outline > input:not(.has-text-color):hover:visited[type="submit"]:not([type=checkbox]):not([type=image]):not([type=file]) {
  background: rgba(255, 255, 255, 0.8);
  color: black;
}


.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: #FFCB17;
}


.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;
  }
}

body.nav-active .site-header:after {
  position: absolute;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  content: "";
  top: 0;
  left: 0;
  display: block;
}

@media screen and (min-width: 1080px) {
  body.nav-active .site-header:after {
    display: none;
  }
}

.menu-blurb {
  text-transform: uppercase;
  color: #003474;
  font-family: "Lato", sans-serif;
  text-align: center;
  font-weight: 700;
  margin: 15px auto;
  letter-spacing: 0.5px;
  font-size: 18px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

@media screen and (min-width: 768px) {
  .menu-blurb {
    font-size: 22px;
    margin-left: -18%;
    margin-right: 0;
  }
}

.secondary-navigation .header-logo {
  max-width: 160px;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .secondary-navigation .header-logo {
    max-width: 180px;
  }
}

.site-header {
  width: 100%;
}

a.custom-logo-link {
  display: block;
}

.site-header.override a.custom-logo-link {
  margin: 15px auto 0;
}

@media screen and (min-width: 768px) {
  .site-header.override a.custom-logo-link {
    margin: 0;
  }
}

.main-content-nav {
  background: #ffffff;
  z-index: 999;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: block;
}

@media screen and (min-width: 1080px) {
  .main-content-nav {
    position: relative;
  }
}

.site-header .custom-logo {
  width: 300px;
  height: auto;
  display: block;
}

@media screen and (min-width: 768px) and (max-width: 1250px) {
  .site-header .custom-logo {
    width: 200px;
  }
}

@media screen and (min-width: 1251px) {
  .site-header .custom-logo {
    width: 325px;
  }
}

.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-branding {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
}

.nav-active .site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.site-header .site-title {
  text-indent: -10000px;
  font-size: 0;
  display: none;
  line-height: 0;
}

.site-header.override .main-navigation {
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.main-navigation .nav-menu > .menu-item > .sub-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 15px;
}

@media screen and (min-width: 1080px) {
  .main-navigation .nav-menu > .menu-item > .sub-menu {
    padding: 1.5rem;
  }
}

.main-navigation .sub-menu li.menu-item {
  font-style: italic;
  font-weight: bold;
  text-transform: capitalize;
  font-size: 17px;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .main-navigation .sub-menu li.menu-item {
    font-size: 19px;
    line-height: 24px;
    margin-bottom: 8px;
  }
}

@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%;
  color: #003474;
}

@media screen and (min-width: 1080px) {
  .main-navigation .nav-menu > .menu-item > .sub-menu > .menu-item {
    margin-left: 0;
  }
}

.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"] {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 11;
  background: url(img/nav-close.svg) no-repeat center center/20px;
}

.menu-primary-button-menu-container .menu {
  display: block;
}

.site-header .site-description {
  text-indent: -10000px;
  font-size: 0;
  line-height: 0;
}

.site-header.override .wrapper {
  display: block;
}

@media screen and (min-width: 768px) {
  .site-header.override .wrapper {
    display: -ms-flexbox;
    display: flex;
  }
}

.site-header .wrapper {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
      align-items: stretch;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media screen and (min-width: 768px) {
  .site-header .wrapper {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.site-header .main-content-nav .wrapper {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media screen and (min-width: 768px) {
  .site-header .main-content-nav .wrapper {
    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%;
}

@media screen and (min-width: 1080px) {
  .main-navigation {
    -ms-flex-align: stretch;
        align-items: stretch;
  }
}

.site-header.override .main-wrapper {
  height: auto;
}

@media screen and (min-width: 768px) {
  .site-header.override .main-wrapper {
    height: 90px;
  }
}

.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;
  right: 0;
  transition-duration: 0.3s;
  transition-property: right;
}

.menu-primary-menu-container,
.menu-logged-out-container,
.menu-logged-in-container,
.menu-all-pages-container {
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  position: fixed;
  background: white;
  top: 0;
  right: -10000px;
  overflow: auto;
  -ms-flex: 1;
      flex: 1;
  width: 80%;
  height: 100vh;
  z-index: 10;
}

@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 {
    overflow: visible;
  }
}

@media screen and (min-width: 1080px) {
  .menu-primary-menu-container,
  .menu-logged-out-container,
  .menu-logged-in-container,
  .menu-all-pages-container {
    right: 0;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    top: inherit;
    left: inherit;
    -ms-flex-align: stretch;
        align-items: stretch;
    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: white;
  padding: 16px 25px 11px;
  background: #F79A6C;
  font-size: 16px;
  line-height: 16px;
}

li.menu-item.nav-button a:hover {
  background: #003474;
  color: #F79A6C;
}

@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: #003474;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  text-align: left;
  text-transform: capitalize;
  display: inline-block;
  width: 100%;
  font-weight: 700;
}

@media screen and (min-width: 1451px) {
  .main-navigation .menu-item a,
  .main-navigation .menu-item {
    text-align: left;
    display: inline;
    width: auto;
    font-size: 18px;
    line-height: 23px;
  }
}

.main-navigation .menu-item a:hover {
  color: #01819d;
}

.menu-primary-menu-container .menu-item,
.menu-all-pages-container .menu-item {
  margin-bottom: 0.5rem;
}

@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: 768px) and (max-width: 1250px) {
  .menu-primary-menu-container .menu-item,
  .menu-all-pages-container .menu-item {
    margin-left: 0.4rem;
    margin-right: 0.4rem;
  }
}

@media screen and (min-width: 1251px) and (max-width: 1450px) {
  .menu-primary-menu-container .menu-item,
  .menu-all-pages-container .menu-item {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
}

@media screen and (min-width: 1451px) {
  .menu-primary-menu-container .menu-item,
  .menu-all-pages-container .menu-item {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }
}

@media screen and (min-width: 1080px) {
  .main-navigation .menu > .menu-item.nav-button {
    padding-top: 22px;
    padding-bottom: 22px;
  }
}

.main-navigation .menu .menu-item {
  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;
}

.main-navigation .menu .menu-item {
  width: 100%;
  padding-top: 6px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

@media screen and (min-width: 1080px) and (max-width: 1250px) {
  .main-navigation .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: 1251px) {
  .main-navigation .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: 1250px) {
  .main-navigation .menu-item:last-of-type {
    margin-right: 0;
  }
}

@media screen and (min-width: 1251px) {
  .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-top: 45px;
  padding-bottom: 100px;
  padding-left: 2.5rem;
  padding-right: 1.25rem;
}

@media screen and (min-width: 1080px) {
  .main-navigation ul.nav-menu {
    padding-bottom: 0;
    padding-top: 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 .menu .sub-menu .menu-item {
  padding-top: 0;
  padding-bottom: 0;
}

.main-navigation .menu > .menu-item > .sub-menu {
  display: block;
  padding-top: 15px;
}

@media screen and (min-width: 1080px) {
  .main-navigation .menu > .menu-item > .sub-menu {
    padding-top: 15px;
    background: rgba(255, 255, 255, 0.9);
    display: block;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
  }
}

.main-navigation .sub-menu li.menu-item a {
  font-weight: 400;
  color: #003474;
}

@media screen and (min-width: 1080px) {
  .main-navigation .sub-menu li.menu-item a {
    margin-top: 0;
    font-weight: normal;
    margin-bottom: 0;
    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 p {
  margin: 0;
  color: white;
  font-size: 14px;
  font-family: "Lato", sans-serif;
  line-height: 18px;
  margin-left: 0;
  letter-spacing: 0.5px;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .secondary-navigation p {
    font-size: 17px;
    line-height: 24px;
    margin-left: 1.375rem;
  }
}

.secondary-navigation p a {
  color: white;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  padding-right: 10px;
  padding-left: 10px;
  letter-spacing: 0.35px;
}

@media screen and (min-width: 768px) {
  .secondary-navigation p a {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.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: 17px;
  color: #4d4d4d;
  font-family: "Lato", sans-serif;
  text-transform: none;
  line-height: 27px;
  position: relative;
}

.main-navigation .sub-menu .menu-item a:hover {
  color: #01819d;
}

@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: 55px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  background: #FFCB17;
  transition-duration: .3s;
  transition-property: height;
}

@media screen and (min-width: 768px) {
  .secondary-navigation {
    height: 64px;
  }
}

.secondary-navigation .wrapper {
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: 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;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
}

@media screen and (min-width: 768px) {
  .menu-secondary-menu-container ul {
    -ms-flex-pack: start;
        justify-content: flex-start;
  }
}

.menu-secondary-menu-container .menu-item,
.menu-secondary-menu-container .menu-item a {
  text-transform: uppercase;
  color: #003474;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0;
  text-indent: -10000px;
  display: block;
  position: relative;
}

@media screen and (min-width: 1251px) {
  .menu-secondary-menu-container .menu-item,
  .menu-secondary-menu-container .menu-item a {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.2px;
    text-indent: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1250px) {
  .menu-secondary-menu-container .menu-item,
  .menu-secondary-menu-container .menu-item a {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.2px;
    text-indent: 0;
  }
}

.menu-secondary-menu-container .menu-item a {
  width: 18px;
  height: 18px;
}

@media screen and (min-width: 768px) {
  .menu-secondary-menu-container .menu-item a {
    width: auto;
    height: auto;
  }
}

.secondary-navigation .phone {
  background: none;
}

.menu-item.phone {
  padding-left: 0;
}

.menu-item.phone a {
  padding-left: 26px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24.996' height='25' viewBox='0 0 24.996 25'%3E%3Cpath id='phone-solid' d='M.037,18.89l1.135,4.922a1.518,1.518,0,0,0,1.487,1.183A22.362,22.362,0,0,0,25,2.655a1.517,1.517,0,0,0-1.183-1.487L18.892.033a1.532,1.532,0,0,0-1.747.885l-2.271,5.3A1.528,1.528,0,0,0,15.312,8l2.629,2.111a17.072,17.072,0,0,1-7.788,7.788L8,15.267a1.519,1.519,0,0,0-1.781-.438L.923,17.1A1.665,1.665,0,0,0,.037,18.89Z' transform='translate(0 0.006)' fill='%23003474'/%3E%3C/svg%3E") no-repeat center center/18px;
}

@media screen and (min-width: 768px) {
  .menu-item.phone a {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24.996' height='25' viewBox='0 0 24.996 25'%3E%3Cpath id='phone-solid' d='M.037,18.89l1.135,4.922a1.518,1.518,0,0,0,1.487,1.183A22.362,22.362,0,0,0,25,2.655a1.517,1.517,0,0,0-1.183-1.487L18.892.033a1.532,1.532,0,0,0-1.747.885l-2.271,5.3A1.528,1.528,0,0,0,15.312,8l2.629,2.111a17.072,17.072,0,0,1-7.788,7.788L8,15.267a1.519,1.519,0,0,0-1.781-.438L.923,17.1A1.665,1.665,0,0,0,.037,18.89Z' transform='translate(0 0.006)' fill='%23003474'/%3E%3C/svg%3E") no-repeat center left/20px;
  }
}

.menu-item.location a {
  padding-left: 26px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.799' height='25' viewBox='0 0 18.799 25'%3E%3Cpath id='location-dot-solid' d='M8.239,24.438C5.684,21.3,0,13.678,0,9.4a9.4,9.4,0,0,1,18.8,0c0,4.279-5.728,11.9-8.239,15.039a1.479,1.479,0,0,1-2.32,0ZM9.4,12.532A3.133,3.133,0,1,0,6.266,9.4,3.136,3.136,0,0,0,9.4,12.532Z' fill='%23003474'/%3E%3C/svg%3E%0A") no-repeat center center/14px;
}

@media screen and (min-width: 768px) {
  .menu-item.location a {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.799' height='25' viewBox='0 0 18.799 25'%3E%3Cpath id='location-dot-solid' d='M8.239,24.438C5.684,21.3,0,13.678,0,9.4a9.4,9.4,0,0,1,18.8,0c0,4.279-5.728,11.9-8.239,15.039a1.479,1.479,0,0,1-2.32,0ZM9.4,12.532A3.133,3.133,0,1,0,6.266,9.4,3.136,3.136,0,0,0,9.4,12.532Z' fill='%23003474'/%3E%3C/svg%3E%0A") no-repeat center left/16px;
  }
}

.menu-item.hours a {
  padding-left: 26px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25'%3E%3Cpath id='clock-solid' d='M12.5,25A12.5,12.5,0,1,1,25,12.5,12.5,12.5,0,0,1,12.5,25ZM11.328,12.5a1.049,1.049,0,0,0,.522.933l4.688,3.125a1.075,1.075,0,0,0,1.582-.283,1.131,1.131,0,0,0-.283-1.626l-4.165-2.773V5.859a1.179,1.179,0,0,0-1.216-1.172,1.2,1.2,0,0,0-1.172,1.172Z' fill='%23003474'/%3E%3C/svg%3E%0A") no-repeat center center/17px;
}

@media screen and (min-width: 768px) {
  .menu-item.hours a {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25'%3E%3Cpath id='clock-solid' d='M12.5,25A12.5,12.5,0,1,1,25,12.5,12.5,12.5,0,0,1,12.5,25ZM11.328,12.5a1.049,1.049,0,0,0,.522.933l4.688,3.125a1.075,1.075,0,0,0,1.582-.283,1.131,1.131,0,0,0-.283-1.626l-4.165-2.773V5.859a1.179,1.179,0,0,0-1.216-1.172,1.2,1.2,0,0,0-1.172,1.172Z' fill='%23003474'/%3E%3C/svg%3E%0A") no-repeat center left/19px;
  }
}

.menu-secondary-menu-container .menu-item {
  margin-left: 8px;
  margin-right: 8px;
}

@media screen and (min-width: 768px) {
  .menu-secondary-menu-container .menu-item {
    margin-left: 1.5625rem;
    margin-right: 1.5625rem;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .menu-secondary-menu-container .menu-item:last-of-type {
    margin-right: 0;
  }
}

@media screen and (min-width: 1080px) {
  .main-navigation ul > li:nth-of-type(4) ul {
    min-width: 375px;
  }
}

@media screen and (min-width: 1080px) {
  .main-navigation ul.nav-menu > li:last-of-type:hover > ul,
  .main-navigation ul.nav-menu > li:last-of-type.focus > ul {
    right: 0;
    left: auto;
    transform: none;
  }
}

@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%);
  }
}

/**
 * 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;
}

body {
  overflow-x: hidden;
}

.entry-content {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
}

.entry-content > iframe {
  display: block;
}

/* Image with 'data' attribute is hidden */
img[data-lazy-src] {
  /* we set the opacity to 0 */
  opacity: 0;
}

/* Image without 'data' attribute is (or becomes) visible */
img.lazyloaded {
  /* prepare the future animation */
  transition: opacity .5s linear 0.2s;
  /* we set the opacity to 1 to do the magic */
  opacity: 1;
}

.entry-content > iframe,
.entry-content > .gform_wrapper,
.entry-content > p,
.entry-content > h1,
.entry-content > h2,
.entry-content > h3,
.entry-content > h4,
.entry-content > h5,
.accordion h5 .entry-content > button,
.entry-content > h6,
.entry-content > ul,
.entry-content > dl,
.entry-content > ol,
.entry-content > address,
.entry-content > blockquote,
.entry-content > hr,
.entry-content > code,
.entry-content > pre,
.entry-content > figure,
.entry-content > table,
.entry-content > .wp-block-buttons {
  max-width: 950px;
  margin-left: auto;
  width: 100%;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

div.components-select-control {
  display: block;
  height: auto;
}

.swiper-button-next {
  right: -5px;
}

.swiper-button-prev {
  left: -5px;
}

.swiper-button-prev,
.swiper-button-next {
  color: #505050;
  font-weight: 900;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 30px;
}

.wp-block-quote {
  background: #f1f1f1;
  padding: 20px 25px;
  font-size: 1.25rem;
  margin-left: 0;
  margin-right: 0;
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}

@media screen and (min-width: 768px) {
  .wp-block-quote {
    padding: 30px 35px;
    margin-top: 3.25rem;
    margin-bottom: 3.25rem;
  }
}

.wp-block-quote p,
.wp-block-quote cite {
  color: #052C47;
}

.wp-block-quote cite {
  font-family: "Lato", sans-serif;
  font-style: normal;
}

.wp-block-quote p {
  font-family: "Lato", sans-serif;
  font-size: 1.5rem;
  line-height: 2.15rem;
}

@media screen and (min-width: 768px) {
  .wp-block-quote p {
    font-size: 2.25rem;
    line-height: 3.25rem;
  }
}

h1 {
  font-size: 42px;
  line-height: 49px;
  color: #FFCB17;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.75px;
  margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: 62px;
    line-height: 80px;
    margin-top: 0;
  }
}

h3 {
  color: #FFCB17;
  font-family: "Lato", 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;
    margin-bottom: 1.75rem;
    margin-top: 1.75rem;
  }
}

h4 {
  font-family: "Lato", sans-serif;
  color: #FFCB17;
  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;
  }
}

.block-base, .icons-row {
  padding-top: 4.25rem;
  padding-bottom: 4.25rem;
}

@media screen and (min-width: 768px) {
  .block-base, .icons-row {
    padding-top: 6.75rem;
    padding-bottom: 6.75rem;
  }
}

.content p {
  font-family: "Lato", sans-serif;
  color: #000000;
}

.content p:first-of-type {
  margin-top: 0;
}

.lighter-blue {
  background-color: #f1f1f1;
}

.navy {
  background-color: #003474;
}

.blue {
  background-color: #01819d;
}

.resources-grid:not(.swiper-wrapper) .block-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.with-overlay {
  position: relative;
}

.with-bg {
  position: relative;
  overflow: hidden;
}

.with-bg .block-wrapper {
  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 .price-cont span {
  color: #000000;
  font-family: "Lato", sans-serif;
}

.resource-card span.monthly-est {
  text-transform: uppercase;
  color: #ccc;
  font-size: 11px;
  line-height: 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
}

.resource-card .price-cont {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  .resource-card .price-cont {
    margin-top: 20px;
  }
}

.price-cont .monthly-price {
  text-align: right;
}

.resource-card .wp-button {
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
}

.resource-card .wp-buttons {
  text-align: left;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .resource-card .wp-buttons {
    text-align: left;
  }
}

.resource-card .resource-miles,
.resource-card .resource-price,
.resource-card .resource-year,
.resource-card .resource-title {
  margin: 0;
  color: #003474;
}

.resource-card .resource-excerpt,
.resource-card .resource-title {
  width: 100%;
}

.resource-card .resource-price,
.resource-card .resource-year {
  text-align: right;
}

.resource-card .resource-miles,
.resource-card .resource-price {
  font-size: 18px;
}

@media screen and (min-width: 768px) {
  .resource-card .resource-miles,
  .resource-card .resource-price {
    font-size: 19px;
  }
}

.resource-card .resource-year {
  font-size: 19px;
  letter-spacing: 0;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .resource-card .resource-year {
    font-size: 22px;
  }
}

.resource-card .resource-title {
  font-size: 19px;
  letter-spacing: 0;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .resource-card .resource-title {
    font-size: 22px;
  }
}

.resource-card .content {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
  margin-top: 10px;
}

.resource-card .top {
  width: 100%;
  display: -ms-grid;
  display: grid;
}

.resource-card .bottom {
  display: -ms-grid;
  display: grid;
  width: 100%;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

.resource-card h4 {
  color: #052C47;
  margin-top: 15px;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .resource-card h4 {
    margin-top: 20px;
    margin-bottom: 50px;
  }
}

.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: 1250px) {
  .resource-card {
    width: calc(50% - 2.5rem);
    margin: 0 1.25rem 2.5rem;
  }
}

@media screen and (min-width: 1251px) {
  .resource-card {
    width: calc(33.3333% - 2.5rem);
    margin: 0 1.25rem 2.5rem;
  }
}

.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: 1920px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    width: 100%;
    margin: 0 auto;
  }
  @media screen and (min-width: 768px) and (max-width: 1250px) {
    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: 1251px) {
    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: 1250px) {
    .resource-card {
      width: 100%;
      margin: 0;
    }
  }
  @media screen and (min-width: 1251px) {
    .resource-card {
      width: 100%;
      margin: 0;
    }
  }
  .columns-3 .grid {
    display: -ms-grid;
    display: grid;
    display: grid;
  }
  @media screen and (min-width: 1251px) {
    .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: 1250px) {
    .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: 1251px) {
    .grid {
      -ms-grid-columns: 1fr 1fr 1fr;
          grid-template-columns: 1fr 1fr 1fr;
      grid-row-gap: 70px;
      grid-column-gap: 70px;
    }
  }
  @media screen and (min-width: 768px) and (max-width: 1250px) {
    .grid {
      -ms-grid-columns: 1fr 1fr;
          grid-template-columns: 1fr 1fr;
      grid-row-gap: 45px;
      grid-column-gap: 45px;
    }
  }
}

.light-yellow .resource-card {
  background: white;
}

.resource-card {
  padding-bottom: 1.25rem;
}

@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 .image-cont {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.resource-card p.resource-excerpt {
  overflow-wrap: anywhere;
  font-family: "Lato", sans-serif;
  color: #000000;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .resource-card p.resource-excerpt {
    text-align: left;
  }
}

.resource-card.whitepaper .image-cont img {
  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%;
  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: contain;
     object-fit: contain;
}

.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: "Lato", sans-serif;
  color: #003474;
  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: "Lato", 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 {
  font-family: "Lato", sans-serif;
  text-transform: none;
  margin-bottom: 0.75rem;
}

@media screen and (min-width: 768px) {
  h3.resource-title,
  .editor-styles-wrapper h3.resource-title {
    margin-bottom: .9rem;
  }
}

.resource-card.no-img .resource-title {
  margin-top: 0;
}

div.wprs_unslider {
  max-width: 1820px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  width: calc(100% - 4rem);
}

.flex {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.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 {
  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 div[role="textbox"] {
  display: inline-block;
}

.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: 1920px;
  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;
}

.light-blue {
  background: #f1f1f1;
}

.shortcode-wrap {
  padding-top: 20px;
  padding-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .shortcode-wrap {
    padding-top: 45px;
    padding-bottom: 45px;
  }
}

.shortcode-wrap .grid .resource-card {
  padding-bottom: 0;
}

.shortcode-wrap .grid {
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

@media screen and (min-width: 768px) and (max-width: 1250px) {
  .shortcode-wrap .grid {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
}

@media screen and (min-width: 1251px) {
  .shortcode-wrap .grid {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }
}

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;
}

.form-row {
  display: block;
  width: 100%;
}

.form-row input[type="submit"] {
  width: auto;
}

.form-row input[type="submit"] {
  min-height: auto;
}

#gform_3 #field_3_15,
.single-gs_team #field_3_9 {
  display: none;
}

.form-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: end;
      justify-content: flex-end;
  margin-top: 35px;
}

.slide-container[data-percent='0']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(0%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='0']:before {
    top: 35px;
  }
}

.slide-container[data-percent='1']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(1%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='1']:before {
    top: 35px;
  }
}

.slide-container[data-percent='2']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(2%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='2']:before {
    top: 35px;
  }
}

.slide-container[data-percent='3']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(3%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='3']:before {
    top: 35px;
  }
}

.slide-container[data-percent='4']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(4%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='4']:before {
    top: 35px;
  }
}

.slide-container[data-percent='5']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(5%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='5']:before {
    top: 35px;
  }
}

.slide-container[data-percent='6']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(6%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='6']:before {
    top: 35px;
  }
}

.slide-container[data-percent='7']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(7%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='7']:before {
    top: 35px;
  }
}

.slide-container[data-percent='8']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(8%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='8']:before {
    top: 35px;
  }
}

.slide-container[data-percent='9']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(9%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='9']:before {
    top: 35px;
  }
}

.slide-container[data-percent='10']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(10%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='10']:before {
    top: 35px;
  }
}

.slide-container[data-percent='11']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(11%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='11']:before {
    top: 35px;
  }
}

.slide-container[data-percent='12']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(12%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='12']:before {
    top: 35px;
  }
}

.slide-container[data-percent='13']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(13%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='13']:before {
    top: 35px;
  }
}

.slide-container[data-percent='14']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(14%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='14']:before {
    top: 35px;
  }
}

.slide-container[data-percent='15']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(15%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='15']:before {
    top: 35px;
  }
}

.slide-container[data-percent='16']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(16%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='16']:before {
    top: 35px;
  }
}

.slide-container[data-percent='17']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(17%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='17']:before {
    top: 35px;
  }
}

.slide-container[data-percent='18']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(18%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='18']:before {
    top: 35px;
  }
}

.slide-container[data-percent='19']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(19%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='19']:before {
    top: 35px;
  }
}

.slide-container[data-percent='20']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(20%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='20']:before {
    top: 35px;
  }
}

.slide-container[data-percent='21']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(21%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='21']:before {
    top: 35px;
  }
}

.slide-container[data-percent='22']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(22%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='22']:before {
    top: 35px;
  }
}

.slide-container[data-percent='23']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(23%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='23']:before {
    top: 35px;
  }
}

.slide-container[data-percent='24']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(24%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='24']:before {
    top: 35px;
  }
}

.slide-container[data-percent='25']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(25%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='25']:before {
    top: 35px;
  }
}

.slide-container[data-percent='26']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(26%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='26']:before {
    top: 35px;
  }
}

.slide-container[data-percent='27']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(27%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='27']:before {
    top: 35px;
  }
}

.slide-container[data-percent='28']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(28%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='28']:before {
    top: 35px;
  }
}

.slide-container[data-percent='29']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(29%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='29']:before {
    top: 35px;
  }
}

.slide-container[data-percent='30']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(30%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='30']:before {
    top: 35px;
  }
}

.slide-container[data-percent='31']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(31%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='31']:before {
    top: 35px;
  }
}

.slide-container[data-percent='32']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(32%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='32']:before {
    top: 35px;
  }
}

.slide-container[data-percent='33']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(33%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='33']:before {
    top: 35px;
  }
}

.slide-container[data-percent='34']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(34%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='34']:before {
    top: 35px;
  }
}

.slide-container[data-percent='35']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(35%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='35']:before {
    top: 35px;
  }
}

.slide-container[data-percent='36']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(36%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='36']:before {
    top: 35px;
  }
}

.slide-container[data-percent='37']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(37%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='37']:before {
    top: 35px;
  }
}

.slide-container[data-percent='38']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(38%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='38']:before {
    top: 35px;
  }
}

.slide-container[data-percent='39']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(39%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='39']:before {
    top: 35px;
  }
}

.slide-container[data-percent='40']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(40%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='40']:before {
    top: 35px;
  }
}

.slide-container[data-percent='41']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(41%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='41']:before {
    top: 35px;
  }
}

.slide-container[data-percent='42']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(42%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='42']:before {
    top: 35px;
  }
}

.slide-container[data-percent='43']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(43%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='43']:before {
    top: 35px;
  }
}

.slide-container[data-percent='44']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(44%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='44']:before {
    top: 35px;
  }
}

.slide-container[data-percent='45']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(45%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='45']:before {
    top: 35px;
  }
}

.slide-container[data-percent='46']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(46%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='46']:before {
    top: 35px;
  }
}

.slide-container[data-percent='47']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(47%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='47']:before {
    top: 35px;
  }
}

.slide-container[data-percent='48']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(48%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='48']:before {
    top: 35px;
  }
}

.slide-container[data-percent='49']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(49%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='49']:before {
    top: 35px;
  }
}

.slide-container[data-percent='50']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(50%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='50']:before {
    top: 35px;
  }
}

.slide-container[data-percent='51']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(51%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='51']:before {
    top: 35px;
  }
}

.slide-container[data-percent='52']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(52%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='52']:before {
    top: 35px;
  }
}

.slide-container[data-percent='53']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(53%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='53']:before {
    top: 35px;
  }
}

.slide-container[data-percent='54']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(54%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='54']:before {
    top: 35px;
  }
}

.slide-container[data-percent='55']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(55%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='55']:before {
    top: 35px;
  }
}

.slide-container[data-percent='56']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(56%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='56']:before {
    top: 35px;
  }
}

.slide-container[data-percent='57']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(57%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='57']:before {
    top: 35px;
  }
}

.slide-container[data-percent='58']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(58%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='58']:before {
    top: 35px;
  }
}

.slide-container[data-percent='59']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(59%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='59']:before {
    top: 35px;
  }
}

.slide-container[data-percent='60']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(60%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='60']:before {
    top: 35px;
  }
}

.slide-container[data-percent='61']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(61%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='61']:before {
    top: 35px;
  }
}

.slide-container[data-percent='62']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(62%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='62']:before {
    top: 35px;
  }
}

.slide-container[data-percent='63']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(63%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='63']:before {
    top: 35px;
  }
}

.slide-container[data-percent='64']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(64%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='64']:before {
    top: 35px;
  }
}

.slide-container[data-percent='65']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(65%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='65']:before {
    top: 35px;
  }
}

.slide-container[data-percent='66']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(66%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='66']:before {
    top: 35px;
  }
}

.slide-container[data-percent='67']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(67%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='67']:before {
    top: 35px;
  }
}

.slide-container[data-percent='68']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(68%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='68']:before {
    top: 35px;
  }
}

.slide-container[data-percent='69']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(69%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='69']:before {
    top: 35px;
  }
}

.slide-container[data-percent='70']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(70%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='70']:before {
    top: 35px;
  }
}

.slide-container[data-percent='71']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(71%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='71']:before {
    top: 35px;
  }
}

.slide-container[data-percent='72']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(72%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='72']:before {
    top: 35px;
  }
}

.slide-container[data-percent='73']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(73%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='73']:before {
    top: 35px;
  }
}

.slide-container[data-percent='74']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(74%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='74']:before {
    top: 35px;
  }
}

.slide-container[data-percent='75']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(75%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='75']:before {
    top: 35px;
  }
}

.slide-container[data-percent='76']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(76%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='76']:before {
    top: 35px;
  }
}

.slide-container[data-percent='77']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(77%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='77']:before {
    top: 35px;
  }
}

.slide-container[data-percent='78']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(78%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='78']:before {
    top: 35px;
  }
}

.slide-container[data-percent='79']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(79%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='79']:before {
    top: 35px;
  }
}

.slide-container[data-percent='80']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(80%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='80']:before {
    top: 35px;
  }
}

.slide-container[data-percent='81']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(81%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='81']:before {
    top: 35px;
  }
}

.slide-container[data-percent='82']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(82%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='82']:before {
    top: 35px;
  }
}

.slide-container[data-percent='83']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(83%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='83']:before {
    top: 35px;
  }
}

.slide-container[data-percent='84']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(84%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='84']:before {
    top: 35px;
  }
}

.slide-container[data-percent='85']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(85%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='85']:before {
    top: 35px;
  }
}

.slide-container[data-percent='86']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(86%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='86']:before {
    top: 35px;
  }
}

.slide-container[data-percent='87']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(87%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='87']:before {
    top: 35px;
  }
}

.slide-container[data-percent='88']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(88%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='88']:before {
    top: 35px;
  }
}

.slide-container[data-percent='89']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(89%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='89']:before {
    top: 35px;
  }
}

.slide-container[data-percent='90']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(90%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='90']:before {
    top: 35px;
  }
}

.slide-container[data-percent='91']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(91%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='91']:before {
    top: 35px;
  }
}

.slide-container[data-percent='92']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(92%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='92']:before {
    top: 35px;
  }
}

.slide-container[data-percent='93']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(93%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='93']:before {
    top: 35px;
  }
}

.slide-container[data-percent='94']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(94%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='94']:before {
    top: 35px;
  }
}

.slide-container[data-percent='95']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(95%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='95']:before {
    top: 35px;
  }
}

.slide-container[data-percent='96']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(96%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='96']:before {
    top: 35px;
  }
}

.slide-container[data-percent='97']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(97%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='97']:before {
    top: 35px;
  }
}

.slide-container[data-percent='98']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(98%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='98']:before {
    top: 35px;
  }
}

.slide-container[data-percent='99']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(99%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='99']:before {
    top: 35px;
  }
}

.slide-container[data-percent='100']:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #003474;
  height: 6px;
  top: 25px;
  width: calc(100%);
  border-radius: 6px;
}

@media screen and (min-width: 641px) {
  .slide-container[data-percent='100']:before {
    top: 35px;
  }
}

div.gform_wrapper.gravity-theme .gform_drop_area {
  background: #f1f1f1;
}

form input,
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: #f1f1f1;
  border: none;
  border-radius: 0;
  font-family: "Lato", sans-serif;
  color: #000000;
  font-size: 18px;
  line-height: 30px;
  padding-left: 0.75rem;
}

@media screen and (min-width: 1250px) {
  form input,
  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: 20px;
    line-height: 40px;
    padding-left: 1.3125rem;
    padding-right: 25px;
    padding-left: 25px;
    padding-top: 17px;
    padding-bottom: 17px;
  }
}

.gform_wrapper .results-wrapper {
  position: relative;
}

.gform_wrapper .results-wrapper .clear-input {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  color: #000000;
  border: none;
  border-radius: 0;
  background: transparent;
}

.gform_wrapper .results.active {
  display: block;
}

.gform_wrapper .results {
  position: absolute;
  top: 100%;
  width: 100%;
  display: none;
  background: white;
  border-left: 1px solid #FFCB17;
  border-right: 1px solid #FFCB17;
  border-bottom: 1px solid #FFCB17;
  overflow: auto;
  max-height: 350px;
}

.gform_wrapper .results .result p:hover {
  background: #f1f1f1;
  cursor: pointer;
}

.gform_wrapper .results .result p {
  color: #052C47;
  padding: 15px;
  margin: 0;
}

div.gform_wrapper.gravity-theme .gfield textarea.small,
.gform_wrapper.gravity-theme .gfield textarea {
  font-size: 18px;
  line-height: 30px;
}

@media screen and (min-width: 641px) {
  div.gform_wrapper.gravity-theme .gfield textarea.small,
  .gform_wrapper.gravity-theme .gfield textarea {
    padding-right: 25px;
    padding-left: 25px;
    padding-top: 17px;
    padding-bottom: 17px;
    height: 175px;
    font-size: 25px;
    line-height: 40px;
  }
}

@media screen and (min-width: 641px) {
  div.gform_wrapper div.ginput_complex {
    grid-column-gap: 28px;
  }
}

@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: "Lato", 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: #f1f1f1;
  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;
}

form input,
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: #f1f1f1;
  border-radius: 0;
  -webkit-appearance: none;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 18px;
  line-height: 27px;
  color: #000000;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  width: 100%;
  min-height: 55px;
}

@media screen and (min-width: 641px) {
  form input,
  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: 20px;
    line-height: 40px;
    padding-right: 25px;
    padding-left: 25px;
    padding-top: 17px;
    min-height: 76px;
    padding-bottom: 17px;
  }
}

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: white url(img/down-chevron.svg) no-repeat calc(100% - 25px) 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: "Lato", 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: 24px;
    line-height: 32px;
  }
}

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;
  }
}

form select,
div.gform_wrapper .ginput_container_select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #f1f1f1 url(img/down-chevron.svg) no-repeat calc(100% - 25px) center/10px;
  border-radius: 0;
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 18px;
  line-height: 27px;
  color: #000000;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  margin-bottom: 0;
}

@media screen and (min-width: 1250px) {
  form select,
  div.gform_wrapper .ginput_container_select select {
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 0;
    padding-right: 25px;
    padding-left: 25px;
    padding-top: 17px;
    padding-bottom: 17px;
  }
}

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: 1250px) {
  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;
}

@media screen and (min-width: 1250px) {
  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;
  }
}

form label,
div.gform_wrapper label.gfield_label {
  font-size: 18px;
  line-height: 27px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
}

@media screen and (min-width: 641px) {
  form label,
  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: white;
}

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;
  text-align: center;
}

div.gform_wrapper h2.gform_title {
  font-size: 25px;
  line-height: 35px;
  margin-top: 0;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0;
}

@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: 20px;
  }
}

div.gform_wrapper.gravity-theme .gfield_checkbox label,
div.gform_wrapper.gravity-theme .gfield-choice-input + label {
  color: white;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 600;
  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: 17px;
  height: 17px;
  transform: translateY(2px);
  background: white;
  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: 7px;
  position: absolute;
  top: 9px;
  left: 5px;
  display: inline-block;
  background: #000000;
}

.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;
  }
}

input[value=false] ~ button.clear-input {
  display: none;
}

input:focus ~ button.clear-input {
  display: block;
}

.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: "Lato", sans-serif;
  line-height: 30px;
  color: #000000;
  font-size: 18px;
}

@media screen and (min-width: 1250px) {
  .gform_wrapper ::-webkit-input-placeholder {
    font-size: 20px;
    line-height: 32px;
  }
}

.gform_wrapper ::-moz-placeholder {
  /* Firefox 19+ */
  font-family: "Lato", sans-serif;
  line-height: 30px;
  color: #000000;
  font-size: 18px;
}

@media screen and (min-width: 1250px) {
  .gform_wrapper ::-moz-placeholder {
    font-size: 20px;
    line-height: 32px;
  }
}

.gform_wrapper :-ms-input-placeholder {
  /* IE 10+ */
  font-family: "Lato", sans-serif;
  line-height: 30px;
  color: #000000;
  font-size: 18px;
}

@media screen and (min-width: 1250px) {
  .gform_wrapper :-ms-input-placeholder {
    font-size: 20px;
    line-height: 32px;
  }
}

.gform_wrapper :-moz-placeholder {
  /* Firefox 18- */
  font-family: "Lato", sans-serif;
  line-height: 30px;
  color: #000000;
  font-size: 18px;
}

@media screen and (min-width: 1250px) {
  .gform_wrapper :-moz-placeholder {
    font-size: 20px;
    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: 22px;
  line-height: 33px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .fancybox__container div.gform_wrapper .gform_title,
  .contact-section div.gform_wrapper .gform_title {
    font-size: 30px;
    line-height: 43px;
  }
}

.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: "Lato", 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: "Lato", sans-serif;
  font-size: 18px;
  line-height: 29px;
}

@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: 18px;
    line-height: 32px;
  }
}

.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: transparent;
  background-image: linear-gradient(#003474, #003474);
  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: #E6E6E6;
  border-radius: 6px;
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: white;
  border-radius: 6px;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 28px;
  background: #003474;
  cursor: pointer;
  margin-top: -7.5px;
  /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
}

form .slide-container {
  position: relative;
}

input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 28px;
  background: #FFCB17;
  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: white;
}

div.gform_wrapper .gform_drop_area button.gform_button_select_files {
  margin: 10px;
}

.gform_confirmation_message {
  text-align: center;
  color: #052C47;
  text-transform: capitalize;
  font-size: 26px;
  line-height: 32px;
  font-family: "Lato", sans-serif;
}

form .inner-row {
  width: 100%;
}

form .inner-row.end {
  -ms-flex-pack: end;
      justify-content: flex-end;
}

form .inner-row .col.estimate {
  width: 75%;
}

form .inner-row .col {
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  form .inner-row .col {
    margin-bottom: 0;
  }
}

form .inner-row input[type="number"],
form .inner-row select {
  height: 40px;
  padding-top: 0;
  border: 1px solid black;
  padding-bottom: 0;
  padding-left: 5px;
  padding-right: 5px;
  text-align: center;
  line-height: 30px;
  min-height: auto;
  background: white;
  font-size: 20px;
}

.inner-row label,
.inner-row p {
  width: 50%;
}

#Payment {
  text-align: center;
  margin-top: 0;
  width: 100%;
  margin-bottom: 10px;
}

.hide-required .gfield_required {
  display: none !important;
}

.site-footer {
  padding-top: 60px;
  padding-bottom: 30px;
  background: #003474;
}

@media screen and (min-width: 768px) {
  .site-footer {
    padding-top: 6.25rem;
    padding-bottom: 25px;
  }
}

.site-footer .wrapper {
  max-width: 1870px;
  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;
}

.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: 0.5rem;
}

@media screen and (min-width: 768px) {
  .site-footer .wrapper .col {
    -ms-flex: 0 calc(33.333% - 2.5rem);
        flex: 0 calc(33.333% - 2.5rem);
    margin-top: 0;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.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%;
}

ul.social {
  padding: 0;
  margin: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style-type: none;
  -ms-flex-pack: center;
      justify-content: center;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  ul.social {
    margin-bottom: 30px;
    -ms-flex-pack: center;
        justify-content: center;
  }
}

ul.social a {
  font-size: 35px;
  text-decoration: none;
}

ul.social a:visited {
  color: white;
}

ul.social a:hover {
  color: #f1f1f1;
}

ul.social li {
  margin: 0 7.5px;
}

@media screen and (min-width: 768px) {
  .footer-menu p {
    display: inline;
  }
}

.site-footer .logo-columns {
  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) {
  .footer-menu .menu li,
  .footer-menu .menu {
    display: inline;
  }
}

a.footer-home img {
  display: block;
  max-width: 200px;
  height: auto;
  margin: 0 auto;
  width: 100%;
}

@media screen and (min-width: 768px) {
  a.footer-home img {
    max-width: 357px;
  }
}

.site-footer .col {
  -ms-flex-order: 1;
      order: 1;
}

@media screen and (min-width: 768px) {
  .site-footer .col {
    -ms-flex-order: 1;
        order: 1;
  }
}

.site-footer .col:nth-of-type(2) {
  -ms-flex-order: 0;
      order: 0;
}

@media screen and (min-width: 768px) {
  .site-footer .col:nth-of-type(2) {
    -ms-flex-order: 1;
        order: 1;
  }
}

.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 auto;
  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: "Lato", 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 p a {
  text-decoration: none;
}

.site-footer p a:visited,
.site-footer p a:hover,
.site-footer .menu ul a:visited,
.site-footer .menu ul a:hover {
  color: white;
  text-decoration: underline;
}

.site-footer .contact-link {
  display: block;
}

.site-footer p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  line-height: 25px;
  margin-top: 0;
  font-size: 16px;
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .site-footer p {
    font-size: 19px;
    margin-top: 1rem;
  }
}

.site-footer address {
  font-style: normal;
  margin-bottom: 0;
}

.site-footer address p {
  margin-bottom: 0;
  margin-top: 0;
}

.site-footer * {
  color: white;
}

.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-menu {
  width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-top: 2px solid white;
  margin-top: 45px;
  text-align: center;
  padding-top: 25px;
}

@media screen and (min-width: 768px) {
  .footer-menu {
    margin-top: 6.25rem;
  }
}

.footer-menu ul {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
}

.footer-menu ul li {
  font-size: 18px;
  width: 100%;
  position: relative;
}

@media screen and (min-width: 768px) {
  .footer-menu ul li {
    font-size: 19px;
    width: auto;
  }
}

@media screen and (min-width: 768px) {
  .footer-menu ul li:before {
    content: "|";
    display: inline-block;
    margin-right: 5px;
    margin-left: 5px;
  }
}

.footer-menu ul li a {
  color: white;
}

.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: "Lato", 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 address p,
.site-footer .contact-link,
.site-footer .menu-item a {
  color: white;
  font-weight: 400;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 26px;
}

@media screen and (min-width: 1080px) {
  .site-footer address p,
  .site-footer .contact-link,
  .site-footer .menu-item a {
    font-size: 20px;
    line-height: 26px;
  }
}

.site-info .col .menu li {
  margin-bottom: 10px;
}

.site-footer .menu {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .site-footer .menu {
    margin-top: 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: 1250px;
  margin: 0 auto;
  width: 100%;
}

.post-content .car-details:first-of-type {
  width: 100%;
  margin-bottom: 20px;
  margin-top: 30px;
  grid-column-gap: 20px;
  -ms-flex-align: center;
      align-items: center;
}

@media screen and (min-width: 768px) {
  .post-content .car-details:first-of-type {
    width: 100%;
    margin-bottom: 30px;
    margin-top: 0;
  }
}

/*.car-details:first-of-type p {
	width: 100%;
}
*/
.car-details.flex-end {
  -ms-flex-pack: start;
      justify-content: flex-start;
}

@media screen and (min-width: 768px) {
  .car-details.flex-end {
    -ms-flex-pack: end;
        justify-content: flex-end;
  }
}

.carfax_link {
  display: inline-block;
  width: 110px;
  margin-top: 20px;
}

.more-info ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: stretch;
      align-items: stretch;
  -ms-flex-pack: justify;
      justify-content: space-between;
  border-top: 1px solid black;
  padding: 0;
}

.more-info ul li {
  padding-left: 0;
}

.more-info ul li:before {
  display: none;
}

div.gs-single-default .gs-team-single-content .gs-sin-mem-desig {
  color: #000000;
  font-size: 21px;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  font-weight: 700;
}

.single.single-vehicle .post-content {
  max-width: 1420px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
  padding-top: 3rem;
}

@media screen and (min-width: 768px) {
  .single.single-vehicle .post-content {
    padding-top: 7rem;
  }
}

.single.single-vehicle .shortcode-section {
  margin-top: 1.5rem;
}

@media screen and (min-width: 768px) {
  .single.single-vehicle .shortcode-section {
    margin-top: 3rem;
  }
}

@media screen and (min-width: 768px) {
  .single.single-vehicle .post-content.second-cont {
    padding-top: 3rem;
  }
}

.post-content .col {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .post-content .col {
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .post-content .main-col {
    padding-right: 40px;
  }
}

.vehicle-gallery .thumbnails,
.vehicle-gallery .vehicle {
  width: 100%;
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .vehicle-gallery .thumbnails,
  .vehicle-gallery .vehicle {
    width: 100%;
  }
}

.vehicle-gallery .thumbnails .swiper-slide img {
  filter: grayscale(100%);
}

.vehicle-gallery .thumbnails .swiper-slide {
  cursor: pointer;
}

.vehicle-gallery .thumbnails .swiper-slide img:hover {
  filter: none;
}

.vehicle-gallery .thumbnails .swiper-slide.swiper-slide-active img {
  filter: none;
}

.vehicle-gallery .thumbnails .swiper-slide.swiper-slide-active {
  border-bottom: 3px solid #FFCB17;
}

.vehicle-gallery {
  position: relative;
  width: 100%;
}

.post-content .price {
  float: right;
  margin-top: 0;
  font-weight: 700;
  color: #000000;
  line-height: 50px;
}

@media screen and (min-width: 768px) {
  .post-content .price {
    line-height: 60px;
    margin-bottom: 1.5rem;
  }
}

.miles {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25'%3E%3Cpath id='gauge-solid' d='M0,12.5A12.5,12.5,0,1,1,12.5,25,12.5,12.5,0,0,1,0,12.5Zm15.625,4.688a3.113,3.113,0,0,0-1.953-2.9V4.3a1.172,1.172,0,0,0-2.344,0v10a3.124,3.124,0,1,0,4.3,2.9ZM7.031,8.594A1.563,1.563,0,1,0,5.469,7.031,1.562,1.562,0,0,0,7.031,8.594ZM6.25,12.5a1.563,1.563,0,1,0-1.562,1.563A1.563,1.563,0,0,0,6.25,12.5Zm14.063,1.563A1.563,1.563,0,1,0,18.75,12.5,1.563,1.563,0,0,0,20.313,14.063Zm-.781-7.031a1.563,1.563,0,1,0-1.562,1.563A1.563,1.563,0,0,0,19.531,7.031Z' fill='%23003474'/%3E%3C/svg%3E%0A") no-repeat left 4px/19px;
  padding-left: 35px;
}

.vehicle.swiper .swiper-button-prev,
.vehicle.swiper .swiper-button-next {
  color: white;
  text-shadow: 0 0px 5px rgba(0, 0, 0, 0.5);
}

.vehicle.swiper .swiper-button-prev {
  left: 0;
}

@media screen and (min-width: 768px) {
  .vehicle.swiper .swiper-button-prev {
    left: 5px;
  }
}

.vehicle.swiper .swiper-button-next {
  right: 5px;
}

@media screen and (min-width: 768px) {
  .vehicle.swiper .swiper-button-next {
    right: 10px;
  }
}

p.attr {
  font-weight: 900;
  font-size: 18px;
  line-height: 28px;
  margin-top: 0;
  margin-bottom: 14px;
  width: 100%;
}

.car-details .wp-element-button {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .car-details .wp-element-button {
    margin-bottom: 1.5rem;
  }
}

.car-details .wp-element-button.get-approved {
  margin-top: 15px;
  margin-right: 10px;
}

@media screen and (min-width: 768px) {
  .car-details .wp-element-button.get-approved {
    margin-top: 30px;
    margin-right: 20px;
  }
}

.post-content > .col-full {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .post-content > .col-full {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.single .resources-block .header {
  padding-bottom: 1.5rem;
  -ms-flex-pack: center;
      justify-content: center;
}

@media screen and (min-width: 768px) {
  .single .resources-block .header {
    padding-bottom: 2rem;
  }
}

.single .resources-block {
  overflow: hidden;
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
  max-width: 1420px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media screen and (min-width: 768px) {
  .single .resources-block {
    padding-top: 5rem;
    padding-bottom: 4rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.related-vehicle.swiper {
  position: relative;
}

.related-vehicle.swiper .swiper-button-prev {
  left: -20px;
}

@media screen and (min-width: 768px) {
  .related-vehicle.swiper .swiper-button-prev {
    left: -35px;
  }
}

.related-vehicle.swiper .swiper-button-next {
  right: -20px;
}

@media screen and (min-width: 768px) {
  .related-vehicle.swiper .swiper-button-next {
    right: -35px;
  }
}

.car-details + .col-full {
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  .car-details + .col-full {
    margin-top: 3rem;
  }
}

.post-content .tabs button {
  margin-top: 0;
  font-weight: 900;
  font-size: 12px;
  color: #000000;
  letter-spacing: 0;
  cursor: pointer;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 25%;
  padding-left: 0;
  padding-right: 0;
}

@media screen and (min-width: 768px) {
  .post-content .tabs button {
    font-size: 20px;
    width: auto;
    font-size: 18px;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.post-content .tabs button.active {
  background: #f0f0f0;
}

.year {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.875' height='25' viewBox='0 0 21.875 25'%3E%3Cpath id='calendar-days-solid' d='M7.813,1.563V3.125h6.25V1.563a1.563,1.563,0,0,1,3.125,0V3.125h2.344a2.344,2.344,0,0,1,2.344,2.344V7.813H0V5.469A2.344,2.344,0,0,1,2.344,3.125H4.688V1.563a1.563,1.563,0,0,1,3.125,0ZM0,9.375H21.875V22.656A2.344,2.344,0,0,1,19.531,25H2.344A2.344,2.344,0,0,1,0,22.656Zm3.125,5.469a.782.782,0,0,0,.781.781H5.469a.784.784,0,0,0,.781-.781V13.281a.784.784,0,0,0-.781-.781H3.906a.782.782,0,0,0-.781.781Zm6.25,0a.784.784,0,0,0,.781.781h1.563a.784.784,0,0,0,.781-.781V13.281a.784.784,0,0,0-.781-.781H10.156a.784.784,0,0,0-.781.781ZM16.406,12.5a.784.784,0,0,0-.781.781v1.563a.784.784,0,0,0,.781.781h1.563a.784.784,0,0,0,.781-.781V13.281a.784.784,0,0,0-.781-.781ZM3.125,21.094a.782.782,0,0,0,.781.781H5.469a.784.784,0,0,0,.781-.781V19.531a.784.784,0,0,0-.781-.781H3.906a.782.782,0,0,0-.781.781Zm7.031-2.344a.784.784,0,0,0-.781.781v1.563a.784.784,0,0,0,.781.781h1.563a.784.784,0,0,0,.781-.781V19.531a.784.784,0,0,0-.781-.781Zm5.469,2.344a.784.784,0,0,0,.781.781h1.563a.784.784,0,0,0,.781-.781V19.531a.784.784,0,0,0-.781-.781H16.406a.784.784,0,0,0-.781.781Z' fill='%23003474'/%3E%3C/svg%3E%0A") no-repeat left 0px/21px;
  padding-left: 35px;
}

.engine {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 640 512"><!--! Font Awesome Pro 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><style>svg{fill:%23003474}</style><path d="M400 112c13.3 0 24-10.7 24-24s-10.7-24-24-24H208c-13.3 0-24 10.7-24 24s10.7 24 24 24l72 0v32H208 160 128c-17.7 0-32 14.3-32 32v56H48V160c0-13.3-10.7-24-24-24s-24 10.7-24 24V352c0 13.3 10.7 24 24 24s24-10.7 24-24V280H96v72c0 17.7 14.3 32 32 32h44.8l32 40c12.1 15.2 30.5 24 50 24H448c35.3 0 64-28.7 64-64V238.8c0-19.4-8.8-37.8-24-50L449.5 158c-11.3-9.1-25.4-14-40-14H328V112l72 0zM544 224V416c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32H576c-17.7 0-32 14.3-32 32zm-256 0a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM160 256a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm224-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"/></svg>') no-repeat left 6px/21px;
  padding-left: 35px;
}

.exterior {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 640 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><style>svg{fill:%23003474}</style><path d="M171.3 96H224v96H111.3l30.4-75.9C146.5 104 158.2 96 171.3 96zM272 192V96h81.2c9.7 0 18.9 4.4 25 12l67.2 84H272zm256.2 1L428.2 68c-18.2-22.8-45.8-36-75-36H171.3c-39.3 0-74.6 23.9-89.1 60.3L40.6 196.4C16.8 205.8 0 228.9 0 256V368c0 17.7 14.3 32 32 32H65.3c7.6 45.4 47.1 80 94.7 80s87.1-34.6 94.7-80H385.3c7.6 45.4 47.1 80 94.7 80s87.1-34.6 94.7-80H608c17.7 0 32-14.3 32-32V320c0-65.2-48.8-119-111.8-127zM434.7 368a48 48 0 1 1 90.5 32 48 48 0 1 1 -90.5-32zM160 336a48 48 0 1 1 0 96 48 48 0 1 1 0-96z"/></svg>') no-repeat left 7px/21px;
  padding-left: 35px;
}

.interior {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><style>svg{fill:%23003474}</style><path d="M224 358.9v86.5C143.6 431.9 80.1 368.4 66.7 288H168.9L224 358.9zm64 0L343.1 288H445.3C431.9 368.4 368.4 431.9 288 445.3V358.9zM352 224l-7.2-14.3c-5.4-10.8-16.5-17.7-28.6-17.7H195.8c-12.1 0-23.2 6.8-28.6 17.7L160 224H66.7C81.9 133.2 160.9 64 256 64s174.1 69.2 189.3 160H352zM256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512z"/></svg>') no-repeat left 6px/19px;
  padding-left: 35px;
}

.mpg {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><style>svg{fill:%23003474}</style><path d="M32 64C32 28.7 60.7 0 96 0H256c35.3 0 64 28.7 64 64V256h8c48.6 0 88 39.4 88 88v32c0 13.3 10.7 24 24 24s24-10.7 24-24V222c-27.6-7.1-48-32.2-48-62V96L384 64c-8.8-8.8-8.8-23.2 0-32s23.2-8.8 32 0l77.3 77.3c12 12 18.7 28.3 18.7 45.3V168v24 32V376c0 39.8-32.2 72-72 72s-72-32.2-72-72V344c0-22.1-17.9-40-40-40h-8V448c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32V64zM96 80v96c0 8.8 7.2 16 16 16H240c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16H112c-8.8 0-16 7.2-16 16z"/></svg>') no-repeat left 4px/19px;
  padding-left: 35px;
}

.seats {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448 512"><!--! Font Awesome Pro 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><style>svg{fill:%23003474}</style><path d="M64 32C64 14.3 49.7 0 32 0S0 14.3 0 32V143.6c0 15.2 3.1 30.2 9.1 44.1L82 357.8c15.1 35.3 49.8 58.2 88.2 58.2H216v48H120c-13.3 0-24 10.7-24 24s10.7 24 24 24H360c13.3 0 24-10.7 24-24s-10.7-24-24-24H264V416h96c15.1 0 29.3-7.1 38.4-19.2l43.2-57.6c7.3-9.7 8.4-22.7 3-33.5S428.1 288 416 288H121.7L108 256H320c17.7 0 32-14.3 32-32s-14.3-32-32-32H80.5L67.9 162.5c-2.6-6-3.9-12.4-3.9-18.9V32z"/></svg>') no-repeat left 4px/18px;
  padding-left: 35px;
}

.drive {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><style>svg{fill:%23003474}</style><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm32-256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm-16.1 62l0 65c44.3-5.5 81.5-33.6 99.8-72.4l-61.9-20.1c-8.6 13.5-22.1 23.5-38 27.6zm47.9-58l61.8 20.1c1.5-7.8 2.3-15.9 2.3-24.2c0-36.8-15.5-69.9-40.3-93.3l-38.2 52.6c9.1 11 14.5 25.2 14.5 40.6c0 1.4 0 2.7-.1 4zm-40.2-63.5l38.2-52.6C299.5 133.8 278.4 128 256 128s-43.5 5.8-61.8 15.9l28.1 38.8 10 13.8c7.3-2.9 15.3-4.5 23.6-4.5s16.3 1.6 23.6 4.5zM168.3 162.7C143.5 186.1 128 219.2 128 256c0 8.3 .8 16.3 2.3 24.2L192.1 260c-.1-1.3-.1-2.7-.1-4c0-15.4 5.5-29.6 14.5-40.6l-10.1-13.9-28.1-38.7zm33.7 127.7l-61.9 20.1c18.3 38.8 55.5 66.9 99.8 72.4l0-65c-15.8-4.1-29.3-14.1-37.9-27.5zM256 96a160 160 0 1 1 0 320 160 160 0 1 1 0-320z"/></svg>') no-repeat left 5px/19px;
  padding-left: 35px;
}

.trim {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><style>svg{fill:%23003474}</style><path d="M152.1 38.2c9.9 8.9 10.7 24 1.8 33.9l-72 80c-4.4 4.9-10.6 7.8-17.2 7.9s-12.9-2.4-17.6-7L7 113C-2.3 103.6-2.3 88.4 7 79s24.6-9.4 33.9 0l22.1 22.1 55.1-61.2c8.9-9.9 24-10.7 33.9-1.8zm0 160c9.9 8.9 10.7 24 1.8 33.9l-72 80c-4.4 4.9-10.6 7.8-17.2 7.9s-12.9-2.4-17.6-7L7 273c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l22.1 22.1 55.1-61.2c8.9-9.9 24-10.7 33.9-1.8zM224 96c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H256c-17.7 0-32-14.3-32-32zm0 160c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H256c-17.7 0-32-14.3-32-32zM160 416c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H192c-17.7 0-32-14.3-32-32zM48 368a48 48 0 1 1 0 96 48 48 0 1 1 0-96z"/></svg>') no-repeat left 5px/19px;
  padding-left: 35px;
}

.phone {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30.004' viewBox='0 0 30 30.004'%3E%3Cpath id='phone-solid' d='M.044,22.672l1.362,5.907A1.821,1.821,0,0,0,3.191,30,26.839,26.839,0,0,0,30,3.188,1.82,1.82,0,0,0,28.581,1.4L22.674.041a1.839,1.839,0,0,0-2.1,1.062L17.851,7.461A1.834,1.834,0,0,0,18.377,9.6l3.155,2.533a20.49,20.49,0,0,1-9.347,9.347L9.6,18.324A1.823,1.823,0,0,0,7.466,17.8L1.108,20.524A2,2,0,0,0,.044,22.672Z' transform='translate(0 0.006)' fill='%23003474'/%3E%3C/svg%3E%0A") no-repeat left 0px/20px;
  padding-left: 35px;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .phone {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30.004' viewBox='0 0 30 30.004'%3E%3Cpath id='phone-solid' d='M.044,22.672l1.362,5.907A1.821,1.821,0,0,0,3.191,30,26.839,26.839,0,0,0,30,3.188,1.82,1.82,0,0,0,28.581,1.4L22.674.041a1.839,1.839,0,0,0-2.1,1.062L17.851,7.461A1.834,1.834,0,0,0,18.377,9.6l3.155,2.533a20.49,20.49,0,0,1-9.347,9.347L9.6,18.324A1.823,1.823,0,0,0,7.466,17.8L1.108,20.524A2,2,0,0,0,.044,22.672Z' transform='translate(0 0.006)' fill='%23003474'/%3E%3C/svg%3E%0A") no-repeat left 0px/30px;
  }
}

.trans {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 640 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><style>svg{fill:%23003474}</style><path d="M308.5 135.3c7.1-6.3 9.9-16.2 6.2-25c-2.3-5.3-4.8-10.5-7.6-15.5L304 89.4c-3-5-6.3-9.9-9.8-14.6c-5.7-7.6-15.7-10.1-24.7-7.1l-28.2 9.3c-10.7-8.8-23-16-36.2-20.9L199 27.1c-1.9-9.3-9.1-16.7-18.5-17.8C173.9 8.4 167.2 8 160.4 8h-.7c-6.8 0-13.5 .4-20.1 1.2c-9.4 1.1-16.6 8.6-18.5 17.8L115 56.1c-13.3 5-25.5 12.1-36.2 20.9L50.5 67.8c-9-3-19-.5-24.7 7.1c-3.5 4.7-6.8 9.6-9.9 14.6l-3 5.3c-2.8 5-5.3 10.2-7.6 15.6c-3.7 8.7-.9 18.6 6.2 25l22.2 19.8C32.6 161.9 32 168.9 32 176s.6 14.1 1.7 20.9L11.5 216.7c-7.1 6.3-9.9 16.2-6.2 25c2.3 5.3 4.8 10.5 7.6 15.6l3 5.2c3 5.1 6.3 9.9 9.9 14.6c5.7 7.6 15.7 10.1 24.7 7.1l28.2-9.3c10.7 8.8 23 16 36.2 20.9l6.1 29.1c1.9 9.3 9.1 16.7 18.5 17.8c6.7 .8 13.5 1.2 20.4 1.2s13.7-.4 20.4-1.2c9.4-1.1 16.6-8.6 18.5-17.8l6.1-29.1c13.3-5 25.5-12.1 36.2-20.9l28.2 9.3c9 3 19 .5 24.7-7.1c3.5-4.7 6.8-9.5 9.8-14.6l3.1-5.4c2.8-5 5.3-10.2 7.6-15.5c3.7-8.7 .9-18.6-6.2-25l-22.2-19.8c1.1-6.8 1.7-13.8 1.7-20.9s-.6-14.1-1.7-20.9l22.2-19.8zM112 176a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM504.7 500.5c6.3 7.1 16.2 9.9 25 6.2c5.3-2.3 10.5-4.8 15.5-7.6l5.4-3.1c5-3 9.9-6.3 14.6-9.8c7.6-5.7 10.1-15.7 7.1-24.7l-9.3-28.2c8.8-10.7 16-23 20.9-36.2l29.1-6.1c9.3-1.9 16.7-9.1 17.8-18.5c.8-6.7 1.2-13.5 1.2-20.4s-.4-13.7-1.2-20.4c-1.1-9.4-8.6-16.6-17.8-18.5L583.9 307c-5-13.3-12.1-25.5-20.9-36.2l9.3-28.2c3-9 .5-19-7.1-24.7c-4.7-3.5-9.6-6.8-14.6-9.9l-5.3-3c-5-2.8-10.2-5.3-15.6-7.6c-8.7-3.7-18.6-.9-25 6.2l-19.8 22.2c-6.8-1.1-13.8-1.7-20.9-1.7s-14.1 .6-20.9 1.7l-19.8-22.2c-6.3-7.1-16.2-9.9-25-6.2c-5.3 2.3-10.5 4.8-15.6 7.6l-5.2 3c-5.1 3-9.9 6.3-14.6 9.9c-7.6 5.7-10.1 15.7-7.1 24.7l9.3 28.2c-8.8 10.7-16 23-20.9 36.2L315.1 313c-9.3 1.9-16.7 9.1-17.8 18.5c-.8 6.7-1.2 13.5-1.2 20.4s.4 13.7 1.2 20.4c1.1 9.4 8.6 16.6 17.8 18.5l29.1 6.1c5 13.3 12.1 25.5 20.9 36.2l-9.3 28.2c-3 9-.5 19 7.1 24.7c4.7 3.5 9.5 6.8 14.6 9.8l5.4 3.1c5 2.8 10.2 5.3 15.5 7.6c8.7 3.7 18.6 .9 25-6.2l19.8-22.2c6.8 1.1 13.8 1.7 20.9 1.7s14.1-.6 20.9-1.7l19.8 22.2zM464 304a48 48 0 1 1 0 96 48 48 0 1 1 0-96z"/></svg>') no-repeat left 6px/21px;
  padding-left: 35px;
}

p.phone {
  color: #FFCB17;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

p.phone a {
  text-decoration: none;
}

.post-content .col.col-full {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .post-content .col.col-full {
    width: 100%;
  }
}

.single .post-content {
  max-width: 1250px;
  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;
  }
}

@media screen and (min-width: 768px) {
  .single .has-post-thumbnail .entry-header .header-title,
  .single .has-post-thumbnail .entry-header .entry-meta {
    color: white;
  }
}

.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;
  max-height: 700px;
}

.single.single-case-studies .post-thumbnail:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  top: 0;
  left: 0;
  position: absolute;
}

.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: 1250px;
}

.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: 1250px;
  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: 1920px;
  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;
  }
}

.hero-block-wrap .entry-meta,
.entry-header .entry-meta {
  color: #003474;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  display: inline-block;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.2px;
  font-weight: 500;
  border-bottom: 2px solid white;
  margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
  .hero-block-wrap .entry-meta,
  .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: #FFCB17;
  margin-top: 0;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.single .term-row {
  width: 100%;
  margin: -20px auto 20px;
}

@media screen and (min-width: 768px) {
  .single .term-row {
    margin: -30px auto 30px;
  }
}

.entry-footer .resources-grid {
  background: none;
}

.entry-footer .extra-wrap {
  max-width: 1250px;
  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: "Lato", 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: "Lato", 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: #003474;
  text-transform: capitalize;
  font-family: "Lato", 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 #003474;
}

@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: 1.75rem;
}

@media screen and (min-width: 768px) {
  .single .gs-containeer .gs_team {
    margin-top: 3.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: 1170px;
}

.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;
}

.single.single-vehicle .header-title {
  font-size: 26px;
  margin-bottom: 0;
  display: inline;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .single.single-vehicle .header-title {
    font-size: 33px;
  }
}

#PaymentCalculator {
  width: 100%;
  margin-bottom: 35px;
}

@media screen and (min-width: 1080px) {
  #PaymentCalculator {
    width: 50%;
    max-width: 425px;
  }
}

#Calculator label {
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  text-align: center;
  display: block;
  width: 100%;
  color: black;
  font-weight: 700;
}

#Calculator {
  margin-top: 25px;
  position: relative;
}

@media screen and (min-width: 768px) {
  #Calculator {
    margin-top: 0;
  }
}

#Payment {
  color: #FFCB17;
  font-family: "Lato", sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  #Payment {
    font-size: 37px;
  }
}

#Calculator + .payment_table table {
  border-top: 0;
  border-collapse: collapse;
  border-bottom: 0;
}

#Calculator + .payment_table table td:nth-of-type(even) {
  text-align: right;
}

#Calculator + .payment_table table td {
  border-bottom: 1px solid #000000;
}

#Payment span {
  font-size: 14px;
}

article.type-vehicle .cols {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
  width: 100%;
}

article.type-vehicle .header-title {
  width: 100%;
}

@media screen and (min-width: 768px) {
  article.type-vehicle .header-title {
    width: 65%;
  }
}

article.type-vehicle header {
  margin-bottom: 0;
  width: 100%;
}

article.type-vehicle h2.price {
  font-size: 26px;
  display: inline;
  width: auto;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  article.type-vehicle h2.price {
    font-size: 33px;
    text-align: right;
  }
}

.hide {
  display: none;
}

button.read-less,
button.read-more {
  font-size: 18px;
  cursor: pointer;
  color: #FFCB17;
  padding: 0;
  background: transparent;
}

.tabs {
  position: relative;
  width: 100%;
  margin-top: 25px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .tabs {
    display: block;
  }
}

.tabcontent {
  display: none;
  overflow: hidden;
  padding: 20px;
}

.tabcontent.active {
  display: block;
  background: #f0f0f0;
}

ul.feature {
  padding: 0;
  overflow: hidden;
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  ul.feature {
    margin-top: 25px;
    columns: 2;
  }
}

.accordion h5 button {
  background: none;
  padding: 0;
  position: relative;
}

.accordion.active h5 button:after {
  content: "-";
}

.accordion h5 button:after {
  content: "+";
  display: inline-block;
  margin-left: 5px;
  color: #FFCB17;
}

.accordion .feature {
  display: none;
}

.accordion button {
  cursor: pointer;
}

.accordion.active .feature {
  display: block;
}

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: #FFCB17;
}

@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: "Lato", 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: 1920px;
  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: "Lato", 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: #003474;
  border: 1px solid #003474;
}

.wp-block-table table {
  margin-bottom: 0;
}

.wp-block-table table th {
  font-family: "Lato", 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: "Lato", 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: #FFCB17;
  color: white;
}

td.year-sum {
  font-weight: bold;
  background: #003474;
}

.single-portfolio .post-content {
  max-width: 1920px;
  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;
}

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: 1250px) {
  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_P_3,
span.wprs_rd_more_1,
div.wprevpro_t1_DIV_2 p {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #000000;
  font-style: normal;
}

@media screen and (min-width: 768px) {
  div.wprevpro_t1_P_3,
  span.wprs_rd_more_1,
  div.wprevpro_t1_DIV_2 p {
    font-size: 22px;
    line-height: 34px;
  }
}

.wprevpro button.slickwprev-arrow {
  z-index: 998;
}

.wprevpro_star_imgs span.svgicons {
  width: 20px !important;
  height: 20px !important;
  background: #EEA320 !important;
  color: #EEA320;
  margin-right: 3px !important;
}

.wprs_rd_more {
  font-weight: 400;
  color: #FFCB17 !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: 35px;
}

span.wprevpro_t1_A_8 {
  padding-top: 25px;
  margin-left: 10px;
}

span.wprevpro_t1_A_8 .wprevpro_t1_IMG_4 {
  margin-left: 0;
}

.reviews .resources-grid .error {
  text-align: center;
  grid-column: 1/3;
}

@media screen and (min-width: 1250px) {
  .reviews .resources-grid .error {
    grid-column: 1/4;
  }
}

div.wppro_badge1_DIV_stars span.svgicons {
  width: 25px;
  height: 25px;
}

@media screen and (min-width: 768px) {
  div.wppro_badge1_DIV_stars span.svgicons {
    width: 35px;
    height: 35px;
  }
}

span.svg-wprsp-star-full {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='20' height='22' viewBox='0 0 20 22'%3E%3Cpath d='M20.429 8.14c0 0.221-0.16 0.43-0.319 0.589l-4.456 4.346 1.056 6.138c0.012 0.086 0.012 0.16 0.012 0.246 0 0.319-0.147 0.614-0.503 0.614-0.172 0-0.344-0.061-0.491-0.147l-5.512-2.897-5.512 2.897c-0.16 0.086-0.319 0.147-0.491 0.147-0.356 0-0.516-0.295-0.516-0.614 0-0.086 0.012-0.16 0.025-0.246l1.056-6.138-4.469-4.346c-0.147-0.16-0.307-0.368-0.307-0.589 0-0.368 0.381-0.516 0.687-0.565l6.163-0.896 2.762-5.586c0.11-0.233 0.319-0.503 0.602-0.503s0.491 0.27 0.602 0.503l2.762 5.586 6.163 0.896c0.295 0.049 0.688 0.196 0.688 0.565z'%3E%3C/path%3E%3C/svg%3E%0A");
}

.wprevpro_badge span.wppro_avg_b6s6a {
  color: #000000;
  font-size: 30px;
  font-weight: 900;
  font-family: "Lato", sans-serif;
  transform: translateY(-2px);
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .wprevpro_badge span.wppro_avg_b6s6a {
    font-size: 35px;
  }
}

div.wprev_preview_tcolor2_T1 > div.wprevpro_t1_rname {
  color: #003474;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  text-transform: none;
  font-size: 18px;
  line-height: 23px;
}

@media screen and (min-width: 768px) {
  div.wprev_preview_tcolor2_T1 > div.wprevpro_t1_rname {
    font-size: 22px;
    line-height: 28px;
  }
}

.wprevpro_badge img.wppro_badge3_IMG_4 {
  min-height: 20px;
  max-height: 20px;
  margin-right: 0;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .wprevpro_badge img.wppro_badge3_IMG_4 {
    max-height: 25px;
    min-height: 25px;
  }
}

#wprev-badge-1 .wppro_badge1_DIV_12 {
  font-size: 18px;
  margin-top: 10px;
  font-family: "Lato", sans-serif;
  color: #E6E6E6;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  #wprev-badge-1 .wppro_badge1_DIV_12 {
    margin-top: 15px;
    font-size: 20px;
  }
}

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;
}

.bio-component.alternatives div.wprevpro_t1_DIV_2 {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.bio-component.alternatives div.wprev_preview_tcolor2_T1 > div.wprevpro_t1_rname,
.bio-component.alternatives div.wprevpro_t1_P_3 {
  font-size: 17px;
  line-height: 25px;
}

.bio-component.alternatives {
  margin-bottom: 0;
  padding: 10px;
}

.single-member-alt a {
  text-decoration: none;
}

#gs_team_area_1 h3.gs-member-name {
  background: transparent;
  color: #FFCB17;
  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 .col-full {
  margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
  .gs_team .col-full {
    margin-bottom: 35px;
  }
}

.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: #000000 !important;
  font-family: "Lato", 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: 1620px;
  margin: 0 auto;
  width: 100%;
}

div.gs-team-popup--default .gs-member-desc {
  color: #000000;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  line-height: 24px;
}

@media screen and (min-width: 768px) {
  div.gs-team-popup--default .gs-member-desc {
    font-size: 24px;
    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%;
  }
}

.gs_tm_theme12 .single-member-name-desig {
  position: relative;
  display: block;
}

div.gs-single-default .gs-team-single-content {
  box-shadow: none;
  width: 100%;
  display: block;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

@media screen and (min-width: 768px) {
  div.gs-single-default .gs-team-single-content {
    position: sticky;
    top: 175px;
    width: 50%;
    -ms-flex-item-align: start;
        align-self: flex-start;
    padding-left: 1.25rem !important;
    padding-right: 2.5rem !important;
  }
}

div.gs-single-default .gs-team-single-content.default {
  -ms-flex-pack: center;
      justify-content: center;
}

div.gs-single-default .reviews {
  width: 100%;
  background: #f1f1f1;
  padding: 20px;
}

@media screen and (min-width: 768px) {
  div.gs-single-default .reviews {
    width: 50%;
    padding: 35px;
  }
}

body.single-gs_team .gs_member_img {
  width: 100%;
}

body.single-gs_team .gs_member_details {
  width: 100%;
  padding-left: 0;
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid #003474;
}

div.gs-single-default .gs-team-single-content .gs_ribon_wrapper::after {
  display: none;
}

body.single .gs-containeer .gs_team {
  margin-top: 0;
}

.single .gs-containeer .gs_team {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  height: auto;
}

.reviews header {
  text-align: center;
  border-bottom: 1px solid #003474;
  margin-bottom: 25px;
}

div.gs-single-default .gs-team-single-content .gs_ribon_wrapper img {
  position: relative;
  max-width: 400px !important;
}

div.gs-single-container {
  width: 100%;
  max-width: 1620px;
}

div.gs-archive-container, div.gs-single-container {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.reviews .resources-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

@media screen and (min-width: 1250px) {
  .reviews .resources-grid {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.reviews .resources-grid .wp-block-button {
  text-align: center;
  margin-top: 25px;
}

@media screen and (min-width: 1250px) {
  .reviews .resources-grid .wp-block-button {
    margin-top: 35px;
    grid-column: 1/3;
  }
}

div.gs-single-default .gs-team-single-content .gs-sin-mem-name {
  font-size: 30px;
}

@media screen and (min-width: 768px) {
  div.gs-single-default .gs-team-single-content .gs-sin-mem-name {
    font-size: 44px;
  }
}

/*--------------------------------------------------------------
 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-text .wp-block {
  max-width: 100%;
}

.hero-text .hero-asset {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.wp-block.hero-text {
  max-width: 100%;
  width: 100%;
  margin-bottom: 0;
  position: relative;
}

.hero-text {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: stretch;
      align-items: stretch;
}

.hero h1 {
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .hero h1 {
    margin-bottom: 25px;
  }
}

.hero h3 {
  color: #FFCB17;
}

.hero-text .img-container {
  position: relative;
}

.hero-text .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-text .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-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: 1251px) {
  .hero-block-form {
    width: 33.33333%;
    margin-left: 16.66667%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1250px) {
  .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: 1920px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 2;
  margin-top: 80px;
  margin-bottom: 80px;
}

@media screen and (min-width: 768px) {
  .hero__inner .content-wrap {
    position: relative;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    width: 100%;
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.hero-block-wrap {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.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(235, 162, 58, 0.7) 17.5%, transparent 17.5%);
}

.hero background + br + background {
  background-image: linear-gradient(to bottom, rgba(191, 91, 50, 0.7) 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;
}

.hero .media-controls {
  position: absolute;
  z-index: 2;
}

.hero {
  position: relative;
  min-height: 375px;
  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: 660px;
  }
}

.hero.with-arrow {
  min-height: 450px;
}

@media screen and (min-width: 768px) {
  .hero.with-arrow {
    min-height: 880px;
  }
}

.hero.with-arrow:after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 50%;
  left: 50%;
  transform: translateX(-50%);
  height: 30px;
  width: 17px;
  background: url(img/down-arrow.svg) no-repeat center center/100%;
}

@media screen and (min-width: 768px) {
  .hero.with-arrow:after {
    height: 40px;
    width: 25px;
    bottom: 45px;
  }
}

.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: 375px;
  -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: 660px;
  }
}

.hero.with-arrow .hero-block-image-wrap, .hero.with-arrow .page-template-page-boilerplate .entry-header, .page-template-page-boilerplate .hero.with-arrow .entry-header,
.hero.with-arrow .single .entry-header, .single .hero.with-arrow .entry-header {
  min-height: 450px;
}

@media screen and (min-width: 768px) {
  .hero.with-arrow .hero-block-image-wrap, .hero.with-arrow .page-template-page-boilerplate .entry-header, .page-template-page-boilerplate .hero.with-arrow .entry-header,
  .hero.with-arrow .single .entry-header, .single .hero.with-arrow .entry-header {
    min-height: 880px;
  }
}

.hero .wp-block-buttons {
  -ms-flex-pack: center;
      justify-content: center;
}

.hero .wp-block-buttons .wp-block-button {
  margin-left: 15px;
  margin-right: 15px;
}

@media screen and (min-width: 768px) {
  .hero .wp-block-buttons .wp-block-button {
    margin-left: 30px;
    margin-right: 30px;
  }
}

.hero a {
  color: white;
  text-decoration: none;
}

.hero h2 {
  font-size: 34px;
  line-height: 38px;
}

@media screen and (min-width: 768px) {
  .hero h2 {
    font-size: 40px;
    line-height: 45px;
  }
}

.hero h1,
.hero h2,
.hero h3,
.hero h4,
.hero h5,
.hero .accordion h5 button,
.accordion h5 .hero button,
.hero h6 {
  margin-top: 0;
  color: white;
  margin-bottom: 15px;
}

.hero p {
  font-size: 20px;
  line-height: 29px;
  color: white;
  margin-top: 1.5rem;
}

@media screen and (min-width: 768px) {
  .hero p {
    font-size: 33px;
    line-height: 37px;
  }
}

.hero-block-image:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.23);
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0%, 100% 0%, 100% 100%, 17% 100%, 0% 40%);
          clip-path: polygon(0 0%, 100% 0%, 100% 100%, 17% 100%, 0% 40%);
}

.hero-block-image:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.22);
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0%, 100% 0%, 100% 100%, 12% 100%, 0% 57.5%);
          clip-path: polygon(0 0%, 100% 0%, 100% 100%, 12% 100%, 0% 57.5%);
}

.hero .description a {
  color: white;
}

.hero .hero-block-wrap {
  max-width: 1000px;
}

.hero-block-content {
  position: relative;
  z-index: 2;
  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: 1251px) {
  .hero-block-form {
    width: 33.33333%;
    margin-left: 16.66667%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1250px) {
  .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: 1920px;
  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%;
  margin: 0 auto;
}

.wp-block.image-columns {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.wp-block.content-column {
  max-width: 100%;
}

.image-columns .wp-icons-row {
  max-width: 100%;
}

.image-columns + .image-columns {
  padding-top: 0;
}

@media screen and (min-width: 768px) {
  .image-columns + .image-columns {
    padding-top: 0;
  }
}

.image-columns {
  width: 100%;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}

@media screen and (min-width: 768px) {
  .image-columns {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

.image-columns .content-columns .wrap > *:first-of-type {
  margin-top: 0;
}

.image-columns .content-columns .content-column ul {
  padding-left: 0;
}

.image-columns .block-wrapper {
  max-width: 1620px;
  width: 100%;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media screen and (min-width: 768px) {
  .image-columns .block-wrapper {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}

.image-columns.with-video .image-col {
  position: relative;
  box-shadow: 20px 20px 0 #f1f1f1;
}

@media screen and (min-width: 768px) {
  .image-columns.with-video .image-col {
    box-shadow: 30px 30px 0 #f1f1f1;
  }
}

.image-columns.with-video .image-col:after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #f1f1f1;
}

@media screen and (min-width: 768px) {
  .image-columns.with-video .image-col:after {
    right: -30px;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 30px solid #f1f1f1;
  }
}

.image-columns.with-video .image-col:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #f1f1f1;
}

@media screen and (min-width: 768px) {
  .image-columns.with-video .image-col:before {
    bottom: -30px;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #f1f1f1;
  }
}

.image-columns .img-container {
  position: relative;
}

.image-columns:not(.with-video) .img-container:before {
  position: absolute;
  content: "";
  left: -43px;
  bottom: -20px;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-top: 45px solid #f1f1f1;
  transform: rotate(45deg);
}

@media screen and (min-width: 768px) {
  .image-columns:not(.with-video) .img-container:before {
    bottom: -35px;
    left: -80px;
    border-left: 90px solid transparent;
    border-right: 90px solid transparent;
    border-top: 90px solid #f1f1f1;
  }
}

.grid-text-cards .wp-block-image:not(empty):after {
  position: absolute;
  content: "";
  left: -43px;
  bottom: -20px;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-top: 45px solid #f1f1f1;
  transform: rotate(45deg);
}

@media screen and (min-width: 768px) {
  .grid-text-cards .wp-block-image:not(empty):after {
    bottom: -35px;
    left: -80px;
    border-left: 90px solid transparent;
    border-right: 90px solid transparent;
    border-top: 90px solid #f1f1f1;
  }
}

.image-columns .hero-asset {
  position: relative;
  z-index: 2;
}

.image-columns .icons-row {
  padding-bottom: 0;
}

@media screen and (min-width: 768px) {
  .image-columns .icons-row {
    padding-bottom: 0;
  }
}

.image-columns .block-editor-inner-blocks {
  width: 100%;
}

.image-columns > .block-wrapper > .block-content > .block-editor-inner-blocks > .block-editor-block-list__layout,
.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;
}

.circle-mask .img-container img {
  width: 100%;
  -webkit-clip-path: circle(45% at center);
          clip-path: circle(45% at center);
}

div.image-columns.col-66 .content-columns .content-column,
.image-columns .content-columns .content-column {
  width: 100%;
  max-width: 100%;
  text-align: center;
}

@media screen and (min-width: 768px) {
  div.image-columns.col-66 .content-columns .content-column,
  .image-columns .content-columns .content-column {
    padding-left: 0;
    text-align: left;
    width: 100%;
    max-width: 100%;
  }
}

.image-columns.col-66 .content-column,
.image-columns.col-66 .content-columns {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .image-columns.col-66 .content-column,
  .image-columns.col-66 .content-columns {
    width: 66.66666%;
    max-width: 66.6666%;
  }
}

.image-columns .content-column,
.image-columns .content-columns {
  width: 100%;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .image-columns .content-column,
  .image-columns .content-columns {
    width: 50%;
    padding-left: 4.375rem;
  }
}

.image-columns .content-column {
  margin-bottom: 35px;
}

@media screen and (min-width: 768px) {
  .image-columns .content-column {
    margin-bottom: 0;
  }
}

.image-columns.col-66 .wp-block.icons-row,
.image-columns.col-66 .icons-row,
.image-columns.col-66 .image-col {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .image-columns.col-66 .wp-block.icons-row,
  .image-columns.col-66 .icons-row,
  .image-columns.col-66 .image-col {
    width: 33.3333%;
    max-width: 33.3333%;
  }
}

.image-columns .wp-block.icons-row,
.image-columns .icons-row,
.image-columns .image-col {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .image-columns .wp-block.icons-row,
  .image-columns .icons-row,
  .image-columns .image-col {
    width: 50%;
    max-width: 50%;
  }
}

.img-container img {
  display: block;
  margin: 0 auto;
  position: relative;
}

@media screen and (min-width: 768px) {
  .image-columns.img-right .content-columns {
    padding-left: 0;
    padding-right: 4.375rem;
  }
}

.image-columns .icons-row .icon-cta {
  width: 50%;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) and (max-width: 1250px) {
  .image-columns .icons-row .icon-cta {
    width: 50%;
    margin-bottom: 15px;
  }
}

@media screen and (min-width: 1251px) {
  .image-columns .icons-row .icon-cta {
    width: 33.3333%;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 768px) {
  .image-columns.img-right.no-ds .content-columns {
    padding-left: 1.25rem;
  }
}

.image-columns .image-col {
  position: relative;
  margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
  .image-columns .image-col {
    margin-bottom: 0;
  }
}

.image-columns.no-ds .image-col {
  box-shadow: none;
}

.image-columns .image-comp {
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .image-columns .image-comp {
    margin-bottom: 0;
  }
}

.image-columns .content-column > *:first-child {
  margin-top: 0;
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .image-columns .content-column > *:first-child {
    margin-bottom: 20px;
  }
}

.image-columns video {
  max-width: 100%;
  display: block;
  height: auto;
}

.image-columns .wp-block-buttons {
  -ms-flex-pack: center;
      justify-content: center;
}

@media screen and (min-width: 768px) {
  .image-columns .wp-block-buttons {
    -ms-flex-pack: start;
        justify-content: flex-start;
  }
}

.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: 3;
  transform: translate(-50%, -50%);
  cursor: pointer;
  opacity: .8;
}

@media screen and (min-width: 768px) {
  .custom-video-button {
    width: 80px;
    height: 90px;
  }
}

.section-columns > .block-wrapper {
  max-width: 1392px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.wp-block.section-columns {
  max-width: 100%;
  width: 100%;
}

.section-columns .image-columns .image-col {
  margin-bottom: 0;
}

.section-columns {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #1483C2, #1483C2);
  background-size: 150px 3px;
  background-position: center top;
  background-repeat: no-repeat;
}

.with-bg + .section-columns {
  background: none;
}

.section-columns .image-columns > .block-wrapper > .block-content > .block-editor-inner-blocks > .block-editor-block-list__layout,
.section-columns .image-columns > .block-wrapper > .block-content {
  -ms-flex-align: start;
      align-items: flex-start;
}

.section-columns .image-columns + .image-columns {
  padding-top: 0;
}

@media screen and (min-width: 768px) {
  .section-columns .image-columns + .image-columns {
    padding-top: 0;
  }
}

.cta + .section-columns {
  background: none;
}

.section-columns .image-columns .image-col {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .section-columns .image-columns .image-col {
    width: 36%;
  }
}

.section-columns .image-columns .content-columns {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .section-columns .image-columns .content-columns {
    width: 64%;
  }
}

.section-columns .image-columns {
  padding-left: 0;
  padding-right: 0;
}

.section-columns {
  padding-bottom: 3.15rem;
}

@media screen and (min-width: 768px) {
  .section-columns {
    padding-bottom: 6.875rem;
  }
}

.section-columns .section-header + .image-columns {
  padding-top: 2rem;
}

@media screen and (min-width: 768px) {
  .section-columns .section-header + .image-columns {
    padding-top: 3.15rem;
  }
}

.section-columns .image-columns {
  padding-bottom: 2.25rem;
}

@media screen and (min-width: 768px) {
  .section-columns .image-columns {
    padding-bottom: 3.5rem;
  }
}

.section-columns .image-columns:last-of-type {
  padding-bottom: 0;
}

.section-columns:before {
  content: "";
  width: 50%;
  max-width: 400px;
  padding-bottom: min(400px, 50%);
  background: #E6E7E8;
  position: absolute;
  top: 25%;
  left: 0;
  transform: translateX(-50%);
  border-radius: 100%;
  height: 0;
}

.section-columns:after {
  content: "";
  width: 50%;
  max-width: 620px;
  padding-bottom: min(620px, 50%);
  background: #f1f1f1;
  position: absolute;
  bottom: 8.5%;
  right: 0;
  transform: translateX(50%);
  border-radius: 100%;
  height: 0;
}

.contact-section {
  width: 100%;
}

.contact-section.active {
  animation: backgroundShift 6s ease forwards;
}

.contact-section .block-wrapper {
  width: 100%;
}

.contact-section div.gform_wrapper .gform_heading {
  -ms-flex-pack: start;
      justify-content: flex-start;
}

.contact-section .header-intro-block .block-wrapper {
  text-align: left;
}

.contact-section .header-intro-block .block-wrapper {
  padding-left: 0;
  padding-right: 0;
}

.contact-section .form-wrap {
  max-width: 1100px;
}

.contact-section div.gform_wrapper .gform_heading,
.contact-section .wp-block-heading {
  margin-top: 0;
}

.contact-section .header-intro-block {
  padding-top: 0;
  padding-bottom: 0;
}

.contact-section .header-intro-block .block-content {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 1.875rem;
}

@media screen and (min-width: 768px) {
  .contact-section .header-intro-block .block-content {
    padding-left: 0;
    padding-right: 3rem;
    padding-bottom: 3.75rem;
  }
}

.contact-section .block-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: stretch;
      align-items: stretch;
}

.contact-section .form-column {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

@media screen and (min-width: 768px) {
  .contact-section .form-column {
    padding-top: 6.5rem;
    padding-bottom: 7.5rem;
  }
}

.contact-section div.gform_wrapper fieldset {
  padding: 0;
  border: none;
}

.contact-section .form-wrap .block-content p {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .contact-section .form-wrap .block-content p {
    font-size: 24px;
    line-height: 38px;
  }
}

.contact-section.contact-alt-section .form-wrap .block-content p {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .contact-section.contact-alt-section .form-wrap .block-content p {
    font-size: 20px;
    line-height: 34px;
  }
}

.hidden_label .gfield_label {
  display: none;
}

.contact-section .column {
  width: 100%;
  box-sizing: border-box;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}

@media screen and (min-width: 768px) {
  .contact-section .column {
    width: 50%;
    max-width: 50%;
    padding-right: 5rem;
    padding-left: 0;
  }
}

.contact-section .gform_title {
  margin-top: 2rem;
}

.contact-section .content-column {
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .contact-section .content-column {
    padding-right: 5rem;
  }
}

.contact-section .content p {
  color: white;
  font-size: 16px;
  line-height: 25px;
  font-family: "Lato", 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: "Lato", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  margin-top: 0;
  margin-bottom: 0;
  letter-spacing: 0.35px;
  color: #052C47;
}

@media screen and (min-width: 768px) {
  p.contact-item a,
  p.contact-item {
    font-size: 20px;
    line-height: 30px;
  }
}

.contact-section .header-suptitle {
  color: #F79A6C;
  text-transform: none;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .contact-section .header-suptitle {
    font-size: 25px;
  }
}

.contact-section .header-title {
  margin-top: 0;
  text-transform: capitalize;
  margin-bottom: 20px;
  width: 100%;
}

.contact-icon {
  width: 17px;
  margin-right: 9px;
}

@media screen and (min-width: 768px) {
  .contact-icon {
    width: 30px;
    margin-right: 10px;
  }
}

.contact-icon svg {
  max-width: 20px;
  display: block;
  height: auto;
  margin-top: 2px;
}

@media screen and (min-width: 768px) {
  .contact-icon svg {
    max-width: 25px;
    margin-top: 10px;
  }
}

.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-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 iframe {
  height: 50%;
  width: 100%;
}

.contact-section .content-column iframe:only-child {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.contact-section .content-column .wp-block-buttons {
  margin-top: 15px;
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .contact-section .content-column .wp-block-buttons {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.contact-icon.fa {
  color: #F8AE2B;
  font-size: 32px;
  line-height: 44px;
  margin-right: 1rem;
}

.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-controls .remove-icon {
  padding-left: 0;
}

.contact-section .header-title {
  margin-top: 0;
}

.contact-section.white .form-column {
  background: #3bc24a;
}

.contact-section .icon-icon {
  width: 25px;
  height: 42px;
  margin-right: 20px;
}

@media screen and (min-width: 768px) {
  .contact-section .icon-icon {
    width: 30px;
    height: 50px;
    margin-right: 25px;
  }
}

p.contact-item {
  width: calc(100% - 45px);
}

@media screen and (min-width: 768px) {
  p.contact-item {
    width: calc(100% - 55px);
  }
}

.contact-section .icon-icon svg {
  max-width: 25px;
  display: block;
  height: auto;
  margin-top: 8px;
}

@media screen and (min-width: 768px) {
  .contact-section .icon-icon svg {
    max-width: 30px;
  }
}

.faq-section.wp-block {
  width: 100%;
  max-width: 100%;
}

.faq-section {
  padding-top: 3rem;
}

@media screen and (min-width: 768px) {
  .faq-section {
    padding-top: 6rem;
  }
}

.faq.wp-block {
  width: 100%;
  max-width: 100%;
}

html :where(.wp-block) {
  margin-top: 0;
  margin-bottom: 0;
}

.faq-section .header-intro-block {
  padding-top: 0;
  padding-bottom: 2.25rem;
}

.wp-block.is-reusable .faq:last-of-type {
  margin-bottom: 0;
}

.faq + [class*="wp-block"]:not(.faq) {
  margin-top: 5.25rem;
}

@media screen and (min-width: 768px) {
  .faq + [class*="wp-block"]:not(.faq) {
    margin-top: 8.25rem;
  }
}

.faq {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.faq:last-of-type {
  margin-bottom: 4.25rem;
}

@media screen and (min-width: 768px) {
  .faq:last-of-type {
    margin-bottom: 8.125rem;
  }
}

.faq .block-wrapper {
  max-width: 1000px;
  width: 100%;
  border: 2px solid #F0F0F0;
}

.faq:not(.wp-block) + .faq:not(.wp-block) .block-wrapper {
  border-top: none;
}

.wp-block.faq .content-column.hide-this .header-title,
.faq .header-title {
  padding-left: 2.05rem;
  background: url(img/down-chevron.svg) no-repeat 13px center/10px;
  padding-bottom: 0.35rem;
  margin-bottom: 0;
  margin-top: 0;
  text-transform: none;
  color: #4D4D4D;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .wp-block.faq .content-column.hide-this .header-title,
  .faq .header-title {
    padding-bottom: 0.35rem;
    cursor: pointer;
    padding-left: 3.5rem;
    padding-right: 2.5rem;
    background: url(img/down-chevron.svg) no-repeat 28px center/14px;
    font-size: 23px;
    line-height: 30px;
    padding-top: 1.625rem;
    padding-bottom: 1.625rem;
  }
}

.wp-block.faq .content-column .header-title,
.faq .content-column[data-toggled="true"] .header-title {
  color: #003474;
  background: #F0F0F0 url(img/up-chevron.svg) no-repeat 13px center/10px;
}

@media screen and (min-width: 768px) {
  .wp-block.faq .content-column .header-title,
  .faq .content-column[data-toggled="true"] .header-title {
    background: #F0F0F0 url(img/up-chevron.svg) no-repeat 28px 36px/14px;
  }
}

.faq .content-column {
  width: 100%;
}

.answer .content {
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .answer .content {
    margin-top: 1.625rem;
  }
}

.answer .content p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
}

@media screen and (min-width: 768px) {
  .answer .content p {
    font-size: 23px;
    line-height: 32px;
  }
}

.wp-block.faq .content-column.hide-this .answer {
  display: none;
}

.wp-block.faq .content-column[data-toggled="true"] .answer,
.content-column[data-toggled="true"] .answer,
.wp-block.faq .content-column .answer {
  display: -ms-flexbox;
  display: flex;
  padding-left: calc(1.5rem - 12px);
  padding-right: 1.5rem;
}

@media screen and (min-width: 768px) {
  .wp-block.faq .content-column[data-toggled="true"] .answer,
  .content-column[data-toggled="true"] .answer,
  .wp-block.faq .content-column .answer {
    padding-left: calc(3.5rem - 33px);
    padding-right: 2rem;
  }
}

.wp-block.faq .content-column .answer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
}

.answer {
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
}

.answer .content-col {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .answer .content-col {
    width: 100%;
  }
}

.question-row {
  position: relative;
}

.question-row button.toggle-button {
  position: absolute;
  top: 28px;
  left: 30px;
  width: 26px;
  height: 25px;
  z-index: 4;
  text-indent: -10000px;
}

.wp-block.selected-resources {
  width: 100%;
  max-width: 100%;
  padding-top: 8.125rem;
  padding-bottom: 8.125rem;
}

.archive .resources-block {
  background: none;
}

.resources-block {
  padding-top: 4.25rem;
  padding-bottom: 4.25rem;
}

@media screen and (min-width: 768px) {
  .resources-block {
    padding-top: 6.75rem;
    padding-bottom: 6.75rem;
  }
}

@supports (display: grid) {
  @media screen and (min-width: 1251px) {
    .selected-resources .grid {
      -ms-grid-columns: 1fr 1fr 1fr;
          grid-template-columns: 1fr 1fr 1fr;
    }
  }
}

.resources-block .section-header {
  padding-top: 0;
}

.resources-block .section-header .wp-block-heading {
  margin-top: 0;
}

.resources-block .header-description {
  max-width: 1065px;
  margin: 0 auto;
}

.resources-block .header {
  text-align: center;
  padding-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .resources-block .header {
    padding-bottom: 3.25rem;
  }
}

.resources.swiper {
  position: relative;
  overflow: hidden;
  padding-left: 30px;
  padding-right: 30px;
}

@media screen and (min-width: 768px) {
  .resources.swiper {
    padding-left: 45px;
    padding-right: 45px;
  }
}

.resources-block .block-wrapper {
  width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .resources-block .block-wrapper {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.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-intro-block {
  padding-top: 0;
  padding-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.cta {
  max-width: 100%;
  width: 100%;
}

.cta {
  position: relative;
}

.cta:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -4.2%;
  width: 25%;
  height: 0;
  transform: translateY(7.5%);
  padding-bottom: min(150px, 48.4%);
  background: url(img/car_top-view.png.webp) no-repeat center center/contain;
  z-index: 1;
  max-width: 125px;
}

@media screen and (min-width: 1450px) {
  .cta:before {
    padding-bottom: min(650px, 48.4%);
    max-width: 315px;
  }
}

.cta .block-wrapper {
  width: 100%;
  text-align: center;
  position: relative;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  background: url(img/asphalt_bkg.jpg.webp) no-repeat center center/cover;
}

.editor-styles-wrapper .cta .wp-block-buttons {
  -ms-flex-pack: center;
      justify-content: center;
}

.cta .content *:first-of-type {
  margin-top: 0;
}

.cta .content,
.cta .links {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .cta .content,
  .cta .links {
    width: 50%;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .cta .links {
    -ms-flex-pack: start;
        justify-content: flex-start;
  }
}

.cta .content {
  margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
  .cta .content {
    -ms-flex-pack: end;
        justify-content: flex-end;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .cta .content * {
    padding-left: 34px;
    padding-right: 34px;
  }
}

.cta .block-content {
  width: 100%;
  max-width: 975px;
  margin: 0 auto;
  padding-top: 3.25rem;
  padding-bottom: 4.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media screen and (min-width: 768px) {
  .cta .block-content {
    padding-top: 6.5rem;
    padding-bottom: 7.5em;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.cta .wp-block-buttons {
  margin: 0 auto;
  -ms-flex-pack: center;
      justify-content: center;
}

@media screen and (min-width: 768px) {
  .cta .wp-block-buttons {
    margin: 0;
  }
}

.cta .header-title {
  text-transform: none;
  font-family: "Lato", 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.columns-list {
  max-width: 100%;
  width: 100%;
}

.columns-list h3 {
  margin-bottom: 15px;
}

.columns-list {
  width: 100%;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

@media screen and (min-width: 768px) {
  .columns-list {
    padding-top: 6.75rem;
    padding-bottom: 6.75rem;
  }
}

.columns-list .section-header {
  padding-top: 0;
}

@media screen and (min-width: 768px) {
  .columns-list .section-header {
    padding-top: 0;
  }
}

.columns-list .block-wrapper {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
}

@media screen and (min-width: 768px) {
  .columns-list .block-wrapper {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.columns-list.narrow-width .block-wrapper {
  max-width: 1392px;
}

.columns-list .section-header {
  width: 100%;
  max-width: 100%;
}

.columns-list > .block-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block-heading,
.columns-list > .block-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > ul,
.columns-list .block-wrapper > ul,
.columns-list .block-wrapper > .wp-block-heading {
  width: 50%;
  margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
  .columns-list > .block-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block-heading,
  .columns-list > .block-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > ul,
  .columns-list .block-wrapper > ul,
  .columns-list .block-wrapper > .wp-block-heading {
    width: 33.3333%;
    margin-bottom: 15px;
  }
}

.columns-list .block-wrapper .wp-block-buttons {
  width: 100%;
}

.columns-list > .block-wrapper > .block-editor-inner-blocks {
  width: 100%;
}

.columns-list > .block-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.columns-list .header-title,
.columns-list .wp-block-buttons {
  width: 100%;
  text-align: center;
}

.columns-list .header-title {
  text-transform: none;
}

@media screen and (min-width: 768px) {
  .columns-list .header-title {
    margin-bottom: 2.5rem;
  }
}

.editor-styles-wrapper .columns-list .wp-block-buttons,
.columns-list .wp-block-buttons {
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 1.875rem;
}

@media screen and (min-width: 768px) {
  .editor-styles-wrapper .columns-list .wp-block-buttons,
  .columns-list .wp-block-buttons {
    margin-top: 3.125rem;
  }
}

.editor-styles-wrapper .columns-list ul li {
  position: relative;
}

.entry-content .columns-list ul,
.editor-styles-wrapper .columns-list ul {
  padding-left: 0;
}

.editor-styles-wrapper .columns-list ul,
.editor-styles-wrapper .columns-list ul li,
.entry-content .columns-list ul,
.entry-content .columns-list ul li {
  text-align: left;
}

@media screen and (min-width: 768px) {
  .editor-styles-wrapper .columns-list ul,
  .editor-styles-wrapper .columns-list ul li,
  .entry-content .columns-list ul,
  .entry-content .columns-list ul li {
    text-align: left;
  }
}

.wp-block.shortcode-section {
  width: 100%;
  max-width: 100%;
}

.shortcode-section {
  width: 100%;
  max-width: 100%;
  padding-bottom: 3.25rem;
}

@media screen and (min-width: 768px) {
  .shortcode-section {
    padding-bottom: 6.75rem;
  }
}

.triangles {
  background-image: url(img/bg-triangles.svg);
  background-position: bottom left;
  background-size: 150px;
  background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
  .triangles {
    background-size: 238px;
  }
}

.triangles-grey {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='202.228' height='350' viewBox='0 0 202.228 350'%3E%3Cpath id='Path_787' data-name='Path 787' d='M-.288,424.181l202.228,350H-.088Z' transform='translate(0.288 -424.181)' opacity='0.08'/%3E%3Cpath id='Path_788' data-name='Path 788' d='M-.288,424.182l165.016,285.6H-.124Z' transform='translate(0.288 -359.778)' opacity='0.1'/%3E%3C/svg%3E%0A");
  background-position: bottom left;
  background-size: 125px;
  background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
  .triangles-grey {
    background-size: 200px;
  }
}

.wpex.horizontal-timeline .horizontal-nav li:before {
  display: none;
}

.shortcode-section > .block-wrapper {
  width: 100%;
  max-width: 1620px;
  padding-left: 0;
  padding-right: 0;
  margin: 0 auto;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .shortcode-section > .block-wrapper {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.shortcode-section .section-header {
  padding-bottom: 1rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media screen and (min-width: 768px) {
  .shortcode-section .section-header {
    padding-bottom: 1.25rem;
  }
}

.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: 0;
}

@media screen and (min-width: 768px) {
  .shortcode-section .header-intro-block {
    padding-bottom: 0;
  }
}

.shortcode-section.testimonials-section {
  background: url(img/paint-texture.jpg) no-repeat center center/cover;
}

@media screen and (min-width: 768px) {
  .shortcode-section.testimonials-section {
    padding-bottom: 8rem;
  }
}

.testimonials-section {
  position: relative;
}

.single-member-div.active[data-category="remote"] {
  display: block;
}

div.wpex.horizontal-timeline .horizontal-nav li.ex_s_lick-current + li.prev_item span.tl-point:before,
div.wpex.horizontal-timeline .horizontal-nav li span.tl-point i,
div.wpex.horizontal-timeline .horizontal-nav li span.tl-point:before {
  border-color: #E6E6E6;
}

div.wpex.horizontal-timeline .horizontal-nav li.prev_item span.tl-point:before {
  border-color: #003474;
}

div.wpex.horizontal-timeline .timeline-hr {
  border-color: #E6E6E6;
}

.wpex.horizontal-timeline .timeline-pos-select:before,
.wpex.horizontal-timeline .timeline-hr:before {
  display: none;
}

.single-member-div[data-category="remote"] {
  display: none;
}

div.wpex.horizontal-timeline .timeline-pos-select {
  border-bottom-color: #003474;
}

div.wpex.horizontal-timeline .ex_s_lick-prev,
div.wpex.horizontal-timeline .ex_s_lick-next {
  width: 45px;
  height: 45px;
  border-radius: 45px;
}

div.wpex.horizontal-timeline .wpex-timeline-label .timeline-media img {
  max-height: 375px;
  margin: 0;
}

div.wpex.horizontal-timeline.wpex-horizontal-left .timeline-media {
  width: 100%;
}

@media screen and (min-width: 768px) {
  div.wpex.horizontal-timeline.wpex-horizontal-left .timeline-media {
    width: 35%;
  }
}

div.wpex.horizontal-timeline.wpex-horizontal-left .timeline-media + div {
  width: 100%;
}

@media screen and (min-width: 768px) {
  div.wpex.horizontal-timeline.wpex-horizontal-left .timeline-media + div {
    width: 65%;
    border: 2px solid #E6E6E6;
  }
}

div.wpex h2 + .hidden-date + .wptl-excerpt,
div.wpex h2 + .wptl-excerpt {
  border-top: 2px dashed #E6E6E6;
}

div.wpex.horizontal-timeline .ex_s_lick-prev:hover,
div.wpex.horizontal-timeline .ex_s_lick-next:hover {
  color: white;
  background: #003474;
  border-color: #003474;
}

div.wpex.horizontal-timeline:not(.no-arr-top) .hor-container {
  padding: 0 45px;
  margin: 0 1.25rem;
}

@media screen and (min-width: 768px) {
  div.wpex.horizontal-timeline:not(.no-arr-top) .hor-container {
    margin: 0 auto;
  }
}

div.wpex.horizontal-timeline .horizontal-content .ex_s_lick-slide {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

div.wpex.horizontal-timeline .horizontal-nav .ex_s_lick-prev {
  left: -45px;
}

div.wpex.horizontal-timeline .horizontal-nav .ex_s_lick-next {
  right: -45px;
}

div.wpex.horizontal-timeline:not(.ex-multi-item) .horizontal-nav .ex_s_lick-arrow.ex_s_lick-disabled,
div.wpex.horizontal-timeline .ex_s_lick-prev,
div.wpex.horizontal-timeline .ex_s_lick-next,
div.wpex.horizontal-timeline .horizontal-nav li.ex_s_lick-current span.tl-point:before {
  color: #003474;
  border-color: #003474;
}

div.wpex.horizontal-timeline .horizontal-nav li.ex_s_lick-current span.tl-point:before {
  background: #003474;
}

div.wpex.horizontal-timeline.wpex-horizontal-left .timeline-media + div {
  padding: 20px;
}

@media screen and (min-width: 768px) {
  div.wpex.horizontal-timeline.wpex-horizontal-left .timeline-media + div {
    padding: 35px;
  }
}

div.wpex.horizontal-timeline .wpex-timeline-label h2 {
  margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
  div.wpex.horizontal-timeline .wpex-timeline-label h2 {
    margin-bottom: 35px;
  }
}

div.wpex.horizontal-timeline .wpex-timeline-label h2 a,
div.wpex.horizontal-timeline .wpex-timeline-label h2 {
  text-transform: none;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #003474;
}

@media screen and (min-width: 768px) {
  div.wpex.horizontal-timeline .wpex-timeline-label h2 a,
  div.wpex.horizontal-timeline .wpex-timeline-label h2 {
    font-size: 26px;
  }
}

.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;
  }
}

.with-bg + .text-cards-grid {
  background: none;
}

.text-cards-grid {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-bottom: 3.25rem;
}

@media screen and (min-width: 768px) {
  .text-cards-grid {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 7.5rem;
  }
}

.cta + .text-cards-grid {
  background: none;
}

.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: 1620px;
  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: 1251px) {
  .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: 1250px) {
  .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;
  width: 100%;
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .text-cards-grid .header-intro-block {
    padding-bottom: 6.75rem;
  }
}

.text-cards-grid .section-header *:last-of-type {
  margin-bottom: 0;
}

.text-cards-grid .section-header *:first-of-type {
  margin-top: 0;
}

.text-cards-grid .section-header,
.text-cards-grid .header-intro-block {
  padding-bottom: 0;
}

@media screen and (min-width: 1251px) {
  .text-cards-grid .section-header,
  .text-cards-grid .header-intro-block {
    padding-bottom: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1250px) {
  .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-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
}

.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-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.text-cards-grid .cta .content p {
  color: #FFCB17;
  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: #FFCB17;
  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.text-card {
  max-width: 100%;
}

.lighter-blue .text-card,
.light-grey .text-card {
  background: white;
}

.text-card {
  width: 100%;
  text-align: left;
  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-pack: stretch;
      justify-content: stretch;
  -ms-flex-align: stretch;
      align-items: stretch;
  width: 100%;
  margin-top: 85px;
}

@media screen and (min-width: 768px) {
  .text-card {
    margin-bottom: 0;
    width: calc(50% - 45px);
    margin-right: 45px;
    margin-top: 105px;
  }
}

.columns-3 .text-card {
  margin-top: 85px;
}

@media screen and (min-width: 768px) and (max-width: 1250px) {
  .columns-3 .text-card {
    width: calc(50% - 45px);
    margin-right: 45px;
    margin-top: 105px;
  }
}

@media screen and (min-width: 1251px) {
  .columns-3 .text-card {
    width: calc(33.33333% - 50px);
    margin-right: 70px;
    margin-top: 135px;
  }
}

@media screen and (min-width: 1251px) {
  .text-card:nth-of-type(2n + 1) {
    margin-right: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1250px) {
  .columns-3 .text-card:nth-of-type(2n + 1) {
    margin-right: 45px;
  }
}

@media screen and (min-width: 1251px) {
  .columns-3 .text-card:nth-of-type(2n + 1) {
    margin-right: 70px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1250px) {
  .text-cards-grid .text-card:last-of-type {
    margin-right: 0;
  }
}

@media screen and (min-width: 1251px) {
  .text-cards-grid .text-card:last-of-type {
    margin-right: 0;
  }
}

@media screen and (min-width: 1251px) {
  .columns-3 .text-card:nth-of-type(3n + 1) {
    margin-right: 0;
  }
}

.text-card .block-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -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;
  width: 100%;
}

.text-card .content-card p:last-of-type {
  margin-bottom: 0;
}

.text-card .wp-block-buttons {
  margin-top: auto;
  -ms-flex-pack: center;
      justify-content: center;
}

.text-card .img-container {
  width: 100%;
}

.text-card h1,
.text-card h2,
.text-card h3,
.text-card h4,
.text-card h5,
.text-card .accordion h5 button,
.accordion h5 .text-card button,
.text-card h6 {
  margin-bottom: 0;
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .text-card h1,
  .text-card h2,
  .text-card h3,
  .text-card h4,
  .text-card h5,
  .text-card .accordion h5 button,
  .accordion h5 .text-card button,
  .text-card h6 {
    margin-top: 1.5rem;
  }
}

.text-card h3 {
  color: #003474;
}

.text-card p {
  color: #000000;
  font-family: "Lato", sans-serif;
}

.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;
  width: 100%;
  left: 0;
  top: 0;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .icon-row {
    margin-bottom: 15px;
  }
}

.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;
}

.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;
  margin: 0 auto 0;
  transition-property: background;
  transition-duration: 0.25s;
}

@media screen and (min-width: 768px) {
  .icon-icon {
    height: 130px;
    max-width: 130px;
    margin: 0 auto 0;
  }
}

.text-card .icon-icon {
  margin: -45px auto 0;
}

@media screen and (min-width: 768px) {
  .text-card .icon-icon {
    margin: -65px auto 0;
  }
}

.lighter-blue .text-card .block-wrapper {
  background: white;
}

.text-card .block-wrapper {
  text-align: center;
  background: #f1f1f1;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .text-card .block-wrapper {
    padding-left: 3rem;
    padding-right: 3rem;
    padding-bottom: 3rem;
  }
}

.icon-icon svg {
  transition-property: color;
  transition-duration: 0.25s;
}

.upload-icon,
.icon-icon svg {
  max-width: 56px;
  width: 100%;
  max-height: 50px;
  height: auto;
}

.svg-inline--fa .fa-secondary {
  opacity: 0.4;
}

.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;
}

.tab .header-title {
  text-align: center;
  border: none;
  font-size: 18px;
  line-height: 24px;
  font-family: "Lato", sans-serif;
  display: block;
  cursor: pointer;
  color: #003474;
  font-weight: 900;
  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.active .header-title {
  color: #FFCB17;
}

.tab .header-title:before {
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0;
  height: 0;
  position: absolute;
  background: #FFCB17;
  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 {
  width: 100%;
}

.tabs .content-cols > .block-editor-inner-blocks {
  width: 100%;
}

.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: #FFCB17;
  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 {
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .tabs .tab-container {
    text-align: left;
  }
}

.tab-content.content-cols ul li {
  text-align: left;
}

.tabs .wp-block-image img {
  width: 100%;
  position: relative;
}

.tabs .wp-block-image figcaption {
  display: none;
}

.tabs .image-embed,
.tabs .wp-block-image {
  padding-right: 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .tabs .image-embed,
  .tabs .wp-block-image {
    width: 36%;
  }
}

.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: 64%;
  }
}

.tabs + .selected-resources .resources-block {
  padding-top: 0;
}

@media screen and (min-width: 768px) {
  .tabs + .selected-resources .resources-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: 1920px;
  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 {
  -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: center;
      align-items: center;
}

.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;
  }
}

.wp-block.icons-row {
  max-width: 100%;
  width: 100%;
}

.icons-row {
  padding-top: 0;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}

.icons-row .block-wrapper {
  max-width: 1770px;
  width: 100%;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .icons-row .block-wrapper {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.icons-row .section-header {
  width: 100%;
}

.icons-row .icon-cta {
  width: 50%;
  text-align: center;
}

@media screen and (min-width: 768px) and (max-width: 1250px) {
  .icons-row .icon-cta {
    width: 33.3333%;
  }
}

@media screen and (min-width: 1251px) {
  .icons-row .icon-cta {
    width: 20%;
  }
}

.icon-link {
  text-decoration: none;
}

.icon-link h1,
.icon-link h2,
.icon-link h3,
.icon-link h4,
.icon-link h5,
.icon-link .accordion h5 button,
.accordion h5 .icon-link button,
.icon-link h6 {
  color: #052C47;
  line-height: 24px;
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .icon-link h1,
  .icon-link h2,
  .icon-link h3,
  .icon-link h4,
  .icon-link h5,
  .icon-link .accordion h5 button,
  .accordion h5 .icon-link button,
  .icon-link h6 {
    line-height: 30px;
  }
}

.wp-block.icons-row > .block-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.wp-block.icon-cta {
  max-width: 100%;
  margin: 0;
}

.filter-resources .resources-block {
  padding-top: 0;
}

.wp-block-cls-blocks-resources .resources-block {
  background: none;
}

.resources-block .search-cont {
  grid-column: 1/1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

@media screen and (min-width: 768px) {
  .resources-block .search-cont {
    grid-column: 1/5;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }
}

.loading {
  text-indent: -10000px;
  background: url(img/loading-car.gif) no-repeat center center/200px;
  height: 250px;
}

@media screen and (min-width: 768px) {
  .loading {
    height: 500px;
    grid-column: 1/4;
    background: url(img/loading-car.gif) no-repeat center center/400px;
  }
}

.form-row {
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .form-row {
    margin-bottom: 20px;
  }
}

.resources-block .filter-block {
  border-bottom: 2px solid #E6E6E6;
  width: 100%;
}

.form-filters .wp-block-buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: end;
      justify-content: flex-end;
}

.loading-filters {
  width: 100%;
  height: 500px;
  background: linear-gradient(to bottom, #f4f7f9 75px, transparent 75px, transparent 100px, #f4f7f9 100px, #f4f7f9 175px, transparent 175px, transparent 200px, #f4f7f9 200px, #f4f7f9 275px, transparent 275px, transparent 300px, #f4f7f9 300px, #f4f7f9 375px, transparent 375px, transparent 400px, #f4f7f9 400px, #f4f7f9 475px, transparent 475px);
}

.resources-block .search-cont input[type="search"] {
  grid-column: 1/1;
  background: #f1f1f1 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25.003' viewBox='0 0 25 25.003'%3E%3Cpath id='magnifying-glass-solid' d='M24.43,21.665l-5.845-5.845a10.156,10.156,0,1,0-2.763,2.766l5.845,5.845a1.954,1.954,0,0,0,2.763-2.766ZM3.863,10.157a6.25,6.25,0,1,1,6.25,6.25A6.257,6.257,0,0,1,3.863,10.157Z' transform='translate(-0.001 0)'/%3E%3C/svg%3E%0A") no-repeat calc(100% - 15px) center/25px;
  border: none;
  border-radius: 0;
  min-height: 50px;
  font-size: 20px;
  padding-left: 20px;
}

@media screen and (min-width: 768px) {
  .resources-block .search-cont input[type="search"] {
    grid-column: 1/3;
  }
}

.resources-block .search-cont select {
  background: #f1f1f1 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.379' height='11.153' viewBox='0 0 18.379 11.153'%3E%3Cpath id='chevron-down-solid' d='M14.131,134.352l-8.179-8.179a1.01,1.01,0,0,1,0-1.428l.954-.954a1.01,1.01,0,0,1,1.427,0l6.513,6.482,6.513-6.482a1.01,1.01,0,0,1,1.427,0l.954.954a1.01,1.01,0,0,1,0,1.428l-8.179,8.179A1.01,1.01,0,0,1,14.131,134.352Z' transform='translate(-5.656 -123.495)'/%3E%3C/svg%3E%0A") no-repeat calc(100% - 15px) center/15px;
  border: none;
  padding-left: 20px;
  color: black;
  font-size: 20px;
  font-family: "Lato", sans-serif;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  min-height: 50px;
}

.resources-block .search-cont input[type="search"]:focus {
  background: #f1f1f1;
}

.resources-block .search-cont input[type="search"]:-ms-input-placeholder {
  color: #000000;
  font-family: "Lato", sans-serif;
}

.resources-block .search-cont input[type="search"]::placeholder {
  color: #000000;
  font-family: "Lato", sans-serif;
}

.wp-block-cls-blocks-resources .resources-block .header-title {
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  .wp-block-cls-blocks-resources .resources-block .header-title {
    margin-top: 3rem;
  }
}

@media screen and (min-width: 768px) {
  .wp-block-cls-blocks-resources header.section-header {
    padding-top: 4.125rem;
  }
}

.wp-block-cls-blocks-resources .resources-block .form-filters {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  -ms-flex-align: start;
      align-items: flex-start;
}

@media screen and (min-width: 768px) and (max-width: 1250px) {
  .wp-block-cls-blocks-resources .resources-block .form-filters {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
}

@media screen and (min-width: 1251px) {
  .wp-block-cls-blocks-resources .resources-block .form-filters {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }
}

.form-filters {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .form-filters {
    -ms-grid-column: 1;
        grid-column: 1;
  }
}

@media screen and (min-width: 768px) {
  .form-filters .wrapper.one-col {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.form-filters .filter-items {
  -ms-grid-column: 1;
      grid-column: 1;
}

@media screen and (min-width: 768px) {
  .form-filters .filter-items {
    display: block;
    position: sticky;
    top: 160px;
  }
}

.form-filters .filter-items .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-column-gap: 15px;
}

@media screen and (min-width: 768px) {
  .form-filters .filter-items .container {
    height: 100%;
    max-height: 75vh;
    padding-right: 20px;
    overflow: auto;
    width: 100%;
    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) {
  .resources-block .filter-block:first-of-type .tax-filter-button {
    margin-top: 0;
  }
}

.filter-block.active .tax-filter-button,
.filter-block.active .components-button {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='9.103' viewBox='0 0 15 9.103'%3E%3Cpath id='chevron-down-solid' d='M12.573,132.356,5.9,125.68a.824.824,0,0,1,0-1.166l.779-.779a.824.824,0,0,1,1.164,0l5.315,5.291,5.315-5.291a.824.824,0,0,1,1.164,0l.779.779a.824.824,0,0,1,0,1.166l-6.676,6.676A.824.824,0,0,1,12.573,132.356Z' transform='translate(20.656 132.598) rotate(180)'/%3E%3C/svg%3E%0A");
}

.form-filters .tax-filter-button,
.form-filters .components-button {
  border: none;
  border-radius: 0;
  color: #000000;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  letter-spacing: 0.3px;
  line-height: 24px;
  cursor: pointer;
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.379' height='11.153' viewBox='0 0 18.379 11.153'%3E%3Cpath id='chevron-down-solid' d='M14.131,134.352l-8.179-8.179a1.01,1.01,0,0,1,0-1.428l.954-.954a1.01,1.01,0,0,1,1.427,0l6.513,6.482,6.513-6.482a1.01,1.01,0,0,1,1.427,0l.954.954a1.01,1.01,0,0,1,0,1.428l-8.179,8.179A1.01,1.01,0,0,1,14.131,134.352Z' transform='translate(-5.656 -123.495)'/%3E%3C/svg%3E%0A") no-repeat center right/15px;
  width: 100%;
  text-align: left;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-top: 0;
}

@media screen and (min-width: 768px) {
  .form-filters .tax-filter-button,
  .form-filters .components-button {
    font-size: 20px;
    line-height: 24px;
    margin-top: 1.85rem;
    margin-bottom: 1.85rem;
  }
}

.form-filters .tax-cont {
  display: none;
}

.form-filters [class*="col"].active {
  position: relative;
}

.form-filters [class*="col"].active .tax-cont {
  display: block;
}

@media screen and (min-width: 768px) {
  .form-filters [class*="col"].active .tax-cont {
    height: auto;
    border-radius: 0;
    background: white;
  }
}

.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: 100%;
  margin-bottom: 0.5rem;
  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 input.checkbox-component:checked + label:after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 9px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #FFCB17;
}

ul.tax-list label {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  cursor: pointer;
  color: #4d4d4d;
  display: inline-block;
  margin-top: 6px;
  font-weight: 400;
}

@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 #FFCB17;
}

h2.no-success-header {
  width: 100%;
  text-align: center;
  grid-column: 1/4;
  font-size: 24px;
  color: #FFCB17;
  font-family: "Lato", sans-serif;
}

.resources-grid .pagination {
  width: 100%;
  grid-column: 1/4;
}

.pagination span,
.pagination a {
  font-family: "Lato", sans-serif;
  color: #FFCB17;
  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 #FFCB17;
}

header.section-header {
  text-align: center;
  padding-top: 7.8125rem;
  margin-bottom: 0;
  margin-top: 0;
}

.filter-resources .resources-block .block-wrapper {
  padding-left: 0;
  padding-right: 0;
}

.filter-resources .resources-block .resources-wrap {
  max-width: 1680px;
  margin: 0 auto;
}

.wp-block.filter-resources {
  width: 100%;
  max-width: 100%;
  margin-top: 0;
}

.filter-resources .resources-grid,
.wp-block.filter-resources .resources-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
  -ms-grid-column: 1;
      grid-column: 1;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

@media screen and (min-width: 768px) and (max-width: 1250px) {
  .filter-resources .resources-grid,
  .wp-block.filter-resources .resources-grid {
    grid-column: 2/4;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
}

@media screen and (min-width: 1251px) {
  .filter-resources .resources-grid,
  .wp-block.filter-resources .resources-grid {
    grid-column: 2/5;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }
}

.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 .tax-cont {
  display: none;
}

.form-filters [class*="col"].active {
  position: relative;
  padding-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .form-filters [class*="col"].active {
    padding-bottom: 2.5rem;
  }
}

.form-filters [class*="col"].active .tax-cont {
  display: block;
}

.tax-cont input[type=number] {
  border: 1px solid #000000;
  padding-left: 20px;
  border-radius: 0;
  font-size: 18px;
  width: 100%;
  margin-bottom: 15px;
  color: #000000;
}

@media screen and (min-width: 768px) {
  .tax-cont input[type=number] {
    width: calc(50% - 10px);
    font-size: 20px;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .tax-cont input[type=number]:nth-of-type(odd) {
    margin-right: 10px;
  }
}

@media screen and (min-width: 768px) {
  .tax-cont input[type=number]:nth-of-type(even) {
    margin-left: 10px;
  }
}

.tax-cont input[type=number]:-ms-input-placeholder {
  color: #000000;
  font-family: "Lato", sans-serif;
  font-size: 18px;
}

.tax-cont input[type=number]::placeholder {
  color: #000000;
  font-family: "Lato", sans-serif;
  font-size: 18px;
}

@media screen and (min-width: 768px) {
  .tax-cont input[type=number]:-ms-input-placeholder {
    font-size: 20px;
  }
  .tax-cont input[type=number]::placeholder {
    font-size: 20px;
  }
}

.form-filters .tax-inputs {
  padding-left: 0;
}

.form-filters .tax-inputs .tax-input {
  padding-left: 0;
  margin-bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
  max-width: 100%;
}

ul.tax-list {
  list-style-type: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
  list-style-type: none;
  max-height: 300px;
  overflow: auto;
}

@media screen and (min-width: 768px) {
  ul.tax-list {
    max-height: inherit;
    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 .tax-wrap {
  padding-left: 2rem;
  position: relative;
}

.filter-resources header.header h1:first-of-type,
.filter-resources header.header h2:first-of-type,
.filter-resources header.header h3:first-of-type,
.filter-resources header.header h4:first-of-type,
.filter-resources header.header h5:first-of-type,
.filter-resources header.header .accordion h5 button:first-of-type,
.accordion h5 .filter-resources header.header button:first-of-type,
.filter-resources header.header h6:first-of-type {
  margin-top: 0;
}

.filter-resources header.header {
  background-color: #E6E6E6;
  min-height: 250px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  padding-bottom: 0;
  margin-bottom: 3.75rem;
}

@media screen and (min-width: 768px) {
  .filter-resources header.header {
    min-height: 350px;
    margin-bottom: 7.5rem;
  }
}

.filter-resources header.header .header-wrap {
  max-width: 875px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.form-filters .error {
  grid-column: 1/3;
  padding: 20px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: 3px solid #910035;
}

@media screen and (min-width: 768px) {
  .form-filters .error {
    grid-column: 1/4;
    padding: 25px;
  }
}

.section-header,
.wp-block.section-header {
  width: 100%;
  max-width: 100%;
}

.section-header {
  text-align: center;
  padding-top: 3.25rem;
  padding-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .section-header {
    padding-top: 6.875rem;
    padding-bottom: 1.5rem;
  }
}

.section-header *:first-of-type {
  margin-top: 0;
}

.section-header h4 {
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 768px) {
  .section-header h4 {
    margin-bottom: 0.75rem;
  }
}

.wp-block.grid-text-cards {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.grid-text-cards {
  width: 100%;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}

@media screen and (min-width: 768px) {
  .grid-text-cards {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.wp-block.grid-text-cards > .block-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout,
.grid-text-cards .block-wrapper {
  max-width: 1620px;
  width: 100%;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
}

.grid-text-cards .content-column {
  width: 100%;
  text-align: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  box-sizing: border-box;
  margin-bottom: 2.25rem;
}

@media screen and (min-width: 768px) {
  .grid-text-cards .content-column {
    width: 33.3333%;
    padding-right: 1.875rem;
    padding-left: 1.875rem;
    margin-bottom: 25px;
  }
}

.grid-text-cards .wp-block-image {
  position: relative;
}

.grid-text-cards .wp-block-image img {
  position: relative;
  z-index: 1;
}

.grid-text-cards .wp-block-image:not(empty):after {
  position: absolute;
  content: "";
  left: -43px;
  bottom: -20px;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-top: 45px solid #f1f1f1;
  transform: rotate(45deg);
}

@media screen and (min-width: 768px) {
  .grid-text-cards .wp-block-image:not(empty):after {
    bottom: -35px;
    left: -80px;
    border-left: 90px solid transparent;
    border-right: 90px solid transparent;
    border-top: 90px solid #f1f1f1;
  }
}

.grid-text-cards .wp-block-buttons {
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  .grid-text-cards .wp-block-buttons {
    margin-top: 3rem;
  }
}

.grid-text-cards .content-column h3 {
  margin-bottom: 0.5rem;
  margin-top: 1.75rem;
}

@media screen and (min-width: 768px) {
  .grid-text-cards .content-column h3 {
    margin-top: 2.75rem;
  }
}

.grid-text-cards .content-column p:first-of-type {
  margin-top: 0;
}

.wp-block.header-intro-block {
  max-width: 100%;
  width: 100%;
}

.header-intro-block .block-wrapper {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.header-intro-block h4 {
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 768px) {
  .header-intro-block h4 {
    margin-bottom: 0.75rem;
  }
}

.header-intro-block h4 + 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 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: left;
}

.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: 6.75rem;
  }
}

.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;
}

.header-intro-block .block-content {
  margin: 0 auto;
  max-width: 1170px;
}

@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;
  }
}

.columns-cta.wp-block {
  width: 100%;
  max-width: 100%;
}

.columns-cta {
  width: 100%;
  background: white;
}

.columns-cta > .block-wrapper > .block-editor-inner-blocks {
  width: 100%;
}

.columns-cta .column-cta.wp-block,
.columns-cta .wp-block-cover.wp-block {
  max-width: 100%;
}

.columns-cta > .block-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout,
.columns-cta .block-wrapper {
  max-width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: stretch;
      align-items: stretch;
}

.columns-cta .column-cta {
  width: 100%;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .columns-cta .column-cta {
    width: 100%;
    transition-duration: .45s;
    transition-property: margin, -webkit-clip-path;
    transition-property: clip-path, margin;
    transition-property: clip-path, margin, -webkit-clip-path;
  }
}

.columns-cta .wp-block-cover {
  -ms-flex-align: stretch;
      align-items: stretch;
}

@media screen and (min-width: 768px) {
  .columns-cta .wp-block-cover {
    min-height: 640px;
  }
}

.columns-cta .wp-block-cover__inner-container {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.columns-cta .column-cta:hover .wp-block-buttons,
.columns-cta .column-cta:hover p {
  opacity: 1;
  height: auto;
}

@media screen and (min-width: 768px) {
  .columns-cta .column-cta:nth-of-type(odd):hover {
    -webkit-clip-path: polygon(0% 0, 0 100%, 100% 100%, 155% 100%, 137% 0);
            clip-path: polygon(0% 0, 0 100%, 100% 100%, 155% 100%, 137% 0);
    margin-right: -50%;
  }
}

@media screen and (min-width: 768px) {
  .columns-cta .column-cta:nth-of-type(odd):hover + .column-cta {
    -webkit-clip-path: polygon(137.5% 0%, 100% 0%, 100% 100%, 155.25% 100%);
            clip-path: polygon(137.5% 0%, 100% 0%, 100% 100%, 155.25% 100%);
  }
}

@media screen and (min-width: 768px) {
  .columns-cta .column-cta:nth-of-type(odd) {
    -webkit-clip-path: polygon(0% 0, 0 100%, 100% 100%, 54.75% 100%, 37% 0);
            clip-path: polygon(0% 0, 0 100%, 100% 100%, 54.75% 100%, 37% 0);
    margin-right: -50%;
  }
}

@media screen and (min-width: 768px) {
  .columns-cta .column-cta:nth-of-type(odd) .wp-block-cover {
    -ms-flex-pack: start;
        justify-content: flex-start;
  }
}

@media screen and (min-width: 768px) {
  .columns-cta .column-cta:nth-of-type(even):hover {
    -webkit-clip-path: polygon(-137.5% 0%, 100% 0%, 100% 100%, -155.25% 100%);
            clip-path: polygon(-137.5% 0%, 100% 0%, 100% 100%, -155.25% 100%);
  }
}

@media screen and (min-width: 768px) {
  .columns-cta .column-cta:nth-of-type(even) {
    margin-left: -50%;
    -webkit-clip-path: polygon(37.5% 0%, 100% 0%, 100% 100%, 55.25% 100%);
            clip-path: polygon(37.5% 0%, 100% 0%, 100% 100%, 55.25% 100%);
  }
}

@media screen and (min-width: 768px) {
  .columns-cta .column-cta:nth-of-type(even) .wp-block-cover {
    -ms-flex-pack: end;
        justify-content: flex-end;
  }
}

.wp-block-cover .wp-block-cover__background {
  opacity: .25;
}

.columns-cta .wp-block-cover__inner-container {
  transition-duration: 0.45s;
  transition-property: width;
}

@media screen and (min-width: 768px) {
  .columns-cta .wp-block-cover__inner-container {
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .columns-cta .column-cta:hover .wp-block-cover__inner-container {
    width: 100%;
  }
}

.columns-cta .wp-block-cover__inner-container h1:first-of-type,
.columns-cta .wp-block-cover__inner-container h2:first-of-type,
.columns-cta .wp-block-cover__inner-container h3:first-of-type,
.columns-cta .wp-block-cover__inner-container h4:first-of-type,
.columns-cta .wp-block-cover__inner-container h5:first-of-type,
.columns-cta .wp-block-cover__inner-container .accordion h5 button:first-of-type,
.accordion h5 .columns-cta .wp-block-cover__inner-container button:first-of-type,
.columns-cta .wp-block-cover__inner-container h6:first-of-type {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .columns-cta .wp-block-cover__inner-container .wp-block-buttons,
  .columns-cta .wp-block-cover__inner-container p {
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.3s;
    height: 0;
  }
}

.columns-cta .wp-block-cover__inner-container * {
  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;
}

.columns-cta .wp-block-cover__inner-container * a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%;
}

.columns-cta .wp-block-cover__inner-container a {
  color: white;
  text-decoration: none;
}

.columns-cta .wp-block-cover__inner-container a.wp-block-button__link, .columns-cta .wp-block-cover__inner-container div.gs_team_area .gs-team-filter-cats li a, div.gs_team_area .gs-team-filter-cats li .columns-cta .wp-block-cover__inner-container a, .columns-cta .wp-block-cover__inner-container a[download], .columns-cta .wp-block-cover__inner-container li.menu-item.nav-button a, li.menu-item.nav-button .columns-cta .wp-block-cover__inner-container a {
  color: #003474;
}

.columns-cta .wp-block-cover__inner-container a.wp-block-button__link:hover, .columns-cta .wp-block-cover__inner-container div.gs_team_area .gs-team-filter-cats li a:hover, div.gs_team_area .gs-team-filter-cats li .columns-cta .wp-block-cover__inner-container a:hover, .columns-cta .wp-block-cover__inner-container a:hover[download], .columns-cta .wp-block-cover__inner-container li.menu-item.nav-button a:hover, li.menu-item.nav-button .columns-cta .wp-block-cover__inner-container a:hover {
  color: white;
}

.columns-cta .wp-block-cover__inner-container p a,
.columns-cta .wp-block-cover__inner-container p {
  color: white;
  text-decoration: none;
  font-size: 18px !important;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .columns-cta .wp-block-cover__inner-container p a,
  .columns-cta .wp-block-cover__inner-container p {
    font-size: 20px !important;
  }
}

.wp-block.numbered-list {
  max-width: 100%;
  width: 100%;
}

.numbered-list {
  border-bottom: 2px solid #E6E6E6;
}

.numbered-list .block-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 3.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media screen and (min-width: 768px) {
  .numbered-list .block-wrapper {
    padding-bottom: 7rem;
    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;
  }
}

.wp-block.list-item {
  max-width: 100%;
}

.list-item .wrap {
  background: #003474;
  width: 90px;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .list-item .wrap {
    width: 160px;
  }
}

.list-item .content {
  background: #f1f1f1;
  width: calc(100% - 90px);
  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: calc(100% - 160px);
    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: #01819d;
  font-family: "Lato", 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;
  }
}

.comparison-table > .block-wrapper {
  max-width: 1620px;
  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 #E6E6E6;
}

.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: #003474;
}

.comparison-table .table-row:first-child .table-cell:nth-of-type(even) {
  background: #505050;
}

.comparison-table .table-row .table-cell:nth-of-type(odd) {
  background: #f1f1f1;
}

.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: #E6E6E6;
}

.callout.wp-block {
  max-width: 100%;
}

.callout {
  padding-bottom: 2.25rem;
  padding-top: 2.25rem;
}

@media screen and (min-width: 768px) {
  .callout {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

.callout .block-wrapper {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: stretch;
      align-items: stretch;
  max-width: 1620px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .callout .block-wrapper {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}

.callout .wrap {
  width: 120px;
  background: #003474;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .callout .wrap {
    width: 250px;
  }
}

.lighter-blue .callout .content {
  background: white;
}

.callout .content {
  background: #f1f1f1;
  width: calc(100% - 120px);
  padding: 25px 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .callout .content {
    width: calc(100% - 250px);
    padding: 50px;
  }
}

.callout .content p {
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
}

@media screen and (min-width: 768px) {
  .callout .content p {
    font-size: 28px;
    line-height: 35px;
  }
}

.callout .content p:first-of-type:last-of-type {
  margin-bottom: 0;
  margin-top: 0;
}

.callout .icon-row {
  margin-bottom: 0;
}

.callout .icon-icon svg {
  max-width: 65px;
  max-height: 65px;
}

@media screen and (min-width: 768px) {
  .callout .icon-icon svg {
    max-width: 80px;
    max-height: 80px;
  }
}

.html-embed.wp-block {
  max-width: 100%;
}

.html-embed {
  width: 100%;
  height: 300px;
}

@media screen and (min-width: 768px) {
  .html-embed {
    height: 441px;
  }
}

.html-embed iframe {
  width: 100%;
  height: 100%;
}

.side-table > .block-wrapper {
  max-width: 1620px;
  width: 100%;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-bottom: 4.5rem;
}

@media screen and (min-width: 768px) {
  .side-table > .block-wrapper {
    padding-bottom: 7.5rem;
    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;
}

.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 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 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: 1fr 300px 1fr;
        grid-template-columns: 1fr 300px 1fr;
  }
}

.side-table .table-row-head.table-row .table-cell {
  background: #505050;
}

.side-table .table-row .table-cell {
  background: #E6E6E6;
  -ms-flex-order: 1;
      order: 1;
  grid-column: 1/3;
}

@media screen and (min-width: 768px) {
  .side-table .table-row .table-cell {
    -ms-flex-order: 0;
        order: 0;
    -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: none;
  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: #003474;
  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;
  grid-column: 1/5;
  -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;
    grid-column: 2/3;
  }
}

.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: #f1f1f1;
  margin-top: 5px;
  font-weight: 900;
}

@media screen and (min-width: 768px) {
  .table-cell-icon p.contact-item {
    margin-top: 10px;
  }
}

.contact-alt-section .block-wrapper {
  max-width: 1650px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin: 0 auto;
}

.contact-alt-section .header-intro-block h2 {
  margin-bottom: 20px;
}

.contact-section .header-intro-block p:first-of-type {
  margin-top: 0;
}

.wp-block-separator {
  border: none;
  border-bottom: 2px dashed #E6E6E6;
  background: none;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .wp-block-separator {
    margin-top: 45px;
    margin-bottom: 45px;
  }
}

.contact-section.contact-alt-section .form-column {
  padding-left: 0;
  padding-right: 0;
}

.contact-alt-section.contact-section {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

@media screen and (min-width: 768px) {
  .contact-alt-section.contact-section {
    padding-top: 6.875rem;
    padding-bottom: 6.875rem;
  }
}

.contact-section.contact-alt-section .form-column {
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

@media screen and (min-width: 768px) {
  .contact-section.contact-alt-section .form-column {
    width: 64%;
    max-width: 64%;
    padding-right: 3.75rem;
  }
}

.contact-alt-section .content-column {
  width: 100%;
  border: 2px solid #E6E6E6;
  padding: 25px 20px;
}

@media screen and (min-width: 768px) {
  .contact-alt-section .content-column {
    width: 36%;
    max-width: 36%;
    padding: 50px 45px;
    margin-top: 4.0625rem;
  }
}

.contact-alt-section .content-column h1,
.contact-alt-section .content-column h2,
.contact-alt-section .content-column h3,
.contact-alt-section .content-column h4,
.contact-alt-section .content-column h5,
.contact-alt-section .content-column .accordion h5 button,
.accordion h5 .contact-alt-section .content-column button,
.contact-alt-section .content-column h6 {
  color: #003474;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .contact-alt-section .content-column h1,
  .contact-alt-section .content-column h2,
  .contact-alt-section .content-column h3,
  .contact-alt-section .content-column h4,
  .contact-alt-section .content-column h5,
  .contact-alt-section .content-column .accordion h5 button,
  .accordion h5 .contact-alt-section .content-column button,
  .contact-alt-section .content-column h6 {
    margin-bottom: 1.25rem;
  }
}

.contact-alt-section .content-column p {
  margin-bottom: 0.75rem;
  margin-top: 0.75rem;
}

@media screen and (min-width: 768px) {
  .contact-alt-section .content-column p {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

.contact-section.contact-alt-section .block-content * {
  width: 100%;
}

.contact-section.contact-alt-section .block-content {
  -ms-flex-align: start;
      align-items: flex-start;
}

.wp-block.section-block {
  width: 100%;
  max-width: 100%;
}

.section-block {
  position: relative;
  padding-bottom: 3.5rem;
}

@media screen and (min-width: 768px) {
  .section-block {
    padding-bottom: 4.5rem;
  }
}

.section-block .block-wrapper {
  max-width: 1620px;
  margin: 0 auto;
  position: relative;
}

.section-block .wp-block:not(.callout) {
  max-width: 1120px;
}

.section-block > .block-wrapper > .wp-block-buttons,
.section-block > .block-wrapper > h1,
.section-block > .block-wrapper > h2,
.section-block > .block-wrapper > h3,
.section-block > .block-wrapper > h4,
.section-block > .block-wrapper > h5,
.accordion h5 .section-block > .block-wrapper > button,
.section-block > .block-wrapper > h6,
.section-block > .block-wrapper > p,
.section-block > .block-wrapper > ul {
  max-width: 1120px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-left: auto;
  margin-right: auto;
}

.section-block .callout {
  margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  .section-block .callout {
    margin-top: 4rem;
  }
}

.section-block .section-header {
  padding-bottom: 0.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media screen and (min-width: 768px) {
  .section-block.keys {
    background-image: url(img/car_keys.png);
    background-size: 18%;
    background-repeat: no-repeat;
    background-position: -105px 45%;
  }
}

@media screen and (min-width: 768px) {
  .section-block.wheel {
    background-image: url(img/steering_wheel.png);
    background-repeat: no-repeat;
    background-size: 18%;
    background-position: calc(100% + 55px) 40%;
  }
}

.wp-block.wp-block-cls-blocks-price-header {
  max-width: 100%;
}

.wp-block-cls-blocks-price-form.resources-wrap {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.filter-resources.price-estimator .resources-block .resources {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .filter-resources.price-estimator .resources-block .resources {
    grid-column: 2/5;
  }
}

#gform_ajax_spinner_8 {
  display: none;
}

.form-wrap .wp-block-heading:first-of-type {
  margin-top: 0;
}

.alternatives h3 {
  margin-top: 0;
}

.alternatives {
  background: #f1f1f1;
  text-align: center;
  padding: 25px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
}

.alternatives .wrapper {
  width: 100%;
}

.payment {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: 3px solid #FFCB17;
  padding: 25px;
  text-align: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

@media screen and (min-width: 768px) {
  .payment {
    padding: 35px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1250px) {
  .payment {
    grid-column: 1/3;
  }
}

@media screen and (min-width: 1251px) {
  .payment {
    grid-column: 1/4;
  }
}

.payment .payment_interior {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .payment .payment_interior {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 0;
  }
}

.lead-banner h3 {
  text-align: center;
  color: white;
}

.payment .small-print {
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  .payment .small-print {
    grid-column: 1/4;
    margin-top: 20px;
  }
}

@media screen and (min-width: 768px) {
  .payment_table {
    grid-column: 2/4;
  }
}

.payment_table table {
  margin-bottom: 0;
  border-top: 4px solid #052C47;
  border-bottom: 4px solid #052C47;
}

.resources-grid .resource-card {
  padding-bottom: 0;
}

.lead-banner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
  background: #052C47;
}

@media screen and (min-width: 768px) and (max-width: 1250px) {
  .lead-banner {
    grid-column: 1/3;
  }
}

@media screen and (min-width: 1251px) {
  .lead-banner {
    grid-column: 1/4;
  }
}

.payment h5, .payment .accordion h5 button, .accordion h5 .payment button {
  font-weight: 300;
  text-transform: uppercase;
  margin-top: 0;
  border-top: 4px solid #052C47;
  border-bottom: 1px solid #052C47;
  margin-bottom: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.payment table {
  border-collapse: collapse;
}

.payment td {
  border-bottom: 1px solid #052C47;
}

.payment td {
  font-family: "Lato", sans-serif;
  color: #052C47;
}

.payment td:nth-of-type(odd) {
  text-align: left;
}

.payment td:nth-of-type(even) {
  text-align: right;
}

.payment h3 {
  text-transform: uppercase;
  font-size: 45px;
  line-height: 45px;
  border-bottom: 4px solid #052C47;
  margin-top: 0;
  margin-bottom: 0;
}

.payment h3 span {
  font-size: 14px;
}

.payment h3 sup {
  font-size: 14px;
  display: inline-block;
  line-height: 45px;
}

.payment p.small {
  font-size: 14px;
  line-height: 18px;
  text-align: right;
  font-style: italic;
  margin-top: 0;
  margin-bottom: 0;
}

.image-grid.wp-block {
  max-width: 100%;
  width: 100%;
}

.image-grid .hero-block-image:before {
  display: none;
}

.image-grid .hero-block-image:after {
  -webkit-clip-path: none;
          clip-path: none;
  background: rgba(0, 0, 0, 0.3);
}

.image-grid.wp-block > .block-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout,
.image-grid:not(.wp-block) > .block-wrapper {
  display: -ms-grid;
  display: grid;
  min-height: 450px;
  grid-row-gap: 5px;
}

@media screen and (min-width: 768px) {
  .image-grid.wp-block > .block-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout,
  .image-grid:not(.wp-block) > .block-wrapper {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 5px;
    min-height: 880px;
  }
}

.hero p:empty {
  margin: 0;
}
