/* ignore your IDE if it claims these are incorrect - blame Gulp's import handling. */
.not-selectable {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.carousel {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

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

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

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

.carousel__slide {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -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;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  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%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: 0.25;
  -webkit-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: 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%);
  -webkit-box-shadow: var(--carousel-button-shadow, none);
          box-shadow: var(--carousel-button-shadow, none);
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}

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

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

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

.carousel__button[disabled] {
  cursor: default;
  opacity: 0.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;
  -webkit-filter: var(--carousel-button-svg-filter, none);
          filter: var(--carousel-button-svg-filter, none);
  pointer-events: none;
}

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);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  z-index: 1050;
  outline: none;
  -webkit-transform-origin: top left;
          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 {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.fancybox__container :focus {
  outline: none;
}

body:not(.is-using-mouse) .fancybox__container :focus {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
          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;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.fancybox__slide {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  outline: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  --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: "";
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 0;
      -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;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 20;
}

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

.fancybox__caption {
  -webkit-align-self: center;
      -ms-flex-item-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;
  -webkit-flex-shrink: 0;
      -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%;
  -webkit-transform: translate(-50%, -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 {
  -webkit-animation: fancybox-rotate 2s linear infinite;
          animation: fancybox-rotate 2s linear infinite;
  -webkit-transform-origin: center center;
          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;
  -webkit-animation: fancybox-dash 1.5s ease-in-out infinite;
          animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}

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

@keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-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;
  }
}
@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 {
  -webkit-animation: 0.15s ease backwards fancybox-fadeIn;
          animation: 0.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 {
  -webkit-animation: 0.15s ease both fancybox-fadeOut;
          animation: 0.15s ease both fancybox-fadeOut;
}

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

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

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

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

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

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

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

@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-zoomInUp {
  from {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fancybox-zoomInUp {
  from {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fancybox-zoomOutDown {
  to {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@keyframes fancybox-zoomOutDown {
  to {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -30%, 0);
            transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -30%, 0);
            transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 30%, 0);
            transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 30%, 0);
            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;
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
          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: -webkit-grab;
  cursor: grab;
}

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

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

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

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

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

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

.fancybox__image {
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -ms-touch-action: none;
      touch-action: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 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 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -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 {
  -webkit-flex-shrink: 1;
      -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 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -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 {
  -webkit-animation: 0.15s ease-in backwards fancybox-fadeIn;
          animation: 0.15s ease-in backwards fancybox-fadeIn;
}

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

.fancybox__thumbs .carousel__slide {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: var(--fancybox-thumbs-width, 96px);
  margin: 0;
  padding: 8px 3px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: 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(1, 210, 232, 0.94));
  opacity: 0;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
  opacity: 0.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: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(8.1%, rgba(0, 0, 0, 0.006)), color-stop(15.5%, rgba(0, 0, 0, 0.021)), color-stop(22.5%, rgba(0, 0, 0, 0.046)), color-stop(29%, rgba(0, 0, 0, 0.077)), color-stop(35.3%, rgba(0, 0, 0, 0.114)), color-stop(41.2%, rgba(0, 0, 0, 0.155)), color-stop(47.1%, rgba(0, 0, 0, 0.198)), color-stop(52.9%, rgba(0, 0, 0, 0.242)), color-stop(58.8%, rgba(0, 0, 0, 0.285)), color-stop(64.7%, rgba(0, 0, 0, 0.326)), color-stop(71%, rgba(0, 0, 0, 0.363)), color-stop(77.5%, rgba(0, 0, 0, 0.394)), color-stop(84.5%, rgba(0, 0, 0, 0.419)), color-stop(91.9%, rgba(0, 0, 0, 0.434)), to(rgba(0, 0, 0, 0.44)));
  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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -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 {
  -webkit-animation: 0.15s ease-in backwards fancybox-fadeIn;
          animation: 0.15s ease-in backwards fancybox-fadeIn;
}

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

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

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

.fancybox__toolbar__items--center {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-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(1, 210, 232, 0.94));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
          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:-ms-fullscreen::backdrop {
  opacity: 0;
}

.fancybox__container:fullscreen::-webkit-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:-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:-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;
}

.not-selectable {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.carousel {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

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

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

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

.carousel__slide {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -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;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  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%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: 0.25;
  -webkit-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: 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%);
  -webkit-box-shadow: var(--carousel-button-shadow, none);
          box-shadow: var(--carousel-button-shadow, none);
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}

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

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

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

.carousel__button[disabled] {
  cursor: default;
  opacity: 0.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;
  -webkit-filter: var(--carousel-button-svg-filter, none);
          filter: var(--carousel-button-svg-filter, none);
  pointer-events: none;
}

/**
 *  Colors
 ================================================= */
/**
 *  Text COlor
 ================================================= */
/**
 *  Text Sylte
 ================================================= */
/**
 *  Grid Settings
 ================================================= */
/**
 Animation
 */
/**
 *  Media Query
================================================= */
/*
 |----------------------------------------------------------------
 |  Fluid Calculation
 |----------------------------------------------------------------
 */
/*
 |----------------------------------------------------------------
 |  Font Faces
 |----------------------------------------------------------------
 */
/*
 |----------------------------------------------------------------
 |  Letter spacing
 |----------------------------------------------------------------
 */
/*
 |----------------------------------------------------------------
 |  Fluid Property
 |----------------------------------------------------------------
 */
/*
 |----------------------------------------------------------------
 |  Fluid Property Alias
 |----------------------------------------------------------------
 */
/*
 |----------------------------------------------------------------
 |  Lists
 |----------------------------------------------------------------
 */
/*
 |----------------------------------------------------------------
 |  Fluid Height Calculation
 |----------------------------------------------------------------
 */
/*
 |----------------------------------------------------------------
 |  Overlay Pseudo
 |----------------------------------------------------------------
 */
/*
 |----------------------------------------------------------------
 |  Gravityform
 |----------------------------------------------------------------
 */
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

/*
 |----------------------------------------------------------------
 |  Background
 |----------------------------------------------------------------
 */
.background_primary {
  background-color: #58585A;
  padding-bottom: calc(20px + (40 - 20) * (100vw - 320px) / (1200 - 320));
  padding-top: calc(20px + (40 - 20) * (100vw - 320px) / (1200 - 320));
}
@media screen and (min-width: 1200px) {
  .background_primary {
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .background_primary {
    padding-top: 40px;
  }
}

/*
 |----------------------------------------------------------------
 |  Images
 |----------------------------------------------------------------
 */
/*
|----------------------------------------------------------------
|  Icons
|----------------------------------------------------------------
*/
/* transitions */
/*
 |----------------------------------------------------------------
 |  Floating Animation
 |----------------------------------------------------------------
 */
.spacer {
  margin-bottom: calc(60px + (80 - 60) * (100vw - 320px) / (1200 - 320));
}
@media screen and (min-width: 1200px) {
  .spacer {
    margin-bottom: 80px;
  }
}

/*
 |----------------------------------------------------------------
 |  Animation
 |----------------------------------------------------------------
 */
/* normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

/* HTML5 display definitions
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  /* 1 */
  display: block;
}

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

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

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

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

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

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

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

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

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

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

/**
 * 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;
}

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.4em;
}

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

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

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

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

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

/* Forms
   ========================================================================== */
/**
 * 1. Change font properties to `inherit` in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
select,
textarea {
  font: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Restore the font weight unset by the previous rule.
 */
optgroup {
  font-weight: bold;
}

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

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

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

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

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

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 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 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

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

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

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

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

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

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

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

/*
 |----------------------------------------------------------------
 |  Column Grid
 |----------------------------------------------------------------
 */
/*
 |----------------------------------------------------------------
 |  Block Grid
 |----------------------------------------------------------------
 */
.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.full-row {
  max-width: none;
}

.row-gutter > * {
  padding-right: 1rem;
  padding-left: 1rem;
}

.max-row {
  max-width: 1600px;
}

.row-nowrap {
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

.row-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.row-right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.row-middle {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.row-bottom {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

[class*=columns-] > .row {
  margin-left: -10px;
  margin-right: -10px;
}

.columns-1 {
  -webkit-flex-basis: calc(1 / 12 * 100%);
      -ms-flex-preferred-size: calc(1 / 12 * 100%);
          flex-basis: calc(1 / 12 * 100%);
  max-width: calc(1 / 12 * 100%);
}

.right-1 {
  margin-left: calc(1 / 12 * 100%);
}

.left-1 {
  margin-right: calc(1 / 12 * 100%);
}

.columns-2 {
  -webkit-flex-basis: calc(2 / 12 * 100%);
      -ms-flex-preferred-size: calc(2 / 12 * 100%);
          flex-basis: calc(2 / 12 * 100%);
  max-width: calc(2 / 12 * 100%);
}

.right-2 {
  margin-left: calc(2 / 12 * 100%);
}

.left-2 {
  margin-right: calc(2 / 12 * 100%);
}

.columns-3 {
  -webkit-flex-basis: calc(3 / 12 * 100%);
      -ms-flex-preferred-size: calc(3 / 12 * 100%);
          flex-basis: calc(3 / 12 * 100%);
  max-width: calc(3 / 12 * 100%);
}

.right-3 {
  margin-left: calc(3 / 12 * 100%);
}

.left-3 {
  margin-right: calc(3 / 12 * 100%);
}

.columns-4 {
  -webkit-flex-basis: calc(4 / 12 * 100%);
      -ms-flex-preferred-size: calc(4 / 12 * 100%);
          flex-basis: calc(4 / 12 * 100%);
  max-width: calc(4 / 12 * 100%);
}

.right-4 {
  margin-left: calc(4 / 12 * 100%);
}

.left-4 {
  margin-right: calc(4 / 12 * 100%);
}

.columns-5 {
  -webkit-flex-basis: calc(5 / 12 * 100%);
      -ms-flex-preferred-size: calc(5 / 12 * 100%);
          flex-basis: calc(5 / 12 * 100%);
  max-width: calc(5 / 12 * 100%);
}

.right-5 {
  margin-left: calc(5 / 12 * 100%);
}

.left-5 {
  margin-right: calc(5 / 12 * 100%);
}

.columns-6 {
  -webkit-flex-basis: calc(6 / 12 * 100%);
      -ms-flex-preferred-size: calc(6 / 12 * 100%);
          flex-basis: calc(6 / 12 * 100%);
  max-width: calc(6 / 12 * 100%);
}

.right-6 {
  margin-left: calc(6 / 12 * 100%);
}

.left-6 {
  margin-right: calc(6 / 12 * 100%);
}

.columns-7 {
  -webkit-flex-basis: calc(7 / 12 * 100%);
      -ms-flex-preferred-size: calc(7 / 12 * 100%);
          flex-basis: calc(7 / 12 * 100%);
  max-width: calc(7 / 12 * 100%);
}

.right-7 {
  margin-left: calc(7 / 12 * 100%);
}

.left-7 {
  margin-right: calc(7 / 12 * 100%);
}

.columns-8 {
  -webkit-flex-basis: calc(8 / 12 * 100%);
      -ms-flex-preferred-size: calc(8 / 12 * 100%);
          flex-basis: calc(8 / 12 * 100%);
  max-width: calc(8 / 12 * 100%);
}

.right-8 {
  margin-left: calc(8 / 12 * 100%);
}

.left-8 {
  margin-right: calc(8 / 12 * 100%);
}

.columns-9 {
  -webkit-flex-basis: calc(9 / 12 * 100%);
      -ms-flex-preferred-size: calc(9 / 12 * 100%);
          flex-basis: calc(9 / 12 * 100%);
  max-width: calc(9 / 12 * 100%);
}

.right-9 {
  margin-left: calc(9 / 12 * 100%);
}

.left-9 {
  margin-right: calc(9 / 12 * 100%);
}

.columns-10 {
  -webkit-flex-basis: calc(10 / 12 * 100%);
      -ms-flex-preferred-size: calc(10 / 12 * 100%);
          flex-basis: calc(10 / 12 * 100%);
  max-width: calc(10 / 12 * 100%);
}

.right-10 {
  margin-left: calc(10 / 12 * 100%);
}

.left-10 {
  margin-right: calc(10 / 12 * 100%);
}

.columns-11 {
  -webkit-flex-basis: calc(11 / 12 * 100%);
      -ms-flex-preferred-size: calc(11 / 12 * 100%);
          flex-basis: calc(11 / 12 * 100%);
  max-width: calc(11 / 12 * 100%);
}

.right-11 {
  margin-left: calc(11 / 12 * 100%);
}

.left-11 {
  margin-right: calc(11 / 12 * 100%);
}

.columns-12 {
  -webkit-flex-basis: calc(12 / 12 * 100%);
      -ms-flex-preferred-size: calc(12 / 12 * 100%);
          flex-basis: calc(12 / 12 * 100%);
  max-width: calc(12 / 12 * 100%);
}

.right-12 {
  margin-left: calc(12 / 12 * 100%);
}

.left-12 {
  margin-right: calc(12 / 12 * 100%);
}

.column-center {
  margin-left: auto;
  margin-right: auto;
}

.column-right {
  margin-right: 0;
  margin-left: auto;
}

.block-grid-1 > * {
  -webkit-flex-basis: calc(1 / 1 * 100%);
      -ms-flex-preferred-size: calc(1 / 1 * 100%);
          flex-basis: calc(1 / 1 * 100%);
  max-width: calc(1 / 1 * 100%);
}

.block-grid-2 > * {
  -webkit-flex-basis: calc(1 / 2 * 100%);
      -ms-flex-preferred-size: calc(1 / 2 * 100%);
          flex-basis: calc(1 / 2 * 100%);
  max-width: calc(1 / 2 * 100%);
}

.block-grid-3 > * {
  -webkit-flex-basis: calc(1 / 3 * 100%);
      -ms-flex-preferred-size: calc(1 / 3 * 100%);
          flex-basis: calc(1 / 3 * 100%);
  max-width: calc(1 / 3 * 100%);
}

.block-grid-4 > * {
  -webkit-flex-basis: calc(1 / 4 * 100%);
      -ms-flex-preferred-size: calc(1 / 4 * 100%);
          flex-basis: calc(1 / 4 * 100%);
  max-width: calc(1 / 4 * 100%);
}

[class*=block-grid-] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 -10px;
  padding: 0;
  list-style: none;
}
[class*=block-grid-] > * {
  padding-left: 10px;
  padding-right: 10px;
}

.block-grid-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.block-grid-right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.block-grid-spread {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.block-grid-equal {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

.block-grid-middle {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.block-grid-bottom {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.block-grid-stretch > * {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
}

.block-grid-flatten > * {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.block-grid-flatten > * > * {
  width: 100%;
}

.site-main {
  overflow: hidden;
}

html .fa, html .fab, html .fad, html .fal, html .far, html .fas {
  line-height: inherit;
}

/*
 |----------------------------------------------------------------
 |  Html / Body
 |----------------------------------------------------------------
 */
[data-show-lang] {
  display: none;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  /* en-US included */
}
html[lang=fr] [data-show-lang=fr] {
  display: initial;
}
html[lang*=en] [data-show-lang=en] {
  display: initial;
}

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

body {
  color: #313131;
  max-width: 1600px;
  margin: 0 auto;
}

::-moz-selection {
  background: #185E9E;
  color: white;
}

::selection {
  background: #185E9E;
  color: white;
}

::-moz-selection {
  background: #185E9E;
  color: white;
}

@-ms-viewport {
  width: device-width;
}
/*
 |----------------------------------------------------------------
 |  Headings
 |----------------------------------------------------------------
 */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  margin: 0;
  padding-bottom: 20px;
  color: inherit;
}
h1 a, .h1 a,
h2 a, .h2 a,
h3 a, .h3 a,
h4 a, .h4 a,
h5 a, .h5 a,
h6 a, .h6 a {
  color: inherit;
  text-decoration: none;
  line-height: 28px;
}
p + h1, .gform_description + h1, ul:not([class]) + h1, ol:not([class]) + h1, p + .h1, .gform_description + .h1, ul:not([class]) + .h1, ol:not([class]) + .h1,
p + h2,
.gform_description + h2,
ul:not([class]) + h2,
ol:not([class]) + h2, p + .h2, .gform_description + .h2, ul:not([class]) + .h2, ol:not([class]) + .h2,
p + h3,
.gform_description + h3,
ul:not([class]) + h3,
ol:not([class]) + h3, p + .h3, .gform_description + .h3, ul:not([class]) + .h3, ol:not([class]) + .h3,
p + h4,
.gform_description + h4,
ul:not([class]) + h4,
ol:not([class]) + h4, p + .h4, .gform_description + .h4, ul:not([class]) + .h4, ol:not([class]) + .h4,
p + h5,
.gform_description + h5,
ul:not([class]) + h5,
ol:not([class]) + h5, p + .h5, .gform_description + .h5, ul:not([class]) + .h5, ol:not([class]) + .h5,
p + h6,
.gform_description + h6,
ul:not([class]) + h6,
ol:not([class]) + h6, p + .h6, .gform_description + .h6, ul:not([class]) + .h6, ol:not([class]) + .h6 {
  padding-top: 20px;
}

h1, h1 p, h1 .gform_description, .h1 {
  font-size: calc(34px + (44 - 34) * (100vw - 320px) / (1200 - 320));
  line-height: calc(40px + (52 - 40) * (100vw - 320px) / (1200 - 320));
  font-family: museo-sans, sans-serif;
  font-style: normal;
  letter-spacing: 0;
  font-weight: bold;
}
@media screen and (min-width: 1200px) {
  h1, h1 p, h1 .gform_description, .h1 {
    font-size: 44px;
  }
}
@media screen and (min-width: 1200px) {
  h1, h1 p, h1 .gform_description, .h1 {
    line-height: 52px;
  }
}

h1 p, h1 .gform_description {
  padding-bottom: 0px !important;
}

h2, .h2 {
  font-size: calc(30px + (42 - 30) * (100vw - 320px) / (1200 - 320));
  line-height: calc(38px + (50 - 38) * (100vw - 320px) / (1200 - 320));
  font-family: museo-sans, sans-serif;
  font-style: normal;
  letter-spacing: 0;
  font-weight: bold;
}
@media screen and (min-width: 1200px) {
  h2, .h2 {
    font-size: 42px;
  }
}
@media screen and (min-width: 1200px) {
  h2, .h2 {
    line-height: 50px;
  }
}

h3, .h3 {
  font-size: calc(28px + (32 - 28) * (100vw - 320px) / (1200 - 320));
  line-height: calc(32px + (52 - 32) * (100vw - 320px) / (1200 - 320));
  font-family: museo-sans, sans-serif;
  font-style: normal;
  letter-spacing: 0;
  font-weight: bold;
}
@media screen and (min-width: 1200px) {
  h3, .h3 {
    font-size: 32px;
  }
}
@media screen and (min-width: 1200px) {
  h3, .h3 {
    line-height: 52px;
  }
}

h4, .h4 {
  font-size: calc(16px + (20 - 16) * (100vw - 320px) / (1200 - 320));
  line-height: calc(22px + (29 - 22) * (100vw - 320px) / (1200 - 320));
  font-family: museo-sans, sans-serif;
  font-style: normal;
  font-weight: bold;
  letter-spacing: 1;
}
@media screen and (min-width: 1200px) {
  h4, .h4 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  h4, .h4 {
    line-height: 29px;
  }
}

h5, .h5 {
  font-size: calc(16px + (18 - 16) * (100vw - 320px) / (1200 - 320));
  line-height: calc(20px + (22 - 20) * (100vw - 320px) / (1200 - 320));
  font-family: museo-sans, sans-serif;
  font-style: normal;
  font-weight: bold;
  letter-spacing: 0;
}
@media screen and (min-width: 1200px) {
  h5, .h5 {
    font-size: 18px;
  }
}
@media screen and (min-width: 1200px) {
  h5, .h5 {
    line-height: 22px;
  }
}

h6, .h6 {
  font-size: calc(13px + (13 - 13) * (100vw - 320px) / (1200 - 320));
  line-height: calc(17px + (17 - 17) * (100vw - 320px) / (1200 - 320));
  font-family: museo-sans, sans-serif;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 5px;
  letter-spacing: 1px;
  line-height: 18px;
}
@media screen and (min-width: 1200px) {
  h6, .h6 {
    font-size: 13px;
  }
}
@media screen and (min-width: 1200px) {
  h6, .h6 {
    line-height: 17px;
  }
}

/*
 |----------------------------------------------------------------
 |  Paragraph
 |----------------------------------------------------------------
 */
p, .gform_description {
  font-family: open-sans, sans-serif;
  font-size: calc(16px + (16 - 16) * (100vw - 320px) / (1200 - 320));
  line-height: calc(28px + (28 - 28) * (100vw - 320px) / (1200 - 320));
  font-family: "Open Sans";
  margin: 0;
  padding-bottom: 20px;
  letter-spacing: 0;
}
@media screen and (min-width: 1200px) {
  p, .gform_description {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  p, .gform_description {
    line-height: 28px;
  }
}
p:empty, .gform_description:empty {
  display: none;
}
p a, .gform_description a {
  color: #185E9E;
}

/*
 |----------------------------------------------------------------
 |  Horizontal Line
 |----------------------------------------------------------------
 */
hr {
  border: none;
  border-bottom: 1px solid #185E9E;
  width: 90%;
  margin: 10px auto 35px;
}

/*
 |----------------------------------------------------------------
 |  MISC
 |----------------------------------------------------------------
 */
i,
em {
  font-style: italic;
}

b,
strong {
  font-weight: 700;
}

/*
 |----------------------------------------------------------------
 | Address
 |----------------------------------------------------------------
 */
address {
  font-style: normal;
}

/*
 |----------------------------------------------------------------
 | Code
 |----------------------------------------------------------------
 */
code,
pre {
  background-color: #F3F6F6;
  font-family: "Consolas", monospace;
  font-size: calc(14px + (14 - 14) * (100vw - 320px) / (1200 - 320));
}
@media screen and (min-width: 1200px) {
  code,
pre {
    font-size: 14px;
  }
}

pre {
  padding: 25px 20px;
}

code {
  border-radius: 3px;
  vertical-align: middle;
  padding: 2px 5px;
}

a:focus {
  outline: 2px solid blue;
}

.text-blue {
  color: #019ADA;
}

/*
 |----------------------------------------------------------------
 |  Lists
 |----------------------------------------------------------------
 */
ul:not([class]),
ol:not([class]) {
  margin: 0 0 25px 10px;
  list-style: none;
  padding-left: 25px;
}
ul:not([class]) li,
ol:not([class]) li {
  position: relative;
  margin-bottom: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 500;
  color: #313131;
  font-family: "Open Sans";
  letter-spacing: 0;
  line-height: 28px;
}
ul:not([class]) li:before,
ol:not([class]) li:before {
  color: #019ADA;
  position: absolute;
  left: -25px;
}
ul:not([class]) li a,
ol:not([class]) li a {
  font-family: open-sans, sans-serif;
  color: #019ADA;
}
ul:not([class]) ul:not([class]),
ul:not([class]) ol:not([class]),
ol:not([class]) ul:not([class]),
ol:not([class]) ol:not([class]) {
  list-style: none;
  padding-left: 25px;
}

ul:not([class]) li:before {
  font-family: "Font Awesome 5 Pro";
  text-rendering: auto;
  font-smoothing: antialiased;
  content: "\f111";
  font-size: calc(6px + (8 - 6) * (100vw - 320px) / (1200 - 320));
  top: calc(0px + (0 - 0) * (100vw - 320px) / (1200 - 320));
  color: #019ADA;
  font-weight: 600;
}
@media screen and (min-width: 1200px) {
  ul:not([class]) li:before {
    font-size: 8px;
  }
}
@media screen and (min-width: 1200px) {
  ul:not([class]) li:before {
    top: 0px;
  }
}

ol:not([class]) {
  counter-reset: my-counter;
}
ol:not([class]) li:before {
  content: counter(my-counter) ".";
  counter-increment: my-counter;
  top: 1px;
  font-size: calc(12px + (16 - 12) * (100vw - 320px) / (1200 - 320));
  font-weight: bold;
  color: #019ADA;
}
@media screen and (min-width: 1200px) {
  ol:not([class]) li:before {
    font-size: 16px;
  }
}

.anvil-list {
  margin: 0 0 25px 10px;
  list-style: none;
  padding-left: 25px;
}
.anvil-list .p-wrapper {
  padding: 0px;
  font-size: calc(12px + (16 - 12) * (100vw - 320px) / (1200 - 320));
  font-weight: bold;
}
@media screen and (min-width: 1200px) {
  .anvil-list .p-wrapper {
    font-size: 16px;
  }
}
.anvil-list li {
  position: relative;
  padding-bottom: 10px;
}
.anvil-list li:before {
  position: absolute;
  left: -20px;
  top: 6px;
  font-family: "Font Awesome 5 Pro";
  text-rendering: auto;
  font-smoothing: antialiased;
  content: "\f054";
}

/*
 |----------------------------------------------------------------
 |  Link
 |----------------------------------------------------------------
 */
a {
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
  -webkit-transition-property: background-color, color, border, opacity, text-indent;
  transition-property: background-color, color, border, opacity, text-indent;
  text-decoration: none;
}
a:hover, a:focus, a:active {
  text-decoration: none;
}
p a, .gform_description a, ul:not([class]) a, ol:not([class]) a {
  border-bottom: 2px solid #F3F6F6;
  opacity: 1;
}
p a:hover, .gform_description a:hover, ul:not([class]) a:hover, ol:not([class]) a:hover {
  opacity: 0.7;
}

/*
 |----------------------------------------------------------------
 |  Image
 |----------------------------------------------------------------
 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
img.aligncenter {
  display: block;
}

/*
 |----------------------------------------------------------------
 |  WP Image classes
 |----------------------------------------------------------------
 */
[class*=wp-image-] {
  margin-top: 15px;
}

.alignleft {
  float: left;
  margin-bottom: 20px;
  margin-right: 20px;
  margin-top: 0;
}

.alignright {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
  margin-top: 0;
}

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

.wp-caption {
  display: block;
  margin: 15px 0 45px;
  max-width: 100%;
  position: relative;
  width: auto !important;
}
.wp-caption img {
  display: block;
  margin-bottom: 0;
}

.wp-caption-dd,
.wp-caption-text {
  padding: 10px 15px !important;
  background: #185E9E;
  color: white;
}

/*
 |----------------------------------------------------------------
 |  Custom Image Classes
 |----------------------------------------------------------------
 */
/*
 |----------------------------------------------------------------
 |  Video
 |----------------------------------------------------------------
 */
/*
 |----------------------------------------------------------------
 |  Iframe - anvil wraps embedded iframes with .flex-video, so that
 |  class can be used to style iframes
 |----------------------------------------------------------------
 */
/*
 |----------------------------------------------------------------
 |  Block Quote
 |----------------------------------------------------------------
 */
blockquote {
  font-style: italic;
}
@media screen and (min-width:1200px) {
  blockquote {
    padding: 50px 100px 0 100px;
  }
}
blockquote p, blockquote .gform_description {
  font-size: 22px !important;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 38px;
}

.blockquote {
  border: 1px solid rgba(24, 94, 158, 0.2);
  margin-bottom: 60px;
}
.blockquote .source {
  margin: 16px 40px;
}
@media screen and (min-width:1200px) {
  .blockquote .source {
    padding: 0px 100px 50px 100px;
  }
}

/*
 |----------------------------------------------------------------
 |  Buttons
 |----------------------------------------------------------------
 */
.button {
  border: none;
  background: transparent;
  font-size: 15px;
  font-family: museo-sans, sans-serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 18px;
  text-align: center;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-property: background-color, color, border, opacity, -webkit-transform;
  transition-property: background-color, color, border, opacity, -webkit-transform;
  transition-property: background-color, color, border, opacity, transform;
  transition-property: background-color, color, border, opacity, transform, -webkit-transform;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  text-shadow: none;
  outline: none;
  -webkit-transform: rotate(0.0000000001deg);
          transform: rotate(0.0000000001deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.button i {
  margin-left: 5px;
  font-family: "Font Awesome 5 Pro";
  text-rendering: auto;
  font-smoothing: antialiased;
  position: relative;
  top: 1px;
}
.button:hover {
  opacity: 1 !important;
}
.button.default {
  background-color: #185E9E;
}

/*
 |----------------------------------------------------------------
 |  Button Base/Mixin
 |----------------------------------------------------------------
 */
.one {
  color: white;
  background: #019ADA;
  border-radius: 2px;
  padding: 18px 47px;
}
.one:hover {
  background: #185E9E;
}

.two {
  color: white;
  background: #019ADA;
}
.two:hover {
  background: #185E9E;
}

.three {
  color: #ffffff !important;
  background: #F7941E;
  padding: 22px 39px;
}
.three:hover {
  background: #BC7118;
}
.three span, .three i {
  color: #185E9E;
}

.white-button {
  color: #ffffff !important;
  background: #F7941E;
  padding: 22px 39px;
}
.white-button:hover {
  background: #BC7118;
}

.outline-one {
  color: white;
  background: transparent;
  border: 1px white solid;
  padding: 12px 37px;
  font-weight: 500;
}
.outline-one:hover {
  color: #019ADA;
  background: #ffffff;
}

.outline-two {
  color: #F7941E;
  background: transparent;
  border: 1px #F7941E solid;
  border-radius: 2px;
  padding: 20px;
  min-width: 180px;
}
.outline-two:hover {
  background: #F7941E;
  color: #ffffff;
}

.read-more {
  display: inline-block;
  text-decoration: none;
  font-style: normal;
  padding: 0px;
  min-width: unset;
  min-height: unset;
  padding-bottom: 3px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 14px;
  font-family: museo-sans, sans-serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 18px;
  text-align: center;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: museo-sans, sans-serif;
  font-weight: 900;
  color: #212121;
}
.read-more::after {
  content: "";
  background: #F7941E;
  display: block;
  margin: 0 auto;
  width: 0;
  height: 2px;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.read-more:hover {
  opacity: 0.8;
}
.read-more:hover::after {
  width: 100%;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.read-more:hover {
  color: #F7941E;
}
.read-more i {
  margin-left: 8px;
}

.read-more-white {
  display: inline-block;
  text-decoration: none;
  font-style: normal;
  padding: 0px;
  min-width: unset;
  min-height: unset;
  padding-bottom: 3px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 14px;
  font-family: museo-sans, sans-serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 18px;
  text-align: center;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: museo-sans, sans-serif;
  font-weight: 900;
  color: #212121;
  color: white;
}
.read-more-white::after {
  content: "";
  background: #F7941E;
  display: block;
  margin: 0 auto;
  width: 0;
  height: 2px;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.read-more-white:hover {
  opacity: 0.8;
}
.read-more-white:hover::after {
  width: 100%;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.read-more-white:hover {
  color: #F7941E;
}
.read-more-white i {
  margin-left: 8px;
}
.read-more-white:hover {
  color: #F7941E;
}

.form-submit input {
  border: none;
  background: transparent;
  font-size: 15px;
  font-family: museo-sans, sans-serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 18px;
  text-align: center;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-property: background-color, color, border, opacity, -webkit-transform;
  transition-property: background-color, color, border, opacity, -webkit-transform;
  transition-property: background-color, color, border, opacity, transform;
  transition-property: background-color, color, border, opacity, transform, -webkit-transform;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  text-shadow: none;
  outline: none;
  -webkit-transform: rotate(0.0000000001deg);
          transform: rotate(0.0000000001deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  color: white;
  background: #019ADA;
  border-radius: 2px;
  padding: 18px 47px;
  border: unset !important;
}
.form-submit input i {
  margin-left: 5px;
  font-family: "Font Awesome 5 Pro";
  text-rendering: auto;
  font-smoothing: antialiased;
  position: relative;
  top: 1px;
}
.form-submit input.default {
  background-color: #185E9E;
}
.form-submit input:hover {
  background: #185E9E;
}

.see-all-offers {
  height: 50px;
  border-radius: 3px;
}

/**
 *	Global Placeholder
================================================= */
/**
 *	Global Form Element
================================================= */
label {
  font-size: calc(13px + (15 - 13) * (100vw - 320px) / (1200 - 320));
}
@media screen and (min-width: 1200px) {
  label {
    font-size: 15px;
  }
}

[type=text],
[type=url],
[type=email],
[type=tel],
[type=number],
[type=password],
[type=search],
select,
textarea {
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-property: background-color, color, border, opacity, -webkit-transform;
  transition-property: background-color, color, border, opacity, -webkit-transform;
  transition-property: background-color, color, border, opacity, transform;
  transition-property: background-color, color, border, opacity, transform, -webkit-transform;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: none;
  outline: none;
  border: 1px solid #58585A;
  background: white;
  padding: 5px 10px;
  height: 50px;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: calc(15px + (17 - 15) * (100vw - 320px) / (1200 - 320));
  font-weight: 400;
  color: #313131;
}
@media screen and (min-width: 1200px) {
  [type=text],
[type=url],
[type=email],
[type=tel],
[type=number],
[type=password],
[type=search],
select,
textarea {
    font-size: 17px;
  }
}
[type=text]:focus,
[type=url]:focus,
[type=email]:focus,
[type=tel]:focus,
[type=number]:focus,
[type=password]:focus,
[type=search]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #185E9E;
}
[type=text][disabled],
[type=url][disabled],
[type=email][disabled],
[type=tel][disabled],
[type=number][disabled],
[type=password][disabled],
[type=search][disabled],
select[disabled],
textarea[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

textarea {
  min-height: 150px;
  padding: 10px;
  resize: vertical;
}

select:not([multiple]) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 35px;
  background-image: url("../png/select-icon.png");
  background-position: calc(100% - 10px) center;
  background-repeat: no-repeat;
  cursor: pointer;
}

select[multiple] {
  height: auto;
}

option {
  padding: 5px 10px;
  color: #313131;
}

[type=submit],
[type=button] {
  background-color: #185E9E;
}

input[type=checkbox],
input[type=file],
input[type=image],
input[type=radio] {
  height: auto;
  width: auto;
}

input[type=checkbox],
input[type=radio] {
  line-height: normal;
  padding: 0;
  vertical-align: middle;
}
input[type=checkbox] + label,
input[type=radio] + label {
  display: inline-block;
  vertical-align: middle;
}

/*
 |----------------------------------------------------------------
 |  Wrappers
 |----------------------------------------------------------------
 */
/*
 |----------------------------------------------------------------
 |  Structure
 |----------------------------------------------------------------
 */
.gform_footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

/*
 |----------------------------------------------------------------
 |  Gform Heading
 |----------------------------------------------------------------
 */
.gform_description {
  display: block;
}

.validation_error {
  border-left: 3px solid scarlet;
  margin: 0 0 25px;
  padding: 25px;
}

/*
 |----------------------------------------------------------------
 |  Gform Body
 |----------------------------------------------------------------
 */
.gform_fields {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  max-width: 1200px;
  margin-left: -10px;
  margin-right: -10px;
}

.gfield {
  -webkit-flex-basis: calc(12 / 12 * 100%);
      -ms-flex-preferred-size: calc(12 / 12 * 100%);
          flex-basis: calc(12 / 12 * 100%);
  max-width: calc(12 / 12 * 100%);
  margin-bottom: 20px;
}

.gfield_label {
  display: block;
  margin-bottom: 5px;
}

.gfield_required {
  vertical-align: super;
}

.ginput_container .large {
  width: 100%;
}
.ginput_container .medium {
  width: 66.6666666667%;
}
.ginput_container .small {
  width: 33.3333333333%;
}

.validation_message {
  margin-top: 5px;
  font-size: calc(12px + (14 - 12) * (100vw - 320px) / (1200 - 320));
  font-style: italic;
}
@media screen and (min-width: 1200px) {
  .validation_message {
    font-size: 14px;
  }
}

/*
 |----------------------------------------------------------------
 |  Gform Fields
 |----------------------------------------------------------------
 */
.ginput_container_checkbox,
.ginput_container_radio {
  margin-left: 25px;
}
.ginput_container_checkbox + .validation_message,
.ginput_container_radio + .validation_message {
  margin-left: 25px;
}

.gfield_checkbox,
.gfield_radio {
  padding: 0;
  margin: 0;
  list-style: none;
}
.gfield_checkbox input,
.gfield_radio input {
  margin-right: 5px;
}

.gform_hidden {
  display: none;
}

.gform_validation_container {
  display: none !important;
}

/*
 |----------------------------------------------------------------
 |  Gform Field Class
 |----------------------------------------------------------------
 */
.gf_full {
  -webkit-flex-basis: calc(12 / 12 * 100%);
      -ms-flex-preferred-size: calc(12 / 12 * 100%);
          flex-basis: calc(12 / 12 * 100%);
  max-width: calc(12 / 12 * 100%);
}

.gf_half {
  -webkit-flex-basis: calc(6 / 12 * 100%);
      -ms-flex-preferred-size: calc(6 / 12 * 100%);
          flex-basis: calc(6 / 12 * 100%);
  max-width: calc(6 / 12 * 100%);
}

.gf_third {
  -webkit-flex-basis: calc(4 / 12 * 100%);
      -ms-flex-preferred-size: calc(4 / 12 * 100%);
          flex-basis: calc(4 / 12 * 100%);
  max-width: calc(4 / 12 * 100%);
}

.gf_quarter {
  -webkit-flex-basis: calc(3 / 12 * 100%);
      -ms-flex-preferred-size: calc(3 / 12 * 100%);
          flex-basis: calc(3 / 12 * 100%);
  max-width: calc(3 / 12 * 100%);
}

.gf_list_inline .gfield_checkbox,
.gf_list_inline .gfield_radio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  max-width: 1200px;
  margin-left: -10px;
  margin-right: -10px;
}
/*
 |----------------------------------------------------------------
 |  Gform Footer
 |----------------------------------------------------------------
 */
.gf_submit:not(.button) {
  border: none;
  background: transparent;
  font-size: 15px;
  font-family: museo-sans, sans-serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 18px;
  text-align: center;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-property: background-color, color, border, opacity, -webkit-transform;
  transition-property: background-color, color, border, opacity, -webkit-transform;
  transition-property: background-color, color, border, opacity, transform;
  transition-property: background-color, color, border, opacity, transform, -webkit-transform;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  text-shadow: none;
  outline: none;
  -webkit-transform: rotate(0.0000000001deg);
          transform: rotate(0.0000000001deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.gf_submit:not(.button) i {
  margin-left: 5px;
  font-family: "Font Awesome 5 Pro";
  text-rendering: auto;
  font-smoothing: antialiased;
  position: relative;
  top: 1px;
}

.gform_ajax_spinner {
  margin-left: 10px;
}

/*
 |----------------------------------------------------------------
 |  Special Fields - Datepicker
 |----------------------------------------------------------------
 */
.ui-datepicker {
  background: white;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.ui-datepicker-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #185E9E;
}
.ui-datepicker-header .ui-icon {
  display: none;
}

.ui-datepicker-prev {
  padding: 5px 10px;
  -webkit-flex-basis: 25px;
      -ms-flex-preferred-size: 25px;
          flex-basis: 25px;
  cursor: pointer;
}
.ui-datepicker-prev:before {
  content: "\f0d9";
  font-family: "Font Awesome 5 Pro";
  text-rendering: auto;
  font-smoothing: antialiased;
  color: white;
}

.ui-datepicker-next {
  padding: 5px 10px;
  -webkit-flex-basis: 25px;
      -ms-flex-preferred-size: 25px;
          flex-basis: 25px;
  cursor: pointer;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
.ui-datepicker-next:before {
  content: "\f0da";
  font-family: "Font Awesome 5 Pro";
  text-rendering: auto;
  font-smoothing: antialiased;
  color: white;
}

.ui-datepicker-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
}

.ui-datepicker-month,
.ui-datepicker-year {
  -webkit-flex-basis: 48%;
      -ms-flex-preferred-size: 48%;
          flex-basis: 48%;
  height: 30px;
  font-size: 14px;
  padding-top: 0;
  padding-bottom: 0;
}

.ui-datepicker-calendar {
  width: 100%;
  border-collapse: collapse;
  border: none;
}
.ui-datepicker-calendar th {
  padding: 5px;
  font-size: 14px;
  background: #F3F6F6;
}
.ui-datepicker-calendar td {
  font-size: 12px;
  text-align: center;
}
.ui-datepicker-calendar .ui-state-default {
  padding: 5px;
  display: block;
}
.ui-datepicker-calendar .ui-state-disabled {
  cursor: disabled;
}
.ui-datepicker-calendar .ui-state-hover {
  font-weight: 700;
}
.ui-datepicker-calendar .ui-state-active {
  background: #185E9E;
  color: white;
}

.faq-postings {
  width: 100%;
  margin-bottom: 80px;
  padding-top: 40px;
}
@media screen and (max-width:767px) {
  .faq-postings {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.accordion-holder .accordion-content {
  display: none;
}
.accordion-holder .accordion-label {
  border-radius: 3px;
}
.accordion-holder .accordion-label .heading {
  text-transform: capitalize !important;
}

.accordion-with-icon .accordion-label h6 {
  font-size: calc(18px + (22 - 18) * (100vw - 320px) / (1200 - 320));
  font-weight: bold;
  color: #185E9E;
}
@media screen and (min-width: 1200px) {
  .accordion-with-icon .accordion-label h6 {
    font-size: 22px;
  }
}
.accordion-with-icon .accordion-label h6::before {
  content: "\f3c5";
  font-family: "Font Awesome 5 Pro";
  text-rendering: auto;
  font-smoothing: antialiased;
  padding-right: 10px;
  font-weight: 400;
}

.accordion-controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.accordion-controls a {
  display: inline-block;
  padding: 5px 10px;
  opacity: 1;
}
.accordion-controls a:hover {
  opacity: 0.5;
}

.accordion-entry {
  margin-bottom: 20px;
}
.accordion-entry h6,
.accordion-entry p,
.accordion-entry .gform_description {
  font-family: "Open Sans";
  font-size: 16px;
  letter-spacing: 0;
  line-height: 29px;
}

.accordion-label:hover {
  background: #185E9E !important;
}
.accordion-label:hover i,
.accordion-label:hover h6,
.accordion-label:hover p,
.accordion-label:hover .gform_description {
  color: white !important;
}
.accordion-label:hover:after {
  color: white !important;
  border: 1px solid #ffffff !important;
}
.accordion-label .p-wrapper {
  min-width: 100px;
  padding: 0px;
  margin-right: 25px;
}
.accordion-label .heading {
  color: #185E9E;
  font-family: museo-sans, sans-serif;
  font-size: 26px;
  font-weight: 700;
}
.accordion-label img {
  height: 50px;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.accordion-label span {
  margin-left: 15px;
}

.accordion-content-repeater-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
@media screen and (max-width:639px) {
  .accordion-content-repeater-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .accordion-content-repeater-item .image-column,
.accordion-content-repeater-item .content-column {
    -webkit-flex-basis: calc(12 / 12 * 100%);
        -ms-flex-preferred-size: calc(12 / 12 * 100%);
            flex-basis: calc(12 / 12 * 100%);
    max-width: calc(12 / 12 * 100%);
  }
}
@media screen and (max-width:979px) {
  .accordion-content-repeater-item {
    -webkit-flex-basis: calc(12 / 12 * 100%);
        -ms-flex-preferred-size: calc(12 / 12 * 100%);
            flex-basis: calc(12 / 12 * 100%);
    max-width: calc(12 / 12 * 100%);
  }
}

@media screen and (max-width:979px) {
  .accordion-holder {
    -webkit-flex-basis: calc(12 / 12 * 100%);
        -ms-flex-preferred-size: calc(12 / 12 * 100%);
            flex-basis: calc(12 / 12 * 100%);
    max-width: calc(12 / 12 * 100%);
  }
  .accordion-holder h5 {
    width: 70%;
  }
}
/*
 |----------------------------------------------------------------
 |  Banner Structure
 |----------------------------------------------------------------
 */
html[lang=fr] .site-utility label[data-code-language=fr] {
  display: none !important;
}
html[lang=fr] #menu-privacy li.weglot-language.weglot-fr {
  display: none !important;
}

html[lang=en-US] .site-utility label[data-code-language=en] {
  display: none !important;
}
html[lang=en-US] #menu-privacy li.weglot-language.weglot-en {
  display: none !important;
}

.page-banner {
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-banner::before {
  content: "";
  /* 93deg instead of 90deg to address vertical banding */
  background: linear-gradient(93deg, #185e9e, rgba(49, 49, 49, 0.3));
  position: absolute;
  width: 100%;
  height: 100%;
}
.page-banner__title {
  font-size: calc(32px + (52 - 32) * (100vw - 320px) / (1200 - 320));
}
@media screen and (min-width: 1200px) {
  .page-banner__title {
    font-size: 52px;
  }
}
.page-banner .util-location h4 {
  color: white;
}
.page-banner .util-location button {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid white;
  position: relative;
  right: -15px;
  bottom: 10px;
}
.page-banner .banner-content-box p, .page-banner .banner-content-box .gform_description {
  font-weight: bold;
}
.page-banner .row {
  padding-top: calc(90px + (150 - 90) * (100vw - 320px) / (1200 - 320));
  padding-bottom: calc(80px + (105 - 80) * (100vw - 320px) / (1200 - 320));
}
@media screen and (min-width: 1200px) {
  .page-banner .row {
    padding-top: 150px;
  }
}
@media screen and (min-width: 1200px) {
  .page-banner .row {
    padding-bottom: 105px;
  }
}
.page-banner .button {
  margin-right: 20px;
}
.page-banner .content-container {
  z-index: 100;
  color: #ffffff;
}
@media screen and (min-width:640px) {
  .page-banner .content-container {
    padding-left: 20px;
  }
}
@media screen and (max-width:767px) {
  .page-banner .button {
    margin-bottom: 20px;
    margin-right: 0px;
  }
}
.page-banner .page-banner__eyebrow {
  font-family: "Open Sans";
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
}
.page-banner .page-banner__content {
  font-family: "Open Sans";
  font-weight: bold;
  font-size: 16px;
  line-height: 28px;
}

.home .page-banner {
  margin-bottom: 0px;
}
.home .page-banner .row {
  padding-top: calc(50px + (50 - 50) * (100vw - 320px) / (1200 - 320));
  padding-bottom: calc(80px + (245 - 80) * (100vw - 320px) / (1200 - 320));
}
@media screen and (min-width: 1200px) {
  .home .page-banner .row {
    padding-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .home .page-banner .row {
    padding-bottom: 245px;
  }
}

.video-banner {
  position: relative;
  overflow: hidden;
}
.video-banner > .row {
  min-height: calc(300px + (600 - 300) * (100vw - 320px) / (1200 - 320));
}
@media screen and (min-width: 1200px) {
  .video-banner > .row {
    min-height: 600px;
  }
}
.video-banner #bg-video {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  min-width: 100%;
  min-height: 100%;
  pointer-events: none;
}

@media screen and (max-width:480px) {
  .page-banner .content-container {
    -webkit-flex-basis: calc(10 / 12 * 100%);
        -ms-flex-preferred-size: calc(10 / 12 * 100%);
            flex-basis: calc(10 / 12 * 100%);
    max-width: calc(10 / 12 * 100%);
    margin: 0 auto;
    text-align: center;
  }
}
.single-page-banner .row {
  padding-top: calc(40px + (160 - 40) * (100vw - 320px) / (1200 - 320));
  padding-bottom: calc(40px + (100 - 40) * (100vw - 320px) / (1200 - 320));
}
@media screen and (min-width: 1200px) {
  .single-page-banner .row {
    padding-top: 160px;
  }
}
@media screen and (min-width: 1200px) {
  .single-page-banner .row {
    padding-bottom: 100px;
  }
}
.single-page-banner .terms-container {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 20px 15px;
  margin-bottom: 20px;
}
.single-page-banner .terms-container h6 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.single-page-banner .content-container {
  background: #ffffff;
  padding: 40px 100px;
  position: relative;
  top: 200px;
}
.single-page-banner .content-container h1,
.single-page-banner .content-container p,
.single-page-banner .content-container .gform_description,
.single-page-banner .content-container h6 {
  color: #313131;
}
.single-page-banner .term-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 50px;
  margin-bottom: 20px;
}
.single-page-banner .term-wrapper h6 {
  line-height: 12px;
  padding-bottom: 0px;
  margin-right: 10px;
  text-transform: uppercase;
}
.single-page-banner h6 {
  padding: 0px;
  margin-right: 10px;
  text-transform: uppercase;
}
.single-page-banner h1,
.single-page-banner p,
.single-page-banner .gform_description {
  padding-bottom: 10px;
}
.single-case-banner {
  margin-bottom: 90px;
}
.single-case-banner .row {
  padding-top: calc(40px + (70 - 40) * (100vw - 320px) / (1200 - 320));
  padding-bottom: calc(40px + (70 - 40) * (100vw - 320px) / (1200 - 320));
}
@media screen and (min-width: 1200px) {
  .single-case-banner .row {
    padding-top: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .single-case-banner .row {
    padding-bottom: 70px;
  }
}

.search-banner .page-banner {
  margin-bottom: 60px;
  z-index: 0;
  position: relative;
}
.search-banner .page-banner:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
  -webkit-transition-property: background, opacity, -webkit-transform;
  transition-property: background, opacity, -webkit-transform;
  transition-property: background, transform, opacity;
  transition-property: background, transform, opacity, -webkit-transform;
  z-index: -1;
}
.search-banner .page-banner:after {
  z-index: 0;
}
.search-banner .page-banner .content-container {
  z-index: 1;
}

.artists-gallery-wrapper {
  padding-bottom: 60px;
}
.artists-gallery-wrapper .iframe {
  position: relative;
  margin-bottom: 20px;
}
.artists-gallery-wrapper .iframe:nth-child(odd) {
  bottom: 0px;
}

.grid-gallery {
  padding: 40px 10px;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-auto-rows: 140px;
  grid-gap: 10px;
}
.grid-gallery div {
  background-size: cover;
}
.grid-gallery div:nth-child(1) {
  grid-column: 1/8;
  grid-row: 1/6;
}
.grid-gallery div:nth-child(2) {
  grid-column: 8/11;
  grid-row: 1/4;
}
.grid-gallery div:nth-child(3) {
  grid-column: 8/11;
  grid-row: 4/6;
}
.grid-gallery div:nth-child(4) {
  grid-column: 1/6;
  grid-row: 6/9;
}
.grid-gallery div:nth-child(5) {
  grid-column: 6/11;
  grid-row: 6/9;
}
.grid-gallery div:nth-child(6) {
  grid-column: 1/4;
  grid-row: 9/12;
}
.grid-gallery div:nth-child(7) {
  grid-column: 4/9;
  grid-row: 9/12;
}
.grid-gallery div:nth-child(8) {
  grid-column: 9/12;
  grid-row: 9/12;
}
.grid-gallery div:nth-child(9) {
  grid-column: 1/4;
  grid-row: 12/14;
}
.grid-gallery div:nth-child(10) {
  grid-column: 4/8;
  grid-row: 12/14;
}
.grid-gallery div:nth-child(11) {
  grid-column: 8/12;
  grid-row: 12/14;
}
.grid-gallery div:nth-child(12) {
  grid-column: 1/12;
  grid-row: 14/18;
}

.gallery_intro {
  padding-top: 40px;
}

.gallery {
  margin-bottom: calc(20px + (60 - 20) * (100vw - 320px) / (1200 - 320));
}
@media screen and (min-width: 1200px) {
  .gallery {
    margin-bottom: 60px;
  }
}
.gallery .gallery-wrapper {
  position: relative;
}
.gallery .slick-arrow {
  position: absolute;
  z-index: 100;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #ffffff;
  height: 80px;
  width: 80px;
  background: #185E9E;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
}
.gallery .slick-arrow:hover {
  cursor: pointer;
}
.gallery .slick-arrow i {
  font-weight: 300;
  font-size: 24px;
}
.gallery .slick-next {
  right: -40px;
}
.gallery .slick-prev {
  left: -40px;
}
.gallery .gallery-image {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-height: 700px;
  overflow: hidden;
}
.gallery .gallery-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 600px;
  max-width: none;
  min-width: 100%;
}
@media screen and (max-width:480px) {
  .gallery .gallery-image, .gallery img {
    max-height: 300px;
  }
}

.slick-thumbnail-grid {
  margin-top: 20px;
  max-height: 500px;
  /* the slides */
  /* the parent */
}
.slick-thumbnail-grid .gallery-nav-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 155px;
  overflow: hidden;
}
.slick-thumbnail-grid .gallery-nav-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.slick-thumbnail-grid .slick-slide {
  margin: 20px 10px;
}
.slick-thumbnail-grid .slick-list {
  margin: -10px 0;
}
@media screen and (max-width:480px) {
  .slick-thumbnail-grid .gallery-nav-image {
    max-height: 90px;
  }
}

.post-filter {
  padding: 40px 0px;
}

.filter-section {
  padding: 18px 0;
}
.filter-section .filter-container {
  min-height: unset;
  padding-top: 0px;
  padding-left: 0px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 0px !important;
}
@media screen and (min-width:980px) {
  .filter-section .filter-by {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.filter-section h6 {
  padding-bottom: 0;
  margin-right: 15px;
  min-width: 110px;
}
.filter-section .search-form {
  pointer-events: auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
  font-size: 12px;
}
.filter-section .search-form > .flex-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.filter-section .search-form > .flex-container .flex-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .filter-section .search-form > .flex-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
  .filter-section .search-form > .flex-container .see-all-offers {
    width: 100%;
    margin-bottom: 0;
  }
  .filter-section .search-form > .flex-container .flex-container {
    width: 100%;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}
.filter-section .search-form > .flex-container .select-container {
  min-width: 200px;
}
.filter-section .search-form h6 {
  color: #185E9E;
  letter-spacing: 1px;
}
.filter-section .search-form input {
  height: 50px;
  border-radius: 3px;
}
.filter-section .search-form input.button:hover {
  background: #019ADA;
}
.filter-section .search-form select,
.filter-section .search-form #search-input {
  background-image: none;
  color: #676a6a;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  min-height: 50px;
  border-radius: 2px;
  border: 1px solid rgba(24, 94, 158, 0.4);
}
.filter-section .search-form .select-container {
  background: #ffffff;
  position: relative;
  border-radius: 6px;
}
.filter-section .search-form .select-container i {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #019ada;
  pointer-events: none;
}
.filter-section .search-form .button {
  min-width: unset;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 18px 30px;
  font-size: 14px;
  font-weight: 600;
  border: 0px solid white !important;
  margin-right: 0;
}
.filter-section .search-container {
  min-width: 200px;
}

@media screen and (max-width:1199px) {
  .filter-form-container h6,
.filter-form-container a,
.filter-form-container .button,
.filter-form-container .select-container {
    margin-bottom: 15px;
  }
}
@media screen and (max-width:979px) {
  .filter-form-container .select-container {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
}
@media screen and (max-width:767px) {
  .filter-form-container,
.filter-form-container .search-form,
.filter-form-container .flex-container {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.simple-filter-form h6 {
  padding-bottom: 0;
}
.simple-filter-form form {
  margin: 0;
}

@media screen and (max-width:1199px) {
  .post-filter {
    padding: 0 20px;
  }
}
.filter-or {
  color: #676a6a;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  width: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
}
.filter-or:before, .filter-or:after {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: #019ada;
}

.pagination-container {
  width: 100%;
  padding: 30px 0;
}
.pagination-container .wrapper a {
  color: #313131;
}
.pagination-container .pagination-column {
  padding: 15px 0px;
  padding-left: calc(10px + (30 - 10) * (100vw - 320px) / (1200 - 320));
  padding-right: calc(10px + (30 - 10) * (100vw - 320px) / (1200 - 320));
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1200px) {
  .pagination-container .pagination-column {
    padding-left: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .pagination-container .pagination-column {
    padding-right: 30px;
  }
}
.pagination-container .pagination-column .fa-arrow-left {
  margin-right: 10px;
}
.pagination-container .pagination-column i {
  color: #185E9E;
  font-size: 22px;
}
.pagination-container .pagination-column p, .pagination-container .pagination-column .gform_description {
  padding-bottom: 0;
}
.pagination-container .pagination-column p, .pagination-container .pagination-column .gform_description,
.pagination-container .pagination-column a {
  text-transform: uppercase;
  font-family: "Open Sans";
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 29px;
  color: #185E9E;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination-container .pagination-column .prev-disabled,
.pagination-container .pagination-column .next-disabled {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination-container .pagination-column .prev-disabled i,
.pagination-container .pagination-column .next-disabled i {
  font-size: 22px;
  color: #185E9E;
}
.pagination-container .pagination-column .fa-arrow-right {
  margin-left: 12px;
  color: #185E9E;
}
.pagination-container .pagination-column .fa-arrow-left {
  margin-right: 12px;
  color: #185E9E;
}
.pagination-container .pagination-column i.fa-angle-left:before {
  content: "\f060" !important;
}
.pagination-container .pagination-column i.fa-angle-right:before {
  content: "\f061" !important;
}
.pagination-container .pagination-column .page-lists {
  padding-left: calc(20px + (100 - 20) * (100vw - 320px) / (1200 - 320));
  padding-right: calc(20px + (100 - 20) * (100vw - 320px) / (1200 - 320));
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1200px) {
  .pagination-container .pagination-column .page-lists {
    padding-left: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .pagination-container .pagination-column .page-lists {
    padding-right: 100px;
  }
}
.pagination-container .pagination-column .page-lists .page-numbers {
  background: #F3F6F6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 8px;
  height: 35px;
  width: 35px;
  font-weight: 500;
  border-radius: 2px;
  color: #313131;
}
.pagination-container .pagination-column .page-lists .current {
  background: #019ADA;
  color: #ffffff;
}
.pagination-container .pagination-column .page-lists .dots {
  background: unset;
  color: #185E9E;
}
.pagination-container .pagination-column .page-lists a,
.pagination-container .pagination-column .page-lists span {
  color: #185E9E;
  font-size: 18px;
  font-weight: 600;
}

@media screen and (max-width:767px) {
  .pagination-container .pagination-column {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .pagination-container .pagination-column .page-lists {
    padding: 0px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.slideout-container {
  width: 100%;
}

.slideout-item .loop-content {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  margin-bottom: 20px;
  padding: 10px;
}
.slideout-item .loop-content img {
  height: 310px;
  -o-object-fit: cover;
     object-fit: cover;
}
.slideout-item .loop-content::after {
  display: none;
  content: "";
  position: absolute;
  bottom: -20px;
  width: 20px;
  height: 20px;
  border-bottom: 10px solid #cae1e7;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  z-index: 2;
}
.slideout-item .loop-content h4 {
  z-index: 1000;
  padding-bottom: 0px;
}
.slideout-item .loop-content h6 {
  text-transform: uppercase;
  color: #019ADA;
}
.slideout-item .loop-content .icon {
  z-index: 1000;
  height: 30px;
  width: 30px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 2px;
}
.slideout-item .loop-content .icon:hover {
  cursor: pointer;
}
.slideout-item .loop-content .icon i {
  font-size: 25px;
}
.slideout-item .loop-content .minus {
  display: none;
}
.slideout-item .loop-content .show-icon {
  display: block;
}
.slideout-item .loop-content .hide-icon {
  display: none;
}
.slideout-item .loop-content.show-slideout::after {
  display: block;
}
.slideout-item .team-slideout-content {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
}
.slideout-item .team-slideout-hidden {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 60px 110px;
}
@media screen and (max-width:767px) {
  .slideout-item .team-slideout-hidden {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .slideout-item .team-slideout-hidden .columns-4,
.slideout-item .team-slideout-hidden .columns-8 {
    -webkit-flex-basis: calc(12 / 12 * 100%);
        -ms-flex-preferred-size: calc(12 / 12 * 100%);
            flex-basis: calc(12 / 12 * 100%);
    max-width: calc(12 / 12 * 100%);
  }
}
.slideout-item .team-slideout-hidden .content-column h6 {
  color: #019ADA !important;
}
.slideout-item .team-slideout-hidden .content-column .contact-icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 20px;
  padding-bottom: 30px;
}
.slideout-item .team-slideout-hidden .content-column .contact-icons a {
  border-bottom: 0px solid white !important;
  margin-bottom: 10px;
}
.slideout-item .team-slideout-hidden .content-column .contact-icons i {
  color: #019ADA !important;
}
.slideout-item .loop-hidden {
  display: none;
  position: relative;
  padding: 40px 20px 60px;
}
.slideout-item .loop-hidden .team-slideout-contact {
  padding-top: 10px;
}
.slideout-item .loop-hidden .team-slideout-contact a i {
  border-radius: 15px;
  border: solid 2px white;
  padding: 6px;
  margin-top: 10px;
  margin-right: 5px;
}
.slideout-item .loop-hidden .phone-link {
  margin-bottom: 30px;
  font-weight: bold;
}
.slideout-item .loop-hidden .phone-link::after {
  content: "";
  background: 3px;
  display: block;
  margin: 0 auto;
  width: 0;
  height: white;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.slideout-item .loop-hidden .phone-link:hover {
  opacity: 0.8;
}
.slideout-item .loop-hidden .phone-link:hover::after {
  width: 100%;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.slideout-item .close {
  position: absolute;
  top: 5%;
  right: 3%;
}
.slideout-item .close:hover {
  cursor: pointer;
}
.slideout-item .close i {
  font-size: 25px;
}

.slideout-container.block-grid-2 .loop-content img {
  height: 470px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slideout-container.block-grid-3 .slideout-item .loop-hidden {
  width: 310%;
}
.slideout-container.block-grid-3 .slideout-item:nth-child(3n+1) .loop-hidden {
  left: 0;
}
.slideout-container.block-grid-3 .slideout-item:nth-child(3n+2) .loop-hidden {
  left: -105%;
}
.slideout-container.block-grid-3 .slideout-item:nth-child(3n+3) .loop-hidden {
  left: -210%;
}

.slideout-container.block-grid-4 .slideout-item .loop-hidden, .slideout-container.block-grid-4 .slideout-item .loop-hidden-big, .slideout-container-big.block-grid-4 .slideout-item .loop-hidden, .slideout-container-big.block-grid-4 .slideout-item .loop-hidden-big {
  width: 435%;
  display: none;
}
.slideout-container.block-grid-4 .slideout-item:nth-child(4n+1) .loop-hidden, .slideout-container-big.block-grid-4 .slideout-item:nth-child(4n+1) .loop-hidden {
  left: 0;
}
.slideout-container.block-grid-4 .slideout-item:nth-child(4n+2) .loop-hidden, .slideout-container-big.block-grid-4 .slideout-item:nth-child(4n+2) .loop-hidden {
  left: -109%;
}
.slideout-container.block-grid-4 .slideout-item:nth-child(4n+3) .loop-hidden, .slideout-container-big.block-grid-4 .slideout-item:nth-child(4n+3) .loop-hidden {
  left: -218%;
}
.slideout-container.block-grid-4 .slideout-item:nth-child(4n+4) .loop-hidden, .slideout-container-big.block-grid-4 .slideout-item:nth-child(4n+4) .loop-hidden {
  left: -326%;
}

.slideout-container.block-grid-2 .slideout-item .loop-hidden, .slideout-container.block-grid-2 .slideout-item .loop-hidden-big {
  width: 203%;
}
.slideout-container.block-grid-2 .slideout-item:nth-child(odd) .loop-hidden {
  left: 0;
}
.slideout-container.block-grid-2 .slideout-item:nth-child(even) .loop-hidden {
  left: -103%;
}

@media screen and (max-width:1199px) {
  /*
   |----------------------------------------------------------------
   | Slideout Component
   |----------------------------------------------------------------
   */
  .slideout-container.block-grid-4 .slideout-item .loop-hidden, .slideout-container-big.block-grid-4 .slideout-item .loop-hidden {
    width: 310%;
  }
  .slideout-container.block-grid-4 .slideout-item:nth-child(3n+1) .loop-hidden, .slideout-container-big.block-grid-4 .slideout-item:nth-child(3n+1) .loop-hidden {
    left: 0;
  }
  .slideout-container.block-grid-4 .slideout-item:nth-child(3n+2) .loop-hidden, .slideout-container-big.block-grid-4 .slideout-item:nth-child(3n+2) .loop-hidden {
    left: -105%;
  }
  .slideout-container.block-grid-4 .slideout-item:nth-child(3n+3) .loop-hidden, .slideout-container-big.block-grid-4 .slideout-item:nth-child(3n+3) .loop-hidden {
    left: -210%;
  }
}
@media screen and (max-width:1199px) {
  .slideout-container.block-grid-3 .slideout-item .loop-hidden {
    width: 204%;
  }
  .slideout-container.block-grid-3 .slideout-item:nth-child(odd) .loop-hidden {
    left: 0;
  }
  .slideout-container.block-grid-3 .slideout-item:nth-child(even) .loop-hidden {
    left: -103%;
  }
}
@media screen and (max-width:767px) {
  .slideout-container.block-grid-4 .slideout-item .loop-hidden, .slideout-container-big.block-grid-4 .slideout-item .loop-hidden,
.slideout-container.block-grid-3 .slideout-item .loop-hidden {
    width: 203%;
  }
  .slideout-container.block-grid-4 .slideout-item:nth-child(odd) .loop-hidden, .slideout-container-big.block-grid-4 .slideout-item:nth-child(odd) .loop-hidden,
.slideout-container.block-grid-3 .slideout-item:nth-child(odd) .loop-hidden {
    left: 0;
  }
  .slideout-container.block-grid-4 .slideout-item:nth-child(even) .loop-hidden, .slideout-container-big.block-grid-4 .slideout-item:nth-child(even) .loop-hidden,
.slideout-container.block-grid-3 .slideout-item:nth-child(even) .loop-hidden {
    left: -103%;
  }

  .slideout-container.block-grid-2 .slideout-item .loop-hidden {
    width: 100%;
  }
  .slideout-container.block-grid-2 .slideout-item:nth-child(odd) .loop-hidden {
    left: 0;
  }
  .slideout-container.block-grid-2 .slideout-item:nth-child(even) .loop-hidden {
    left: 0;
  }
}
@media screen and (max-width:639px) {
  .slideout-container.block-grid-4 .slideout-item .loop-hidden, .slideout-container-big.block-grid-4 .slideout-item .loop-hidden, .slideout-container.block-grid-3 .slideout-item .loop-hidden {
    width: 100%;
  }
  .slideout-container.block-grid-4 .slideout-item:nth-child(odd) .loop-hidden, .slideout-container-big.block-grid-4 .slideout-item:nth-child(odd) .loop-hidden, .slideout-container.block-grid-3 .slideout-item:nth-child(odd) .loop-hidden {
    left: 0;
  }
  .slideout-container.block-grid-4 .slideout-item:nth-child(even) .loop-hidden, .slideout-container-big.block-grid-4 .slideout-item:nth-child(even) .loop-hidden, .slideout-container.block-grid-3 .slideout-item:nth-child(even) .loop-hidden {
    left: 0;
  }
}
.page-nav {
  padding-top: calc(50px + (50 - 50) * (100vw - 320px) / (1200 - 320));
  padding-bottom: calc(50px + (50 - 50) * (100vw - 320px) / (1200 - 320));
}
@media screen and (min-width: 1200px) {
  .page-nav {
    padding-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .page-nav {
    padding-bottom: 50px;
  }
}
.page-nav .all-posts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-nav .all-posts .button {
  color: white;
  background: #019ADA;
  border-radius: 2px;
  padding: 18px 47px;
}
.page-nav .all-posts .button:hover {
  background: #185E9E;
}
.page-nav .prev-column,
.page-nav .next-column {
  position: relative;
}
.page-nav .prev-column::after,
.page-nav .next-column::after {
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  text-rendering: auto;
  font-smoothing: antialiased;
  color: #313131;
  font-size: 15px;
  top: 2%;
}
.page-nav .prev-column p, .page-nav .prev-column .gform_description,
.page-nav .next-column p,
.page-nav .next-column .gform_description {
  color: #313131;
}
.page-nav .prev-column h4,
.page-nav .next-column h4 {
  color: #185E9E;
  padding-bottom: 10px;
}
.page-nav .prev-column {
  padding-left: 8%;
}
.page-nav .prev-column::after {
  left: 18%;
  content: "\f053";
}
.page-nav .next-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 8%;
}
.page-nav .next-column::after {
  right: 18%;
  content: "\f054";
}
.page-nav .next-column .next-link > * {
  text-align: right;
}

.double-map-wrapper {
  padding-bottom: calc(80px + (80 - 80) * (100vw - 320px) / (1200 - 320));
}
@media screen and (min-width: 1200px) {
  .double-map-wrapper {
    padding-bottom: 80px;
  }
}

.map-wrap {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.map-wrap .map-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 20px 0px;
}
.map-wrap .map-content > * {
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
}
.map-wrap .map-content .location-title {
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
}

@media screen and (max-width:979px) {
  .map-wrap {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .map-wrap > div {
    -webkit-flex-basis: calc(12 / 12 * 100%);
        -ms-flex-preferred-size: calc(12 / 12 * 100%);
            flex-basis: calc(12 / 12 * 100%);
    max-width: calc(12 / 12 * 100%);
  }
  .map-wrap .map-content {
    -webkit-flex-basis: calc(8 / 12 * 100%);
        -ms-flex-preferred-size: calc(8 / 12 * 100%);
            flex-basis: calc(8 / 12 * 100%);
    max-width: calc(8 / 12 * 100%);
  }
}
.get_in_touch_form .field_sublabel_below > div > span > label {
  display: none;
}
.get_in_touch_form > .row {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.get_in_touch_form > .row > div {
  -webkit-flex-basis: calc(10 / 12 * 100%);
      -ms-flex-preferred-size: calc(10 / 12 * 100%);
          flex-basis: calc(10 / 12 * 100%);
  max-width: calc(10 / 12 * 100%);
}
@media screen and (max-width:767px) {
  .get_in_touch_form > .row > div {
    -webkit-flex-basis: calc(12 / 12 * 100%);
        -ms-flex-preferred-size: calc(12 / 12 * 100%);
            flex-basis: calc(12 / 12 * 100%);
    max-width: calc(12 / 12 * 100%);
  }
}
.get_in_touch_form > .row .contact-form-container .gform_fields {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.get_in_touch_form > .row .contact-form-container .gform_fields li {
  margin-right: 10px;
}
.get_in_touch_form > .row .contact-form-container .gform_fields li:nth-of-type(-n+5) {
  -webkit-flex-basis: 49%;
      -ms-flex-preferred-size: 49%;
          flex-basis: 49%;
}
@media screen and (max-width:639px) {
  .get_in_touch_form > .row .contact-form-container .gform_fields {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .get_in_touch_form > .row .contact-form-container .gform_fields li {
    margin-right: 10px;
  }
  .get_in_touch_form > .row .contact-form-container .gform_fields li:nth-of-type(-n+5) {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
}

#CybotCookiebotDialog {
  max-width: 98% !important;
  min-width: 98% !important;
  background: #F1F9FF !important;
}
@media (min-width: 1280px) {
  #CybotCookiebotDialog {
    padding: 50px 170px 50px 170px !important;
  }
}
#CybotCookiebotDialog #CybotCookiebotDialogBodyContent {
  padding-top: 0 !important;
}
#CybotCookiebotDialog #CybotCookiebotDialogBodyContentTitle {
  font-family: museo-sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.111px;
  margin-bottom: 1em !important;
}
#CybotCookiebotDialog #CybotCookiebotDialogBodyContentText {
  font-family: open-sans, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
#CybotCookiebotDialog #CybotCookiebotDialogBodyButtonsWrapper button {
  border-width: 1px !important;
  margin-bottom: 1em !important;
  padding: 0.75em 1em !important;
}
@media (min-width: 601px) {
  #CybotCookiebotDialog #CybotCookiebotDialogBodyButtonsWrapper button {
    width: 180px !important;
  }
}
#CybotCookiebotDialog #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection,
#CybotCookiebotDialog #CybotCookiebotDialogBodyButtonDecline {
  background-color: transparent !important;
  color: #47afeb !important;
}
#CybotCookiebotDialog #CybotCookiebotDialogBodyEdgeMoreDetails a {
  color: #141414 !important;
  font-size: 14px !important;
}
#CybotCookiebotDialog #CybotCookiebotDialogBodyEdgeMoreDetails a:after {
  border-style: solid;
  border-width: 0 0 3px 0 !important;
  border-color: #47afeb !important;
  content: "";
  display: block;
  height: 0.563em;
  margin-left: 0 !important;
  -webkit-transform: unset !important;
          transform: unset !important;
  position: absolute;
  bottom: 0;
  width: 94px !important;
}
#CybotCookiebotDialog #CybotCookiebotDialog.CybotEdge .CybotCookiebotDialogBodyLevelButtonLabel {
  margin-right: 0.5em !important;
}
#CybotCookiebotDialog #CybotCookiebotDialogBodyLevelButtonsSelectPane .CybotCookiebotDialogBodyLevelButtonDescription {
  font-family: museo-sans, sans-serif !important;
  font-size: 20px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: normal;
  letter-spacing: 1.111px;
}
@media (min-width: 601px) and (max-width: 1020px) {
  #CybotCookiebotDialog #CybotCookiebotDialogBodyLevelButtonsSelectPane .CybotCookiebotDialogBodyLevelButtonDescription {
    font-size: 14px;
  }
}

@media screen and (min-width: 1280px) {
  #CybotCookiebotDialog.CybotEdge.CybotMultilevel .CybotCookiebotScrollContainer {
    width: calc(100% - 180px - 1.5em) !important;
  }

  #CybotCookiebotDialog.CybotEdge.CybotMultilevel .CybotCookiebotDialogBodyBottomWrapper {
    padding-top: 2em !important;
  }
}
@media screen and (min-width: 1280px) and (min-width: 1510px) {
  #CybotCookiebotDialog.CybotEdge.CybotMultilevel .CybotCookiebotDialogBodyBottomWrapper {
    border-top: 1px solid #47afeb !important;
  }
}
#CybotCookiebotDialog .CybotCookiebotScrollbarContainer {
  display: none !important;
}

.testimonial-slider {
  max-width: 1200px;
}

.featured-testimonials .content {
  padding: 0px 30px;
}
.featured-testimonials .p-wrapper {
  font-weight: 600;
}
.featured-testimonials .image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-height: 170px;
  overflow: hidden;
}
.featured-testimonials .image img {
  height: 150px;
  width: 150px;
}
.featured-testimonials .testimonial-slider {
  -webkit-flex-basis: calc(10 / 12 * 100%);
      -ms-flex-preferred-size: calc(10 / 12 * 100%);
          flex-basis: calc(10 / 12 * 100%);
  max-width: calc(10 / 12 * 100%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.featured-testimonials .testimonial-slider .slick-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 40px;
  color: #185E9E;
}
.featured-testimonials .testimonial-slider .slick-arrow:hover {
  cursor: pointer;
}
@media screen and (max-width:767px) {
  .featured-testimonials img {
    margin-bottom: 20px;
  }
  .featured-testimonials p, .featured-testimonials .gform_description,
.featured-testimonials h5 {
    text-align: center;
  }
}

@media screen and (min-width:980px) {
  .highlights-posts-wrapper.custom-highlight .highlight-post li {
    font-weight: 600;
  }
}
.highlights-posts-wrapper.custom-highlight .highlights-content {
  border-bottom: none !important;
}
.highlights-posts-wrapper .highlights-intro {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  z-index: 0;
}
@media screen and (max-width:979px) {
  .highlights-posts-wrapper .highlights-intro {
    margin-left: 20px;
  }
}
.highlights-posts-wrapper .highlights-intro img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width:980px) {
  .highlights-posts-wrapper .highlights-intro img {
    height: 470px;
  }
}
@media screen and (min-width:980px) {
  .highlights-posts-wrapper .row .columns-6 {
    margin-left: 25px !important;
    padding-top: 0px;
  }
}
.highlights-posts-wrapper.has-orange-bg {
  padding-top: 0 !important;
}
@media screen and (min-width:980px) {
  .highlights-posts-wrapper.has-orange-bg {
    padding-bottom: 50px !important;
  }
  .highlights-posts-wrapper.has-orange-bg .highlights-intro:after {
    position: absolute;
    left: -6%;
    bottom: 0%;
    height: 80%;
    width: 60%;
    content: "";
    background-color: #F7941E;
    z-index: -1;
  }
}

.highlights-content h4 {
  color: #185E9E;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 29px;
}

.split-highlights-wrapper {
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
  max-width: 100%;
}
@media screen and (min-width:1200px) {
  .split-highlights-wrapper .highlights-intro img {
    height: 600px;
    width: 480px;
  }
}

.location-modal {
  position: relative;
  display: none;
  max-width: 600px;
}
.location-modal__title {
  font-size: 1.5rem;
}
.location-modal__spinner {
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.7);
  display: none;
  opacity: 0;
}
.location-modal__spinner--active {
  display: block;
  -webkit-animation: spinnerIn 0.3s forwards;
          animation: spinnerIn 0.3s forwards;
}
.location-modal__spinner::before, .location-modal__spinner::after {
  content: "";
  position: absolute;
  z-index: 11;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  -webkit-animation: spinnerSpin 1s infinite linear;
          animation: spinnerSpin 1s infinite linear;
}
.location-modal__spinner::before {
  height: 2rem;
  width: 2rem;
  border-radius: 100%;
  border-top-color: #019ADA;
  border-right-color: #019ADA;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}
.location-modal__spinner::after {
  height: 2.5rem;
  width: 2.5rem;
  top: calc(50% - 1.25rem);
  left: calc(50% - 1.25rem);
  border-radius: 100%;
  border-top-color: #185E9E;
  border-right-color: #185E9E;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}
@-webkit-keyframes spinnerSpin {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
@keyframes spinnerSpin {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
@-webkit-keyframes spinnerIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes spinnerIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.location-modal__button-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 -0.5rem;
}
.location-modal__region-button {
  border: none;
  background: transparent;
  color: #313131;
  font-size: 1.25rem;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  text-align: left;
  padding: 0.5rem;
  cursor: pointer;
}
.location-modal__region-button:hover {
  color: #019ADA;
  background-color: rgba(1, 154, 218, 0.05);
}
@media screen and (min-width:480px) {
  .location-modal__region-button {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

.util-location {
  margin-right: auto;
  font-family: museo-sans, sans-serif;
  font-size: 0.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
}
.util-location--large {
  font-size: 1.25rem;
}
.util-location--large .util-location__button {
  font-size: 0.875rem;
}
.util-location__label, .util-location__title, .util-location__button {
  letter-spacing: 0.05em;
}
.util-location__label {
  font-weight: normal;
}
.util-location__title {
  margin: 0 0.25rem;
}
.util-location__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  color: #185E9E;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.375em;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  margin: 0 0.25rem;
  height: 20px;
  padding: 0;
  cursor: pointer;
}
.util-location__button:hover, .util-location__button:focus {
  color: #019ADA;
}
.util-location__button--white {
  color: #ffffff;
}

.banner-slider {
  --carousel-button-bg: #019ADA;
  --carousel-button-color: #ffffff;
  --carousel-button-svg-width: 1.25rem;
  --carousel-button-svg-height: 1.125rem;
}
@media screen and (max-width: 1360px) {
  .banner-slider .carousel__button.is-prev, .banner-slider .carousel__button.is-next {
    top: calc(100% - 60px);
  }
}
.banner-slider__slide {
  min-height: calc(100vh - 460px);
  width: 100%;
  max-width: 1600px;
  padding: 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width:980px) {
  .banner-slider__slide {
    min-height: calc(100vh - 320px);
  }
}
.banner-slider__slide.page-banner .row {
  padding-top: 80px;
  padding-bottom: 80px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.banner-links {
  color: #ffffff;
  background-color: #185E9E;
}
@media screen and (min-width:980px) {
  .banner-links {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    margin: 0 -1px;
  }
}

.banner-link {
  position: relative;
  padding: 0;
  -webkit-flex-basis: 25%;
      -ms-flex-preferred-size: 25%;
          flex-basis: 25%;
  max-width: 25%;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  margin: 0 1px;
}
@media screen and (max-width:979px) {
  .banner-link {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
    margin: 0px 0px;
  }
}
.banner-link__toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 1.5rem;
  font-size: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  width: 100%;
  color: #ffffff;
  cursor: pointer;
  background-color: #019ADA;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  will-change: background-color;
  text-align: left;
  font-family: museo-sans, sans-serif;
  font-weight: 700 !important;
}
@media screen and (min-width:980px) {
  .banner-link__toggle {
    height: 78px;
  }
}
.banner-link__toggle:hover, .banner-link__toggle:focus {
  background-color: #185E9E;
}
.banner-link__toggle:active {
  background-color: #175b9a;
}
.banner-link__toggle-icon {
  margin-left: auto;
}
.banner-link__info-box {
  position: relative;
  background: white;
  border: 2px solid #185E9E;
}
@media screen and (min-width:980px) {
  .banner-link__info-box {
    position: absolute;
    bottom: 10px;
  }
}
.banner-link__info-box--closing {
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height;
  transition-property: height;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  will-change: height;
}
.banner-link__info-box--closed {
  display: none;
}
.banner-link__content {
  padding: 1.875rem 1.25rem;
  color: #313131;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.banner-link__title {
  color: #019ADA;
  font-size: 20px;
  line-height: 1.25;
  padding-right: 1.5rem;
}
.banner-link__close {
  color: #019ADA;
  font-size: 20px;
  position: absolute;
  top: 1.875rem;
  right: 1.25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.block-grid-1 {
  display: block;
  width: 100%;
  margin: 0;
}
.block-grid-1 > * {
  margin-bottom: 20px;
}

.block-grid-2 {
  -webkit-box-pack: normal;
  -webkit-justify-content: normal;
      -ms-flex-pack: normal;
          justify-content: normal;
  -webkit-box-align: initial;
  -webkit-align-items: initial;
      -ms-flex-align: initial;
          align-items: initial;
  width: 100%;
}
.block-grid-2 > * {
  padding: 0px;
  margin: 0.5% 0.5% 1% 0.5%;
  -webkit-flex-basis: 49%;
      -ms-flex-preferred-size: 49%;
          flex-basis: 49%;
  max-width: 49%;
}

.block-grid-3 {
  -webkit-box-pack: normal;
  -webkit-justify-content: normal;
      -ms-flex-pack: normal;
          justify-content: normal;
  -webkit-box-align: initial;
  -webkit-align-items: initial;
      -ms-flex-align: initial;
          align-items: initial;
  width: 100%;
}
.block-grid-3 > * {
  padding: 0px;
  margin: 0.5% 0.8% 1.8% 0.8%;
  -webkit-flex-basis: 31%;
      -ms-flex-preferred-size: 31%;
          flex-basis: 31%;
  max-width: 31%;
}

.block-grid-4 {
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: initial;
  -webkit-align-items: initial;
      -ms-flex-align: initial;
          align-items: initial;
  width: 100%;
}
.block-grid-4 > * {
  padding: 0px;
  margin: 0.5% 0.4% 1% 0.8%;
  -webkit-flex-basis: 23.7%;
      -ms-flex-preferred-size: 23.7%;
          flex-basis: 23.7%;
  max-width: 23.7%;
}

.block-grid-5 {
  -webkit-box-pack: normal;
  -webkit-justify-content: normal;
      -ms-flex-pack: normal;
          justify-content: normal;
  -webkit-box-align: initial;
  -webkit-align-items: initial;
      -ms-flex-align: initial;
          align-items: initial;
  width: 100%;
}
.block-grid-5 > * {
  padding: 0px;
  -webkit-flex-basis: 19%;
      -ms-flex-preferred-size: 19%;
          flex-basis: 19%;
  max-width: 19%;
  margin: 0.5% 0.5% 1% 0.5%;
}

@media screen and (max-width:1199px) {
  .block-grid-3 {
    width: 100%;
  }
  .block-grid-3 > * {
    -webkit-flex-basis: 48%;
        -ms-flex-preferred-size: 48%;
            flex-basis: 48%;
    max-width: 48%;
  }

  .block-grid-4,
.block-grid-5 {
    -webkit-box-pack: normal;
    -webkit-justify-content: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
    width: 100%;
  }
  .block-grid-4 > *,
.block-grid-5 > * {
    margin: 0.5% 0.5% 1% 0.5%;
    -webkit-flex-basis: 48%;
        -ms-flex-preferred-size: 48%;
            flex-basis: 48%;
    max-width: 48%;
  }
}
@media screen and (max-width:979px) {
  .block-grid-4,
.block-grid-5 {
    -webkit-box-pack: normal;
    -webkit-justify-content: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
    width: 100%;
  }
  .block-grid-4 > *,
.block-grid-5 > * {
    margin: 0.5% 0.5% 1% 0.5%;
    -webkit-flex-basis: 49%;
        -ms-flex-preferred-size: 49%;
            flex-basis: 49%;
    max-width: 49%;
  }
}
@media screen and (max-width:767px) {
  .block-grid-2 {
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    width: 100%;
  }
  .block-grid-2 > * {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }

  .block-grid-4,
.block-grid-5 {
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    width: 100%;
  }
  .block-grid-4 > *,
.block-grid-5 > * {
    margin-bottom: 30px;
    -webkit-flex-basis: 48%;
        -ms-flex-preferred-size: 48%;
            flex-basis: 48%;
    max-width: 48%;
  }
}
@media screen and (max-width:639px) {
  .block-grid-3, .block-grid-4 {
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    width: 100%;
  }
  .block-grid-3 > *, .block-grid-4 > * {
    padding: 0px 10px;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }

  .block-grid-2,
.block-grid-3,
.block-grid-4,
.block-grid-5 {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.banner-announcement-container {
  background: #185E9E;
  padding: 20px 0;
  position: relative;
  display: none;
}
.banner-announcement-container h4 {
  padding-bottom: 0;
}
.banner-announcement-container .banner_announcement {
  margin-bottom: 0;
}
.banner-announcement-container .columns-10 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.banner-announcement-container h4 {
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.67px;
  line-height: 14px;
  padding-right: 50px;
}
.banner-announcement-container .read-more-white {
  font-size: 12px;
  letter-spacing: 0.67px;
  line-height: 14px;
}
.banner-announcement-container .close-banner {
  position: absolute;
  top: 18px;
  right: 10px;
  color: #313131;
}
.banner-announcement-container .close-banner i {
  color: white;
}
.banner-announcement-container .rotate {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*
 |----------------------------------------------------------------
 |  Site Utility
 |----------------------------------------------------------------
 */
.site-utility {
  padding: 15px 0;
  background: #F1F9FF;
}
.site-utility > .row {
  padding: 0 20px;
}
.site-utility .country-selector {
  margin-left: 20px;
}
.site-utility .columns-12 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-utility a {
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.67px;
  line-height: 14px;
  font-family: museo-sans, sans-serif;
  font-style: normal;
}
.site-utility .util-search {
  margin-right: 20px;
}
.site-utility .util-search form {
  position: relative;
}
.site-utility .util-search form input {
  max-height: 25px;
}
.site-utility .util-search form input::-webkit-input-placeholder {
  font-size: 13px;
}
.site-utility .util-search form input::-moz-placeholder {
  font-size: 13px;
}
.site-utility .util-search form input:-ms-input-placeholder {
  font-size: 13px;
}
.site-utility .util-search form input::-ms-input-placeholder {
  font-size: 13px;
}
.site-utility .util-search form input::placeholder {
  font-size: 13px;
}
.site-utility .util-search button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background: none;
  border: none;
}
.site-utility .util-search button:hover {
  cursor: pointer;
}

.utility-menu {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: right;
}
.utility-menu li {
  display: inline-block;
}
.utility-menu li + li {
  margin-left: 15px;
}
.utility-menu a {
  opacity: 1;
  color: #313131;
}
.utility-menu a:hover {
  opacity: 0.7;
}

/*
 |----------------------------------------------------------------
 |  Site Header
 |----------------------------------------------------------------
 */
.site-header {
  padding: 40px 0;
  background: #ffffff;
}
.site-header > .row {
  /* account for menu item padding */
  padding: 0 5px 0 20px;
}

/*
 |----------------------------------------------------------------
 |  Burger Trigger
 |----------------------------------------------------------------
 */
.fs-menu-trigger {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
.fs-menu-trigger:focus {
  outline: none;
}
@media screen and (min-width:980px) {
  .fs-menu-trigger {
    display: none !important;
  }
}

.fs-burger-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 40px;
  height: 29px;
  position: relative;
  color: black;
  margin-right: 10px;
}
.fs-burger-menu:before, .fs-burger-menu:after {
  content: "";
  height: 3px;
  background: currentColor;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
  -webkit-transition-delay: 250ms;
          transition-delay: 250ms;
  -webkit-transition-property: -webkit-transform opacity;
  transition-property: -webkit-transform opacity;
  transition-property: transform opacity;
  transition-property: transform opacity, -webkit-transform opacity;
}
.fs-burger-menu:after {
  width: 25px;
}
.menu-opened .fs-burger-menu:before {
  opacity: 0;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.menu-opened .fs-burger-menu:after {
  opacity: 0;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  width: 100%;
}

.burger-menu-text {
  margin-right: 10px;
  text-transform: uppercase;
  font-size: calc(14px + (14 - 14) * (100vw - 320px) / (1200 - 320));
  color: black;
  display: none;
}
@media screen and (min-width: 1200px) {
  .burger-menu-text {
    font-size: 14px;
  }
}

.burger-line {
  position: relative;
  background: transparent;
  height: 3px;
}
.burger-line:before, .burger-line:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 1px;
  background: currentColor;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.burger-line:after {
  width: 25px;
}
.menu-opened .burger-line:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-delay: 250ms;
          transition-delay: 250ms;
}
.menu-opened .burger-line:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition-delay: 250ms;
          transition-delay: 250ms;
  width: 100%;
}

.country-selector {
  z-index: 99 !important;
}
.country-selector .wglanguage-name, .country-selector .weglot-language a {
  border: 1px solid #185E9E;
  color: #185E9E;
  font-family: museo-sans, sans-serif;
  font-style: normal;
  padding: 2px;
  background: #F1F9FF;
  border-radius: 2px;
  font-size: 12px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 40px;
  width: 55px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width:980px) {
  .country-selector .wglanguage-name, .country-selector .weglot-language a {
    height: 30px;
    width: 40px;
  }
}
.country-selector .wgcurrent .wglanguage-name {
  background-color: #185E9E;
  color: #ffffff;
}
.country-selector .weglot-dropdown .wgcurrent::after {
  display: none !important;
}
.country-selector ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.country-selector ul li:before {
  display: none;
}
.country-selector a:focus {
  outline: 2px solid blue;
}

/*
 |----------------------------------------------------------------
 |  Navigation Column
 |----------------------------------------------------------------
 */
/*
 |----------------------------------------------------------------
 |  Menu
 |----------------------------------------------------------------
 */
.canadian-flag {
  background-image: url("../svg/flag_of_canada.svg");
  height: 15px;
  width: 30px;
  background-repeat: none;
  background-size: contain;
  margin-right: 10px;
}

.main-menu {
  padding: 0;
  margin: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}
.main-menu .button {
  color: white !important;
  font-size: 15px;
}
@media screen and (max-width:979px) {
  .main-menu .button {
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: inline;
  }
}
.main-menu > li {
  color: inherit;
  padding-right: 15px;
}
.main-menu > li + li {
  margin-left: 25px;
}
.main-menu > li > a {
  color: inherit;
  display: block;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 22px;
  font-weight: bold;
  font-family: museo-sans, sans-serif;
  font-style: normal;
  color: #313131;
}
.main-menu > li > a:hover {
  color: #019ADA;
}
.main-menu > .current-menu-item > a {
  border-bottom: 2px solid currentColor;
}
@media screen and (max-width:979px) {
  .main-menu li a.location-contact-link {
    padding: 16px 70px;
    background: #185E9E;
  }
  .main-menu li:not(.menu-item) {
    padding: 25px 0;
  }
}

/*
 |----------------------------------------------------------------
 |  Sub Menu
 |----------------------------------------------------------------
 */
@media screen and (min-width:980px) {
  .site-header .menu-item--hidden-lg {
    display: none;
  }
}
.site-header .menu-item-has-children {
  position: relative;
}
.site-header .menu-item-has-children .sub-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-header .menu-item-has-children a {
  padding: 5px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  background: #185E9E;
}
.site-header .menu-item-has-children a:hover {
  color: #019ADA;
}
.site-header .mobile-submenu-trigger {
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 25px;
  height: 25px;
  background: white;
  border-radius: 50%;
  -webkit-transition: 250ms;
  transition: 250ms;
  -webkit-transition-property: background, color, -webkit-transform;
  transition-property: background, color, -webkit-transform;
  transition-property: transform, background, color;
  transition-property: transform, background, color, -webkit-transform;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg);
}
.site-header .mobile-submenu-trigger.opened {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

/*
 |----------------------------------------------------------------
 |  None Mobile Menu
 |----------------------------------------------------------------
 */
@media screen and (min-width:980px) {
  .site-header .main-menu {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .site-header li a:not(.button)::after {
    content: "";
    background: #019ADA;
    display: block;
    margin: 0 auto;
    width: 0;
    height: 3px;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
  }
  .site-header li a:not(.button):hover {
    opacity: 0.8;
  }
  .site-header li a:not(.button):hover::after {
    width: 100%;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
  }
  .site-header .menu-item-has-children a {
    background: unset !important;
  }
  .site-header .menu-item-has-children > a:after {
    content: "\f0d7";
    margin-left: 5px;
    font-family: "Font Awesome 5 Pro";
    text-rendering: auto;
    font-smoothing: antialiased;
  }
  .site-header .menu-item-has-children .sub-menu {
    position: absolute;
    z-index: 10;
    min-width: 180px;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, 50px);
            transform: translate(-50%, 50px);
    -webkit-transition: 350ms;
    transition: 350ms;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    visibility: hidden;
    opacity: 1;
    -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
            box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  }
  .site-header .menu-item-has-children:last-child .sub-menu {
    right: 0;
    left: auto;
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
  }
  .site-header .menu-item-has-children:hover .sub-menu {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    visibility: visible;
    opacity: 1;
  }
  .site-header .menu-item-has-children:hover:last-child .sub-menu {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.site-header li.button {
  padding: 16px 48px;
  -webkit-box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.12);
}
@media screen and (max-width:979px) {
  .site-header li.button {
    padding: 16px 85px;
    margin: 20px 0;
  }
}

/*
 |----------------------------------------------------------------
 |  Mobile Menu
 |----------------------------------------------------------------
 */
@media screen and (max-width:979px) {
  .site-utility {
    display: none;
  }

  .site-header {
    position: relative;
  }
  .site-header .navigation-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .site-header .menu-item-has-children > a {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .site-header .menu-item-has-children .sub-menu {
    display: none;
  }
  .site-header .menu-item-has-children .sub-menu a {
    padding-left: 35px;
  }
  .site-header .mobile-submenu-trigger {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .main-menu {
    position: absolute;
    right: 0;
    top: 100px;
    min-width: 100%;
    z-index: 1000;
    padding-top: 20px;
    padding-bottom: 20px;
    background: white;
  }
}
@media screen and (max-width:979px) and (max-width:979px) {
  .main-menu {
    background: #F1F9FF !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 60px;
  }
  .main-menu li a {
    text-align: center;
  }
  .main-menu li.moved-item a {
    font-size: 14px;
    line-height: 10px;
    font-weight: 600;
  }
}
@media screen and (max-width:979px) {
  .main-menu > li {
    display: block;
  }
  .main-menu > li.menu-item--hidden-lg {
    -webkit-box-ordinal-group: 201;
    -webkit-order: 200;
        -ms-flex-order: 200;
            order: 200;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .main-menu > li + li {
    margin-left: 0;
  }
  .main-menu > li > a {
    font-size: 24px;
    line-height: 28px;
    color: #313131;
    padding: 10px 0px;
  }
  .main-menu > li > a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width:979px) {
  .main-menu > .current-menu-item > a {
    border-bottom: none;
  }
}
/*
 |----------------------------------------------------------------
 |  Site Page Content
 |----------------------------------------------------------------
 */
.error404 .page-banner .read-more {
  color: white;
  border-bottom: 1px solid white;
}
.error404 .entry-content {
  padding: 60px 10px 90px;
}

.no-image {
  -webkit-flex-basis: 83.3333333333% !important;
      -ms-flex-preferred-size: 83.3333333333% !important;
          flex-basis: 83.3333333333% !important;
  max-width: 83.3333333333% !important;
  padding-left: 0px !important;
}

.hidden {
  display: none;
}

.shadow_bottom {
  -webkit-box-shadow: 0px 20px 50px -20px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 20px 50px -20px rgba(0, 0, 0, 0.2);
}

/*
 |----------------------------------------------------------------
 |  Site Single Entry
 |----------------------------------------------------------------
 */
.entry-content {
  padding-bottom: calc(32px + (80 - 32) * (100vw - 320px) / (1200 - 320));
}
@media screen and (min-width: 1200px) {
  .entry-content {
    padding-bottom: 80px;
  }
}

.info-block {
  padding: 40px;
  background-color: #F3F6F6;
  margin-top: 40px;
  margin-bottom: 40px;
}

.compat-object-fit {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.compat-object-fit img {
  opacity: 0;
}

.wp-block-quote {
  margin-bottom: 0px;
}
.wp-block-quote p, .wp-block-quote .gform_description {
  font-size: 18px;
  font-style: italic;
  letter-spacing: 0;
  line-height: 30px;
  color: #185E9E;
}

.archive .post-selector-wrapper {
  padding: 0px 10px 90px;
}

/*
 |----------------------------------------------------------------
 |  Thank you / 404
 |----------------------------------------------------------------
 */
.page-template-_thank-you .site-main {
  text-align: center;
}
.page-template-_thank-you .subscribe,
.page-template-_thank-you .get_in_touch {
  text-align: center;
}

.single-post .site-main {
  background: #F1F9FF !important;
}

.related-posts {
  background: white;
}

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

.no-results {
  padding: 60px 0;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.no-results form {
  position: relative;
  max-width: 250px;
}
.no-results form input {
  max-height: 40px;
  width: 100%;
  border: 1px solid #185E9E;
  border-radius: 10px;
  padding-bottom: 10px;
}
.no-results form input::-webkit-input-placeholder {
  font-size: 15px;
  font-style: italic;
  color: #185E9E;
  opacity: 1;
}
.no-results form input::-moz-placeholder {
  font-size: 15px;
  font-style: italic;
  color: #185E9E;
  opacity: 1;
}
.no-results form input:-ms-input-placeholder {
  font-size: 15px;
  font-style: italic;
  color: #185E9E;
  opacity: 1;
}
.no-results form input::-ms-input-placeholder {
  font-size: 15px;
  font-style: italic;
  color: #185E9E;
  opacity: 1;
}
.no-results form input::placeholder {
  font-size: 15px;
  font-style: italic;
  color: #185E9E;
  opacity: 1;
}
.no-results button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background: none;
  border: none;
}
.no-results button i {
  font-weight: 300;
  color: #185E9E;
}
.no-results button:hover {
  cursor: pointer;
}

.footer-cta-single {
  position: relative;
}
.footer-cta-single::before {
  content: "";
  background: -webkit-gradient(linear, right top, left top, from(#98907C), color-stop(25%, rgba(152, 144, 124, 0)));
  background: linear-gradient(270deg, #98907C 0%, rgba(152, 144, 124, 0) 25%);
  position: absolute;
  width: 100%;
  height: 100%;
}
.footer-cta-single .row {
  max-width: 1600px !important;
}
.footer-cta-single .side-by-side-content {
  border-radius: 0;
}
.footer-cta-single .side-by-side-content i {
  padding-left: 20px;
}

.side-by-side-content {
  padding: 130px 100px 200px;
  border-radius: 5px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 1;
}
.side-by-side-content .content-column {
  text-align: center;
  color: #ffffff;
  max-width: 482px;
  text-align: left;
  margin-left: auto;
}
@media screen and (max-width:1199px) {
  .side-by-side-content .content-column {
    margin: 0 auto;
  }
}
@media screen and (min-width:1200px) {
  .side-by-side-content .content-column {
    margin-right: 133px;
  }
}

@media screen and (max-width:767px) {
  .side-by-side-content {
    padding: 70px 50px;
  }
  .side-by-side-content .columns-8 {
    -webkit-flex-basis: calc(12 / 12 * 100%);
        -ms-flex-preferred-size: calc(12 / 12 * 100%);
            flex-basis: calc(12 / 12 * 100%);
    max-width: calc(12 / 12 * 100%);
  }

  .footer-cta {
    display: block;
    padding: 10px;
  }
  .footer-cta .side-by-side-content {
    margin: 2% 1%;
    padding: 70px 50px 40px;
  }
}
.footer-newsletter {
  display: none;
  padding: 60px 10px 10px;
  background-color: #185E9E;
}
.footer-newsletter .heading-row h4 {
  color: white;
}
.footer-newsletter .heading-row p, .footer-newsletter .heading-row .gform_description {
  color: white;
}
.footer-newsletter form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.footer-newsletter form .ginput_container .large {
  font-size: 12px;
  font-style: italic;
}
.footer-newsletter form .gfield {
  padding: 0px;
  margin: 0.5% 0.5% 1% 0.5%;
  -webkit-flex-basis: 48%;
      -ms-flex-preferred-size: 48%;
          flex-basis: 48%;
  max-width: 48%;
}
.footer-newsletter form .gfield_label {
  text-transform: none !important;
  color: white;
}
.footer-newsletter form .gform_body {
  width: 74%;
}
.footer-newsletter form .gform_body [type=email],
.footer-newsletter form .gform_body [type=number],
.footer-newsletter form .gform_body [type=password],
.footer-newsletter form .gform_body [type=search],
.footer-newsletter form .gform_body [type=tel],
.footer-newsletter form .gform_body [type=text],
.footer-newsletter form .gform_body [type=url],
.footer-newsletter form .gform_body select,
.footer-newsletter form .gform_body textarea {
  background: #F1F9FF;
  border-radius: 3px;
  border: 1px solid white;
  color: white;
}
.footer-newsletter form .gform_body ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-newsletter form .gform_body ul > * {
  width: 32%;
  max-width: 32%;
}
.footer-newsletter form .gfield_label {
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-newsletter form .gform_footer {
  width: 26%;
}
.footer-newsletter form .gform_footer .button {
  border: none;
  background: transparent;
  font-size: 15px;
  font-family: museo-sans, sans-serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 18px;
  text-align: center;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-property: background-color, color, border, opacity, -webkit-transform;
  transition-property: background-color, color, border, opacity, -webkit-transform;
  transition-property: background-color, color, border, opacity, transform;
  transition-property: background-color, color, border, opacity, transform, -webkit-transform;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  text-shadow: none;
  outline: none;
  -webkit-transform: rotate(0.0000000001deg);
          transform: rotate(0.0000000001deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  color: white;
  background: #019ADA;
  border-radius: 2px;
  padding: 18px 47px;
  position: relative;
  top: 12px;
  border: none !important;
  top: 8px;
  height: 50px;
  min-height: 50px;
}
.footer-newsletter form .gform_footer .button i {
  margin-left: 5px;
  font-family: "Font Awesome 5 Pro";
  text-rendering: auto;
  font-smoothing: antialiased;
  position: relative;
  top: 1px;
}
.footer-newsletter form .gform_footer .button:hover {
  background: #185E9E;
}
@media screen and (max-width:1199px) {
  .footer-newsletter form {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .footer-newsletter .gform_body,
.footer-newsletter .gform_footer {
    width: 100% !important;
  }
}
@media screen and (max-width:767px) {
  .footer-newsletter .heading-row {
    display: block;
  }
  .footer-newsletter .heading-row h4,
.footer-newsletter .heading-row .p-wrapper {
    width: 100%;
    text-align: center;
  }
  .footer-newsletter form ul {
    display: block !important;
  }
  .footer-newsletter form ul > * {
    max-width: 90% !important;
    width: 90% !important;
    margin: 0 auto 20px !important;
  }
}

.site-footer {
  padding-top: 100px;
  padding-bottom: 85px;
  position: relative;
  /*
  |----------------------------------------------------------------
  |  Footer Menu
  |----------------------------------------------------------------
  */
}
.site-footer .flex {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.site-footer .fa-caret-down:before {
  display: none;
}
.site-footer #menu-privacy {
  padding-bottom: calc(40px + (130 - 40) * (100vw - 320px) / (1200 - 320));
}
@media screen and (min-width: 1200px) {
  .site-footer #menu-privacy {
    padding-bottom: 130px;
  }
}
.site-footer:after {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  height: 100%;
  width: 38%;
  content: "";
  background-color: #185E9E;
}
@media screen and (max-width:767px) {
  .site-footer .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .site-footer .row .columns-12 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .site-footer .row .footer-menu {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
    text-align: center;
  }
  .site-footer:after {
    display: none;
  }
  .site-footer .contact-privacy-menu {
    background: #185E9E;
    padding-bottom: 60px;
    margin-top: 30px;
  }
  .site-footer .columns-4 {
    padding-top: 40px;
  }
  .site-footer #menu-learn-more {
    padding-bottom: 40px;
  }
  .site-footer #menu-privacy li:first-of-type {
    padding-top: 20px;
  }
}
@media screen and (min-width:1200px) {
  .site-footer .columns-4.footer-menu {
    padding-left: 50px;
  }
}
.site-footer .footer-logo-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.site-footer .footer-logo-column p, .site-footer .footer-logo-column .gform_description {
  color: white;
}
.site-footer .footer-logo-column img {
  margin-bottom: 15px;
  max-width: 120px;
  margin-right: 20px;
}
@media screen and (max-width:767px) {
  .site-footer .footer-logo-grid {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
    padding-bottom: 40px;
  }
}
.site-footer .footer-logo-grid .block-grid-4 {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.site-footer .footer-logo-grid .logo-container {
  border: 1px solid white;
  border-radius: 5px;
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-footer .footer-logo-grid .logo-container img {
  max-height: 20px;
}
.site-footer .footer-menu li {
  padding-bottom: 20px;
  list-style-type: none;
  font-family: "Open Sans";
  font-weight: 600;
}
.site-footer .footer-menu ul {
  padding: 0px;
  margin: 0px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.site-footer .footer-menu h5 {
  color: #313131;
  padding-bottom: 10px;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 29px;
}
.site-footer .footer-menu a,
.site-footer .footer-menu p,
.site-footer .footer-menu .gform_description {
  color: #313131;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 18px;
}
.site-footer .footer-menu a:hover {
  color: #019ADA;
}
.site-footer .footer-menu.contact-privacy-menu {
  z-index: 1;
}
.site-footer .footer-menu.contact-privacy-menu a,
.site-footer .footer-menu.contact-privacy-menu p,
.site-footer .footer-menu.contact-privacy-menu .gform_description {
  color: white;
}
.site-footer .footer-menu.contact-privacy-menu a {
  font-weight: bold;
}
.site-footer .footer-menu #menu-insurance {
  padding-bottom: 40px;
}
.site-footer .footer-menu .sub-menu {
  padding-top: 20px;
}
.site-footer .footer-menu .sub-menu li {
  position: relative;
}
.site-footer .footer-menu .sub-menu li:before {
  position: absolute;
  content: "";
  top: 11px;
  background: #019ADA;
  width: 12px;
  height: 3px;
  opacity: 0.9;
}
.site-footer .footer-menu .sub-menu li a {
  padding-left: 23px;
}
.site-footer .footer-menu li.menu-item-has-children {
  padding-bottom: 0px;
}
.site-footer .footer-menu #menu-privacy {
  font-size: 14px;
}
.site-footer .footer-menu #menu-privacy a {
  padding-bottom: 2px;
}
.site-footer .footer-menu #menu-privacy li {
  font-family: museo-sans, sans-serif;
}
.site-footer .footer-menu .button.outline-one {
  border: 1px white solid !important;
  margin-top: 46px;
  margin-bottom: 130px;
}
.site-footer .footer-menu .button.outline-one:hover {
  color: #019ADA;
}
.site-footer .contact-item-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
.site-footer .contact-item-wrapper p, .site-footer .contact-item-wrapper .gform_description,
.site-footer .contact-item-wrapper a {
  padding-bottom: 0px;
  line-height: 18px;
  font-size: 14px;
  color: #ffffff;
}
.site-footer .contact-item-wrapper i {
  margin-right: 10px;
}
.site-footer .footer-menu .social-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-top: 10px;
}
.site-footer .footer-menu .social-list li {
  margin-right: 10px;
  border: 1px solid #019ADA;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 0px;
}
.site-footer .footer-menu .social-list li i,
.site-footer .footer-menu .social-list li a {
  color: #ffffff;
}
.site-footer .footer-menu .social-list li:hover i,
.site-footer .footer-menu .social-list li:hover a {
  color: #019ADA;
}

/*
 |----------------------------------------------------------------
 |  Copyrights
 |----------------------------------------------------------------
 */
.footer-copyright {
  padding-top: 10px;
}
.footer-copyright .row {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer-copyright p, .footer-copyright .gform_description,
.footer-copyright a {
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 15px;
}

.site-copyright {
  display: inline-block;
}

.privacy-menu {
  display: inline-block;
  padding: 0;
  margin: 0;
  list-style: none;
}
.privacy-menu li {
  display: inline-block;
  margin-left: 25px;
}
@media screen and (max-width:639px) {
  .privacy-menu li {
    margin-bottom: 20px;
  }
}

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

.site-credit {
  padding-top: 3px;
  padding-left: 20px;
}
.site-credit a {
  border-bottom: unset;
}

@media screen and (max-width:1199px) {
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width:767px) {
  .site-footer .footer-logo-column,
.site-footer .footer-menu-wrapper {
    -webkit-flex-basis: calc(11 / 12 * 100%);
        -ms-flex-preferred-size: calc(11 / 12 * 100%);
            flex-basis: calc(11 / 12 * 100%);
    max-width: calc(11 / 12 * 100%);
    margin: 0 auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 40px;
    text-align: center;
  }
  .site-footer .footer-logo-column .address-column,
.site-footer .footer-menu-wrapper .address-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .site-footer .footer-copyright .row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}
@media screen and (max-width:767px) {
  .footer-logo-grid .logo-container {
    margin-bottom: 20px;
  }
}
.site-footer .footer-menu #menu-privacy li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.site-footer .footer-menu #menu-privacy li::after {
  content: "";
  background: #96BEE2;
  display: block;
  margin: 0 auto;
  width: 0;
  height: 2px;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.site-footer .footer-menu #menu-privacy li:hover {
  opacity: 0.8;
}
.site-footer .footer-menu #menu-privacy li:hover::after {
  width: 100%;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
@media screen and (max-width:639px) {
  .site-footer .footer-menu #menu-privacy li {
    margin: 0 auto 20px;
    padding-bottom: 0px;
  }
}

.site-footer .menu-item-weglot {
  border: 1px solid white;
  border-radius: 3px;
  padding: 10px 20px 10px !important;
  margin-bottom: 10px;
}
.site-footer .menu-item-weglot:after {
  display: none !important;
}
.site-footer .menu-item-weglot:hover {
  background: white;
}
.site-footer .menu-item-weglot:hover a {
  color: #185E9E;
}
.site-footer .menu-item-weglot:hover:after {
  display: none !important;
}

.map-wrapper {
  max-width: 1200px;
}

@media screen and (min-width:1200px) {
  .contact-icon-post .icon-post {
    -webkit-flex-basis: 32%;
        -ms-flex-preferred-size: 32%;
            flex-basis: 32%;
    max-width: 32%;
  }
  .contact-icon-post .icon-post:nth-of-type(1n) {
    margin-left: 0;
  }
  .contact-icon-post .icon-post:nth-of-type(3n) {
    margin-right: 0;
  }
}

.contact-left {
  border: 1px solid rgba(24, 94, 158, 0.3);
}

.location-wrapper {
  margin-top: 70px;
}
.location-wrapper .location-post {
  border: 1px solid rgba(24, 94, 158, 0.3);
}
.location-wrapper .location-post .content-column {
  padding: 75px 0 40px 40px;
}
.location-wrapper .location-post .content-column h3 {
  font-size: 32px;
  color: #313131;
}
.location-wrapper .location-post .content-column .read-more {
  padding-top: 35px;
}

.region-info-wrapper {
  margin-top: 110px;
  margin-bottom: 130px;
}
.region-info-wrapper .block-grid-2 {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.region-info-wrapper .block-grid-2.buttons {
  margin-bottom: 60px;
}
@media screen and (max-width: 412px) {
  .region-info-wrapper .block-grid-2.buttons i {
    width: 60px;
    text-align: left;
  }
}
.region-info-wrapper .block-grid-2.buttons a {
  height: 60px;
  max-width: 400px;
}
.region-info-wrapper .contact-column {
  border: 1px solid rgba(24, 94, 158, 0.3);
  padding: 50px 40px 40px 50px;
  max-width: 480px;
  border-radius: 2px;
}
.region-info-wrapper .website-column {
  -webkit-flex-basis: calc(8 / 12 * 100%);
      -ms-flex-preferred-size: calc(8 / 12 * 100%);
          flex-basis: calc(8 / 12 * 100%);
  max-width: calc(8 / 12 * 100%);
  text-align: center;
}
.region-info-wrapper a.read-more {
  color: white;
  text-align: left;
}
.region-info-wrapper p, .region-info-wrapper .gform_description {
  padding-bottom: 10px;
}

.contact-item {
  padding-bottom: 23px;
}
.contact-item a {
  color: #313131;
  padding-left: 20px;
}
.contact-item p, .contact-item .gform_description {
  padding-bottom: 0;
  padding-left: 20px;
}
.contact-item i {
  font-size: 22px;
  color: #185E9E;
  -webkit-transform: translate(0px, -4px);
          transform: translate(0px, -4px);
}

.location-post .contact-item a {
  padding-left: 0px;
}

.ie11 * {
  min-width: 1px;
}
.ie11 body {
  width: 100%;
}
.ie11 body > * {
  min-width: 1px;
}
.ie11 html {
  width: 100%;
}
.ie11 html > * {
  min-width: 1px;
}
.ie11 .banner-content-box {
  width: 100%;
}
.ie11 select:not([multiple]) {
  background-image: none;
  padding-right: 0px;
}
.ie11 .button {
  max-width: 300px;
}
.ie11 .translation_cta .button, .ie11 .donate_now_cta .button {
  margin: 0 auto;
}
.ie11 .item {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.ie11 .row {
  width: 100%;
}
.ie11 .row > * {
  width: 100%;
}
.ie11 .banner-wrapper {
  width: 100%;
}
.ie11 p, .ie11 .gform_description {
  width: 100%;
}
.ie11 .block-grid-2,
.ie11 .block-grid-3,
.ie11 .block-grid-4 {
  width: 100%;
}
.ie11 .accordion-holder {
  width: 100%;
}
.ie11 .accordion-holder .type {
  text-align: right;
}
.ie11 .accordion-label p, .ie11 .accordion-label .gform_description {
  width: auto;
}
.ie11 .compat-object-fit {
  background-size: cover;
  background-position: center center;
}
.ie11 .compat-object-fit img {
  opacity: 0;
}
.ie11 .read-more {
  -webkit-box-shadow: none;
          box-shadow: none;
  min-width: auto;
  max-width: auto;
  min-height: auto;
  max-height: auto;
  width: auto;
  padding: 0;
}
.ie11 .label {
  max-width: auto;
  width: auto;
}
.ie11 select::-ms-expand {
  display: none;
}
.ie11 .single-post-cat-list a, .ie11 .single-post-cat-list p, .ie11 .single-post-cat-list .gform_description {
  width: auto;
  text-align: left;
}
.ie11 .single-post-cat-list .divider {
  width: 20px;
}
.ie11 .get_in_touch_form {
  height: 900px;
}
.ie11 .get_in_touch_form .contact-form-container .gform_fields .gfield {
  -webkit-flex-basis: 47% !important;
      -ms-flex-preferred-size: 47% !important;
          flex-basis: 47% !important;
}
.ie11 .get_in_touch_form .contact-form-container .gform_fields .gfield:last-of-type {
  -webkit-flex-basis: 100% !important;
      -ms-flex-preferred-size: 100% !important;
          flex-basis: 100% !important;
}
.ie11 .single-map-wrapper .content-column > * {
  max-height: 60px;
}
.ie11 #menu-item-1141 a {
  padding-top: 22px;
}
.ie11 .logo-grid .block-grid-3 .logo-container {
  max-width: 28%;
  -webkit-flex-basis: 28%;
      -ms-flex-preferred-size: 28%;
          flex-basis: 28%;
}
.ie11 .icon-post-wrapper .block-grid-2 .icon-post {
  max-width: 47%;
  -webkit-flex-basis: 47%;
      -ms-flex-preferred-size: 47%;
          flex-basis: 47%;
}

.overlap-top {
  margin-top: -130px !important;
}

.overlap-bottom {
  margin-bottom: -130px !important;
}

@media screen and (min-width:1200px) {
  .overlap-top-150 {
    margin-top: -200px !important;
  }

  .margin-top-135 {
    margin-top: -150px !important;
    padding-top: 220px !important;
  }
}
.shift-down-50 .row {
  position: relative;
  top: 50px;
}
.shift-down-50:after {
  bottom: -70px !important;
}
.shift-down-50 .contents {
  padding-bottom: 70px;
}

.shift-down-130 .row {
  position: relative;
  top: 130px;
  margin-top: -130px;
}
@media screen and (max-width:1199px) {
  .shift-down-130 .row {
    padding: 0 20px;
  }
}

.full-width-img .content-image-container {
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
  max-width: 100%;
}
@media screen and (max-width:979px) {
  .full-width-img .content-image-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
}
.full-width-img .content-image-container .content-column {
  padding: 30px 20px !important;
}
@media screen and (min-width:980px) {
  .full-width-img .content-image-container .content-column, .full-width-img .content-image-container .image-column {
    -webkit-flex-basis: 50% !important;
        -ms-flex-preferred-size: 50% !important;
            flex-basis: 50% !important;
    max-width: 50% !important;
  }
}
@media screen and (min-width:1200px) {
  .full-width-img .content-image-container .content-column {
    padding: 80px 0 0px 80px !important;
  }
  .full-width-img .content-image-container .contents {
    padding-right: 75px;
  }
}
.full-width-img .image-column img {
  height: unset;
  width: 100%;
  padding-bottom: 0 !important;
}

.content-padding-bottom .content-image-container {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width:639px) {
  .content-padding-bottom.content-image {
    padding-bottom: 70px !important;
  }
}
@media screen and (min-width:1200px) {
  .content-padding-bottom .image-column img {
    height: 650px !important;
    width: 480px !important;
  }
  .content-padding-bottom .content-column {
    padding-left: 33px !important;
  }
}
.content-padding-bottom.right-image-content .background-box-1:after {
  left: 41% !important;
}

.width-1350 {
  max-width: 1350px;
  margin: 0 auto;
}

.white-text {
  color: white;
}

@media screen and (min-width:1200px) {
  .our-values {
    padding-bottom: 420px !important;
  }
}

@media screen and (min-width:1200px) {
  .shift-up {
    margin-top: -460px;
  }
}

@media screen and (max-width:979px) {
  .full-width-tablet {
    padding-bottom: 80px !important;
  }
  .full-width-tablet .content-image-container {
    -webkit-flex-basis: 91.6666666667% !important;
        -ms-flex-preferred-size: 91.6666666667% !important;
            flex-basis: 91.6666666667% !important;
    max-width: 91.6666666667% !important;
  }
}

.centered-intro.top-radius {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.centered-intro.bottom-radius {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.contact-icon-post .columns-12 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width:1200px) {
  .pull-down-180 {
    margin-top: -180px;
  }
}

@media screen and (min-width:1200px) {
  .width-940 .headings, .width-940 .body {
    max-width: 940px;
    margin: 0 auto;
  }
  .width-940 .headings p, .width-940 .headings .gform_description, .width-940 .body p, .width-940 .body .gform_description {
    max-width: 940px !important;
  }
}
.width-940 .headings h4 {
  color: #185E9E !important;
}

.no-padding-top .centered-intro {
  padding-top: 0px !important;
}

.icon-padding-top .icon-post {
  padding-top: 90px;
}
.icon-padding-top .icon-post h4 {
  color: #185E9E;
}

.insurance-icon-post .icon-post h4 {
  color: #019ADA;
}
.insurance-icon-post .icon-post:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.insurance-icon-post .icon-post img {
  height: 50px;
}

@media screen and (min-width:1200px) {
  .video-content .image-column {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
  .video-content .image-column img {
    height: 580px;
    min-width: 580px;
  }
  .video-content .content-image-container {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
}

.padding-bottom-130 {
  padding-bottom: 130px !important;
}

.dark-border .icon-post {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.overflow-bg {
  position: relative;
}
.overflow-bg::after {
  content: "";
  background: #F1F9FF;
  width: 100%;
  height: 40%;
  position: absolute;
}

.side-icons h6 {
  display: none;
}
.side-icons .social-share {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.side-icons .social-share .social-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.side-icons .social-share .social-list li {
  margin: 0 0 10px 0;
}

.single-post-cat-list {
  margin-bottom: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.single-post-cat-list .divider {
  margin-left: 5px;
  margin-right: 5px;
  color: #185E9E;
}
.single-post-cat-list h6 {
  padding: 5px 0;
  color: #019ADA;
}
.single-post-cat-list .single-post-cat-link {
  padding-right: 1rem;
}
.single-post-cat-list .single-post-date {
  position: relative;
}
.single-post-cat-list .single-post-date::before {
  content: "|";
  position: absolute;
  left: -0.625rem;
}

.post-selector-wrapper .content-column {
  padding: 20px;
}
.post-selector-wrapper .content-column h4:hover {
  color: #019ADA;
}
.post-selector-wrapper .content-column h4 a {
  font-family: museo-sans, sans-serif;
  font-weight: 700;
}
.post-selector-wrapper .image-column img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width:769px) {
  .post-selector-wrapper .block-grid-1 .loop-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .post-selector-wrapper .block-grid-1 .loop-item .image-column,
.post-selector-wrapper .block-grid-1 .loop-item .content-column {
    -webkit-flex-basis: calc(6 / 12 * 100%);
        -ms-flex-preferred-size: calc(6 / 12 * 100%);
            flex-basis: calc(6 / 12 * 100%);
    max-width: calc(6 / 12 * 100%);
  }
  .post-selector-wrapper .block-grid-1 .loop-item .content-column h4 {
    font-size: 32px;
    line-height: 44px;
  }
  .post-selector-wrapper .block-grid-1 .loop-item .image-column {
    height: 420px;
  }
  .post-selector-wrapper .block-grid-1 .loop-item .image-column img {
    height: 420px;
    width: 100%;
  }
  .post-selector-wrapper .block-grid-1 .content-column {
    padding: 40px;
  }
  .post-selector-wrapper .block-grid-1 img {
    height: 520px;
  }
  .post-selector-wrapper .block-grid-2 img {
    height: 320px;
  }
  .post-selector-wrapper .block-grid-3 img {
    height: 220px;
  }
  .post-selector-wrapper .block-grid-4 img {
    height: 180px;
  }
}

.related-posts .left_intro {
  padding-bottom: 20px;
}
.related-posts .left_intro .row {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.related-posts .left_intro .content-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.related-posts .left_intro .content-column p, .related-posts .left_intro .content-column .gform_description {
  width: 80%;
}
.related-posts .left_intro .content-column .cta-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width:767px) {
  .related-posts .left_intro {
    padding-left: 0;
  }
  .related-posts .left_intro .content-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .related-posts .left_intro .content-column p, .related-posts .left_intro .content-column .gform_description {
    width: 100%;
  }
  .related-posts .left_intro .content-column .cta-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .related-posts .left_intro .content-column .cta-container .button {
    margin-top: 0;
  }
}
.related-posts .post-selector-wrapper {
  padding-bottom: 120px;
}

.background-post-wrapper .loop-content {
  padding: 250px 60px 40px 40px;
  z-index: 0;
  position: relative;
  border-radius: 5px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background-size: cover;
  background-repeat: no-repeat;
}
.background-post-wrapper .loop-content:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
  -webkit-transition-property: background, opacity, -webkit-transform;
  transition-property: background, opacity, -webkit-transform;
  transition-property: background, transform, opacity;
  transition-property: background, transform, opacity, -webkit-transform;
  z-index: -1;
}
.background-post-wrapper .loop-content:hover {
  z-index: 0;
  position: relative;
}
.background-post-wrapper .loop-content:hover:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
  -webkit-transition-property: background, opacity, -webkit-transform;
  transition-property: background, opacity, -webkit-transform;
  transition-property: background, transform, opacity;
  transition-property: background, transform, opacity, -webkit-transform;
  z-index: -1;
}
.background-post-wrapper .loop-content .content-column {
  z-index: 100;
}
.background-post-wrapper .loop-content .content-column a,
.background-post-wrapper .loop-content .content-column p,
.background-post-wrapper .loop-content .content-column .gform_description,
.background-post-wrapper .loop-content .content-column h3,
.background-post-wrapper .loop-content .content-column h4 {
  color: #ffffff;
}

.loop-content.provider {
  padding: 2rem;
  border-radius: 3px;
  border: 1px solid rgba(24, 94, 158, 0.3);
  background-color: white;
  position: relative;
  bottom: 0px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.loop-content.provider:hover {
  bottom: 10px;
  -webkit-box-shadow: 0 22px 24px 0 rgba(1, 154, 218, 0.07);
          box-shadow: 0 22px 24px 0 rgba(1, 154, 218, 0.07);
}
.loop-content.provider .content-column {
  height: 100%;
}
.loop-content.provider .content-column a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.loop-content.provider .content-column a img {
  height: 130px;
  -o-object-fit: contain;
     object-fit: contain;
}
.loop-content.provider .content-column a .read-more {
  margin-top: auto;
}

.blog .footer-newsletter, .page-template-_posts .footer-newsletter {
  margin-top: 130px;
  display: none;
}

.single-blog-banner {
  padding-top: 80px;
  margin-bottom: 280px;
  background: #019ADA;
}
.single-blog-banner .content-column {
  color: #ffffff;
}
.single-blog-banner .content-column h6 {
  color: #ffffff;
}
.single-blog-banner .image-banner {
  height: 600px;
  width: 100%;
  background-size: cover;
  position: relative;
  top: 180px;
  margin-top: -160px;
  background-position: center;
}

.single-post .social-share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-post .social-share h6 {
  padding-bottom: 0px;
  margin-right: 10px;
  font-size: 16px;
  letter-spacing: 0.55px;
  line-height: 24px;
  text-transform: initial;
}
.single-post .social-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-top: 0px;
}
.single-post .social-list li {
  margin-right: 10px;
  border: 1px solid #019ADA;
  border-radius: 50%;
  width: 51px;
  height: 51px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 0px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.single-post .social-list li i,
.single-post .social-list li a {
  color: #019ADA;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 25px;
  height: 25px;
}
.single-post .social-list li:hover {
  border: 1px solid #185E9E;
}
.single-post .social-list li:hover i,
.single-post .social-list li:hover a {
  color: #185E9E;
}
.single-post .single-post-content {
  margin-bottom: 130px;
  position: relative;
}
.single-post .single-post-content img {
  max-width: 100%;
  height: auto;
}
.single-post .single-post-content .image-description {
  font-size: 16px;
  font-style: italic;
  letter-spacing: 0;
  line-height: 28px;
}
.single-post .single-post-content h4 {
  color: #185E9E;
}
.single-post .single-post-content p.padding-bottom, .single-post .single-post-content .padding-bottom.gform_description {
  padding-bottom: 60px;
}
.single-post .blog_related_posts_intro {
  padding-bottom: 30px;
  padding-top: 60px;
}

.social-share {
  color: #185E9E;
}

.sidebar-social {
  position: absolute;
  top: 0;
  right: 0;
}
.sidebar-social ul.social-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sidebar-social ul li {
  margin-bottom: 15px;
}

.flex-accordion {
  margin-bottom: 30px;
}
@media screen and (max-width:767px) {
  .flex-accordion {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.flex-accordion h4 {
  line-height: 42px;
}
.flex-accordion p, .flex-accordion .gform_description {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.flex-accordion-text {
  margin-top: 15px;
  margin-left: 20px;
  max-width: 560px;
}
@media screen and (min-width:769px) {
  .flex-accordion-text {
    margin-top: 45px;
    margin-left: 40px;
  }
}

@media screen and (min-width:980px) {
  .home .split-highlights-wrapper .columns-6 {
    padding-top: 10px !important;
  }
}
.home .post-selector-wrapper .block-grid-3 {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width:1199px) {
  .home .post-selector-wrapper .block-grid-3 {
    -webkit-box-pack: unset;
    -webkit-justify-content: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
}
@media screen and (min-width:1200px) {
  .home .left-aligned-intro .row {
    padding: 0 20px;
  }
}
.home .white-background-highlights .highlight-post {
  border-bottom: none !important;
}
.home .highlights-posts-wrapper.white-background-highlights .block-grid-1 .highlight-post .highlights-content {
  border-bottom: none !important;
}
.home .highlights-posts-wrapper.white-background-highlights .block-grid-1 .highlight-post .highlights-content p, .home .highlights-posts-wrapper.white-background-highlights .block-grid-1 .highlight-post .highlights-content .gform_description {
  padding-bottom: 4px;
}
.home .highlights-posts-wrapper.white-background-highlights .block-grid-1 .highlight-post .highlights-content h4 {
  color: #313131;
}
.home .intro-btn .centered-intro {
  padding-top: 0;
}
.home .intro-btn .centered-intro .headings {
  display: none;
}

.home-intro .row {
  position: relative;
}
@media screen and (min-width:1200px) {
  .home-intro .row .button {
    position: absolute;
    right: 0px;
    top: 10px;
  }
}
@media screen and (max-width:1199px) {
  .home-intro .row .columns-3 {
    -webkit-flex-basis: calc(10 / 12 * 100%);
        -ms-flex-preferred-size: calc(10 / 12 * 100%);
            flex-basis: calc(10 / 12 * 100%);
    max-width: calc(10 / 12 * 100%);
  }
}

.page-template-_posts {
  background: #F1F9FF;
}
.page-template-_posts .post-selector-wrapper .columns-12.block-grid-1 .loop-item {
  margin-bottom: 60px;
  background: white;
}
.page-template-_posts .post-selector-wrapper .columns-12.block-grid-1 .loop-item .image-column img {
  height: 100% !important;
  width: 100% !important;
}
.blog-cats {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 20px;
  padding-bottom: 40px;
}
.blog-cats ul {
  margin: 0;
  padding-left: 0;
}
@media screen and (min-width:640px) {
  .blog-cats ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-left: 10px;
  }
}
.blog-cats ul li {
  padding-top: 20px;
  list-style: none;
}
@media screen and (max-width:639px) {
  .blog-cats ul li {
    margin: 0 auto;
  }
}
@media screen and (min-width:640px) {
  .blog-cats ul li {
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center;
    margin-right: 30px;
  }
}
.blog-cats ul li:before {
  display: none;
}
.blog-cats ul li:first-of-type a {
  border-bottom: none;
}

.loop-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  position: relative;
  bottom: 0px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.loop-item:hover {
  bottom: 10px;
  -webkit-box-shadow: 0 22px 24px 0 rgba(1, 154, 218, 0.07);
          box-shadow: 0 22px 24px 0 rgba(1, 154, 218, 0.07);
}
.loop-item h4.loop-title {
  font-size: 26px !important;
  letter-spacing: 0;
  line-height: 31px;
  padding-bottom: 20px;
}
@media screen and (min-width:980px) {
  .loop-item .image-column img {
    height: 340px !important;
  }
}

.media-slider-loop-item img {
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
}
.media-slider-loop-item h4 {
  color: #185E9E;
  padding: 20px 0;
}

.anvil-media-slider-wrapper {
  position: relative;
}
.anvil-media-slider-wrapper .slick-track {
  margin-bottom: 60px;
}
.anvil-media-slider-wrapper .slick-dots {
  margin: 0;
  position: absolute;
  top: 94%;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width:639px) {
  .anvil-media-slider-wrapper .slick-arrow {
    top: 98%;
  }
  .anvil-media-slider-wrapper.testimonials-wrapper .prevArrow {
    right: calc(49% + 65px) !important;
  }
  .anvil-media-slider-wrapper.testimonials-wrapper .nextArrow {
    right: 11% !important;
  }
}
@media screen and (min-width:640px) {
  .anvil-media-slider-wrapper .slick-arrow {
    top: 96%;
    left: 1%;
  }
  .anvil-media-slider-wrapper .slick-arrow.nextArrow {
    left: 12%;
  }
  .anvil-media-slider-wrapper .slick-dots {
    top: 103%;
    left: 40%;
  }
}
@media screen and (min-width:980px) {
  .anvil-media-slider-wrapper .slick-dots {
    top: 106%;
    left: 29%;
  }
}
@media (min-width: 1200px) {
  .anvil-media-slider-wrapper .slick-dots {
    left: 16%;
  }
  .anvil-media-slider-wrapper .slick-arrow.nextArrow {
    left: 8%;
  }
}

.single-post-cat-list {
  margin-bottom: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.single-post-cat-list .divider {
  margin-left: 5px;
  margin-right: 5px;
  color: #185E9E;
}
.single-post-cat-list h6 {
  padding: 5px 0;
  color: #019ADA;
}
.single-post-cat-list .single-post-cat-link {
  padding-right: 1rem;
}
.single-post-cat-list .single-post-date {
  position: relative;
}
.single-post-cat-list .single-post-date::before {
  content: "|";
  position: absolute;
  left: -0.625rem;
}

.post-selector-wrapper .content-column {
  padding: 20px;
}
.post-selector-wrapper .content-column h4:hover {
  color: #019ADA;
}
.post-selector-wrapper .content-column h4 a {
  font-family: museo-sans, sans-serif;
  font-weight: 700;
}
.post-selector-wrapper .image-column img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width:769px) {
  .post-selector-wrapper .block-grid-1 .loop-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .post-selector-wrapper .block-grid-1 .loop-item .image-column,
.post-selector-wrapper .block-grid-1 .loop-item .content-column {
    -webkit-flex-basis: calc(6 / 12 * 100%);
        -ms-flex-preferred-size: calc(6 / 12 * 100%);
            flex-basis: calc(6 / 12 * 100%);
    max-width: calc(6 / 12 * 100%);
  }
  .post-selector-wrapper .block-grid-1 .loop-item .content-column h4 {
    font-size: 32px;
    line-height: 44px;
  }
  .post-selector-wrapper .block-grid-1 .loop-item .image-column {
    height: 420px;
  }
  .post-selector-wrapper .block-grid-1 .loop-item .image-column img {
    height: 420px;
    width: 100%;
  }
  .post-selector-wrapper .block-grid-1 .content-column {
    padding: 40px;
  }
  .post-selector-wrapper .block-grid-1 img {
    height: 520px;
  }
  .post-selector-wrapper .block-grid-2 img {
    height: 320px;
  }
  .post-selector-wrapper .block-grid-3 img {
    height: 220px;
  }
  .post-selector-wrapper .block-grid-4 img {
    height: 180px;
  }
}

.related-posts .left_intro {
  padding-bottom: 20px;
}
.related-posts .left_intro .row {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.related-posts .left_intro .content-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.related-posts .left_intro .content-column p, .related-posts .left_intro .content-column .gform_description {
  width: 80%;
}
.related-posts .left_intro .content-column .cta-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width:767px) {
  .related-posts .left_intro {
    padding-left: 0;
  }
  .related-posts .left_intro .content-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .related-posts .left_intro .content-column p, .related-posts .left_intro .content-column .gform_description {
    width: 100%;
  }
  .related-posts .left_intro .content-column .cta-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .related-posts .left_intro .content-column .cta-container .button {
    margin-top: 0;
  }
}
.related-posts .post-selector-wrapper {
  padding-bottom: 120px;
}

.background-post-wrapper .loop-content {
  padding: 250px 60px 40px 40px;
  z-index: 0;
  position: relative;
  border-radius: 5px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background-size: cover;
  background-repeat: no-repeat;
}
.background-post-wrapper .loop-content:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
  -webkit-transition-property: background, opacity, -webkit-transform;
  transition-property: background, opacity, -webkit-transform;
  transition-property: background, transform, opacity;
  transition-property: background, transform, opacity, -webkit-transform;
  z-index: -1;
}
.background-post-wrapper .loop-content:hover {
  z-index: 0;
  position: relative;
}
.background-post-wrapper .loop-content:hover:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
  -webkit-transition-property: background, opacity, -webkit-transform;
  transition-property: background, opacity, -webkit-transform;
  transition-property: background, transform, opacity;
  transition-property: background, transform, opacity, -webkit-transform;
  z-index: -1;
}
.background-post-wrapper .loop-content .content-column {
  z-index: 100;
}
.background-post-wrapper .loop-content .content-column a,
.background-post-wrapper .loop-content .content-column p,
.background-post-wrapper .loop-content .content-column .gform_description,
.background-post-wrapper .loop-content .content-column h3,
.background-post-wrapper .loop-content .content-column h4 {
  color: #ffffff;
}

.blog .footer-newsletter, .page-template-_posts .footer-newsletter {
  margin-top: 130px;
  display: none;
}

.single-blog-banner {
  padding-top: 80px;
  margin-bottom: 280px;
  background: #019ADA;
}
.single-blog-banner .content-column {
  color: #ffffff;
}
.single-blog-banner .content-column h6 {
  color: #ffffff;
}
.single-blog-banner .image-banner {
  height: 600px;
  width: 100%;
  background-size: cover;
  position: relative;
  top: 180px;
  margin-top: -160px;
  background-position: center;
}

.single-post .social-share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-post .social-share h6 {
  padding-bottom: 0px;
  margin-right: 10px;
  font-size: 16px;
  letter-spacing: 0.55px;
  line-height: 24px;
  text-transform: initial;
}
.single-post .social-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-top: 0px;
}
.single-post .social-list li {
  margin-right: 10px;
  border: 1px solid #019ADA;
  border-radius: 50%;
  width: 51px;
  height: 51px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 0px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.single-post .social-list li i,
.single-post .social-list li a {
  color: #019ADA;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 25px;
  height: 25px;
}
.single-post .social-list li:hover {
  border: 1px solid #185E9E;
}
.single-post .social-list li:hover i,
.single-post .social-list li:hover a {
  color: #185E9E;
}
.single-post .single-post-content {
  margin-bottom: 130px;
  position: relative;
}
.single-post .single-post-content img {
  max-width: 100%;
  height: auto;
}
.single-post .single-post-content .image-description {
  font-size: 16px;
  font-style: italic;
  letter-spacing: 0;
  line-height: 28px;
}
.single-post .single-post-content h4 {
  color: #185E9E;
}
.single-post .single-post-content p.padding-bottom, .single-post .single-post-content .padding-bottom.gform_description {
  padding-bottom: 60px;
}
.single-post .blog_related_posts_intro {
  padding-bottom: 30px;
  padding-top: 60px;
}

.social-share {
  color: #185E9E;
}

.sidebar-social {
  position: absolute;
  top: 0;
  right: 0;
}
.sidebar-social ul.social-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sidebar-social ul li {
  margin-bottom: 15px;
}

.event-page-wrapper {
  background: #F1F9FF;
}
.event-page-wrapper #locations-map {
  width: 100%;
  top: 50px;
  height: 800px;
  right: -30px;
}
.event-page-wrapper .columns-12 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.event-page-wrapper .columns-12 .wyswyg {
  padding-right: 40px;
}
.event-page-wrapper .columns-12 .details {
  border-radius: 3px;
  padding: 30px 60px 60px 160px;
}
.event-page-wrapper .columns-12 .details i {
  color: #019ADA;
}
.event-page-wrapper .columns-12 .details p, .event-page-wrapper .columns-12 .details .gform_description, .event-page-wrapper .columns-12 .details h4, .event-page-wrapper .columns-12 .details h5, .event-page-wrapper .columns-12 .details a {
  color: black;
}
.event-page-wrapper .columns-12 .details .item-title {
  font-family: open-sans, sans-serif;
  margin-right: 15px;
}
.event-page-wrapper .columns-12 .details h4 {
  padding-bottom: 10px;
  margin-bottom: 14px;
}
.event-page-wrapper .columns-12 .details h5, .event-page-wrapper .columns-12 .details a {
  padding-bottom: 20px;
}
.event-page-wrapper .columns-12 .details .detail-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.event-page-wrapper .columns-12 .details .detail-item i {
  width: 20px;
  position: relative;
  top: 9px;
  margin-right: 5px;
}
.event-page-wrapper .columns-12 .details .organizer a {
  padding-bottom: 0px;
}
.event-page-wrapper .columns-12 .details .organizer p, .event-page-wrapper .columns-12 .details .organizer .gform_description {
  padding-bottom: 5px;
}
.event-page-wrapper .columns-12 .details .registration {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.event-page-wrapper .columns-12 .details .registration .item-title {
  padding-bottom: 5px;
}
.event-page-wrapper .button {
  margin-top: 40px;
  width: 100%;
}

.related-events-block {
  padding-top: 70px;
  padding-bottom: 90px;
  margin-top: 90px;
  background: #3d6381;
}
.related-events-block .centererd_intro {
  margin-bottom: 40px;
}
.related-events-block .loop-hidden {
  background: white;
}

.single-provider .provider-logo img {
  max-width: 220px;
}
.single-provider table {
  border-color: #019ADA;
}
.single-provider table th, .single-provider table td, .single-provider table tr {
  font-family: open-sans, sans-serif;
}
.single-provider table th {
  color: #ffffff;
}

@media screen and (max-width:979px) {
  .centered-intro {
    padding-top: 20px !important;
  }
}
.centered-intro .content-container {
  text-align: center;
}
@media screen and (max-width:1199px) {
  .centered-intro .content-container {
    -webkit-flex-basis: calc(10 / 12 * 100%);
        -ms-flex-preferred-size: calc(10 / 12 * 100%);
            flex-basis: calc(10 / 12 * 100%);
    max-width: calc(10 / 12 * 100%);
    margin: 0 auto;
  }
}
.centered-intro .cta-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
@media screen and (min-width:980px) {
  .centered-intro {
    padding-top: 70px;
  }
}

.body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width:1199px) {
  .body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width:1200px) {
  .body {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .body p, .body .gform_description {
    max-width: 780px;
  }
  .body .cta-column {
    text-align: end;
  }
}

.left-aligned-intro .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width:1199px) {
  .left-aligned-intro .row {
    -webkit-flex-basis: calc(10 / 12 * 100%);
        -ms-flex-preferred-size: calc(10 / 12 * 100%);
            flex-basis: calc(10 / 12 * 100%);
    max-width: calc(10 / 12 * 100%);
  }
  .left-aligned-intro .row .main {
    -webkit-flex-basis: calc(12 / 12 * 100%);
        -ms-flex-preferred-size: calc(12 / 12 * 100%);
            flex-basis: calc(12 / 12 * 100%);
    max-width: calc(12 / 12 * 100%);
  }
}
.left-aligned-intro .body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width:639px) {
  .left-aligned-intro .body {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .left-aligned-intro .body .contents {
    -webkit-flex-basis: calc(12 / 12 * 100%);
        -ms-flex-preferred-size: calc(12 / 12 * 100%);
            flex-basis: calc(12 / 12 * 100%);
    max-width: calc(12 / 12 * 100%);
    text-align: center;
  }
  .left-aligned-intro .body .cta-column {
    -webkit-flex-basis: calc(12 / 12 * 100%);
        -ms-flex-preferred-size: calc(12 / 12 * 100%);
            flex-basis: calc(12 / 12 * 100%);
    max-width: calc(12 / 12 * 100%);
  }
  .left-aligned-intro .body .cta-column .cta-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.left-aligned-intro .content-container {
  text-align: left;
  position: relative;
}
@media screen and (max-width:1199px) {
  .left-aligned-intro .content-container {
    -webkit-flex-basis: calc(11 / 12 * 100%);
        -ms-flex-preferred-size: calc(11 / 12 * 100%);
            flex-basis: calc(11 / 12 * 100%);
    max-width: calc(11 / 12 * 100%);
    text-align: center;
    margin: 0 auto;
  }
  .left-aligned-intro .content-container .cta-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}
.left-aligned-intro .content-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width:1200px) {
  .left-aligned-intro .contents p, .left-aligned-intro .contents .gform_description {
    max-width: 78%;
  }
}

@media screen and (min-width:769px) {
  .split-intro .content-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .split-intro .content-container .headings {
    -webkit-flex-basis: calc(5 / 12 * 100%);
        -ms-flex-preferred-size: calc(5 / 12 * 100%);
            flex-basis: calc(5 / 12 * 100%);
    max-width: calc(5 / 12 * 100%);
  }
  .split-intro .content-container .contents {
    -webkit-flex-basis: calc(7 / 12 * 100%);
        -ms-flex-preferred-size: calc(7 / 12 * 100%);
            flex-basis: calc(7 / 12 * 100%);
    max-width: calc(7 / 12 * 100%);
    padding-top: 0px;
    padding-left: 30px;
  }
}
@media screen and (max-width:1199px) {
  .split-intro .content-container {
    -webkit-flex-basis: calc(11 / 12 * 100%);
        -ms-flex-preferred-size: calc(11 / 12 * 100%);
            flex-basis: calc(11 / 12 * 100%);
    max-width: calc(11 / 12 * 100%);
    text-align: center;
    margin: 0 auto;
  }
  .split-intro .content-container .cta-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

.split-intro h6, .split-intro h2, .centered-intro h6, .centered-intro h2 {
  margin: 0px;
}
.split-intro h2, .centered-intro h2 {
  padding-bottom: 20px;
}
.split-intro h6, .centered-intro h6 {
  padding-bottom: 10px;
}
.split-intro .cta-container, .centered-intro .cta-container {
  margin-top: 20px;
}
@media screen and (max-width:1199px) {
  .split-intro, .centered-intro {
    display: block;
  }
}

.blue-background-intro {
  max-width: 1350px;
  margin: 0 auto;
}
.blue-background-intro .headings h2 {
  color: white !important;
}
.blue-background-intro .contents p, .blue-background-intro .contents .gform_description {
  color: white !important;
}

@media screen and (min-width:769px) {
  .content-image {
    padding-top: 70px;
  }
}
.content-image .content-image-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 10;
}
@media screen and (max-width:1199px) {
  .content-image .content-image-container {
    padding: 0 20px;
  }
}
.content-image .contents img {
  max-width: 100%;
}
.content-image .content-column {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}
.content-image .image-column img {
  z-index: 100;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
}
@media screen and (max-width:979px) {
  .content-image .image-column img {
    max-height: 450px;
  }
}
@media screen and (max-width:767px) {
  .content-image p, .content-image .gform_description {
    text-align: start;
  }
}
.content-image h6 {
  color: #019ADA;
}

.full-width-content-image .row {
  max-width: 1600px;
  margin: 0 auto;
}

.right-image-content .content-image-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.right-image-content .content-image-container .content-column {
  padding: 60px 60px 80px 40px;
}
@media screen and (min-width:1200px) {
  .right-image-content .content-image-container .content-column {
    padding-left: 0 !important;
  }
}
.right-image-content .image-column {
  position: relative;
}
@media screen and (min-width:1200px) {
  .right-image-content .image-column img {
    height: 600px;
    width: 480px;
  }
}
.right-image-content .image-column .secondary-image {
  height: 400px;
  width: 400px;
  position: absolute;
  right: -40%;
  top: 10%;
}

.left-image-content .content-image-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.left-image-content .content-image-container .content-column {
  padding: 60px 40px 80px 40px;
}
@media screen and (min-width:1200px) {
  .left-image-content .content-image-container .content-column {
    padding-right: 0 !important;
  }
}
.left-image-content .content-image-container .content-column h6 {
  padding-bottom: 10px;
}
.left-image-content .image-column {
  position: relative;
}
@media screen and (min-width:1200px) {
  .left-image-content .image-column img {
    height: 600px;
    width: 480px;
  }
}
.left-image-content .image-column .secondary-image {
  height: 400px;
  width: 400px;
  position: absolute;
  left: -40%;
  top: 10%;
}

.left-image-content.full-width-content-image .content-image-container {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.vert-image .content-image-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.vert-image .content-image-container .image-column {
  -webkit-flex-basis: calc(12 / 12 * 100%);
      -ms-flex-preferred-size: calc(12 / 12 * 100%);
          flex-basis: calc(12 / 12 * 100%);
  max-width: calc(12 / 12 * 100%);
}
.vert-image .content-image-container .content-column {
  -webkit-flex-basis: calc(12 / 12 * 100%);
      -ms-flex-preferred-size: calc(12 / 12 * 100%);
          flex-basis: calc(12 / 12 * 100%);
  max-width: calc(12 / 12 * 100%);
  padding: 20px;
}

@media screen and (max-width:1199px) {
  .left-image-content .content-column, .left-image-content .image-column, .right-image-content .content-column, .right-image-content .image-column {
    -webkit-flex-basis: calc(6 / 12 * 100%);
        -ms-flex-preferred-size: calc(6 / 12 * 100%);
            flex-basis: calc(6 / 12 * 100%);
    max-width: calc(6 / 12 * 100%);
  }
}
@media screen and (max-width:979px) {
  .content-image .content-column {
    padding: 0px 20px !important;
  }
}
@media screen and (max-width:979px) {
  .content-image {
    padding-top: 70px !important;
  }
  .content-image .content-image-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-flex-basis: calc(12 / 12 * 100%);
        -ms-flex-preferred-size: calc(12 / 12 * 100%);
            flex-basis: calc(12 / 12 * 100%);
    max-width: calc(12 / 12 * 100%);
  }
  .content-image .content-image-container .content-column, .content-image .content-image-container .image-column {
    -webkit-flex-basis: calc(12 / 12 * 100%);
        -ms-flex-preferred-size: calc(12 / 12 * 100%);
            flex-basis: calc(12 / 12 * 100%);
    max-width: calc(12 / 12 * 100%);
    text-align: center;
    width: 100%;
  }
  .content-image .content-image-container .content-column img, .content-image .content-image-container .image-column img {
    max-height: 400px !important;
    padding-bottom: 15px;
  }
}
.content-image .image-column {
  position: relative;
}
.content-image .image-column .outer-circle {
  position: absolute;
  position: absolute;
  left: 41%;
  top: 40%;
  width: 90px;
  height: 90px;
  background: transparent;
  border: 2px solid #F7941E;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.content-image .image-column .outer-circle .grouped-elements {
  width: 70px;
  height: 70px;
  background-color: #F7941E;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.content-image .image-column .outer-circle .grouped-elements:hover {
  opacity: 0.8;
}
.content-image .image-column .outer-circle .grouped-elements i {
  color: #ffffff;
  font-size: 25px;
}

.left-image-content .background-box-1 {
  position: relative;
  z-index: 2;
}
@media screen and (min-width:1200px) {
  .left-image-content .background-box-1 {
    height: 650px;
    width: 480px;
  }
}
@media screen and (min-width:980px) {
  .left-image-content .background-box-1:after {
    position: absolute;
    left: -4%;
    bottom: 4%;
    height: 86%;
    width: 60%;
    content: "";
    background-color: #F7941E;
    z-index: -1;
    border-radius: 3px;
  }
  .left-image-content .background-box-1.orange-background:after {
    bottom: 108px;
    height: 60%;
    left: 63px;
    border-radius: 3px;
  }
}

.right-image-content .background-box-1 {
  position: relative;
  z-index: 2;
}
@media screen and (min-width:1200px) {
  .right-image-content .background-box-1 img {
    height: 650px;
    width: 560px;
  }
}
@media screen and (min-width:980px) {
  .right-image-content .background-box-1:after {
    position: absolute;
    left: 44%;
    bottom: -4%;
    height: 86%;
    width: 60%;
    content: "";
    background-color: #F7941E;
    z-index: -1;
    border-radius: 3px;
  }
  .right-image-content .background-box-1.orange-background:after {
    bottom: 108px;
    height: 60%;
    left: 63px;
    border-radius: 3px;
  }
}
.right-image-content .content-column h6 {
  padding-bottom: 10px;
}

.orange-background .content-column {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.left-image-full-width .row {
  max-width: 1600px;
}
.left-image-full-width .content-image-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width:767px) {
  .left-image-full-width .content-image-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.left-image-full-width .content-image-container .content-column {
  padding: 60px 40px 80px 40px;
}
.left-image-full-width .image-column {
  position: relative;
  height: 100%;
}
.left-image-full-width .image-column img {
  max-width: unset;
  height: 100% !important;
}
.left-image-full-width .image-column .secondary-image {
  height: 400px;
  width: 400px;
  position: absolute;
  left: -40%;
  top: 10%;
}

.row .center-content {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.background-image-content {
  background-repeat: no-repeat;
  z-index: 0;
  position: relative;
}
.background-image-content:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
  -webkit-transition-property: background, opacity, -webkit-transform;
  transition-property: background, opacity, -webkit-transform;
  transition-property: background, transform, opacity;
  transition-property: background, transform, opacity, -webkit-transform;
  z-index: -1;
}
.background-image-content .row .content-column {
  z-index: 100;
  padding: 40px;
}

.left-content-background .row-center {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.right-content-background .row-center {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.icon-post {
  text-align: left;
  z-index: 10;
  color: white;
  padding: 24px;
  border: 1px solid rgba(24, 94, 158, 0.3);
  border-radius: 3px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.icon-post img {
  margin-bottom: 20px;
  padding-top: 10px;
  max-width: 120px;
  height: auto;
}
.icon-post a {
  margin-bottom: 10px;
}
.icon-post a i {
  margin-left: 10px;
}
.icon-post p, .icon-post .gform_description {
  padding-bottom: 16px;
}
.icon-post:hover {
  -webkit-box-shadow: 0 22px 24px 0 rgba(24, 94, 158, 0.08);
          box-shadow: 0 22px 24px 0 rgba(24, 94, 158, 0.08);
  border: 1px solid transparent;
}

.floating-posts:hover {
  cursor: pointer;
  -webkit-box-shadow: 0 22px 24px 0 rgba(24, 94, 158, 0.08);
          box-shadow: 0 22px 24px 0 rgba(24, 94, 158, 0.08);
  bottom: 10px;
}

.program-wrapper .icon-post {
  padding: 45px 35px;
  background: #F1F9FF;
  border-radius: 3px;
  position: relative;
  bottom: 0px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.program-wrapper .icon-post:hover {
  bottom: 10px;
  -webkit-box-shadow: 0 22px 24px 0 rgba(1, 154, 218, 0.07);
          box-shadow: 0 22px 24px 0 rgba(1, 154, 218, 0.07);
}

.blue-background-icon-post {
  max-width: 1350px;
  margin: 0 auto;
}
.blue-background-icon-post p, .blue-background-icon-post .gform_description, .blue-background-icon-post h1, .blue-background-icon-post h2, .blue-background-icon-post h3, .blue-background-icon-post h4, .blue-background-icon-post h5, .blue-background-icon-post h6 {
  color: #ffffff;
}

.white-background-icon-post p, .white-background-icon-post .gform_description, .white-background-icon-post h1, .white-background-icon-post h2, .white-background-icon-post h3, .white-background-icon-post h4, .white-background-icon-post h5, .white-background-icon-post h6 {
  color: #313131;
}

.border-icon-post-lightblue-bg .icon-post {
  border: 1px solid rgba(24, 94, 158, 0.2);
}

@media screen and (max-width:979px) {
  .highlights-posts-wrapper {
    padding-top: 70px !important;
  }
}
.highlights-posts-wrapper .split-highlights-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.highlights-posts-wrapper .highlight-post {
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
.highlights-posts-wrapper .highlight-post .highlights-content {
  padding: 10px 0;
}
.highlights-posts-wrapper .highlight-post .highlights-content a:hover, .highlights-posts-wrapper .highlight-post .highlights-content a:focus {
  color: #019ADA;
}
.highlights-posts-wrapper .highlight-post img {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 25px;
}
.highlights-posts-wrapper .highlight-post h3, .highlights-posts-wrapper .highlight-post h5 {
  color: #185E9E;
}
.highlights-posts-wrapper .highlight-post .header {
  padding: 0;
}
@media screen and (max-width:979px) {
  .highlights-posts-wrapper .split-highlights-wrapper {
    display: block;
    padding: 0 20px;
  }
  .highlights-posts-wrapper .split-highlights-wrapper div {
    -webkit-flex-basis: calc(12 / 12 * 100%);
        -ms-flex-preferred-size: calc(12 / 12 * 100%);
            flex-basis: calc(12 / 12 * 100%);
    max-width: calc(12 / 12 * 100%);
  }
}
@media screen and (max-width:979px) and (max-width:767px) {
  .highlights-posts-wrapper .split-highlights-wrapper div {
    -webkit-flex-basis: calc(12 / 12 * 100%);
        -ms-flex-preferred-size: calc(12 / 12 * 100%);
            flex-basis: calc(12 / 12 * 100%);
    max-width: calc(12 / 12 * 100%);
  }
}

.highlights-posts-wrapper .block-grid-1 .highlight-post {
  padding: 0px 0px 0px;
}
.highlights-posts-wrapper .block-grid-1 .highlight-post .highlights-content {
  border-bottom: 1px solid rgba(24, 94, 158, 0.3);
}
.highlights-posts-wrapper .block-grid-1 .highlight-post:first-of-type {
  padding-top: 0;
}
.highlights-posts-wrapper .block-grid-1 .highlight-post:last-of-type .highlights-content {
  border-bottom: none !important;
}
.highlights-posts-wrapper .block-grid-2 .highlight-post {
  padding: 30px 20px 20px;
}
.highlights-posts-wrapper .block-grid-3 .highlight-post {
  padding: 30px 20px 20px;
}
.highlights-posts-wrapper .block-grid-4 {
  padding: 30px 20px 20px;
}
.statistics-wrapper {
  margin: 0 auto;
}
.statistics-wrapper .statistic {
  z-index: 10;
  text-align: left;
  border-radius: 3px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 22px 24px 0 rgba(1, 154, 218, 0.07);
          box-shadow: 0 22px 24px 0 rgba(1, 154, 218, 0.07);
}
@media screen and (max-width:639px) {
  .statistics-wrapper .statistic {
    margin-bottom: 15px;
  }
}
.statistics-wrapper .statistic img {
  margin-bottom: 20px;
  height: 50px;
  width: 50px;
}
.statistics-wrapper .statistic .stat-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.statistics-wrapper .statistic .statistic-container {
  padding-top: 70px;
  padding-left: 40px;
}
.statistics-wrapper .statistic .statistic-container .stat-container h2, .statistics-wrapper .statistic .statistic-container .stat-container h3 {
  padding-bottom: 10px;
}
.statistics-wrapper .statistic .heading {
  color: #019ADA;
}

.psuedo-wrapper {
  position: relative;
}
.psuedo-wrapper:after {
  position: absolute;
  content: "";
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width:1799px) {
  .psuedo-wrapper {
    overflow-x: hidden;
  }
}
.contact-form .contact-layout-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.contact-form .contact-layout-wrapper .contact-info {
  padding-right: 30px;
}
.contact-form .contact-layout-wrapper .contact-info .contact-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.contact-form .contact-layout-wrapper .contact-info .contact-item p, .contact-form .contact-layout-wrapper .contact-info .contact-item .gform_description,
.contact-form .contact-layout-wrapper .contact-info .contact-item a {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 28px;
  padding-bottom: 10px;
}
.contact-form .contact-layout-wrapper .contact-info .contact-item i {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 22px;
  margin-right: 20px;
}
.contact-form .contact-layout-wrapper .social-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.contact-form .contact-layout-wrapper .social-list li {
  margin-right: 10px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.get_in_touch_form .gform_fields,
.form-wrapper .gform_wrapper .gform_fields {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.get_in_touch_form .gform_fields li,
.form-wrapper .gform_wrapper .gform_fields li {
  margin-right: 10px;
}
.get_in_touch_form .gform_fields li:nth-of-type(-n+4),
.form-wrapper .gform_wrapper .gform_fields li:nth-of-type(-n+4) {
  -webkit-flex-basis: 48%;
      -ms-flex-preferred-size: 48%;
          flex-basis: 48%;
}
.get_in_touch_form li,
.form-wrapper .gform_wrapper li {
  margin-bottom: 20px;
}
.get_in_touch_form label,
.form-wrapper .gform_wrapper label {
  font-size: calc(14px + (14 - 14) * (100vw - 320px) / (1200 - 320));
  line-height: calc(15px + (18 - 15) * (100vw - 320px) / (1200 - 320));
  font-family: museo-sans, sans-serif;
  font-style: normal;
}
@media screen and (min-width: 1200px) {
  .get_in_touch_form label,
.form-wrapper .gform_wrapper label {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .get_in_touch_form label,
.form-wrapper .gform_wrapper label {
    line-height: 18px;
  }
}
.get_in_touch_form input,
.get_in_touch_form textarea,
.get_in_touch_form select,
.form-wrapper .gform_wrapper input,
.form-wrapper .gform_wrapper textarea,
.form-wrapper .gform_wrapper select {
  border: unset;
}
.get_in_touch_form .gform_button,
.form-wrapper .gform_wrapper .gform_button {
  border: none;
  background: transparent;
  font-size: 15px;
  font-family: museo-sans, sans-serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 18px;
  text-align: center;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-property: background-color, color, border, opacity, -webkit-transform;
  transition-property: background-color, color, border, opacity, -webkit-transform;
  transition-property: background-color, color, border, opacity, transform;
  transition-property: background-color, color, border, opacity, transform, -webkit-transform;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  text-shadow: none;
  outline: none;
  -webkit-transform: rotate(0.0000000001deg);
          transform: rotate(0.0000000001deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  color: white;
  background: #019ADA;
  border-radius: 2px;
  padding: 18px 47px;
  margin: 0;
  margin-bottom: 20px;
  margin-top: 20px;
}
.get_in_touch_form .gform_button i,
.form-wrapper .gform_wrapper .gform_button i {
  margin-left: 5px;
  font-family: "Font Awesome 5 Pro";
  text-rendering: auto;
  font-smoothing: antialiased;
  position: relative;
  top: 1px;
}
.get_in_touch_form .gform_button:hover,
.form-wrapper .gform_wrapper .gform_button:hover {
  background: #185E9E;
}
.get_in_touch_form .gform_footer,
.form-wrapper .gform_wrapper .gform_footer {
  padding: 0px;
}
.get_in_touch_form .gform_footer .button,
.form-wrapper .gform_wrapper .gform_footer .button {
  margin: 0px;
}

.font-icon {
  height: 22px;
  width: auto;
  margin-right: 15px;
  position: relative;
  top: 2px;
}

@media screen and (max-width:1199px) {
  .contact-form {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width:979px) {
  .contact-form .contact-layout-wrapper {
    display: block;
  }
  .contact-form .contact-layout-wrapper .contact-info,
.contact-form .contact-layout-wrapper .form-wrapper {
    -webkit-flex-basis: calc(11 / 12 * 100%);
        -ms-flex-preferred-size: calc(11 / 12 * 100%);
            flex-basis: calc(11 / 12 * 100%);
    max-width: calc(11 / 12 * 100%);
  }
  .contact-form .contact-layout-wrapper .contact-info {
    margin-bottom: 30px;
  }
}
@media screen and (max-width:639px) {
  .contact-form .contact-layout-wrapper .gform_fields li {
    -webkit-flex-basis: 100% !important;
        -ms-flex-preferred-size: 100% !important;
            flex-basis: 100% !important;
  }
}
.map-block .single-map-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.logo-grid img {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 120px;
}
.logo-grid .floating-posts {
  position: relative;
  bottom: 0px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.logo-grid .floating-posts:hover {
  bottom: 10px;
  -webkit-box-shadow: 0 22px 24px 0 rgba(1, 154, 218, 0.07);
          box-shadow: 0 22px 24px 0 rgba(1, 154, 218, 0.07);
}
.logo-grid .logo-grid-post {
  background: white;
  -webkit-box-shadow: 0 22px 24px 0 rgba(1, 154, 218, 0.07);
          box-shadow: 0 22px 24px 0 rgba(1, 154, 218, 0.07);
  padding: 50px 100px;
  border-radius: 3px;
}
.logo-grid .logo-grid-post .logo-grid-content {
  border: 1px solid rgba(24, 94, 158, 0.2);
  border-radius: 3px;
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width:979px) {
  .logo-grid .logo-grid-post {
    padding: 20px;
    margin: 0 auto;
  }
}
.logo-grid .block-grid-4 img {
  width: auto;
}
.logo-grid .block-grid-3 img {
  width: auto;
}
@media screen and (max-width:1199px) {
  .logo-grid {
    padding-bottom: 70px !important;
  }
}

@media screen and (max-width:639px) {
  .logo-grid-content {
    margin-bottom: 20px;
  }
}
@media screen and (max-width:979px) {
  .anvil-wyswyg {
    padding: 20px !important;
  }
  .anvil-wyswyg .content-container {
    -webkit-flex-basis: calc(12 / 12 * 100%);
        -ms-flex-preferred-size: calc(12 / 12 * 100%);
            flex-basis: calc(12 / 12 * 100%);
    max-width: calc(12 / 12 * 100%);
  }
  .anvil-wyswyg li {
    width: 100%;
  }
}
.testimonials-wrapper .testimonial-slide-item {
  padding-bottom: 40px;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}
@media screen and (max-width:979px) {
  .testimonials-wrapper .testimonial-slide-item {
    margin: 0 auto;
  }
}
.testimonials-wrapper .testimonial {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.testimonials-wrapper .testimonial .content-column {
  border: 1px solid rgba(24, 94, 158, 0.2);
  padding: 50px 100px 50px 120px;
  margin-left: 100px;
}
@media screen and (max-width:979px) {
  .testimonials-wrapper .testimonial .content-column {
    padding: 30px 20px 30px 125px;
    margin-left: 0px;
    -webkit-flex-basis: calc(12 / 12 * 100%);
        -ms-flex-preferred-size: calc(12 / 12 * 100%);
            flex-basis: calc(12 / 12 * 100%);
    max-width: calc(12 / 12 * 100%);
  }
}
@media screen and (max-width:480px) {
  .testimonials-wrapper .testimonial .content-column {
    padding: 20px;
    margin-left: 0px;
  }
}
.testimonials-wrapper .testimonial .quote {
  font-family: open-sans, sans-serif;
  color: #212121;
  font-size: calc(18px + (22 - 18) * (100vw - 320px) / (1200 - 320));
  font-style: italic;
  font-weight: 200;
  letter-spacing: 0;
  line-height: 36px;
  padding-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .testimonials-wrapper .testimonial .quote {
    font-size: 22px;
  }
}
.testimonials-wrapper .testimonial .image-column {
  position: absolute;
  height: auto;
  width: 260px;
  border-radius: 3px;
  top: 7%;
  left: 0%;
  height: 86%;
}
.testimonials-wrapper .testimonial .image-column img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  -webkit-box-shadow: 0 12px 30px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 12px 30px 0 rgba(0, 0, 0, 0.05);
}
@media screen and (max-width:979px) {
  .testimonials-wrapper .testimonial .image-column {
    min-width: 175px;
    left: -12%;
  }
}
@media screen and (max-width:480px) {
  .testimonials-wrapper .testimonial .image-column {
    position: unset !important;
    min-width: 100%;
  }
}
@media screen and (max-width:1199px) {
  .testimonials-wrapper .testimonial {
    width: 85% !important;
    margin: 0 auto;
  }
}
@media screen and (max-width:979px) {
  .testimonials-wrapper .testimonial {
    width: 53% !important;
    margin: 0% 20% 0% 0%;
  }
}
@media screen and (max-width:767px) {
  .testimonials-wrapper .testimonial {
    width: 50% !important;
    margin: 0 auto;
  }
}
@media screen and (max-width:639px) {
  .testimonials-wrapper .testimonial {
    width: 40% !important;
  }
}
@media screen and (max-width:480px) {
  .testimonials-wrapper .testimonial {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 25% !important;
  }
  .testimonials-wrapper .testimonial .image-column {
    -webkit-flex-basis: calc(12 / 12 * 100%);
        -ms-flex-preferred-size: calc(12 / 12 * 100%);
            flex-basis: calc(12 / 12 * 100%);
    max-width: calc(12 / 12 * 100%);
  }
  .testimonials-wrapper .testimonial .content-column {
    -webkit-flex-basis: calc(12 / 12 * 100%);
        -ms-flex-preferred-size: calc(12 / 12 * 100%);
            flex-basis: calc(12 / 12 * 100%);
    max-width: calc(12 / 12 * 100%);
  }
  .testimonials-wrapper .testimonial img {
    margin-bottom: 5px !important;
  }
}
@media screen and (max-width:979px) {
  .testimonials-wrapper .prevArrow {
    right: calc(50% + 65px) !important;
    bottom: -15px !important;
  }
  .testimonials-wrapper .nextArrow {
    right: 37% !important;
    bottom: -15px !important;
  }
}
@media screen and (min-width:980px) {
  .testimonials-wrapper .with-image .testimonial {
    padding-left: 275px;
  }
}

.testimonials-wrapper,
.anvil-media-slider-wrapper {
  position: relative;
}
.testimonials-wrapper .slick-arrow,
.anvil-media-slider-wrapper .slick-arrow {
  position: absolute;
  bottom: 20px;
  height: 62px;
  width: 62px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #185E9E;
  border-radius: 50%;
}
.testimonials-wrapper .slick-arrow:before,
.anvil-media-slider-wrapper .slick-arrow:before {
  color: #185E9E;
}
.testimonials-wrapper .slick-arrow.prevArrow,
.anvil-media-slider-wrapper .slick-arrow.prevArrow {
  right: calc(5% + 65px);
  margin-right: 20px;
}
.testimonials-wrapper .slick-arrow.prevArrow i,
.anvil-media-slider-wrapper .slick-arrow.prevArrow i {
  position: relative;
  right: 2px;
}
.testimonials-wrapper .slick-arrow.prevArrow:hover,
.anvil-media-slider-wrapper .slick-arrow.prevArrow:hover {
  color: #019ADA;
  border: 1px solid #019ADA;
}
.testimonials-wrapper .slick-arrow.nextArrow,
.anvil-media-slider-wrapper .slick-arrow.nextArrow {
  right: 5%;
}
.testimonials-wrapper .slick-arrow.nextArrow i,
.anvil-media-slider-wrapper .slick-arrow.nextArrow i {
  position: relative;
  left: 2px;
}
.testimonials-wrapper .slick-arrow.nextArrow:hover,
.anvil-media-slider-wrapper .slick-arrow.nextArrow:hover {
  color: #019ADA;
  border: 1px solid #019ADA;
}
@media screen and (min-width:980px) {
  .testimonials-wrapper .slick-arrow.prevArrow,
.anvil-media-slider-wrapper .slick-arrow.prevArrow {
    right: calc(69% + 65px) !important;
  }
  .testimonials-wrapper .slick-arrow.nextArrow,
.anvil-media-slider-wrapper .slick-arrow.nextArrow {
    right: 68% !important;
  }
}
@media screen and (min-width:1200px) {
  .testimonials-wrapper .slick-arrow.prevArrow,
.anvil-media-slider-wrapper .slick-arrow.prevArrow {
    right: calc(74% + 65px) !important;
  }
  .testimonials-wrapper .slick-arrow.nextArrow,
.anvil-media-slider-wrapper .slick-arrow.nextArrow {
    right: 74% !important;
  }
}
.testimonials-wrapper .slick-slide,
.anvil-media-slider-wrapper .slick-slide {
  padding: 10px;
}
.testimonials-wrapper .slick-dots,
.anvil-media-slider-wrapper .slick-dots {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: baseline;
  -webkit-justify-content: baseline;
      -ms-flex-pack: baseline;
          justify-content: baseline;
  padding: 0;
  margin: 0;
  list-style: none;
  padding-bottom: calc(50px + (50 - 50) * (100vw - 320px) / (1200 - 320));
  padding-left: calc(620px + (360 - 620) * (100vw - 320px) / (1200 - 320));
}
@media screen and (min-width: 1200px) {
  .testimonials-wrapper .slick-dots,
.anvil-media-slider-wrapper .slick-dots {
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .testimonials-wrapper .slick-dots,
.anvil-media-slider-wrapper .slick-dots {
    padding-left: 360px;
  }
}
@media screen and (max-width:639px) {
  .testimonials-wrapper .slick-dots,
.anvil-media-slider-wrapper .slick-dots {
    padding-left: 0px;
  }
}
@media screen and (max-width:979px) {
  .testimonials-wrapper .slick-dots,
.anvil-media-slider-wrapper .slick-dots {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 30px;
    padding-bottom: 18px;
  }
}
@media screen and (min-width:980px) {
  .testimonials-wrapper .slick-dots,
.anvil-media-slider-wrapper .slick-dots {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.testimonials-wrapper .slick-dots li,
.anvil-media-slider-wrapper .slick-dots li {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 4px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.testimonials-wrapper .slick-dots li button,
.anvil-media-slider-wrapper .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #185E9E;
  opacity: 0.2;
}
.testimonials-wrapper .slick-dots li.slick-active button,
.anvil-media-slider-wrapper .slick-dots li.slick-active button {
  opacity: 1;
}

.source {
  font-size: 13px;
  font-weight: 600;
  font-family: "Open Sans";
  letter-spacing: 1px;
  line-height: 18px;
  color: #019ADA;
  text-transform: uppercase;
}

.anvil-media-slider-wrapper .media-slider-loop-item {
  position: relative;
}
.anvil-media-slider-wrapper .media-slider-loop-item .outer-circle {
  position: absolute;
  position: absolute;
  left: 41%;
  top: 33%;
  width: 90px;
  height: 90px;
  background: transparent;
  border: 2px solid #F7941E;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.anvil-media-slider-wrapper .media-slider-loop-item .outer-circle .grouped-elements {
  width: 70px;
  height: 70px;
  background-color: #F7941E;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.anvil-media-slider-wrapper .media-slider-loop-item .outer-circle .grouped-elements:hover {
  opacity: 0.8;
}
.anvil-media-slider-wrapper .media-slider-loop-item .outer-circle .grouped-elements i {
  color: #ffffff;
  font-size: 25px;
}

.wp-block-column {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width:1199px) {
  .wp-block-column {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width:767px) {
  .wp-block-column {
    display: block;
  }
  .wp-block-column .wp-block-column {
    margin-left: 0px;
  }
  .wp-block-column .wp-block-column .alignleft,
.wp-block-column .wp-block-column .align-right {
    float: unset !important;
  }
}

.wp-block-columns {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width:1199px) {
  .wp-block-columns {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width:767px) {
  .wp-block-columns {
    display: block;
  }
  .wp-block-columns .wp-block-columns {
    margin-left: 0px;
  }
}

.full-width-columns {
  max-width: 1600px;
}

.about-columns {
  max-width: 1600px;
}
.about-columns .wp-block-column {
  margin: 20px !important;
}

.faq-postings {
  width: 100%;
  margin-bottom: 80px;
}
@media screen and (max-width:767px) {
  .faq-postings {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.faq-postings .accordion-content {
  display: none;
  padding: 40px 20px 60px;
}
.faq-postings .label {
  padding-right: 5%;
  font-weight: 400;
  color: #313131;
  font-size: 14px;
}

.accordion-controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.accordion-controls a {
  display: inline-block;
  padding: 5px 10px;
  opacity: 1;
}
.accordion-controls a:hover {
  opacity: 0.5;
}

.accordion-entry {
  background: #F1F9FF;
  margin-bottom: 10px;
}
.accordion-entry img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 280px;
  width: 280px;
}
.accordion-entry .accordion-content {
  background: white;
}

.insurance-accordian .accordion-entry img {
  width: 100%;
  margin-top: 10px;
}

.accordion-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px;
  border-radius: 0px;
  position: relative;
  font-weight: bold;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
.accordion-label p, .accordion-label .gform_description {
  padding-bottom: 0px;
}
@media screen and (max-width:767px) {
  .accordion-label {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .accordion-label .label {
    margin-top: 10px;
  }
}
.accordion-label h1, .accordion-label h2, .accordion-label h3, .accordion-label h4, .accordion-label h5, .accordion-label h6, .accordion-label p, .accordion-label .gform_description {
  color: #185E9E;
}
.accordion-label .p-wrapper {
  min-width: 100px;
  padding: 0px;
  margin-right: 25px;
}
.accordion-label img {
  height: 50px;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.accordion-label:after {
  font-family: "Font Awesome 5 Pro";
  text-rendering: auto;
  font-smoothing: antialiased;
  content: "\f067";
  font-size: 17px;
  right: 23px;
  top: 9%;
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 24px;
  height: 24px;
  border: unset;
  color: inherit;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  border-radius: 50%;
  border: 1px solid #185E9E;
  font-weight: 300;
  top: 34% !important;
  color: #185E9E !important;
}
[data-status=opened] .accordion-label:after {
  content: "\f068";
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg);
  border-radius: 50%;
  border: 1px solid #019ADA;
}
.accordion-label span {
  margin-left: 15px;
}

@media screen and (max-width:979px) {
  .accordion-holder {
    -webkit-flex-basis: calc(12 / 12 * 100%);
        -ms-flex-preferred-size: calc(12 / 12 * 100%);
            flex-basis: calc(12 / 12 * 100%);
    max-width: calc(12 / 12 * 100%);
  }
  .accordion-holder h5 {
    width: 70%;
  }
}
.gallery .gallery-wrapper {
  position: relative;
}
.gallery .slick-arrow {
  position: absolute;
  z-index: 10;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #ffffff;
  height: 80px;
  width: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
}
.gallery .slick-arrow:hover {
  cursor: pointer;
}
.gallery .slick-arrow i {
  font-weight: 300;
  font-size: 24px;
}
.gallery .slick-next {
  right: -40px;
}
.gallery .slick-prev {
  left: -40px;
}
.gallery .gallery-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-height: 700px;
  overflow: hidden;
  display: relative;
  border-radius: 5px;
}
.gallery .gallery-image i {
  position: absolute;
  top: 40%;
  left: 45%;
  font-size: 112px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.gallery .gallery-image i:hover {
  color: #185E9E !important;
}
.gallery .gallery-image i:before {
  color: white;
}
.gallery .gallery-image i:after {
  color: #019ADA;
  opacity: 0.8;
}
.gallery .gallery-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 600px;
  max-width: none;
  min-width: 100%;
}
@media screen and (max-width:480px) {
  .gallery .gallery-image, .gallery img {
    max-height: 300px;
  }
}
.gallery .gallery-caption {
  margin-top: 2px;
  color: #58585A;
  text-transform: none;
}

.slick-thumbnail-grid {
  margin-top: 20px;
  max-height: 500px;
  /* the slides */
  /* the parent */
}
.slick-thumbnail-grid .gallery-nav-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 155px;
  overflow: hidden;
}
.slick-thumbnail-grid .gallery-nav-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.slick-thumbnail-grid .slick-slide {
  margin: 20px 10px;
}
.slick-thumbnail-grid .slick-list {
  margin: -10px 0;
}
@media screen and (max-width:480px) {
  .slick-thumbnail-grid .gallery-nav-image {
    max-height: 90px;
  }
}

.full-width {
  width: 100%;
  max-width: 1600px;
}

.background-link {
  display: block;
}
.background-link a h4 {
  color: white;
}
.background-link .block-grid-3,
.background-link .block-grid-4,
.background-link .block-grid-2 {
  margin: 0 auto;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.background-link .loop-item {
  background-size: cover;
  z-index: 0;
  position: relative;
  position: relative;
  bottom: 0px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: white;
  border-radius: 5px;
  z-index: 100;
}
.background-link .loop-item:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
  -webkit-transition-property: background, opacity, -webkit-transform;
  transition-property: background, opacity, -webkit-transform;
  transition-property: background, transform, opacity;
  transition-property: background, transform, opacity, -webkit-transform;
  z-index: -1;
}
.background-link .loop-item:hover {
  bottom: 10px;
  -webkit-box-shadow: 0 22px 24px 0 rgba(1, 154, 218, 0.07);
          box-shadow: 0 22px 24px 0 rgba(1, 154, 218, 0.07);
}
.background-link .loop-item:after {
  border-radius: 5px;
}
.background-link .loop-item:hover {
  z-index: 0;
  position: relative;
}
.background-link .loop-item:hover:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
  -webkit-transition-property: background, opacity, -webkit-transform;
  transition-property: background, opacity, -webkit-transform;
  transition-property: background, transform, opacity;
  transition-property: background, transform, opacity, -webkit-transform;
  z-index: -1;
}
.background-link .block-grid-2 .loop-item, .background-link .block-grid-3 .loop-item {
  padding: 210px 40px 70px;
}
.background-link .block-grid-4 .loop-item, .background-link .block-grid-5 .loop-item {
  padding: 120px 20px 30px;
}

.toolbox-section {
  position: relative;
  width: 100%;
  margin-bottom: 50px;
}
.toolbox-section::after {
  content: "";
  position: absolute;
  width: 2px;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.toolbox-item:not(.closed) .toolbox-trigger {
  display: none;
}

.toolbox-item {
  position: relative;
  background-color: inherit;
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
}
.toolbox-item .less:hover {
  cursor: pointer;
}
.toolbox-item.closed .toolbox-content {
  display: none;
}
.toolbox-item.closed .wrapper {
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  border-radius: 3px;
}
.toolbox-item.closed .wrapper .date {
  padding-bottom: 20px;
}
.toolbox-item.closed .wrapper .heading {
  padding-bottom: 30px;
}
.toolbox-item .wrapper {
  padding: 30px;
  padding-left: 30px;
  width: 72%;
  position: relative;
  border-radius: 3px;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.toolbox-item::before {
  content: "";
  height: 2px;
  width: 70px;
  right: 20px;
  background: red;
  top: 24px;
  position: absolute;
}
.toolbox-item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: 0;
  background-color: red;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}
.toolbox-item:nth-of-type(odd) {
  left: 10px;
}
.toolbox-item:nth-of-type(even) {
  left: 49%;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.toolbox-item:nth-of-type(even)::before {
  left: 20px;
}
.toolbox-item:nth-of-type(even)::after {
  left: 2px;
}

.toolbox-trigger:hover {
  cursor: pointer;
}
.toolbox-trigger i {
  font-size: 26px;
  color: red;
}
.toolbox-trigger .plus {
  display: none;
}
.toolbox-trigger .minus {
  display: block;
}
.toolbox-trigger.closed i {
  color: red;
}
.toolbox-trigger.closed .plus {
  display: block;
}
.toolbox-trigger.closed .minus {
  display: none;
}

.toolbox-item:last-of-type {
  margin-bottom: 0px;
}

.timeline {
  width: 100%;
}

.single-toolbox .entry-content .content-column .custom_ {
  font-weight: 700;
}
.single-toolbox .entry-content .content-column a {
  color: red;
}

@media screen and (max-width:979px) {
  .toolbox-section {
    -webkit-flex-basis: calc(12 / 12 * 100%);
        -ms-flex-preferred-size: calc(12 / 12 * 100%);
            flex-basis: calc(12 / 12 * 100%);
    max-width: calc(12 / 12 * 100%);
  }
}
@media screen and (max-width:767px) {
  .toolbox-item:nth-of-type(even)::after {
    left: 0;
  }

  .timeline {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .timeline .toolbox-section {
    padding: 0px 10px;
    padding-top: 40px !important;
    padding-bottom: 0px !important;
    margin-bottom: 40px !important;
  }
  .timeline .toolbox-section::after {
    display: none;
  }
  .timeline .toolbox-section .toolbox-item {
    width: 100%;
  }
  .timeline .toolbox-section .toolbox-item::before, .timeline .toolbox-section .toolbox-item::after {
    display: none;
  }
  .timeline .toolbox-section .toolbox-item:nth-of-type(odd), .timeline .toolbox-section .toolbox-item:nth-of-type(even) {
    left: 0;
    right: 0;
  }
  .timeline .toolbox-section .toolbox-item .wrapper {
    width: 100%;
  }
}
@media screen and (max-width:1199px) {
  .slideout-item .team-slideout-hidden {
    padding: 20px;
  }

  .related-posts-block {
    padding-left: 20px;
  }

  .event-page-wrapper .columns-12 .details {
    padding: 40px;
  }

  .event-page-wrapper #locations-map {
    right: 0px;
  }

  .left_intro {
    padding-left: 20px;
  }
}
@media screen and (max-width:979px) {
  .wp-block-column:not(:only-child) {
    -webkit-flex-basis: calc(100% - 1em) !important;
        -ms-flex-preferred-size: calc(100% - 1em) !important;
            flex-basis: calc(100% - 1em) !important;
  }

  .logo-column {
    -webkit-flex-basis: calc(12 / 12 * 100%);
        -ms-flex-preferred-size: calc(12 / 12 * 100%);
            flex-basis: calc(12 / 12 * 100%);
    max-width: calc(12 / 12 * 100%);
    position: relative;
  }

  .fs-menu-trigger .fs-burger-menu {
    position: absolute;
    right: 0%;
    top: 30%;
  }

  .main-menu li + li {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .shift-down-50 .contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .shift-down-50 .contents p, .shift-down-50 .contents .gform_description {
    margin: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .background-image-content .row .content-column {
    -webkit-flex-basis: calc(10 / 12 * 100%);
        -ms-flex-preferred-size: calc(10 / 12 * 100%);
            flex-basis: calc(10 / 12 * 100%);
    max-width: calc(10 / 12 * 100%);
    position: initial !important;
  }

  .footer-newsletter .columns-12 {
    display: block;
  }
  .footer-newsletter .columns-12 .heading-row, .footer-newsletter .columns-12 .form-row {
    -webkit-flex-basis: calc(10 / 12 * 100%);
        -ms-flex-preferred-size: calc(10 / 12 * 100%);
            flex-basis: calc(10 / 12 * 100%);
    max-width: calc(10 / 12 * 100%);
    margin: 0 auto;
  }
  .footer-newsletter .columns-12 .heading-row {
    text-align: center;
  }
  .footer-newsletter .columns-12 .gform_footer {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width:767px) {
  .page-banner .row {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .page-banner .row .content-container {
    -webkit-flex-basis: calc(10 / 12 * 100%);
        -ms-flex-preferred-size: calc(10 / 12 * 100%);
            flex-basis: calc(10 / 12 * 100%);
    max-width: calc(10 / 12 * 100%);
  }

  .post-filter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .post-filter a {
    margin-bottom: 10px;
  }

  .event-page-wrapper .columns-12 {
    display: block;
  }
  .event-page-wrapper .columns-12 .columns-6 {
    padding: 20px;
    -webkit-flex-basis: calc(12 / 12 * 100%);
        -ms-flex-preferred-size: calc(12 / 12 * 100%);
            flex-basis: calc(12 / 12 * 100%);
    max-width: calc(12 / 12 * 100%);
  }

  .carousel__viewport {
    max-height: 800px;
  }
  .carousel__viewport .banner-slider__slide {
    background-size: cover;
  }
}
@media screen and (max-width:480px) {
  .site-header .logo-column img {
    max-width: 60%;
  }
}
.placeholder-text {
  display: none;
}
/*# sourceMappingURL=main-style.css.map */
