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

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

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

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

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

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

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

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

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

.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: 0.25;
  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: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  box-shadow: var(--carousel-button-shadow, none);
}

.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, 24px);
  height: var(--carousel-button-svg-height, 24px);
  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;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  z-index: 1050;
  outline: none;
  -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 {
  box-sizing: inherit;
}

.fancybox__container :focus {
  outline: thin dotted;
}

body.is-using-mouse .fancybox__container :focus {
  outline: none;
}

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

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

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

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

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

.fancybox__slide {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 64px;
  position: relative;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  display: -ms-flexbox;
  display: flex;
  -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: "";
  -ms-flex: 0 0 0px;
  flex: 0 0 0;
  margin: auto;
}

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

.fancybox__caption {
  -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;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

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

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

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

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

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

.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.5;
  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__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 {
  transition: opacity var(--fancybox-ts, 0.25s) ease;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden="true"] .fancybox__backdrop,
.fancybox__container.is-animated[aria-hidden="true"] .fancybox__caption,
.fancybox__container.is-animated[aria-hidden="true"] .fancybox__nav,
.fancybox__container.is-animated[aria-hidden="true"] .carousel__dots,
.fancybox__container.is-animated[aria-hidden="true"] .carousel__button.is-close {
  transition: opacity 0.2s ease;
  opacity: 0;
}

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

.fancybox-fadeOut {
  -webkit-animation: 0.2s ease both fancybox-fadeOut;
  animation: 0.2s 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.2s ease both fancybox-zoomOutDown;
  animation: 0.2s ease both fancybox-zoomOutDown;
}

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

.fancybox-throwOutDown {
  -webkit-animation: 0.2s ease both fancybox-throwOutDown;
  animation: 0.2s 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 {
  20% {
    opacity: 0.5;
  }

  to {
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}

@keyframes fancybox-throwOutUp {
  20% {
    opacity: 0.5;
  }

  to {
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}

@-webkit-keyframes fancybox-throwOutDown {
  20% {
    opacity: 0.5;
  }

  to {
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}

@keyframes fancybox-throwOutDown {
  20% {
    opacity: 0.5;
  }

  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;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

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

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

.fancybox__carousel .carousel__slide:not(.has-image) .fancybox__content {
  cursor: auto;
}

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

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

.fancybox__image {
  background: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.has-image .fancybox__content {
  padding: 0;
  background: transparent;
}

.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 {
  min-height: 1px;
}

.has-image[data-image-fit="contain"] .fancybox__image {
  max-width: 100%;
  min-height: 1px;
  -o-object-fit: contain;
  object-fit: contain;
  background: transparent;
}

.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 {
  min-height: 1px;
  width: 100%;
  height: 100%;
}

.has-image[data-image-fit="cover"] .fancybox__image {
  width: 100%;
  height: 100%;
  min-height: 1px;
  -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 {
  -ms-flex-negative: 1;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

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

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

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

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

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

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

.fancybox__thumbs {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
  padding: 0px 3px;
}

.fancybox__container.is-animated[aria-hidden="true"] .fancybox__thumbs {
  transition: unset;
  opacity: 0;
}

.fancybox__container.is-animated[aria-hidden="false"] .fancybox__thumbs {
  transition: opacity var(--fancybox-ts, 0.25s) ease-in;
  opacity: var(--fancybox-opacity, 1);
}

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

.fancybox__thumbs .carousel__slide.is-nav-selected::after {
  content: "";
  position: absolute;
  top: 0;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border-bottom: 3px solid currentColor;
}

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

/* Slider */

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

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

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

.slick-slide:focus {
  outline: none;
}

body.no-scroll {
  overflow: hidden;
}

.no-padding-l-r {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.nmp-last-el h1:last-child,
.nmp-last-el h2:last-child,
.nmp-last-el h3:last-child,
.nmp-last-el h4:last-child,
.nmp-last-el h5:last-child,
.nmp-last-el h6:last-child,
.nmp-last-el ul:last-child,
.nmp-last-el ol:last-child,
.nmp-last-el p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.white-text {
  color: #fff;
}

.white-text h1,
.white-text h2,
.white-text h3,
.white-text h4,
.white-text h5,
.white-text h6,
.white-text p,
.white-text .subtitle {
  color: inherit;
}

:root {
  --blue: #8fc9ee;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #ed1b2e;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #52AF00;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #8fc9ee;
  --secondary: #6c757d;
  --success: #52AF00;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #ed1b2e;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: Montserrat, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-family: Montserrat, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: #8fc9ee;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #4da9e4;
  text-decoration: underline;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

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

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

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

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.row-cols-4 > * {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  -ms-flex: 0 0 8.33333%;
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.col-2 {
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.col-5 {
  -ms-flex: 0 0 41.66667%;
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -ms-flex: 0 0 58.33333%;
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.col-8 {
  -ms-flex: 0 0 66.66667%;
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -ms-flex: 0 0 83.33333%;
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.col-11 {
  -ms-flex: 0 0 91.66667%;
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -ms-flex-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.33333%;
}

.offset-2 {
  margin-left: 16.66667%;
}

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

.offset-4 {
  margin-left: 33.33333%;
}

.offset-5 {
  margin-left: 41.66667%;
}

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

.offset-7 {
  margin-left: 58.33333%;
}

.offset-8 {
  margin-left: 66.66667%;
}

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

.offset-10 {
  margin-left: 83.33333%;
}

.offset-11 {
  margin-left: 91.66667%;
}

.nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover,
.nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
  margin-bottom: -1px;
  background-color: transparent;
  border: 1px solid transparent;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #8fc9ee;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar .container,
.navbar .container-fluid,
.navbar .container-sm,
.navbar .container-md,
.navbar .container-lg,
.navbar .container-xl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 50% / 100% 100% no-repeat;
}

.navbar-nav-scroll {
  max-height: 75vh;
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

.navbar-expand {
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  -ms-flex-direction: row;
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}

.navbar-expand .navbar-collapse {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}

.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
  color: #fff;
}

.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.collapsing.width {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing.width {
    transition: none;
  }
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #8fc9ee !important;
}

a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #63b4e7 !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #52AF00 !important;
}

a.bg-success:hover,
a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #3a7c00 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover,
a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover,
a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #ed1b2e !important;
}

a.bg-danger:hover,
a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #c51020 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover,
a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

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

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

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

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

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

.border-primary {
  border-color: #8fc9ee !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #52AF00 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #ed1b2e !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

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

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

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

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

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

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

.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media print {
  .d-print-none {
    display: none !important;
  }

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

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

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

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

  .d-print-table-row {
    display: table-row !important;
  }

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

  .d-print-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-print-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

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

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

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

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

.user-select-all {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  -ms-user-select: all !important;
  user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

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

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

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

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

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

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

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

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

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

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

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

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

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

.w-auto {
  width: auto !important;
}

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

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

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

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

.h-auto {
  height: auto !important;
}

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

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

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

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

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

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

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

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

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

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

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

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

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

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

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

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

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

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

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

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

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

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

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

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

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

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

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

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

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

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

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

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

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

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

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

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

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

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #8fc9ee !important;
}

a.text-primary:hover,
a.text-primary:focus {
  color: #4da9e4 !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
  color: #494f54 !important;
}

.text-success {
  color: #52AF00 !important;
}

a.text-success:hover,
a.text-success:focus {
  color: #2e6300 !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover,
a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #ba8b00 !important;
}

.text-danger {
  color: #ed1b2e !important;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #ae0e1c !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover,
a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover,
a.text-dark:focus {
  color: #121416 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

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

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

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

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: 2rem;
}

h2,
.h2 {
  font-size: 1.8rem;
}

h3,
.h3 {
  font-size: 1.6rem;
}

h4,
.h4 {
  font-size: 1.4rem;
}

h5,
.h5 {
  font-size: 1.2rem;
}

h6,
.h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 0.875em;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 0.875em;
  color: #6c757d;
}

.blockquote-footer::before {
  content: "\2014\00A0";
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.6em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #fefeff;
  outline: 0;
  box-shadow: 0;
}

.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

input[type="date"].form-control,
input[type="time"].form-control,
input[type="datetime-local"].form-control,
input[type="month"].form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.6;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-sm,
.form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

select.form-control[size],
select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row > .col,
.form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #52AF00;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #fff;
  background-color: rgba(82, 175, 0, 0.9);
}

.form-row > .col > .valid-tooltip,
.form-row > [class*="col-"] > .valid-tooltip {
  left: 5px;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid,
.form-control.is-valid {
  border-color: #52AF00;
  padding-right: calc(1.6em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2352AF00' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.4em + 0.1875rem) center;
  background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}

.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
  border-color: #52AF00;
  box-shadow: 0 0 0 0.2rem rgba(82, 175, 0, 0.25);
}

.was-validated select.form-control:valid,
select.form-control.is-valid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
  padding-right: calc(1.6em + 0.75rem);
  background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
}

.was-validated .custom-select:valid,
.custom-select.is-valid {
  border-color: #52AF00;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2352AF00' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(0.8em + 0.375rem) calc(0.8em + 0.375rem) no-repeat;
}

.was-validated .custom-select:valid:focus,
.custom-select.is-valid:focus {
  border-color: #52AF00;
  box-shadow: 0 0 0 0.2rem rgba(82, 175, 0, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label,
.form-check-input.is-valid ~ .form-check-label {
  color: #52AF00;
}

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip,
.form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label,
.custom-control-input.is-valid ~ .custom-control-label {
  color: #52AF00;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before,
.custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #52AF00;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,
.custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #6ae200;
  background-color: #6ae200;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,
.custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(82, 175, 0, 0.25);
}

.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,
.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #52AF00;
}

.was-validated .custom-file-input:valid ~ .custom-file-label,
.custom-file-input.is-valid ~ .custom-file-label {
  border-color: #52AF00;
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label,
.custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #52AF00;
  box-shadow: 0 0 0 0.2rem rgba(82, 175, 0, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #ed1b2e;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #fff;
  background-color: rgba(237, 27, 46, 0.9);
}

.form-row > .col > .invalid-tooltip,
.form-row > [class*="col-"] > .invalid-tooltip {
  left: 5px;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: #ed1b2e;
  padding-right: calc(1.6em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ed1b2e' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ed1b2e' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.4em + 0.1875rem) center;
  background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
  border-color: #ed1b2e;
  box-shadow: 0 0 0 0.2rem rgba(237, 27, 46, 0.25);
}

.was-validated select.form-control:invalid,
select.form-control.is-invalid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
  padding-right: calc(1.6em + 0.75rem);
  background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
}

.was-validated .custom-select:invalid,
.custom-select.is-invalid {
  border-color: #ed1b2e;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ed1b2e' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ed1b2e' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(0.8em + 0.375rem) calc(0.8em + 0.375rem) no-repeat;
}

.was-validated .custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  border-color: #ed1b2e;
  box-shadow: 0 0 0 0.2rem rgba(237, 27, 46, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label,
.form-check-input.is-invalid ~ .form-check-label {
  color: #ed1b2e;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip,
.form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label,
.custom-control-input.is-invalid ~ .custom-control-label {
  color: #ed1b2e;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before,
.custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #ed1b2e;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,
.custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #f14a59;
  background-color: #f14a59;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(237, 27, 46, 0.25);
}

.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #ed1b2e;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label,
.custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #ed1b2e;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
.custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #ed1b2e;
  box-shadow: 0 0 0 0.2rem rgba(237, 27, 46, 0.25);
}

.form-inline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-align: center;
  align-items: center;
}

.form-inline .form-check {
  width: 100%;
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn:hover {
  color: #212529;
  text-decoration: none;
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: 0;
}

.btn.disabled,
.btn:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #212529;
  background-color: #8fc9ee;
  border-color: #8fc9ee;
}

.btn-primary:hover {
  color: #212529;
  background-color: #6eb9e9;
  border-color: #63b4e7;
}

.btn-primary:focus,
.btn-primary.focus {
  color: #212529;
  background-color: #6eb9e9;
  border-color: #63b4e7;
  box-shadow: 0 0 0 0 rgba(127, 176, 208, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #212529;
  background-color: #8fc9ee;
  border-color: #8fc9ee;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #212529;
  background-color: #63b4e7;
  border-color: #58aee6;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(127, 176, 208, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}

.btn-secondary:focus,
.btn-secondary.focus {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
  box-shadow: 0 0 0 0 rgba(130, 138, 145, 0.5);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(130, 138, 145, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #52AF00;
  border-color: #52AF00;
}

.btn-success:hover {
  color: #fff;
  background-color: #408900;
  border-color: #3a7c00;
}

.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: #408900;
  border-color: #3a7c00;
  box-shadow: 0 0 0 0 rgba(108, 187, 38, 0.5);
}

.btn-success.disabled,
.btn-success:disabled {
  color: #fff;
  background-color: #52AF00;
  border-color: #52AF00;
}

.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #3a7c00;
  border-color: #346f00;
}

.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(108, 187, 38, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}

.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
  box-shadow: 0 0 0 0 rgba(58, 176, 195, 0.5);
}

.btn-info.disabled,
.btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(58, 176, 195, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}

.btn-warning:focus,
.btn-warning.focus {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
  box-shadow: 0 0 0 0 rgba(222, 170, 12, 0.5);
}

.btn-warning.disabled,
.btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(222, 170, 12, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #ed1b2e;
  border-color: #ed1b2e;
}

.btn-danger:hover {
  color: #fff;
  background-color: #d11122;
  border-color: #c51020;
}

.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #d11122;
  border-color: #c51020;
  box-shadow: 0 0 0 0 rgba(240, 61, 77, 0.5);
}

.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: #ed1b2e;
  border-color: #ed1b2e;
}

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c51020;
  border-color: #ba0f1e;
}

.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(240, 61, 77, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

.btn-light:focus,
.btn-light.focus {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
  box-shadow: 0 0 0 0 rgba(216, 217, 219, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(216, 217, 219, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

.btn-dark:focus,
.btn-dark.focus {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
  box-shadow: 0 0 0 0 rgba(82, 88, 93, 0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(82, 88, 93, 0.5);
}

.btn-outline-primary {
  color: #8fc9ee;
  border-color: #8fc9ee;
}

.btn-outline-primary:hover {
  color: #212529;
  background-color: #8fc9ee;
  border-color: #8fc9ee;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
  box-shadow: 0 0 0 0 rgba(143, 201, 238, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #8fc9ee;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #212529;
  background-color: #8fc9ee;
  border-color: #8fc9ee;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(143, 201, 238, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
  box-shadow: 0 0 0 0 rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #52AF00;
  border-color: #52AF00;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #52AF00;
  border-color: #52AF00;
}

.btn-outline-success:focus,
.btn-outline-success.focus {
  box-shadow: 0 0 0 0 rgba(82, 175, 0, 0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #52AF00;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #52AF00;
  border-color: #52AF00;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(82, 175, 0, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:focus,
.btn-outline-info.focus {
  box-shadow: 0 0 0 0 rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:focus,
.btn-outline-warning.focus {
  box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #ed1b2e;
  border-color: #ed1b2e;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #ed1b2e;
  border-color: #ed1b2e;
}

.btn-outline-danger:focus,
.btn-outline-danger.focus {
  box-shadow: 0 0 0 0 rgba(237, 27, 46, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #ed1b2e;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #ed1b2e;
  border-color: #ed1b2e;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(237, 27, 46, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:focus,
.btn-outline-light.focus {
  box-shadow: 0 0 0 0 rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:focus,
.btn-outline-dark.focus {
  box-shadow: 0 0 0 0 rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #8fc9ee;
  text-decoration: none;
}

.btn-link:hover {
  color: #4da9e4;
  text-decoration: underline;
}

.btn-link:focus,
.btn-link.focus {
  text-decoration: underline;
}

.btn-link:disabled,
.btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

.breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

.media-body {
  -ms-flex: 1;
  flex: 1;
}

.list-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:hover,
.list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item.disabled,
.list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #8fc9ee;
  border-color: #8fc9ee;
}

.list-group-item + .list-group-item {
  border-top-width: 0;
}

.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  -ms-flex-direction: row;
  flex-direction: row;
}

.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}

.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #4a697c;
  background-color: #e0f0fa;
}

.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
  color: #4a697c;
  background-color: #cae5f6;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #4a697c;
  border-color: #4a697c;
}

.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}

.list-group-item-secondary.list-group-item-action:hover,
.list-group-item-secondary.list-group-item-action:focus {
  color: #383d41;
  background-color: #c8cbcf;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41;
}

.list-group-item-success {
  color: #2b5b00;
  background-color: #cfe9b8;
}

.list-group-item-success.list-group-item-action:hover,
.list-group-item-success.list-group-item-action:focus {
  color: #2b5b00;
  background-color: #c2e3a5;
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #2b5b00;
  border-color: #2b5b00;
}

.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}

.list-group-item-info.list-group-item-action:hover,
.list-group-item-info.list-group-item-action:focus {
  color: #0c5460;
  background-color: #abdde5;
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}

.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}

.list-group-item-warning.list-group-item-action:hover,
.list-group-item-warning.list-group-item-action:focus {
  color: #856404;
  background-color: #ffe8a1;
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}

.list-group-item-danger {
  color: #7b0e18;
  background-color: #fabfc4;
}

.list-group-item-danger.list-group-item-action:hover,
.list-group-item-danger.list-group-item-action:focus {
  color: #7b0e18;
  background-color: #f8a7ae;
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #7b0e18;
  border-color: #7b0e18;
}

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}

.list-group-item-light.list-group-item-action:hover,
.list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}

.list-group-item-dark.list-group-item-action:hover,
.list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.close:hover {
  color: #000;
  text-decoration: none;
}

.close:not(:disabled):not(.disabled):hover,
.close:not(:disabled):not(.disabled):focus {
  opacity: .75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

@page {
    size: a3;
}

  body {
    min-width: 992px !important;
  }

  .container {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }

  .table td,
  .table th {
    background-color: #fff !important;
  }

  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }

  .table-dark {
    color: inherit;
  }

  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }

  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}

@media (max-width: 767.98px) {
  .admin-bar #wpadminbar {
    position: fixed;
  }
}

html {
  color: #0e1f2f;
  font-size: 14px;
  height: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  position: relative;
}

/**
Disable W3C & Bootstrap standard styles for the abbr tag
 */

abbr[title].required {
  border-bottom: none;
  text-decoration: none;
}

.monofont {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

#site-header.has-fixed-top-navbar {
  padding-top: 85px;
}

@media screen and (max-width: 1199.98px) and (max-width: 782px) {
  body.admin-bar #site-header nav.navbar.fixed-top {
    top: 46px !important;
  }
}

#site-footer {
  background: #f4f5f7;
}

#site-footer #wc-footer-main {
  padding: 65px 15px 80px;
}

#site-footer .wc-footer-image {
  margin-bottom: 20px;
}

#site-footer .footer-menu {
  margin-bottom: 20px;
}

#site-footer .footer-menu-title {
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

#site-footer .footer-menu a {
  display: block;
  color: #212529;
  line-height: 1.7;
}

#site-footer .footer-menu a:hover {
  text-decoration: none;
  color: #e1e4e7;
}

#site-footer .location {
  margin-bottom: 10px;
}

#site-footer .location .footer-location-title {
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

#site-footer .location .location-line-1,
#site-footer .location .location-line-2,
#site-footer .location a {
  display: block;
}

#site-footer .location a {
  color: #212529;
}

#site-footer .location a:hover {
  text-decoration: none;
  color: #e1e4e7;
}

#site-footer .opening-hours {
  margin-bottom: 20px;
}

#site-footer .opening-hours-title {
  font-weight: 600;
  margin-bottom: 10px;
}

#site-footer .opening-hours span {
  display: block;
}

#site-footer .wc-footer-social {
  margin-bottom: 20px;
}

#site-footer .wc-footer-social span {
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

#site-footer .wc-footer-social a {
  margin: 0 15px 0 0;
  font-size: 1.4rem;
  color: #212529;
}

#site-footer .wc-footer-social a:hover {
  text-decoration: none;
  color: #e1e4e7;
}

#wc-bottom-bar {
  padding: 20px 0;
  background: #fff;
}

@media (max-width: 575.98px) {
  #wc-bottom-bar .wc-footer-copyright {
    display: block;
    margin-bottom: 1rem;
    text-align: center;
  }
}

#wc-bottom-bar .bottom-bar-menu {
  width: 100%;
  text-align: center;
}

#wc-bottom-bar .bottom-bar-menu a {
  color: #212529;
  margin: 10px;
  font-size: 1rem;
}

#wc-bottom-bar .bottom-bar-menu a:hover {
  color: #e1e4e7;
  text-decoration: none;
}

html {
  overflow-x: initial;
  width: auto;
}

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

@font-face {
  font-family: 'ArialMT';
  src: url("../../fonts/ArialMT.eot");
  src: url("../../fonts/ArialMT.eot?#iefix") format("embedded-opentype"), url("../../fonts/ArialMT.woff2") format("woff2"), url("../../fonts/ArialMT.woff") format("woff"), url("../../fonts/ArialMT.ttf") format("truetype"), url("../../fonts/ArialMT.svg#ArialMT") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Caveat Brush';
  src: url("../../fonts/CaveatBrush-Regular.eot");
  src: url("../../fonts/CaveatBrush-Regular.eot?#iefix") format("embedded-opentype"), url("../../fonts/CaveatBrush-Regular.woff2") format("woff2"), url("../../fonts/CaveatBrush-Regular.woff") format("woff"), url("../../fonts/CaveatBrush-Regular.ttf") format("truetype"), url("../../fonts/CaveatBrush-Regular.svg#CaveatBrush-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/*
Neue Kabel Black
font-family: 'neue-kabel', sans-serif;
font-weight: 900;

Neue Kabel Book
font-family: 'neue-kabel', sans-serif;
font-weight: 500;

Neue Kabel ExtraBold
font-family: 'neue-kabel', sans-serif;
font-weight: 800;
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #0e1f2f;
  font-family: 'neue-kabel', sans-serif;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  color: #ed1b2e;
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 40px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

.subtitle {
  display: inline-block;
  position: relative;
  font-family: 'Caveat Brush';
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}

.subtitle .sub-title-arrow {
  display: none;
  position: absolute;
  top: -11px;
  right: -35px;
  -webkit-transform: rotate(22deg);
  transform: rotate(22deg);
}

a {
  color: #ed1b2e;
  font-size: 18px;
  transition: all .3s ease-in-out;
}

a:hover,
a:focus {
  color: #c51020;
}

p {
  color: #0e1f2f;
  font-family: 'ArialMT';
  font-size: 16px;
  line-height: 1.3;
}

ul li,
ol li {
  color: #0e1f2f;
  font-family: 'ArialMT';
  font-size: 16px;
}

.svg-eu-financiering,
.svg-icon-arrow-left-circle,
.svg-icon-arrow-left-circle-red,
.svg-icon-arrow-right-circle,
.btn:after,
.svg-icon-arrow-right-circle-red,
.svg-icon-chevron-down,
.svg-icon-chevron-down-dark,
.svg-icon-chevron-down-red,
.svg-icon-link-arrow-right,
.svg-icon-pin,
.svg-icon-play,
.icon-play,
.svg-icon-subtitle-arrow,
.svg-icon-subtitle-arrow-top,
.video-section .videos-container .single-video .inner-wrapper .controls-holder .play-text:after,
.svg-icon-upload,
.svg-icon-usps,
.usps-list li:before,
.svg-main-logo,
.svg-main-logo-1,
.svg-main-logo-animated {
  background: url("sprites.svg") no-repeat;
}

.svg-eu-financiering {
  background-position: 0 0;
}

.svg-eu-financiering-dims {
  width: 225px;
  height: 43.2px;
}

.svg-icon-arrow-left-circle {
  background-position: 18.277822908204712% 7.801418439716312%;
}

.svg-icon-arrow-left-circle-dims {
  width: 22px;
  height: 22px;
}

.svg-icon-arrow-left-circle-red {
  background-position: 20.06498781478473% 11.702127659574469%;
}

.svg-icon-arrow-left-circle-red-dims {
  width: 22px;
  height: 22px;
}

.svg-icon-arrow-right-circle,
.btn:after {
  background-position: 21.852152721364742% 15.602836879432624%;
}

.svg-icon-arrow-right-circle-dims,
.btn:after {
  width: 22px;
  height: 22px;
}

.svg-icon-arrow-right-circle-red {
  background-position: 23.63931762794476% 19.50354609929078%;
}

.svg-icon-arrow-right-circle-red-dims {
  width: 22px;
  height: 22px;
}

.svg-icon-chevron-down {
  background-position: 25.221595487510072% 22.809745982374285%;
}

.svg-icon-chevron-down-dims {
  width: 12px;
  height: 7.3px;
}

.svg-icon-chevron-down-dark {
  background-position: 26.230831315577078% 24.22145328719723%;
}

.svg-icon-chevron-down-dark-dims {
  width: 14px;
  height: 8px;
}

.svg-icon-chevron-down-red {
  background-position: 27.360774818401936% 25.60553633217993%;
}

.svg-icon-chevron-down-red-dims {
  width: 14px;
  height: 8px;
}

.svg-icon-link-arrow-right {
  background-position: 28.513731825525042% 27.320490367775832%;
}

.svg-icon-link-arrow-right-dims {
  width: 15px;
  height: 15px;
}

.svg-icon-pin {
  background-position: 29.653505237711524% 30%;
}

.svg-icon-pin-dims {
  width: 12px;
  height: 16px;
}

.svg-icon-play,
.icon-play {
  background-position: 31.587697423108896% 34.88805970149254%;
}

.svg-icon-play-dims,
.icon-play {
  width: 50px;
  height: 50px;
}

.svg-icon-subtitle-arrow {
  background-position: 35.830347471044085% 42.48073131385553%;
}

.svg-icon-subtitle-arrow-dims {
  width: 52.9px;
  height: 28.1px;
}

.svg-icon-subtitle-arrow-top,
.video-section .videos-container .single-video .inner-wrapper .controls-holder .play-text:after {
  background-position: 40.24664611282393% 47.678795483061485%;
}

.svg-icon-subtitle-arrow-top-dims,
.video-section .videos-container .single-video .inner-wrapper .controls-holder .play-text:after {
  width: 52.9px;
  height: 28.1px;
}

.svg-icon-upload {
  background-position: 43.47120843471208% 52.120141342756185%;
}

.svg-icon-upload-dims {
  width: 20px;
  height: 20px;
}

.svg-icon-usps,
.usps-list li:before {
  background-position: 45.166531275385864% 55.851063829787236%;
}

.svg-icon-usps-dims,
.usps-list li:before {
  width: 22px;
  height: 22px;
}

.svg-main-logo {
  background-position: 56.22568093385214% 66.99801192842942%;
}

.svg-main-logo-dims {
  width: 225px;
  height: 83px;
}

.svg-main-logo-1 {
  background-position: 78.11284046692607% 83.49900596421472%;
}

.svg-main-logo-1-dims {
  width: 225px;
  height: 83px;
}

.svg-main-logo-animated {
  background-position: 100% 100%;
}

.svg-main-logo-animated-dims {
  width: 225px;
  height: 83px;
}

.btn,
input[type="button"] {
  display: inline-block;
  position: relative;
  background-color: #ed1b2e;
  border-radius: 25px;
  border: none;
  color: #fff;
  font-family: 'neue-kabel', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  outline: none;
  padding: 15px 80px 15px 35px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
}

.btn:hover,
input:hover[type="button"],
.btn:focus,
input:focus[type="button"] {
  color: #fff;
  background-color: #c51020;
  text-decoration: none;
}

.btn:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn.arrow-down:after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.btn.arrow-up:after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}

input[type="button"] {
  background-image: url(../../resources/images/svg/icon-arrow-right-circle.svg);
  background-position: calc( 100% - 30px) 50%;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}

.open-fancy {
  cursor: pointer;
}

.main-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0;
  padding: 0;
  -webkit-column-gap: 24px;
  -moz-column-gap: 24px;
  column-gap: 24px;
}

.main-nav > .menu-item.menu-item-has-children {
  position: relative;
  padding-right: 20px;
}

.main-nav > .menu-item.menu-item-has-children::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 9px;
  right: 0;
  transition: all .3s ease-in-out;
  width: 14px;
  height: 8px;
  background-size: 14px 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-down-red.svg);
}

.main-nav > .menu-item.menu-item-has-children:hover::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.main-nav > .menu-item.menu-item-has-children:hover .sub-menu {
  display: -ms-flexbox;
  display: flex;
}

.main-nav .menu-item a {
  color: #0e1f2f;
  font-family: 'neue-kabel', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s ease-in-out;
  text-transform: uppercase;
}

.main-nav .menu-item:hover > a {
  color: #ed1b2e;
  text-decoration: none;
}

.main-nav .sub-menu {
  display: none;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 9px;
  position: absolute;
  top: 100%;
  left: 50%;
  width: 175px;
  list-style: none;
  margin: 0;
  padding: 30px 13px 13px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.main-nav .sub-menu::before {
  content: '';
  position: absolute;
  top: 17px;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #FFF;
  border-radius: 0 0 3px 3px;
  box-shadow: 0px 6px 3.9px 2px rgba(0, 0, 0, 0.05);
}

.main-nav .sub-menu .menu-item {
  position: relative;
  z-index: 2;
  line-height: normal;
}

.main-nav .sub-menu .menu-item a {
  font-size: 16px;
}

.mobile-nav-container {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99998;
  width: 100%;
  background-color: #fff;
  border-bottom: 5px solid #ed1b2e;
  padding: 25px 0 0;
}

.mobile-nav-container .inner-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding: 25px 0;
  overflow: auto;
}

.ham-icon-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  background-color: #ed1b2e;
  border-radius: 50%;
  margin-left: 15px;
}

.ham-icon {
  position: relative;
  width: 17px;
  height: 13px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  cursor: pointer;
}

.ham-icon span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.ham-icon span:nth-child(1) {
  top: 0px;
}

.ham-icon span:nth-child(2),
.ham-icon span:nth-child(3) {
  top: 6px;
}

.ham-icon span:nth-child(4) {
  top: 12px;
}

.ham-icon.open {
  background-color: #ed1b2e;
  border-radius: 50%;
}

.ham-icon.open span {
  left: 0;
  background-color: #fffaf5;
}

.ham-icon.open span:nth-child(1) {
  top: 8px;
  left: 50%;
  width: 0;
}

.ham-icon.open span:nth-child(2) {
  top: 6px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.ham-icon.open span:nth-child(3) {
  top: 6px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.ham-icon.open span:nth-child(4) {
  top: 8px;
  left: 50%;
  width: 0;
}

.mobile-nav {
  display: block !important;
  padding: 0;
}

.mobile-nav .menu-item {
  display: block;
  position: relative;
  margin-bottom: 15px;
}

.mobile-nav .menu-item:last-child {
  margin-bottom: 0;
}

.mobile-nav .menu-item a {
  color: #0e1f2f;
  font-family: 'neue-kabel', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.page-preloader {
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  z-index: 9999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #8fc9ee;
}

.page-preloader .content {
  margin: auto;
}

.page-preloader .content img {
  width: 363px;
}

.link-w-arrow {
  display: inline-block;
  position: relative;
  color: #0e1f2f;
  font-family: 'neue-kabel', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  padding-right: 20px;
  text-transform: uppercase;
  text-decoration: none;
}

.link-w-arrow::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  transition: all .3s ease-in-out;
  width: 15px;
  height: 15px;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-link-arrow-right.svg);
}

.link-w-arrow:hover {
  color: #0e1f2f;
  text-decoration: none;
}

.link-w-arrow:hover::after {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

.location-block {
  position: relative;
  background-color: #fff;
  padding: 0 12px;
}

.location-block .location-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-family: 'neue-kabel', sans-serif;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all .3s ease-in-out;
}

.location-block .location-title.active .arrow:after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.location-block .location-title .title-right-part {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding-left: 8px;
}

.location-block .location-title .availability-label {
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

.location-block .location-title .availability-label.blue {
  background-color: #8fc9ee;
}

.location-block .location-title .availability-label.red {
  background-color: #ed1b2e;
}

.location-block .location-title .availability-label.green {
  background-color: #52AF00;
}

.location-block .location-title .arrow {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 27px;
  height: 20px;
  border-left: 1px solid #dddde4;
  padding-right: 2px;
}

.location-block .location-title .arrow:after {
  width: 11px;
  height: 6px;
  background-size: 11px 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-down-dark.svg);
  content: '';
  transition: all .3s ease-in-out;
}

.location-block .location-toggle-holder {
  display: none;
}

.location-block .location-toggle-holder .location-info {
  border-top: 1px solid #dddde4;
}

.location-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 42px;
  padding-top: 13px;
  padding-bottom: 19px;
}

.location-info .address-row,
.location-info .footer-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: calc( 30px / 2);
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.location-info .location-col {
  width: 100%;
}

.location-info .address-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  position: relative;
  padding-left: 24px;
}

.location-info .address-col:before {
  width: 12px;
  height: 16px;
  background-size: 12px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-pin.svg);
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
}

.location-info .contact-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
}

.location-info .address {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}

.location-info .tag-lables-holder {
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.location-info .tag-lables-holder .tag-label {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.location-info .opening-hours-title {
  font-size: 17px;
}

.location-info .opening-hours {
  font-size: 17px;
}

.tag-label {
  background-color: #0e1f2f;
  color: #FFF;
  font-family: 'neue-kabel', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  padding: 4px 7px;
  text-transform: uppercase;
}

.main-header {
  position: relative;
  z-index: 9;
  padding: 40px 0;
}

@media (max-width: 1199px) {
  .main-header {
    padding: 20px 0;
  }
}

.main-header .main-header__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.main-header .main-header__inner .logo {
  margin-right: auto;
  padding-right: 15px;
}

@media (max-width: 1199px) {
  .main-header .main-header__inner .logo .logo-animated {
    max-width: 60%;
  }
}

.main-header .main-header__inner .main-nav-container {
  -ms-flex-positive: 2;
  flex-grow: 2;
  padding: 0 15px;
}

@media (max-width: 1199px) {
  .main-header .main-header__inner .main-nav-container {
    display: none;
  }
}

.main-header .main-header__inner .languages-holder {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.main-header .main-header__inner .languages-holder .languages-list {
  margin-left: auto;
}

.languages-list {
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.languages-list .item {
  margin: 0 8px;
}

.languages-list .item:first-child {
  margin-left: 0;
}

.languages-list .item:last-child {
  margin-right: 0;
}

.languages-list .language-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #c3c7cb;
  font-family: 'neue-kabel', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
}

@media (max-width: 1199px) {
  .languages-list .language-link {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

.languages-list .language-link.active {
  background-color: #ed1b2e;
  color: #fff;
  border-radius: 50%;
}

.languages-list .language-link:not(.active):hover {
  color: #ed1b2e;
}

.logo-animated {
  display: inline-block;
  position: relative;
}

.logo-animated .logo-animated-part {
  display: inline-block;
  position: absolute;
  top: 18px;
  left: 0;
  transition: all .5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.logo-animated.animated .logo-animated-part {
  opacity: 1;
  -webkit-transform: translateY(-18px);
  transform: translateY(-18px);
  visibility: visible;
}

.main-footer {
  background-color: #fff;
  padding: 27px 0;
}

.main-footer .footer-col {
  width: 50%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.header-section .video-part {
  position: relative;
}

.header-section .video-part:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: #8fc9ee;
}

.header-section .video-part .inner-container {
  position: relative;
  z-index: 2;
}

.header-section .open-fancy {
  position: relative;
  cursor: pointer;
}

.header-section .open-fancy .icon-play {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header-section .usps-part {
  position: relative;
  background-color: #8fc9ee;
  padding: 100px 0 150px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .header-section .usps-part {
    padding: 50px 0;
  }
}

.header-section .usps-part .block-subtitle {
  margin-bottom: 12px;
}

.header-section .usps-part .block-title {
  margin-bottom: 25px;
}

@media (max-width: 991px) {
  .header-section .usps-part .block-title {
    font-size: 24px;
  }
}

.header-section .usps-part .content-wrapper {
  margin-bottom: 60px;
}

.header-section .usps-part .bottom-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -33px;
  color: #a0d1f1;
  font-family: 'neue-kabel', sans-serif;
  font-size: 150px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1170px) {
  .header-section .usps-part .bottom-text {
    bottom: -10px;
    font-size: 50px;
  }
}

@media (max-width: 991px) {
  .header-section .usps-part .bottom-text {
    bottom: -5px;
    font-size: 30px;
  }
}

.header-section .usps-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 50px;
}

.header-section .usps-col .usps-wrapper {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.header-section .usps-title {
  margin-bottom: 23px;
  text-align: center;
}

.header-section .usps-wrapper {
  background-color: #fff;
  border-radius: 5px;
  padding: 50px;
}

@media (max-width: 991px) {
  .header-section .usps-wrapper {
    padding: 25px;
  }
}

.header-section .usps-wrapper .usps-list li {
  opacity: 0;
}

.header-section .usps-wrapper .usps-list li.animated {
  opacity: 1;
}

.video-animation-holder {
  position: relative;
  overflow: hidden;
}

.video-animation-holder .video-animation {
  opacity: 0;
  visibility: hidden;
}

.video-animation-holder.animated .video-animation {
  opacity: 1;
  visibility: visible;
  -webkit-animation: fadeIn 0s 0.6s;
  animation: fadeIn 0s 0.6s;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

.video-animation-holder.animated:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #8fc9ee;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-animation: secondaryImageOverlayIn 0.6s 0s, secondaryImageOverlayOut 0.6s 0.6s;
  animation: secondaryImageOverlayIn 0.6s 0s, secondaryImageOverlayOut 0.6s 0.6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.icon-play {
  display: inline-block;
}

.usps-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.usps-list li {
  position: relative;
  padding-left: 39px;
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 30px;
  transition: all .3s ease-in-out;
}

.usps-list li:last-child {
  margin-bottom: 0;
}

.usps-list li:before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes secondaryImageOverlayIn {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes secondaryImageOverlayIn {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes secondaryImageOverlayOut {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes secondaryImageOverlayOut {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.video-section {
  position: relative;
  background-color: #0e1f2f;
  padding: 50px 0;
  overflow: hidden;
  margin-bottom: 50px;
}

.video-section .content-col {
  margin-bottom: 50px;
}

.video-section .videos-container {
  display: grid;
  grid-template-areas: "main side1" "main side2" "main side3";
  grid-template-columns: 1fr 270px;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
  position: relative;
  height: 570px;
}

.video-section .videos-container:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 50%;
  width: 100000%;
  height: 100000%;
  background-color: #fff;
}

@media (max-width: 991px) {
  .video-section .videos-container {
    row-gap: 60px;
    grid-template-areas: "main main main" "side1 side2 side3";
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 100px;
    height: 400px;
  }
}

.video-section .videos-container .single-video:not(:first-child) .controls-holder {
  display: none;
}

.video-section .videos-container .single-video:nth-child(1) {
  grid-area: main;
}

.video-section .videos-container .single-video:nth-child(2) {
  grid-area: side1;
}

.video-section .videos-container .single-video:nth-child(3) {
  grid-area: side2;
}

.video-section .videos-container .single-video:nth-child(4) {
  grid-area: side3;
}

.video-section .videos-container .single-video .inner-wrapper {
  position: relative;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.video-section .videos-container .single-video .inner-wrapper .controls-holder {
  position: absolute;
  bottom: 45px;
  right: 45px;
  font-size: 0;
}

.video-section .videos-container .single-video .inner-wrapper .controls-holder .open-fancy {
  display: inline-block;
  font-size: 0;
}

.video-section .videos-container .single-video .inner-wrapper .controls-holder .play-text {
  display: inline;
  position: absolute;
  top: 100%;
  right: 0;
  width: 110px;
  min-height: 45px;
  color: #fff;
  font-family: 'Caveat Brush';
  font-size: 18px;
  line-height: normal;
  -webkit-transform: translateX(-5px) translateY(10px) rotate(-6deg);
  transform: translateX(-5px) translateY(10px) rotate(-6deg);
  text-transform: uppercase;
}

.video-section .videos-container .single-video .inner-wrapper .controls-holder .play-text:after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 100%;
  right: 0;
  -webkit-transform: translateX(28px) translateY(-32px) rotate(-34deg);
  transform: translateX(28px) translateY(-32px) rotate(-34deg);
}

.video-section .videos-container .single-video.video-switch {
  cursor: pointer;
}

.counters-section {
  margin-bottom: 20px;
}

.counters-section .section-title {
  margin-bottom: 70px;
}

@media (max-width: 991px) {
  .counters-section .section-title {
    font-size: 24px;
  }
}

.counters-section .counter-col {
  margin-bottom: 30px;
}

.number-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
}

.number-block .number-wrapper {
  position: relative;
  margin-bottom: 15px;
}

.number-block .number-wrapper .number,
.number-block .number-wrapper .number-placeholder {
  color: #0e1f2f;
  font-family: 'neue-kabel', sans-serif;
  font-size: 75px;
  font-weight: 700;
  line-height: 1;
}

.number-block .number-wrapper .number {
  position: absolute;
  top: 0;
  right: 16px;
}

.number-block .number-wrapper .number-placeholder {
  opacity: 0;
}

.number-block .number-wrapper .icon-plus {
  color: #ed1b2e;
  font-family: 'neue-kabel', sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
}

.number-block .name {
  margin-bottom: 14px;
  text-transform: uppercase;
}

.image-section {
  margin-bottom: 50px;
}

.slider-and-steps-section {
  margin-bottom: 50px;
}

.slider-and-steps-section .slider-top-content-row {
  margin-bottom: 20px;
}

.slider-and-steps-section .slider-top-content-row .slider-title {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .slider-and-steps-section .slider-top-content-row .slider-title {
    font-size: 24px;
  }
}

.slider-and-steps-section .slider-top-content-row .slider-content-wrapper {
  margin-bottom: 30px;
}

.slider-and-steps-section .steps-part {
  background-color: #8fc9ee;
  padding-top: 150px;
}

@media (max-width: 991px) {
  .slider-and-steps-section .steps-part {
    padding-top: 50px;
  }
}

.slider-and-steps-section .steps-part .steps-top-content-row {
  margin-bottom: 30px;
}

.slider-and-steps-section .steps-part .steps-title,
.slider-and-steps-section .steps-part .steps-content-wrapper {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .slider-and-steps-section .steps-part .steps-title {
    font-size: 24px;
  }
}

.slider-and-steps-section .steps-part .step-block-col {
  margin-bottom: 30px;
}

.slider-and-steps-section .bottom-image-holder {
  position: relative;
}

.slider-and-steps-section .bottom-image-holder:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #8fc9ee;
}

.image-video-slider-holder {
  position: relative;
}

.image-video-slider-holder:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #8fc9ee;
}

.image-video-slider .slick-list {
  padding-right: 22%;
}

.image-video-slider .slick-list .slick-track {
  display: -ms-flexbox;
  display: flex;
}

.image-video-slider .slick-slide {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 30px;
}

.image-video-slider .slick-slide .open-fancy {
  cursor: pointer;
  margin: auto;
}

.steps-grid {
  position: relative;
  margin: 0 auto 60px;
}

.steps-grid .grid-sizer,
.steps-grid .grid-item {
  width: 50%;
  padding: 0 15px;
}

@media (max-width: 1199px) {
  .steps-grid .grid-sizer,
  .steps-grid .grid-item {
    width: 100%;
  }
}

.steps-grid .grid-item .step-block {
  opacity: 0;
  transition: all .4s ease-in-out;
}

.steps-grid .grid-item.animated .step-block {
  opacity: 1;
}

.step-block {
  height: 100%;
  background-color: #fff;
  border-radius: 5px;
  padding: 30px;
  margin-bottom: 30px;
}

.step-block .step-header {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 60px;
  margin-bottom: 25px;
}

.step-block .step-header .step-icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 60px;
  margin-right: 30px;
}

.step-block .step-header .step-number {
  color: #ed1b2e;
  font-family: 'neue-kabel', sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  margin-left: auto;
}

.step-block .step-title {
  margin-bottom: 21px;
}

.testimonials-section {
  margin-bottom: 50px;
}

.testimonials-section .section-title {
  margin-bottom: 54px;
}

@media (max-width: 991px) {
  .testimonials-section .section-title {
    font-size: 24px;
    margin-bottom: 35px;
  }
}

.testimonials-section .section-title-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.testimonials-section .slider-controls-line {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.testimonials-section .slider-controls-line .slides-counter {
  color: #000;
  font-family: 'neue-kabel', sans-serif;
  font-size: 18px;
  font-weight: 900;
  margin-right: 30px;
}

.testimonials-section .slider-controls-line .progress-holder {
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  height: 2px;
  background-color: #f1f1f1;
}

.testimonials-section .slider-controls-line .progress-holder .line {
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  background-color: #ed1b2e;
  height: 2px;
  transition: all .3s ease-in-out;
}

.testimonials-section .slider-nav-holder,
.testimonials-section .slider-mobile-nav-holder {
  display: -ms-flexbox;
  display: flex;
  margin-left: 35px;
}

.testimonials-section .slider-nav-holder .slick-arrow,
.testimonials-section .slider-mobile-nav-holder .slick-arrow {
  margin: 0 5px;
}

.testimonials-section .slider-nav-holder .slick-arrow:first-child,
.testimonials-section .slider-mobile-nav-holder .slick-arrow:first-child {
  margin-left: 0;
}

.testimonials-section .slider-nav-holder .slick-arrow:last-child,
.testimonials-section .slider-mobile-nav-holder .slick-arrow:last-child {
  margin-right: 0;
}

@media (max-width: 991px) {
  .testimonials-section .slider-nav-holder {
    display: none;
  }
}

.testimonials-section .slider-mobile-nav-holder {
  margin-bottom: 35px;
  margin-left: 20px;
}

.testimonials-section .slick-arrow {
  display: -ms-flexbox;
  display: flex;
  background: transparent;
  border: none;
  margin: 0;
  padding: 0;
  outline: none;
  transition: all .3s ease-in-out;
}

.testimonials-section .slick-arrow.slick-prev,
.testimonials-section .slick-arrow.slick-next {
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: 1px solid #ed1b2e;
  border-radius: 50%;
}

.testimonials-section .slick-arrow.slick-prev:after,
.testimonials-section .slick-arrow.slick-next:after {
  content: '';
  margin: auto;
}

@media (max-width: 991px) {
  .testimonials-section .slick-arrow.slick-prev,
  .testimonials-section .slick-arrow.slick-next {
    width: 40px;
    height: 40px;
  }
}

.testimonials-section .slick-arrow.slick-prev:after {
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-arrow-left-circle-red.svg);
}

@media (max-width: 991px) {
  .testimonials-section .slick-arrow.slick-prev:after {
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
  }
}

.testimonials-section .slick-arrow.slick-prev:hover:after {
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-arrow-left-circle.svg);
}

@media (max-width: 991px) {
  .testimonials-section .slick-arrow.slick-prev:hover:after {
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
  }
}

.testimonials-section .slick-arrow.slick-next:after {
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-arrow-right-circle-red.svg);
}

@media (max-width: 991px) {
  .testimonials-section .slick-arrow.slick-next:after {
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
  }
}

.testimonials-section .slick-arrow.slick-next:hover:after {
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-arrow-right-circle.svg);
}

@media (max-width: 991px) {
  .testimonials-section .slick-arrow.slick-next:hover:after {
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
  }
}

.testimonials-section .slick-arrow:hover {
  background-color: #ed1b2e;
}

.testimonials-slider {
  margin-bottom: 33px;
}

@media (max-width: 991px) {
  .testimonials-slider {
    margin-bottom: 15px;
  }
}

.testimonials-slider .slick-list {
  padding-right: 22%;
}

.testimonials-slider .slick-list .slick-track {
  display: -ms-flexbox;
  display: flex;
}

.testimonials-slider .slick-slide {
  position: relative;
  height: inherit;
  margin-right: 30px;
}

.testimonials-slider .slick-slide .testimonial-block {
  height: 100%;
}

.testimonial-block {
  background-color: #f9f9f9;
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  padding: 30px;
}

.testimonial-block .title {
  margin-bottom: 24px;
}

.testimonial-block .description {
  margin-bottom: 18px;
}

.testimonial-block .description p {
  font-size: 18px;
  line-height: 1.4;
}

.testimonial-block .testimonial-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding-top: 16px;
}

.testimonial-block .testimonial-footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 2px;
  background-color: #ed1b2e;
}

.testimonial-block .testimonial-footer .image-wrapper {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 15px;
}

.testimonial-block .testimonial-footer .image-wrapper img {
  border-radius: 50%;
}

.testimonial-block .testimonial-footer .names-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.testimonial-block .testimonial-footer .names-wrapper .name {
  color: #0e1f2f;
  font-family: 'neue-kabel', sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.testimonial-block .testimonial-footer .names-wrapper .function {
  color: #0e1f2f;
  font-family: 'ArialMT';
  font-size: 16px;
}

.form-section {
  background-color: #0e1f2f;
  padding: 50px 0;
}

.form-section .section-title {
  margin-bottom: 22px;
  text-align: center;
}

@media (max-width: 991px) {
  .form-section .section-title {
    font-size: 24px;
  }
}

.form-section .content-wrapper {
  margin-bottom: 30px;
}

.form-section .btn-wrapper {
  text-align: center;
}

#cxsFormHolder {
  display: none;
  padding-top: 75px;
  /*#cxsWrapper {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -30px;
        
        .cxsErrorHeader {
            width: 100%;
            padding-left: 30px;
            padding-right: 30px;
        }
        
        .cxsTextkernelSection,
        .cxsPageHeader {
            width: 100%;
            padding-left: 30px;
            padding-right: 30px;
        }
        
        .cxsFieldsetSection {
            width: 100%;
            padding-left: 30px;
            padding-right: 30px;
            
            @media ( min-width: 992px ) {
                width: 50%;
            }
        }
        
        .cxsDocumentsSection {
            width: 100%;
            padding-left: 30px;
            padding-right: 30px;
        }
        
        .cxsPrivacystatementSection {
            width: 100%;
            padding-left: 30px;
            padding-right: 30px;
        }
    } */
}

#cxsFormHolder #cxsLanguages {
  display: none;
}

#cxsFormHolder .cxsPageHeader {
  display: none;
  margin-bottom: 30px;
}

#cxsFormHolder .cxsSectionHeader {
  display: none;
  font-size: 24px;
  text-transform: initial;
  margin-bottom: 30px;
}

#cxsFormHolder .cxsSectionIntro {
  font-family: 'ArialMT';
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 30px;
}

#cxsFormHolder .cxsFileUploadFrame {
  background-color: #fff;
  border-radius: 5px;
  width: 100%;
  height: 50px;
  background-image: url(../../resources/images/svg/icon-upload.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
}

#cxsFormHolder .cxsFieldError {
  color: #ed1b2e;
  font-size: 14px;
}

#cxsFormHolder .cxsRequired .cxsFieldLabel:after,
#cxsFormHolder .cxsRequired .cxsFieldAfterLabel:after {
  content: '*';
  color: #ed1b2e;
}

#cxsFormHolder .cxsSection input[type="tel"],
#cxsFormHolder .cxsSection input[type="email"],
#cxsFormHolder .cxsSection .cxsFieldContainer .cxsField.cxstextField,
#cxsFormHolder .cxsSection .cxsFieldContainer .cxsField.cxstextareaField,
#cxsFormHolder .cxsSection .cxsFieldContainer .cxsField.cxsSelectField,
#cxsFormHolder .cxsSection .cxsFieldContainer .cxsField.cxsdateField_d,
#cxsFormHolder .cxsSection .cxsFieldContainer .cxsField.cxsdateField_m,
#cxsFormHolder .cxsSection .cxsFieldContainer .cxsField.cxsdateField_y,
#cxsFormHolder .cxsSection .cxsFieldContainer .cxsField.cxstelField,
#cxsFormHolder .cxsSection .cxsFieldContainer .cxsField.cxsemailField,
#cxsFormHolder .cxsSection .cxsFieldContainer .cxsField.cxsdateField {
  width: 100%;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  color: #0e1f2f;
  font-family: 'ArialMT';
  font-size: 18px;
  outline: none;
  padding: 11px 10px;
}

#cxsFormHolder .cxsSection .cxsFieldLabel,
#cxsFormHolder .cxsSection.cxsPrivacystatementSection .cxsFieldType_checkbox .cxsFieldAfterLabel {
  display: block;
  font-family: 'neue-kabel', sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
  text-transform: uppercase;
}

#cxsFormHolder .cxsSection .cxsFieldContainer {
  margin-bottom: 25px;
}

#cxsFormHolder .cxsSection .cxsFieldContainer.cxsFieldType_checkboxes {
  margin-bottom: 30px;
}

#cxsFormHolder .cxsSection .cxsFieldContainer .cxsFieldAfterLabel {
  display: none;
}

#cxsFormHolder .cxsSection .cxsFieldContainer .cxsSeperator {
  margin: 0 10px;
}

#cxsFormHolder .cxsSection .cxsFieldContainer .cxsField.cxsdateField_d,
#cxsFormHolder .cxsSection .cxsFieldContainer .cxsField.cxsdateField_m,
#cxsFormHolder .cxsSection .cxsFieldContainer .cxsField.cxsdateField_y {
  width: auto;
}

#cxsFormHolder .cxsSection .cxsFieldContainer .cxsField.cxsCheckboxesField {
  position: relative;
  padding-left: 45px;
  margin-bottom: 15px;
}

#cxsFormHolder .cxsSection .cxsFieldContainer .cxsField.cxsCheckboxesField:last-child {
  margin-bottom: 0;
}

#cxsFormHolder .cxsSection .cxsFieldContainer .cxsField.cxsCheckboxesField .checkbox {
  display: inline-block;
  position: absolute;
  top: -1px;
  left: 0;
  width: 25px;
  height: 25px;
  border-radius: 4px;
  background-color: #fff;
}

#cxsFormHolder .cxsSection .cxsFieldContainer .cxsField.cxsCheckboxesField input[type="checkbox"] {
  display: none;
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

#cxsFormHolder .cxsSection .cxsFieldContainer .cxsField.cxsCheckboxesField input[type="checkbox"]:checked + .checkbox:after {
  content: '';
  top: 4px;
  left: 4px;
  position: absolute;
  width: 17px;
  height: 17px;
  background-color: #ed1b2e;
  border-radius: 4px;
}

#cxsFormHolder .cxsSection .cxsFieldContainer .cxsField.cxsCheckboxesField .cxsCheckboxLabel {
  font-family: 'neue-kabel', sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

#cxsFormHolder .cxsSection .cxsFieldContainer .cxsField.cxsSelectField {
  background-image: url(../../resources/images/svg/icon-chevron-down.svg);
  background-position: calc( 100% - 30px) 50%;
  background-repeat: no-repeat;
  background-size: 12px 8px;
  padding-right: 60px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#cxsFormHolder .cxsSection .cxsFieldType_file .cxsFileButtonLabel {
  display: none;
}

#cxsFormHolder .cxsSection .cxsFieldType_file .cxsFieldAfterLabel {
  display: none;
}

#cxsFormHolder .cxsSection .cxsFieldType_file .cxsFileName {
  display: inline-block;
}

#cxsFormHolder .cxsSection .cxsFieldType_file .cxsFileRemove {
  display: inline-block;
  color: #ed1b2e;
  margin-left: 5px;
  cursor: pointer;
  vertical-align: middle;
}

#cxsFormHolder .cxsSection.cxsPrivacystatementSection {
  border-top: 2px solid #32414e;
  border-bottom: 2px solid #32414e;
  padding-top: 30px;
  padding-bottom: 27px;
  margin-bottom: 35px;
}

#cxsFormHolder .cxsSection.cxsPrivacystatementSection .cxsSectionIntro {
  font-family: 'ArialMT';
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
}

#cxsFormHolder .cxsSection.cxsPrivacystatementSection .cxsFieldType_checkbox {
  position: relative;
  margin-bottom: 15px;
}

#cxsFormHolder .cxsSection.cxsPrivacystatementSection .cxsFieldType_checkbox .checkbox {
  display: inline-block;
  position: absolute;
  top: -5px;
  left: 0;
  width: 25px;
  height: 25px;
  border-radius: 4px;
  background-color: #fff;
}

#cxsFormHolder .cxsSection.cxsPrivacystatementSection .cxsFieldType_checkbox input[type="checkbox"] {
  display: none;
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

#cxsFormHolder .cxsSection.cxsPrivacystatementSection .cxsFieldType_checkbox input[type="checkbox"]:checked + .checkbox:after {
  content: '';
  top: 4px;
  left: 4px;
  position: absolute;
  width: 17px;
  height: 17px;
  background-color: #ed1b2e;
  border-radius: 4px;
}

#cxsFormHolder .cxsSection.cxsPrivacystatementSection .cxsFieldType_checkbox .cxsFieldLabel {
  display: none;
}

#cxsFormHolder .cxsSection.cxsPrivacystatementSection .cxsFieldType_checkbox .cxsFieldAfterLabel {
  position: relative;
  z-index: 1;
  font-size: 18px;
  padding-left: 45px;
}

.default-text-section {
  margin-bottom: 20px;
}

.default-text-section .content-column {
  margin-bottom: 30px;
}

.search-location-section {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: rgba(143, 201, 238, 0.2);
  padding-top: 47px;
}

@media (max-width: 991px) {
  .search-location-section {
    height: auto !important;
  }
}

.search-location-section .filters-sidebar {
  padding: 30px calc(30px / 2) calc(30px / 2) 0;
  overflow: auto;
}

.search-location-section .filters-sidebar .sidebar-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  max-width: 100%;
}

.search-location-section .filters-sidebar .sidebar-inner .response-list {
  margin-bottom: 30px;
}

.search-location-section .locations-title {
  display: none;
  font-size: 22px;
  margin-bottom: 11px;
}

.search-location-section .response-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.search-location-section .no-results {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
}

.search-location-section .map-wrapper {
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  height: 300px;
}

.search-location-section .map-wrapper .map-legend {
  position: absolute;
  left: 32px;
  bottom: 0;
}

.search-location-section .map-wrapper .acf-map {
  height: 100%;
}

.search-location-section .map-wrapper .cluster-marker-label .cluster-cirlce {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #8fc9ee;
  border-radius: 50%;
  opacity: 0;
  transition: all .3s ease-in;
}

.search-location-section .map-wrapper .cluster-marker-label .cluster-cirlce.active {
  opacity: 1;
}

.search-location-section .map-wrapper .cluster-marker-label .cluster-cirlce span {
  color: #fff;
  font-family: "Metropolis";
  font-weight: 700;
  line-height: 0.95;
}

.acf-map .blue-pin path {
  fill: #8fc9ee;
}

.acf-map .red-pin path {
  fill: #ed1b2e;
}

.acf-map .green-pin path {
  fill: #52AF00;
}

.map-legend {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 13px;
  background-color: #fff;
  padding: 12px 13px;
}

.map-legend .item {
  position: relative;
  font-family: 'neue-kabel', sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  padding-left: 32px;
}

.map-legend .item:before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 21px;
  height: 21px;
  border-radius: 50%;
}

.map-legend .item.blue:before {
  background-color: #8fc9ee;
}

.map-legend .item.red:before {
  background-color: #ed1b2e;
}

.map-legend .item.green:before {
  background-color: #52AF00;
}