/* Note: If need Disable Decimal-value functionilty open function.scss file */
/* mini laptop resolution 1349 X 662 and 1246 X 681 and 1218 X 672 */
/* Mozila Firefox */
/* Slick Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  --webkit-touch-callout: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-slider .slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-slider .slick-list:focus {
  outline: none;
}
.slick-slider .slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-slider .slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}
.slick-loading .slick-slider .slick-track {
  visibility: hidden;
}
.slick-slide {
  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-slider .slick-dots {
  position: relative;
  width: 100%;
  margin: 15px 0;
  padding: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}
.slick-slider .slick-dots li {
  display: inline-block;
  vertical-align: middle;
  list-style: none;
  line-height: 0;
  margin-left: 0.63rem;
  margin-right: 0.63rem;
  max-width: 8rem;
  height: 0.32rem;
  width: 100%;
}
.slick-slider .slick-dots li button {
  width: 100%;
  height: 0.13rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 0;
  background-color: #ffffff;
  transition: background-color ease 0.3s, opacity ease 0.3s;
  outline: none;
  transition: 0.3s;
}
.slick-slider .slick-dots li button:focus, .slick-slider .slick-dots li button:hover {
  outline: none;
  cursor: pointer;
  background-color: #5BFF00;
  opacity: 0.8;
}
.slick-slider .slick-dots li.slick-active button {
  background-color: #5BFF00;
  height: 100%;
}
.slick-arrow {
  --sArrowWidth: 20px;
  position: absolute;
  top: calc(50% - (var(--sArrowWidth) / 2));
  padding: 0;
  width: var(--sArrowWidth);
  height: var(--sArrowWidth);
  font-size: 0;
  background-color: transparent;
  box-shadow: none;
  border: calc(var(--sArrowWidth) / 4) solid #5BFF00;
  border-top: 0;
  border-right: 0;
  transition: border-color ease 0.3s;
  z-index: 9;
}
.slick-arrow:focus, .slick-arrow:hover {
  outline: none;
  cursor: pointer;
  border-color: #18243A;
}
.slick-arrow.slick-prev {
  left: 0;
  border-top: 0;
  border-right: 0;
  transform: rotate(45deg);
}
.slick-arrow.slick-next {
  right: 0;
  transform: rotate(-135deg);
}
.slick-arrow.slick-hidden {
  display: none;
}
.carousel {
  position: relative;
  box-sizing: border-box;
}
.carousel *, .carousel *:before, .carousel *:after {
  box-sizing: inherit;
}
.carousel.is-draggable {
  cursor: move;
  cursor: grab;
}
.carousel.is-dragging {
  cursor: move;
  cursor: grabbing;
}
.carousel__viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}
.carousel__track {
  display: flex;
}
.carousel__slide {
  flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}
.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  list-style: none;
  user-select: none;
}
.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: 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: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  box-shadow: var(--carousel-button-shadow, none);
  transition: opacity 0.15s ease;
}
.carousel__button.is-prev, .carousel__button.is-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.carousel__button.is-prev {
  left: 10px;
}
.carousel__button.is-next {
  right: 10px;
}
.carousel__button[disabled] {
  cursor: default;
  opacity: 0.3;
}
.carousel__button svg {
  width: var(--carousel-button-svg-width, 50%);
  height: var(--carousel-button-svg-height, 50%);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
  stroke-linejoin: bevel;
  stroke-linecap: round;
  filter: var(--carousel-button-svg-filter, none);
  pointer-events: none;
}
html.with-fancybox {
  scroll-behavior: auto;
}
body.compensate-for-scrollbar {
  overflow: hidden !important;
  touch-action: none;
}
.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  z-index: 1050;
  outline: none;
  transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4))}.fancybox__container *,.fancybox__container *::before,.fancybox__container *::after{box-sizing:inherit}.fancybox__container :focus{outline:none}body:not(.is-using-mouse) .fancybox__container :focus{box-shadow:0 0 0 1px #fff,0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94))}@media all and (min-width: 1024px){.fancybox__container{--carousel-button-width:48px;--carousel-button-height:48px;--carousel-button-svg-width:27px;--carousel-button-svg-height:27px}}.fancybox__backdrop{position:absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}
.fancybox__carousel {
  position: relative;
  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: flex;
  height: 100%;
}
.fancybox__slide {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  outline: 0;
  overflow: auto;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px}.fancybox__slide::before,.fancybox__slide::after{content:"";
  flex: 0 0 0;
  margin: auto;
}
@media (min-width: 1024px) {
  .fancybox__slide {
    padding: 64px 100px;
  }
}
.fancybox__content {
  margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
  padding: 36px;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  position: relative;
  align-self: center;
  display: flex;
  flex-direction: column;
  z-index: 20;
}
.fancybox__content :focus:not(.carousel__button.is-close) {
  box-shadow: none;
}
.fancybox__caption {
  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;
  flex-shrink: 0;
  overflow-wrap: anywhere;
}
.is-loading .fancybox__caption {
  visibility: hidden;
}
.fancybox__container > .carousel__dots {
  top: 100%;
  color: var(--fancybox-color, #fff);
}
.fancybox__nav .carousel__button {
  z-index: 40;
}
.fancybox__nav .carousel__button.is-next {
  right: 8px;
}
@media (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-next {
    right: 40px;
  }
}
.fancybox__nav .carousel__button.is-prev {
  left: 8px;
}
@media (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }
}
.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  right: calc(env(safe-area-inset-right, 0px) + 8px);
  z-index: 40;
}
@media (min-width: 1024px) {
  .carousel__button.is-close {
    right: 40px;
  }
}
.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--fancybox-color, #fff);
}
.fancybox__no-click, .fancybox__no-click button {
  pointer-events: none;
}
.fancybox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  color: var(--fancybox-color, currentColor);
}
.fancybox__slide .fancybox__spinner {
  cursor: pointer;
  z-index: 1053;
}
.fancybox__spinner svg {
  animation: fancybox-rotate 2s linear infinite;
  transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
.fancybox__spinner svg circle {
  fill: none;
  stroke-width: 2.75;
  stroke-miterlimit: 10;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}
@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.fancybox__backdrop, .fancybox__caption, .fancybox__nav, .carousel__dots, .carousel__button.is-close {
  opacity: var(--fancybox-opacity, 1);
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop, .fancybox__container.is-animated[aria-hidden=false] .fancybox__caption, .fancybox__container.is-animated[aria-hidden=false] .fancybox__nav, .fancybox__container.is-animated[aria-hidden=false] .carousel__dots, .fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
  animation: 0.15s ease backwards fancybox-fadeIn;
}
.fancybox__container.is-animated.is-closing .fancybox__backdrop, .fancybox__container.is-animated.is-closing .fancybox__caption, .fancybox__container.is-animated.is-closing .fancybox__nav, .fancybox__container.is-animated.is-closing .carousel__dots, .fancybox__container.is-animated.is-closing .carousel__button.is-close {
  animation: 0.15s ease both fancybox-fadeOut;
}
.fancybox-fadeIn {
  animation: 0.15s ease both fancybox-fadeIn;
}
.fancybox-fadeOut {
  animation: 0.1s ease both fancybox-fadeOut;
}
.fancybox-zoomInUp {
  animation: 0.2s ease both fancybox-zoomInUp;
}
.fancybox-zoomOutDown {
  animation: 0.15s ease both fancybox-zoomOutDown;
}
.fancybox-throwOutUp {
  animation: 0.15s ease both fancybox-throwOutUp;
}
.fancybox-throwOutDown {
  animation: 0.15s ease both fancybox-throwOutDown;
}
@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fancybox-zoomInUp {
  from {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fancybox-zoomOutDown {
  to {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutUp {
  to {
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutDown {
  to {
    transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}
.fancybox__carousel .carousel__slide::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}
.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}
.fancybox__carousel.is-draggable .fancybox__slide, .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: grab;
}
.fancybox__carousel.is-dragging .fancybox__slide, .fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: grabbing;
}
.fancybox__carousel .fancybox__slide .fancybox__content {
  cursor: auto;
}
.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}
.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}
.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}
.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}
.fancybox__image {
  transform-origin: 0 0;
  user-select: none;
  transition: none;
}
.has-image .fancybox__content {
  padding: 0;
  background: transparent;
  min-height: 1px;
}
.is-closing .has-image .fancybox__content {
  overflow: visible;
}
.has-image[data-image-fit=contain] {
  overflow: visible;
  touch-action: none;
}
.has-image[data-image-fit=contain] .fancybox__content {
  flex-direction: row;
  flex-wrap: wrap;
}
.has-image[data-image-fit=contain] .fancybox__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.has-image[data-image-fit=contain-w] {
  overflow-x: hidden;
  overflow-y: auto;
}
.has-image[data-image-fit=contain-w] .fancybox__content {
  min-height: auto;
}
.has-image[data-image-fit=contain-w] .fancybox__image {
  max-width: 100%;
  height: auto;
}
.has-image[data-image-fit=cover] {
  overflow: visible;
  touch-action: none;
}
.has-image[data-image-fit=cover] .fancybox__content {
  width: 100%;
  height: 100%;
}
.has-image[data-image-fit=cover] .fancybox__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  max-width: 100%;
  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 {
  flex: 0 0 auto;
  position: relative;
  padding: 0px 3px;
  opacity: var(--fancybox-opacity, 1);
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}
.fancybox__container.is-animated.is-closing .fancybox__thumbs {
  opacity: 0;
}
.fancybox__thumbs .carousel__slide {
  flex: 0 0 auto;
  width: var(--fancybox-thumbs-width, 96px);
  margin: 0;
  padding: 8px 3px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  cursor: pointer;
}
.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: 5px;
  border-style: solid;
  border-color: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  opacity: 0;
  transition: opacity 0.15s ease;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}
.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
  opacity: 0.92;
}
.fancybox__thumbs .carousel__slide > * {
  pointer-events: none;
  user-select: none;
}
.fancybox__thumb {
  position: relative;
  width: 100%;
  padding-top: calc(100%/(var(--fancybox-thumbs-ratio, 1.5)));
  background-size: cover;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}
.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.006) 8.1%, rgba(0, 0, 0, 0.021) 15.5%, rgba(0, 0, 0, 0.046) 22.5%, rgba(0, 0, 0, 0.077) 29%, rgba(0, 0, 0, 0.114) 35.3%, rgba(0, 0, 0, 0.155) 41.2%, rgba(0, 0, 0, 0.198) 47.1%, rgba(0, 0, 0, 0.242) 52.9%, rgba(0, 0, 0, 0.285) 58.8%, rgba(0, 0, 0, 0.326) 64.7%, rgba(0, 0, 0, 0.363) 71%, rgba(0, 0, 0, 0.394) 77.5%, rgba(0, 0, 0, 0.419) 84.5%, rgba(0, 0, 0, 0.434) 91.9%, rgba(0, 0, 0, 0.44) 100%);
  padding: 0;
  touch-action: none;
  display: flex;
  justify-content: space-between;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4));
}
@media (min-width: 1024px) {
  .fancybox__toolbar {
    padding: 8px;
  }
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}
.fancybox__container.is-animated.is-closing .fancybox__toolbar {
  opacity: 0;
}
.fancybox__toolbar__items {
  display: flex;
}
.fancybox__toolbar__items--left {
  margin-right: auto;
}
.fancybox__toolbar__items--center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.fancybox__toolbar__items--right {
  margin-left: auto;
}
@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display: none;
  }
}
.fancybox__counter {
  min-width: 72px;
  padding: 0 10px;
  line-height: var(--carousel-button-height, 48px);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
}
.fancybox__progress {
  background: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 30;
  user-select: none;
}
.fancybox__container:fullscreen::backdrop {
  opacity: 0;
}
.fancybox__button--fullscreen g:nth-child(2) {
  display: none;
}
.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}
.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}
.fancybox__button--slideshow g:nth-child(2) {
  display: none;
}
.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
  display: none;
}
.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
  display: block;
}
@font-face {
  font-family: "growthera";
  src: url("../eot/growthera.eot");
  src: url("../eot/growtherad41d.eot#iefix") format("embedded-opentype"), url("../woff/growthera.woff") format("woff"), url("../ttf/growthera.ttf") format("truetype"), url("../svg/growthera.svg#growthera") format("svg");
  font-weight: normal;
  font-style: normal;
}
[data-icon]:before {
  font-family: "growthera" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "growthera" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-facebook:before {
  content: "a";
}
.icon-instagram:before {
  content: "b";
}
.icon-linkedin:before {
  content: "c";
}
.icon-youtube:before {
  content: "d";
}
.icon-right-arrow:before {
  content: "e";
}
.icon-down-arrow:before {
  content: "f";
}
.icon-brand-shape:before {
  content: "g";
}
/* Reset css
   ========================================================================== */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, a, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  font-size: inherit;
  background: transparent;
  border: 0;
  outline: none;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
*, *::before, *::after {
  box-sizing: border-box;
}
article, aside, footer, header, nav, section, figcaption, figure, main {
  display: block;
}
/* Text-level semantics
   ========================================================================== */
sub, sup {
  position: relative;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content
   ========================================================================== */
audio, video, iframe {
  display: block;
  max-width: 100%;
}
/**
 * Basic typography style for copy text
 */
html {
  height: 100%;
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  min-height: 100%;
  height: auto;
  color: #231F20;
  font-size: 1rem;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.5;
  background-color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  body {
    height: 100%;
  }
}
body.scroll-fixed {
  overflow: hidden;
}
h1, .h1 {
  margin-bottom: 0.94rem;
  color: #231F20;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 4.25rem;
  font-weight: 700;
  line-height: 1.2;
  word-break: break-word;
  font-weight: 300;
  line-height: 1.3;
}
h1 a, .h1 a {
  display: block;
  color: inherit;
  text-decoration: none;
}
@media (max-width: 991px) {
  h1, .h1 {
    font-size: 2.75rem;
  }
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 1.88rem;
  }
}
h2, .h2 {
  margin-bottom: 0.94rem;
  color: #231F20;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 4.25rem;
  font-weight: 700;
  line-height: 1.2;
  word-break: break-word;
  font-weight: 300;
  line-height: 1.3;
}
h2 a, .h2 a {
  display: block;
  color: inherit;
  text-decoration: none;
}
@media (max-width: 991px) {
  h2, .h2 {
    font-size: 2.75rem;
  }
}
@media (max-width: 767px) {
  h2, .h2 {
    font-size: 1.88rem;
  }
}
h3, .h3 {
  margin-bottom: 0.94rem;
  color: #231F20;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  word-break: break-word;
}
h3 a, .h3 a {
  display: block;
  color: inherit;
  text-decoration: none;
}
@media (max-width: 767px) {
  h3, .h3 {
    font-size: 1.5rem;
  }
}
h4, .h4 {
  margin-bottom: 0.94rem;
  color: #231F20;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  word-break: break-word;
}
h4 a, .h4 a {
  display: block;
  color: inherit;
  text-decoration: none;
}
@media (max-width: 767px) {
  h4, .h4 {
    font-size: 1.25rem;
  }
}
h5, .h5 {
  margin-bottom: 0.94rem;
  color: #231F20;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  word-break: break-word;
}
h5 a, .h5 a {
  display: block;
  color: inherit;
  text-decoration: none;
}
@media (max-width: 767px) {
  h5, .h5 {
    font-size: 0.8333333333rem;
  }
}
h6, .h6 {
  margin-bottom: 0.94rem;
  color: #231F20;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  line-height: 1.2;
  word-break: break-word;
}
h6 a, .h6 a {
  display: block;
  color: inherit;
  text-decoration: none;
}
p {
  margin-bottom: 0.94rem;
  font-size: 1.5rem;
}
p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  p {
    font-size: 1rem;
  }
}
:is(ul, ol) {
  padding-left: 1.25rem;
  margin-bottom: 0.94rem;
}
:is(ul, ol) :is(ul, ol) {
  margin-bottom: 0;
}
:is(ul, ol) li {
  padding-top: 0.38rem;
  padding-bottom: 0.38rem;
}
:is(ul, ol) li:last-child {
  padding-bottom: 0;
}
blockquote {
  position: relative;
  display: block;
  margin-bottom: 1.57rem;
  padding: 0rem 30px;
  text-align: left;
  line-height: 1.5;
  font-size: 1.5rem;
  font-style: normal;
  color: #000000;
  background-color: transparent;
  border-left: 0.32rem solid #707170;
}
@media (max-width: 767px) {
  blockquote {
    padding: 0 1.25rem;
  }
}
blockquote p {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}
hr {
  height: 0;
  margin: 0.63rem auto 2.5rem;
  border: 0 #000000 solid;
  border-top-width: 0.07rem;
  overflow: visible;
}
img {
  display: inline-block;
  height: auto;
  max-width: 100%;
  vertical-align: top;
  border: none;
}
img[src$=".svg"] {
  max-height: 100%;
}
picture {
  display: inline-block;
  vertical-align: top;
}
/* Link
------------------------------------------------------------------------------*/
a {
  color: #5BFF00;
  transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
}
a:hover, a:focus {
  color: #18243A;
  text-decoration: underline;
  outline: none;
}
/* Tables
------------------------------------------------------------------------------*/
table {
  border-spacing: 0;
  border-collapse: collapse;
}
table td {
  text-align: left;
  font-weight: normal;
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.table-bordered {
  width: 100%;
  max-width: 100%;
  text-align: left;
}
.table-bordered td, .table-bordered th {
  vertical-align: bottom;
  border-bottom: 0.07rem solid #707170;
  padding: 0.63rem;
}
/**
 * Main content containers
 */
.container, .container-fluid {
  --gutter: 2.5rem;
  width: min(100% - var(--gutter) * 2, var(--container-width, none));
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .container, .container-fluid {
    --gutter: 1.25rem;
  }
}
.container {
  --container-width: 68.13rem;
}
/* row and column */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.94rem;
  margin-left: -0.94rem;
}
.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.row.no-gutters > [class*="cell-"] {
  padding-right: 0;
  padding-left: 0;
}
[class*="cell-"] {
  position: relative;
  width: 100%;
  padding-left: 0.94rem;
  padding-right: 0.94rem;
}
/* align item */
.d-none {
  display: none;
}
.d-block {
  display: block;
}
.d-flex {
  display: flex;
  flex-wrap: wrap;
}
.d-flex-inline {
  display: inline-flex;
}
.d-flex img {
  align-self: center;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.align-items-start {
  align-items: flex-start;
}
.align-items-center {
  align-items: center;
}
.align-items-end {
  align-items: flex-end;
}
.align-content-center {
  align-content: center;
}
.alignnone {
  float: none;
  margin: 1.25rem 0;
}
.aligncenter {
  display: block;
  clear: both;
  margin: 1.25rem auto;
}
.alignleft {
  float: left;
  margin: 0 1.25rem 1.25rem 0;
}
.alignright {
  float: right;
  margin: 0 0 1.25rem 1.25rem;
}
.justify-content-start {
  justify-content: flex-start;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-end {
  justify-content: flex-end;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-around {
  justify-content: space-around;
}
.justify-content-evenly {
  justify-content: space-evenly;
}
/* text alignment */
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.bg-white {
  background-color: #ffffff;
}
.text-white {
  color: #ffffff;
}
.bg-black {
  background-color: #000000;
}
.text-black {
  color: #000000;
}
/* column structure */
.cell-1 {
  width: 8.3333333333%;
}
.cell-2 {
  width: 16.6666666667%;
}
.cell-3 {
  width: 25%;
}
.cell-4 {
  width: 33.3333333333%;
}
.cell-5 {
  width: 41.6666666667%;
}
.cell-6 {
  width: 50%;
}
.cell-7 {
  width: 58.3333333333%;
}
.cell-8 {
  width: 66.6666666667%;
}
.cell-9 {
  width: 75%;
}
.cell-10 {
  width: 83.3333333333%;
}
.cell-11 {
  width: 91.6666666667%;
}
.cell-12 {
  width: 100%;
}
.mt-30, .m-30, .my-30 {
  margin-top: 1.875rem;
}
.pt-30, .p-30, .py-30 {
  padding-top: 1.875rem;
}
.mb-30, .m-30, .my-30 {
  margin-bottom: 1.875rem;
}
.pb-30, .p-30, .py-30 {
  padding-bottom: 1.875rem;
}
.ml-30, .m-30, .mx-30 {
  margin-left: 1.875rem;
}
.pl-30, .p-30, .px-30 {
  padding-left: 1.875rem;
}
.mr-30, .m-30, .mx-30 {
  margin-right: 1.875rem;
}
.pr-30, .p-30, .px-30 {
  padding-right: 1.875rem;
}
@media (min-width: 576px) {
  .cell-sm-1 {
    width: 8.3333333333%;
  }
  .cell-sm-2 {
    width: 16.6666666667%;
  }
  .cell-sm-3 {
    width: 25%;
  }
  .cell-sm-4 {
    width: 33.3333333333%;
  }
  .cell-sm-5 {
    width: 41.6666666667%;
  }
  .cell-sm-6 {
    width: 50%;
  }
  .cell-sm-7 {
    width: 58.3333333333%;
  }
  .cell-sm-8 {
    width: 66.6666666667%;
  }
  .cell-sm-9 {
    width: 75%;
  }
  .cell-sm-10 {
    width: 83.3333333333%;
  }
  .cell-sm-11 {
    width: 91.6666666667%;
  }
  .cell-sm-12 {
    width: 100%;
  }
  .mt-sm-30, .m-sm-30, .my-sm-30 {
    margin-top: 1.875rem;
  }
  .pt-sm-30, .p-sm-30, .py-sm-30 {
    padding-top: 1.875rem;
  }
  .mb-sm-30, .m-sm-30, .my-sm-30 {
    margin-bottom: 1.875rem;
  }
  .pb-sm-30, .p-sm-30, .py-sm-30 {
    padding-bottom: 1.875rem;
  }
  .ml-sm-30, .m-sm-30, .mx-sm-30 {
    margin-left: 1.875rem;
  }
  .pl-sm-30, .p-sm-30, .px-sm-30 {
    padding-left: 1.875rem;
  }
  .mr-sm-30, .m-sm-30, .mx-sm-30 {
    margin-right: 1.875rem;
  }
  .pr-sm-30, .p-sm-30, .px-sm-30 {
    padding-right: 1.875rem;
  }
  .d-sm-none {
    display: none;
  }
  .d-sm-block {
    display: block;
  }
  .d-sm-flex {
    display: flex;
  }
  .align-sm-items-start {
    align-items: flex-start;
  }
  .align-sm-items-center {
    align-items: center;
  }
  .align-sm-items-end {
    align-items: flex-end;
  }
  .align-sm-content-center {
    align-content: center;
  }
  .justify-sm-content-start {
    justify-content: flex-start;
  }
  .justify-sm-content-center {
    justify-content: center;
  }
  .justify-sm-content-end {
    justify-content: flex-end;
  }
  .justify-sm-content-between {
    justify-content: space-between;
  }
  .justify-sm-content-around {
    justify-content: space-around;
  }
  .justify-sm-content-evenly {
    justify-content: space-evenly;
  }
  .text-sm-center {
    text-align: center;
  }
  .text-sm-right {
    text-align: right;
  }
  .text-sm-left {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .cell-md-1 {
    width: 8.3333333333%;
  }
  .cell-md-2 {
    width: 16.6666666667%;
  }
  .cell-md-3 {
    width: 25%;
  }
  .cell-md-4 {
    width: 33.3333333333%;
  }
  .cell-md-5 {
    width: 41.6666666667%;
  }
  .cell-md-6 {
    width: 50%;
  }
  .cell-md-7 {
    width: 58.3333333333%;
  }
  .cell-md-8 {
    width: 66.6666666667%;
  }
  .cell-md-9 {
    width: 75%;
  }
  .cell-md-10 {
    width: 83.3333333333%;
  }
  .cell-md-11 {
    width: 91.6666666667%;
  }
  .cell-md-12 {
    width: 100%;
  }
  .mt-md-30, .m-md-30, .my-md-30 {
    margin-top: 1.875rem;
  }
  .pt-md-30, .p-md-30, .py-md-30 {
    padding-top: 1.875rem;
  }
  .mb-md-30, .m-md-30, .my-md-30 {
    margin-bottom: 1.875rem;
  }
  .pb-md-30, .p-md-30, .py-md-30 {
    padding-bottom: 1.875rem;
  }
  .ml-md-30, .m-md-30, .mx-md-30 {
    margin-left: 1.875rem;
  }
  .pl-md-30, .p-md-30, .px-md-30 {
    padding-left: 1.875rem;
  }
  .mr-md-30, .m-md-30, .mx-md-30 {
    margin-right: 1.875rem;
  }
  .pr-md-30, .p-md-30, .px-md-30 {
    padding-right: 1.875rem;
  }
  .d-md-none {
    display: none;
  }
  .d-md-block {
    display: block;
  }
  .d-md-flex {
    display: flex;
  }
  .align-md-items-start {
    align-items: flex-start;
  }
  .align-md-items-center {
    align-items: center;
  }
  .align-md-items-end {
    align-items: flex-end;
  }
  .align-md-content-center {
    align-content: center;
  }
  .justify-md-content-start {
    justify-content: flex-start;
  }
  .justify-md-content-center {
    justify-content: center;
  }
  .justify-md-content-end {
    justify-content: flex-end;
  }
  .justify-md-content-between {
    justify-content: space-between;
  }
  .justify-md-content-around {
    justify-content: space-around;
  }
  .justify-md-content-evenly {
    justify-content: space-evenly;
  }
  .text-md-center {
    text-align: center;
  }
  .text-md-right {
    text-align: right;
  }
  .text-md-left {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .cell-lg-1 {
    width: 8.3333333333%;
  }
  .cell-lg-2 {
    width: 16.6666666667%;
  }
  .cell-lg-3 {
    width: 25%;
  }
  .cell-lg-4 {
    width: 33.3333333333%;
  }
  .cell-lg-5 {
    width: 41.6666666667%;
  }
  .cell-lg-6 {
    width: 50%;
  }
  .cell-lg-7 {
    width: 58.3333333333%;
  }
  .cell-lg-8 {
    width: 66.6666666667%;
  }
  .cell-lg-9 {
    width: 75%;
  }
  .cell-lg-10 {
    width: 83.3333333333%;
  }
  .cell-lg-11 {
    width: 91.6666666667%;
  }
  .cell-lg-12 {
    width: 100%;
  }
  .mt-lg-30, .m-lg-30, .my-lg-30 {
    margin-top: 1.875rem;
  }
  .pt-lg-30, .p-lg-30, .py-lg-30 {
    padding-top: 1.875rem;
  }
  .mb-lg-30, .m-lg-30, .my-lg-30 {
    margin-bottom: 1.875rem;
  }
  .pb-lg-30, .p-lg-30, .py-lg-30 {
    padding-bottom: 1.875rem;
  }
  .ml-lg-30, .m-lg-30, .mx-lg-30 {
    margin-left: 1.875rem;
  }
  .pl-lg-30, .p-lg-30, .px-lg-30 {
    padding-left: 1.875rem;
  }
  .mr-lg-30, .m-lg-30, .mx-lg-30 {
    margin-right: 1.875rem;
  }
  .pr-lg-30, .p-lg-30, .px-lg-30 {
    padding-right: 1.875rem;
  }
  .d-lg-none {
    display: none;
  }
  .d-lg-block {
    display: block;
  }
  .d-lg-flex {
    display: flex;
  }
  .align-lg-items-start {
    align-items: flex-start;
  }
  .align-lg-items-center {
    align-items: center;
  }
  .align-lg-items-end {
    align-items: flex-end;
  }
  .align-lg-content-center {
    align-content: center;
  }
  .justify-lg-content-start {
    justify-content: flex-start;
  }
  .justify-lg-content-center {
    justify-content: center;
  }
  .justify-lg-content-end {
    justify-content: flex-end;
  }
  .justify-lg-content-between {
    justify-content: space-between;
  }
  .justify-lg-content-around {
    justify-content: space-around;
  }
  .justify-lg-content-evenly {
    justify-content: space-evenly;
  }
  .text-lg-center {
    text-align: center;
  }
  .text-lg-right {
    text-align: right;
  }
  .text-lg-left {
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .cell-xl-1 {
    width: 8.3333333333%;
  }
  .cell-xl-2 {
    width: 16.6666666667%;
  }
  .cell-xl-3 {
    width: 25%;
  }
  .cell-xl-4 {
    width: 33.3333333333%;
  }
  .cell-xl-5 {
    width: 41.6666666667%;
  }
  .cell-xl-6 {
    width: 50%;
  }
  .cell-xl-7 {
    width: 58.3333333333%;
  }
  .cell-xl-8 {
    width: 66.6666666667%;
  }
  .cell-xl-9 {
    width: 75%;
  }
  .cell-xl-10 {
    width: 83.3333333333%;
  }
  .cell-xl-11 {
    width: 91.6666666667%;
  }
  .cell-xl-12 {
    width: 100%;
  }
  .mt-xl-30, .m-xl-30, .my-xl-30 {
    margin-top: 1.875rem;
  }
  .pt-xl-30, .p-xl-30, .py-xl-30 {
    padding-top: 1.875rem;
  }
  .mb-xl-30, .m-xl-30, .my-xl-30 {
    margin-bottom: 1.875rem;
  }
  .pb-xl-30, .p-xl-30, .py-xl-30 {
    padding-bottom: 1.875rem;
  }
  .ml-xl-30, .m-xl-30, .mx-xl-30 {
    margin-left: 1.875rem;
  }
  .pl-xl-30, .p-xl-30, .px-xl-30 {
    padding-left: 1.875rem;
  }
  .mr-xl-30, .m-xl-30, .mx-xl-30 {
    margin-right: 1.875rem;
  }
  .pr-xl-30, .p-xl-30, .px-xl-30 {
    padding-right: 1.875rem;
  }
  .d-xl-none {
    display: none;
  }
  .d-xl-block {
    display: block;
  }
  .d-xl-flex {
    display: flex;
  }
  .align-xl-items-start {
    align-items: flex-start;
  }
  .align-xl-items-center {
    align-items: center;
  }
  .align-xl-items-end {
    align-items: flex-end;
  }
  .align-xl-content-center {
    align-content: center;
  }
  .justify-xl-content-start {
    justify-content: flex-start;
  }
  .justify-xl-content-center {
    justify-content: center;
  }
  .justify-xl-content-end {
    justify-content: flex-end;
  }
  .justify-xl-content-between {
    justify-content: space-between;
  }
  .justify-xl-content-around {
    justify-content: space-around;
  }
  .justify-xl-content-evenly {
    justify-content: space-evenly;
  }
  .text-xl-center {
    text-align: center;
  }
  .text-xl-right {
    text-align: right;
  }
  .text-xl-left {
    text-align: left;
  }
}
@media (min-width: 1400px) {
  .cell-xxl-1 {
    width: 8.3333333333%;
  }
  .cell-xxl-2 {
    width: 16.6666666667%;
  }
  .cell-xxl-3 {
    width: 25%;
  }
  .cell-xxl-4 {
    width: 33.3333333333%;
  }
  .cell-xxl-5 {
    width: 41.6666666667%;
  }
  .cell-xxl-6 {
    width: 50%;
  }
  .cell-xxl-7 {
    width: 58.3333333333%;
  }
  .cell-xxl-8 {
    width: 66.6666666667%;
  }
  .cell-xxl-9 {
    width: 75%;
  }
  .cell-xxl-10 {
    width: 83.3333333333%;
  }
  .cell-xxl-11 {
    width: 91.6666666667%;
  }
  .cell-xxl-12 {
    width: 100%;
  }
  .mt-xxl-30, .m-xxl-30, .my-xxl-30 {
    margin-top: 1.875rem;
  }
  .pt-xxl-30, .p-xxl-30, .py-xxl-30 {
    padding-top: 1.875rem;
  }
  .mb-xxl-30, .m-xxl-30, .my-xxl-30 {
    margin-bottom: 1.875rem;
  }
  .pb-xxl-30, .p-xxl-30, .py-xxl-30 {
    padding-bottom: 1.875rem;
  }
  .ml-xxl-30, .m-xxl-30, .mx-xxl-30 {
    margin-left: 1.875rem;
  }
  .pl-xxl-30, .p-xxl-30, .px-xxl-30 {
    padding-left: 1.875rem;
  }
  .mr-xxl-30, .m-xxl-30, .mx-xxl-30 {
    margin-right: 1.875rem;
  }
  .pr-xxl-30, .p-xxl-30, .px-xxl-30 {
    padding-right: 1.875rem;
  }
  .d-xxl-none {
    display: none;
  }
  .d-xxl-block {
    display: block;
  }
  .d-xxl-flex {
    display: flex;
  }
  .align-xxl-items-start {
    align-items: flex-start;
  }
  .align-xxl-items-center {
    align-items: center;
  }
  .align-xxl-items-end {
    align-items: flex-end;
  }
  .align-xxl-content-center {
    align-content: center;
  }
  .justify-xxl-content-start {
    justify-content: flex-start;
  }
  .justify-xxl-content-center {
    justify-content: center;
  }
  .justify-xxl-content-end {
    justify-content: flex-end;
  }
  .justify-xxl-content-between {
    justify-content: space-between;
  }
  .justify-xxl-content-around {
    justify-content: space-around;
  }
  .justify-xxl-content-evenly {
    justify-content: space-evenly;
  }
  .text-xxl-center {
    text-align: center;
  }
  .text-xxl-right {
    text-align: right;
  }
  .text-xxl-left {
    text-align: left;
  }
}
.btn-secondary, .btn-normal, .btn, input[type="button"], input[type="reset"], input[type="submit"] {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding: 0.88rem 3.44rem 0.88rem 1.25rem;
  color: #231F20;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 0;
  background-color: #5BFF00;
  transition: background-color 0.3s ease 0s, color 0.3s ease 0s, border-color 0.3s ease 0s;
  z-index: 1;
}
.btn-secondary:is(:hover, :focus), .btn-normal:is(:hover, :focus), .btn:is(:hover, :focus), input[type="button"]:is(:hover, :focus), input[type="reset"]:is(:hover, :focus), input[type="submit"]:is(:hover, :focus), a:hover .btn-secondary, a:hover .btn-normal, a:hover .btn, a:hover input[type="button"], a:hover input[type="reset"], a:hover input[type="submit"] {
  color: #231F20;
  text-decoration: none;
  background-color: #ffffff;
  cursor: pointer;
}
.btn-secondary:is(:hover, :focus)::before, .btn-normal:is(:hover, :focus)::before, .btn:is(:hover, :focus)::before, input[type="button"]:is(:hover, :focus)::before, input[type="reset"]:is(:hover, :focus)::before, input[type="submit"]:is(:hover, :focus)::before, a:hover .btn-secondary::before, a:hover .btn-normal::before, a:hover .btn::before, a:hover input[type="button"]::before, a:hover input[type="reset"]::before, a:hover input[type="submit"]::before {
  background-color: #ffffff;
}
.btn-secondary::before, .btn-normal::before, .btn::before, input[type="button"]::before, input[type="reset"]::before, input[type="submit"]::before {
  content: "";
  position: absolute;
  right: 0.44rem;
  top: 50%;
  transform: rotate(45deg) translateY(-65%);
  height: 1.88rem;
  width: 1.88rem;
  background-color: #5BFF00;
  transition: 0.3s;
  z-index: -1;
}
.btn-secondary::after, .btn-normal::after, .btn::after, input[type="button"]::after, input[type="reset"]::after, input[type="submit"]::after {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.13rem;
  content: "";
  content: "g";
  font-family: "growthera";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-transform: none;
}
.bg-neon .btn {
  background-color: #18243A;
  color: #ffffff;
}
.bg-neon .btn::before {
  background-color: #18243A;
}
.bg-neon .btn:hover {
  background-color: #ffffff;
  color: #18243A;
}
.bg-neon .btn:hover::before {
  background-color: #ffffff;
}
.bg-light .btn:hover {
  background-color: #18243A;
  color: #ffffff;
}
.bg-light .btn:hover::before {
  background-color: #18243A;
}
.bg-light .btn-secondary:hover {
  background-color: #5BFF00;
  color: #18243A;
}
.bg-light .btn-secondary:hover::before {
  background-color: #5BFF00;
}
.bg-light .btn-normal:hover, .bg-light .btn-normal:focus {
  background-color: #18243A;
  color: #ffffff;
}
.bg-light .btn-normal:hover::before, .bg-light .btn-normal:focus::before {
  background-color: #18243A;
}
.btn-secondary {
  background-color: #18243A;
  color: #ffffff;
}
.btn-secondary::before {
  background-color: #18243A;
}
.btn-secondary:hover {
  background-color: #ffffff;
  color: #18243A;
}
.btn-secondary:hover::before {
  background-color: #ffffff;
}
.btn-normal {
  padding: 0.82rem 1.57rem;
}
.btn-normal::after {
  display: none;
}
.btn-link {
  margin-bottom: 0.13rem;
  color: #5BFF00;
  font-size: 1rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease 0s, color 0.3s ease 0s, border-color 0.3s ease 0s;
}
.btn-link:hover, .btn-link:focus, a:hover .btn-link {
  color: #18243A;
  text-decoration: none;
  border-color: currentColor;
}
input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
}
form label {
  display: block;
  margin-bottom: 0.63rem;
  color: #000000;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.5;
}
:is(input, textarea, button, select) {
  font-family: "Roboto Condensed", sans-serif;
}
input[type="url"], input[type="text"], input[type="submit"], input[type="button"], input[type="password"], input[type="email"], input[type="tel"], input[type="search"], input[type="date"], textarea {
  -webkit-appearance: none;
  outline: none;
}
input[type="url"], input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="search"], input[type="number"], input[type="date"], textarea, select {
  width: 100%;
  height: 2.88rem;
  padding: 0 0.94rem;
  padding-left: 1.25rem;
  color: #000000;
  font-size: 0.88rem;
  font-weight: 400;
  border: 0;
  border-radius: 0.19rem;
}
input[type="url"]:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="search"]:focus, input[type="number"]:focus, input[type="date"]:focus, textarea:focus, select:focus {
  border-color: #18243A;
  outline: none;
}
input[type="url"]::-webkit-input-placeholder, input[type="text"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder, input[type="email"]::-webkit-input-placeholder, input[type="tel"]::-webkit-input-placeholder, input[type="search"]::-webkit-input-placeholder, input[type="number"]::-webkit-input-placeholder, input[type="date"]::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder {
  color: #707170;
  opacity: 1;
}
input[type="url"]:-moz-placeholder, input[type="text"]:-moz-placeholder, input[type="password"]:-moz-placeholder, input[type="email"]:-moz-placeholder, input[type="tel"]:-moz-placeholder, input[type="search"]:-moz-placeholder, input[type="number"]:-moz-placeholder, input[type="date"]:-moz-placeholder, textarea:-moz-placeholder, select:-moz-placeholder {
  color: #707170;
  opacity: 1;
}
input[type="url"]::-moz-placeholder, input[type="text"]::-moz-placeholder, input[type="password"]::-moz-placeholder, input[type="email"]::-moz-placeholder, input[type="tel"]::-moz-placeholder, input[type="search"]::-moz-placeholder, input[type="number"]::-moz-placeholder, input[type="date"]::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: #707170;
  opacity: 1;
}
input[type="url"]:-ms-input-placeholder, input[type="text"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder, input[type="email"]:-ms-input-placeholder, input[type="tel"]:-ms-input-placeholder, input[type="search"]:-ms-input-placeholder, input[type="number"]:-ms-input-placeholder, input[type="date"]:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder {
  color: #707170;
  opacity: 1;
}
textarea {
  display: block;
  height: 8rem;
  padding: 0.63rem 0.94rem;
  resize: none;
  overflow: auto;
}
select {
  -webkit-appearance: none;
  padding-right: 1.875em;
  padding-left: 1.25rem;
  background-image: url("../svg/select-down-arrow.svg");
  background-size: 0.88rem 0.88rem;
  background-position: right 0.94rem center;
  background-repeat: no-repeat;
  cursor: pointer;
  color: #707170;
}
select:focus {
  outline: none;
}
/* for ie */
select::-ms-expand {
  display: none;
}
button {
  cursor: pointer;
}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active, textarea:-webkit-autofill, textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus, select:-webkit-autofill, select:-webkit-autofill:hover, select:-webkit-autofill:focus {
  transition: background-color 5000s ease-in-out 0s;
}
.form-group {
  margin-bottom: 1.25rem;
}
.radio-btn-group .radio-option {
  display: inline-block;
  vertical-align: middle;
  padding: 0 0.63rem;
}
.radio-btn-group .radio-option:first-child {
  padding-left: 0;
}
.radio-btn-group .radio-option .radio-custom {
  position: absolute;
  opacity: 0;
}
.radio-btn-group .radio-option .radio-custom:focus + .radio-custom-label {
  outline: none;
}
.radio-btn-group .radio-option .radio-custom:checked + .radio-custom-label:before {
  background-color: #000000;
}
.radio-btn-group .radio-option .radio-custom-label {
  margin: 0;
  cursor: pointer;
  color: #000000;
}
.radio-btn-group .radio-option .radio-custom-label:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 0.63rem;
  width: 0.63rem;
  margin-top: 0.19rem;
  margin-right: 0.63rem;
  background-color: #ffffff;
  border: 0.13rem solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0px 2px #000000;
  cursor: pointer;
}
.checkbox input[type="checkbox"], .gfield_checkbox input[type="checkbox"] {
  display: none;
  width: initial;
  height: initial;
  margin-bottom: 0;
  padding: 0;
  cursor: pointer;
}
.checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label:after, .gfield_checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  top: 7px;
  left: 10px;
  display: block;
  width: 0.44rem;
  height: 0.75rem;
  border: solid #5BFF00;
  border-width: 0 0.19rem 0.19rem 0;
  transform: rotate(42deg);
}
@media (max-width: 767px) {
  .checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label:after, .gfield_checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
    left: 7px;
    top: 4px;
  }
}
.checkbox label, .gfield_checkbox label {
  position: relative;
  cursor: pointer;
}
.checkbox label::before, .gfield_checkbox label::before {
  content: "";
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  padding: 0.5rem;
  background-color: transparent;
  border: 0.07rem solid #18243A;
  -webkit-appearance: none;
  cursor: pointer;
}
#wpadminbar {
  position: fixed;
}
.wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
}
.main-container {
  width: 100%;
  align-self: start;
}
.slick-dots li {
  padding: 0 0.32rem;
}
.bg-neon {
  background-color: #5BFF00;
}
.bg-neon p {
  color: #18243A;
}
.text-white {
  color: #ffffff;
}
.text-white h1, .text-white .h1 {
  color: #ffffff;
}
.text-white h2, .text-white .h2 {
  color: #ffffff;
}
.text-white h3, .text-white .h3 {
  color: #ffffff;
}
.text-white h4, .text-white .h4 {
  color: #ffffff;
}
.text-white h5, .text-white .h5 {
  color: #ffffff;
}
.text-white h6, .text-white .h6 {
  color: #ffffff;
}
.heading-with-line {
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.23rem;
  max-width: 57.19rem;
}
.heading-with-line.text-center {
  max-width: 100%;
}
.heading-with-line.text-center::after {
  margin: 2.13rem auto 0;
}
.heading-with-line::after {
  content: "";
  height: 0.13rem;
  width: 2.5rem;
  background-color: #231F20;
  display: block;
  margin-top: 2.13rem;
}
@media (max-width: 767px) {
  .heading-with-line::after {
    margin: 1.25rem 0;
  }
}
/* Background */
.bg-dark {
  background-color: #18243A;
}
.brand-bg-dark, .brand-bg-light, .light-bg-shape {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.brand-bg-light {
  background-image: url("../png/shape-background-dark.png");
}
.brand-bg-light::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3.13rem;
  background: linear-gradient(180deg, #ffffff -14%, rgba(255, 255, 255, 0) 100%);
}
.brand-bg-dark {
  background-image: url("../jpg/shape-background-dark.jpg") !important;
  color: #ffffff;
}
.brand-bg-dark h1, .brand-bg-dark .h1 {
  color: #ffffff;
}
.brand-bg-dark h2, .brand-bg-dark .h2 {
  color: #ffffff;
}
.brand-bg-dark h3, .brand-bg-dark .h3 {
  color: #ffffff;
}
.brand-bg-dark h4, .brand-bg-dark .h4 {
  color: #ffffff;
}
.brand-bg-dark h5, .brand-bg-dark .h5 {
  color: #ffffff;
}
.brand-bg-dark h6, .brand-bg-dark .h6 {
  color: #ffffff;
}
.brand-bg-dark .heading-with-line::after {
  background-color: #ffffff;
}
.brand-bg-dark.top-bottom-overlay::before, .brand-bg-dark.top-bottom-overlay::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3.13rem;
}
.brand-bg-dark.top-bottom-overlay::before {
  top: -0.06rem;
  background: linear-gradient(180deg, #18243a 0%, rgba(24, 36, 58, 0) 100%);
}
.brand-bg-dark.top-bottom-overlay::after {
  bottom: 0;
  background: linear-gradient(0deg, #18243a 18%, rgba(24, 36, 58, 0) 100%);
}
.light-bg-shape {
  background-image: url("../png/shape-background-light.png");
  background-size: 100%;
  z-index: 1;
}
.light-bg-shape::before, .light-bg-shape::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3.13rem;
  z-index: -1;
}
.light-bg-shape::before {
  top: 0;
  background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0) 100%);
}
.light-bg-shape::after {
  background: linear-gradient(0deg, white 18%, rgba(255, 255, 255, 0) 100%);
  bottom: 0;
}
/* small heading */
.small-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .small-heading {
    flex-direction: column;
  }
}
.small-heading > div {
  flex: 1;
  margin-right: 1.25rem;
}
@media (max-width: 767px) {
  .small-heading > div {
    margin-right: 0;
  }
}
/* Breadcrumb */
.breadcrumb-wrapper .btn {
  padding: 0.94rem 1.25rem;
  margin-right: 1.88rem;
}
.breadcrumb-wrapper .btn.un-link {
  pointer-events: none;
  background-color: #18243A;
  color: #ffffff;
  box-shadow: 0 0 1.94rem #5BFF00;
  font-size: 0.88rem;
}
.breadcrumb-wrapper .btn.un-link::before {
  background-color: #18243A;
}
.breadcrumb-wrapper .btn::after {
  display: none;
}
/* View More Card */
.view-more-card {
  margin-right: -0.78rem;
  margin-left: -0.78rem;
}
.view-more-card [class*="cell-"] {
  padding-left: 0.79rem;
  padding-right: 0.79rem;
}
@media (max-width: 575px) {
  .view-more-card {
    margin-right: -0.46rem;
    margin-left: -0.46rem;
  }
  .view-more-card [class*="cell-"] {
    padding-left: 0.47rem;
    padding-right: 0.47rem;
  }
}
.view-more-card .vmc-col-wrapper {
  margin-bottom: 1.88rem;
}
.view-more-card .vmc-col {
  position: relative;
  text-align: center;
  border: 1px solid #E2E2E2;
  border-radius: 0.63rem;
  padding: 1.32rem 0.82rem;
  transition: 0.3s;
  transition-delay: 0.5s;
}
.view-more-card .vmc-col.open {
  transition-delay: 0s;
  background-color: #5BFF00;
  border-color: #5BFF00;
  z-index: 2;
}
.view-more-card .vmc-col.open .plus-icon {
  background-color: #231F20;
  bottom: -0.75rem;
}
.view-more-card .vmc-col.open .plus-icon::before {
  opacity: 0;
}
.view-more-card .vmc-col .plus-icon {
  position: absolute;
  right: 15px;
  bottom: -18px;
  width: 24px;
  height: 24px;
  border: 1px solid #5BFF00;
  background-color: #5BFF00;
  border-radius: 100vh;
  transition: 0.3s;
  cursor: pointer;
}
.view-more-card .vmc-col .plus-icon:hover {
  background-color: #000000;
  border-color: #000000;
}
.view-more-card .vmc-col .plus-icon::before, .view-more-card .vmc-col .plus-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 3px;
  background-color: #ffffff;
  transform: translate(-50%, -50%);
  transition: all 0.15s cubic-bezier(0.42, 0, 0.58, 1);
}
.view-more-card .vmc-col .plus-icon::before {
  width: 3px;
  height: 13px;
}
.view-more-card .vmc-title h6, .view-more-card .vmc-title .h6 {
  text-transform: uppercase;
  letter-spacing: 0.07rem;
}
@media (max-width: 767px) {
  .view-more-card .vmc-title h6, .view-more-card .vmc-title .h6 {
    font-size: 1rem;
  }
}
.view-more-card .vmc-description-wrapper {
  position: absolute;
  left: -0.06rem;
  right: -0.06rem;
  z-index: 1;
  margin-top: 0.94rem;
}
.view-more-card .vmc-card-description {
  display: none;
  padding: 0 0.82rem 1.25rem;
  background-color: #5BFF00;
  border-radius: 0 0 0.63rem 0.63rem;
  margin-top: -1px;
}
.view-more-card .vmc-card-description p {
  line-height: 1.25;
  font-size: 1rem;
}
.view-more-card .vmc-image {
  max-width: 7.44rem;
  height: 6.38rem;
  width: 100%;
  margin: 0 auto 1.13rem;
}
.view-more-card .vmc-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.view-more-card .vmc-title h6 {
  margin-bottom: 0;
}
.theme-list ul {
  padding-left: 0;
}
.theme-list ul li {
  display: flex;
  align-items: flex-start;
  list-style: none;
  font-weight: 700;
  line-height: 1.1;
  font-size: 1.13rem;
  padding: 0.44rem 0;
}
@media (max-width: 767px) {
  .theme-list ul li {
    font-size: 1rem;
  }
}
.theme-list ul li::before {
  content: "e";
  font-family: "growthera";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-transform: none;
  margin-right: 0.44rem;
  font-size: 0.75rem;
  line-height: 1.5;
}
.child-page-nav {
  margin-bottom: 0;
  padding-left: 0;
}
.child-page-nav .btn {
  padding: 0.88rem 1.25rem;
  margin-right: 1.57rem;
  margin-bottom: 0.63rem;
}
@media (max-width: 1100px) {
  .child-page-nav .btn {
    font-size: 0.75rem;
    padding: 0.63rem 0.94rem;
  }
}
@media (max-width: 991px) {
  .child-page-nav .btn {
    padding: 0.63rem;
    margin-right: 1.25rem;
  }
}
.child-page-nav .btn.current-menu-item {
  pointer-events: none;
  background-color: #18243A;
  color: #ffffff;
  box-shadow: 0 0 1.94rem #5BFF00;
}
.child-page-nav .btn.current-menu-item a {
  color: #ffffff;
}
.child-page-nav .btn.current-menu-item::before {
  background-color: #18243A;
}
.child-page-nav .btn a {
  text-decoration: none;
  color: #231F20;
}
.child-page-nav .btn:last-child {
  padding: 0.88rem 1.25rem;
  margin-right: 0;
}
@media (max-width: 1100px) {
  .child-page-nav .btn:last-child {
    padding: 0.63rem 0.94rem;
  }
}
@media (max-width: 991px) {
  .child-page-nav .btn:last-child {
    padding: 0.63rem;
  }
}
@media (max-width: 1100px) {
  .child-page-nav .btn::before {
    width: 0.94rem;
    height: 0.94rem;
    right: 0;
  }
}
.child-page-nav .btn::after {
  display: none;
}
.hs-floating-button {
  position: fixed;
  top: 28%;
  right: 1.5rem;
  z-index: 998;
  transform: rotate(-90deg);
  transform-origin: right;
}
@media (max-width: 767px) {
  .hs-floating-button {
    right: 0.94rem;
  }
}
.hs-floating-button .btn {
  padding-right: 1.25rem;
}
@media (max-width: 767px) {
  .hs-floating-button .btn {
    font-size: 0.75rem;
    padding: 0.5rem;
  }
}
.hs-floating-button .btn::after, .hs-floating-button .btn::before {
  display: none;
}
/* responsive nav for small devices */
.hamburger {
  --humburgerBox: 1.88rem;
  display: none;
  align-items: center;
  justify-content: center;
  width: var(--humburgerBox);
  height: var(--humburgerBox);
  padding: 0;
  margin: 0;
  text-align: center;
  background-color: transparent;
  z-index: 999;
}
@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }
}
.hamburger:hover, .hamburger:focus {
  background-color: transparent;
  outline: none;
  cursor: pointer;
}
.hamburger span {
  position: relative;
  left: 0;
  right: 0;
  display: block;
  margin: 0 auto;
  border-radius: 0;
  height: 2px;
  width: 100%;
  background: #5BFF00;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
  cursor: pointer;
  border-radius: 2px;
}
.hamburger span:before, .hamburger span:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #5BFF00;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
  cursor: pointer;
  border-radius: 2px;
}
.hamburger span:before {
  top: -8px;
}
.hamburger span:after {
  bottom: -8px;
}
.hamburger.is-clicked span {
  background-color: transparent !important;
}
.hamburger.is-clicked span:before, .hamburger.is-clicked span:after {
  top: 0;
  background-color: #5BFF00;
}
.hamburger.is-clicked span:before {
  transform: rotate(45deg);
}
.hamburger.is-clicked span:after {
  transform: translateY(-6px) rotate(-45deg);
  top: 6px;
}
.mbnav {
  position: relative;
  display: none;
  z-index: 999;
}
.mbnav.is-open + .main-header .bottom-header::before {
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 991px) {
  .mbnav {
    display: block;
  }
}
.mbnav__state {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 100%;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  z-index: 999;
  pointer-events: none;
}
.mbnav__inner {
  position: relative;
  max-height: 100vh;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.mbnav__top {
  display: flex;
  justify-content: space-between;
  background: #18243a;
}
.mbnav__logo {
  color: #ffffff;
  padding: 15px;
}
.mbnav .menu-wrap {
  --leftSlide: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: var(--leftSlide);
  transition: 0.4s ease;
}
.mbnav .menu-wrap .menu-wrap {
  right: -100%;
  opacity: 0;
  visibility: hidden;
}
.mbnav .menu-wrap > .menu-inner {
  max-height: 100%;
  padding-top: 5.32rem;
  padding-bottom: 1.25rem;
  background-color: #18243A;
  pointer-events: auto;
  overflow: hidden auto;
}
body.admin-bar .mbnav .menu-wrap > .menu-inner .menu {
  padding-top: 50px;
}
.mbnav ul {
  position: static;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0 20px;
  transition: 0.4s ease;
}
.mbnav ul li.is-open > .menu-wrap {
  opacity: 1;
  visibility: visible;
}
.admin-bar .mbnav ul li .sub-menu {
  padding-top: 2.5rem;
}
.mbnav ul li:not(.btn-wrap) {
  position: static;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
  margin: 0 0 0 0;
  list-style: none;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(112, 113, 112, 0.3);
}
.mbnav ul li:not(.btn-wrap).current-menu-item {
  color: #5BFF00;
}
.mbnav ul li:not(.btn-wrap):last-child {
  border-bottom: 0;
}
.mbnav ul li:not(.btn-wrap)::before {
  display: none;
}
.mbnav ul li:not(.btn-wrap).has-sub a::after {
  display: none;
}
.mbnav ul li:not(.btn-wrap) a::after, .mbnav ul li:not(.btn-wrap) .mbnav__caret::before {
  content: "";
  --sArrowWidth: 10px;
  display: flex;
  align-items: center;
  margin: auto;
  width: var(--sArrowWidth);
  height: var(--sArrowWidth);
  border: calc(var(--sArrowWidth) / 4) solid #5BFF00;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}
.mbnav ul li:not(.btn-wrap) a {
  position: relative;
  display: block;
  padding: 10px 0;
  color: currentColor;
  line-height: 1.3;
  text-decoration: none !important;
  z-index: 2;
  cursor: pointer;
  flex: 1 1 auto;
  order: -1;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
}
.mbnav ul li:not(.btn-wrap) a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin-left: auto;
  margin-right: 0;
  display: none;
}
.mbnav ul li:not(.btn-wrap) a .sub-menu a {
  text-transform: capitalize;
}
.mbnav__caret {
  display: grid;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: auto;
  cursor: pointer;
  z-index: 1;
}
.mbnav__caret:not(.trigger-caret) {
  pointer-events: none;
}
.color-mbnav .mbnav__caret::before {
  color: #5BFF00 !important;
}
.mbnav ul li:not(.btn-wrap).is-open > .mbnav__caret:after {
  transform: rotate(0);
}
.mbnav ul li:not(.btn-wrap).has-sub > a {
  flex: 1 1 auto;
}
.mbnav ul li:not(.btn-wrap) .btn-wrap {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: calc(100% - 40px);
  margin: 0;
  transform: translateY(200%);
  transition: 0.4s ease-in-out;
}
.mbnav ul li:not(.btn-wrap) .btn-wrap::before {
  display: none;
}
.mbnav ul li:not(.btn-wrap) .btn-wrap a {
  display: block;
}
.mbnav ul ul li {
  font-size: 16px;
}
.mbnav ul ul li a {
  padding-left: 25px;
}
.mbnav ul ul li li {
  font-size: 14px;
}
.mbnav ul ul li li a {
  padding-left: 35px;
}
.mbnav ul > li > .sub-menu {
  position: absolute;
  left: 100%;
}
.mbnav ul .back-click {
  width: 100%;
  order: -1;
  color: #5BFF00;
  padding: 15px 0;
  font-weight: 400;
}
.mbnav ul .back-click::before {
  content: "";
  --sArrowWidth: 10px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  width: var(--sArrowWidth);
  height: var(--sArrowWidth);
  border: calc(var(--sArrowWidth) / 4) solid #5BFF00;
  border-right: 0;
  border-top: 0;
  transform: rotate(45deg);
}
.mbnav__backdrop {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  visibility: hidden;
  transition: all 0.4s ease-in;
  background: #18243A;
  opacity: 0;
  z-index: -1;
}
.mbnav__overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.4s ease-in;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}
.mbnav__overlay.is-show {
  opacity: 1;
  visibility: visible;
}
.mbnav.is-open .btn-wrap {
  transform: translateY(0);
}
.mbnav.is-open .mbnav__state {
  left: 0;
}
.mbnav.is-open .mbnav__backdrop {
  opacity: 1;
  z-index: 999;
  visibility: visible;
}
/*--- header ---*/
.page-template-template-frontpage .main-header .bottom-header::before {
  background: transparent;
}
.main-header {
  position: absolute;
  width: 100%;
  height: auto;
  background-color: transparent;
  z-index: 999;
  /* nav */
}
.main-header .site-notice {
  text-align: center;
  padding: 0.63rem 0;
  background-color: #000000;
}
.main-header .site-notice p {
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.13rem;
  font-weight: 700;
  font-size: 0.75rem;
  font-family: "Roboto Condensed", sans-serif;
}
@media (max-width: 575px) {
  .main-header .site-notice p {
    font-size: 0.57rem;
  }
}
.main-header .site-notice p a {
  display: inline-block;
}
.main-header .site-notice p a:hover {
  color: #ffffff;
}
.main-header .brand {
  display: inline-flex;
  vertical-align: middle;
  width: 20.94rem;
}
@media (max-width: 991px) {
  .main-header .brand {
    width: 11.57rem;
  }
}
.main-header .bottom-header {
  position: relative;
  padding: 2.82rem 0 0.63rem;
}
@media (max-width: 991px) {
  .main-header .bottom-header {
    padding: 1.88rem 0 0.63rem;
  }
}
@media (max-width: 767px) {
  .main-header .bottom-header {
    padding: 1.25rem 0;
  }
}
.main-header .bottom-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 9.38rem;
  background: linear-gradient(180deg, #02030a 25%, rgba(243, 244, 243, 0) 100%);
  z-index: -1;
  pointer-events: none;
  transition: 0.3s;
}
.main-header .navigation {
  word-break: keep-all;
  margin-top: 0.13rem;
}
@media (max-width: 767px) {
  .main-header .navigation {
    display: none;
  }
}
.main-header .navigation ul {
  padding: 0;
  margin: 0;
  list-style: none;
  letter-spacing: 0.13rem;
}
.main-header .navigation ul .current-menu-parent::before {
  width: 100% !important;
}
.main-header .navigation ul .current-menu-parent > a {
  color: #5BFF00;
}
.main-header .navigation ul li {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
}
.main-header .navigation ul li a {
  position: relative;
  font-size: 1.13rem;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1.32rem;
  z-index: 2;
}
@media (max-width: 991px) {
  .main-header .navigation ul li a {
    font-size: 1rem;
    line-height: 1.32rem;
  }
}
.main-header .navigation ul li a:hover {
  color: #5BFF00;
}
.main-header .navigation ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-header .navigation ul li:hover.menu-item-has-children > a:after {
  transform: rotate(135deg);
  margin-bottom: 8px;
}
.main-header .navigation ul.menu > li {
  margin: 0 1.25rem;
}
@media (max-width: 991px) {
  .main-header .navigation ul.menu > li {
    margin: 0 0.63rem;
  }
}
.main-header .navigation ul.menu > li:last-child {
  margin-right: 0;
}
.main-header .navigation ul.menu > li:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 1px;
  transition: 0.3s linear;
  background-color: #5BFF00;
  z-index: 2;
}
.main-header .navigation ul.menu > li:hover:before, .main-header .navigation ul.menu > li.current-menu-item:before {
  width: 100%;
}
.main-header .navigation ul.menu > li:hover > a, .main-header .navigation ul.menu > li.current-menu-item > a {
  color: #5BFF00;
}
.main-header .navigation ul .sub-menu {
  position: absolute;
  width: 100%;
  padding: 0.63rem 0;
  z-index: 1;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.main-header .navigation ul .sub-menu .current-menu-item a {
  padding-left: 1.57rem;
  color: #5BFF00;
}
.main-header .navigation ul .sub-menu .current-menu-item a::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) translateY(-50%);
}
.main-header .navigation ul .sub-menu li {
  margin: 0;
  border-bottom: 1px dotted #5BFF00;
}
.main-header .navigation ul .sub-menu li:last-child {
  border-bottom: 0;
}
.main-header .navigation ul .sub-menu li:last-child a {
  padding-bottom: 0;
}
.main-header .navigation ul .sub-menu li:hover a {
  padding-left: 1.57rem;
}
.main-header .navigation ul .sub-menu li:hover a::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) translateY(-50%);
}
.main-header .navigation ul .sub-menu li a {
  position: relative;
  font-weight: 300;
  transition: 0.3s;
}
.main-header .navigation ul .sub-menu li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.32rem;
  transform: translateX(-10px) translateY(-50%);
  width: 1rem;
  height: 1rem;
  background-image: url("../svg/brand-shape.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.main-header .navigation ul .sub-menu .menu-item-has-children > a:after {
  transform: rotate(45deg) !important;
  margin-bottom: 0.19rem !important;
}
.main-header .navigation ul .sub-menu .sub-menu {
  left: 100%;
  top: 0;
  transform: translateX(20px);
}
.main-header .navigation ul .sub-menu .sub-menu::before {
  top: 0;
}
.main-header .navigation ul .sub-menu a {
  display: inline-block;
  font-size: 1.13rem;
  text-transform: capitalize;
  padding: 0.63rem 0;
}
.main-header .navigation ul .sub-menu::before {
  content: "";
  position: absolute;
  top: -2.5rem;
  bottom: 0;
  left: -1.25rem;
  right: -1.25rem;
  background-color: rgba(24, 36, 58, 0.8);
  z-index: -1;
  border-radius: 0.32rem;
  box-shadow: 0px 7px 11px 5px rgba(0, 0, 0, 0.1);
}
.top-bar {
  background-color: #061C31;
  padding: 0.69rem 0;
}
@media (max-width: 575px) {
  .top-bar .right-wrapper {
    margin-top: 0;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .top-bar .bar-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.top-bar ul {
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: "Roboto", sans-serif;
}
.top-bar ul li {
  padding: 0;
}
.top-bar ul a {
  font-size: 0.88rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  line-height: 0.88rem;
  display: inline-flex;
}
.top-bar ul a:hover {
  color: #5BFF00;
}
@media (max-width: 575px) {
  .top-bar ul.utility-menu {
    margin-bottom: 0.63rem;
  }
}
.top-bar ul.utility-menu li:not(:last-child):after {
  content: "|";
  display: inline-block;
  margin: 0 0.63rem;
  border-radius: 100%;
  color: #ffffff;
}
.top-bar .social-media-icons {
  margin-left: 1.25rem;
}
@media (max-width: 575px) {
  .top-bar .social-media-icons {
    margin-left: 0;
  }
}
.top-bar .social-media-icons li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.57rem;
  height: 1.57rem;
  border-radius: 50%;
}
.top-bar .social-media-icons li:not(:last-child) {
  margin-right: 5px;
}
.top-bar .social-media-icons li .icon-youtube {
  font-size: 1.44rem;
  margin-top: 0.07rem;
}
.top-bar .social-media-icons li a {
  font-size: 1.13rem;
  color: #5BFF00;
}
.top-bar .social-media-icons li a:hover {
  color: #ffffff;
}
/*--- footer ---*/
.main-footer {
  width: 100%;
  line-height: normal;
  background: #18243A;
  padding: 3.44rem 0 2.82rem;
}
@media (max-width: 991px) {
  .main-footer {
    padding: 2.5rem 0 1.88rem;
  }
}
.main-footer .footer-wrap {
  margin-bottom: 2.82rem;
}
@media (max-width: 767px) {
  .main-footer .footer-wrap {
    margin-bottom: 1.57rem;
  }
}
@media (max-width: 767px) {
  .main-footer .footer-wrap .row {
    flex-direction: column-reverse;
  }
}
.main-footer .footer-wrap .logo-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .main-footer .footer-wrap .logo-wrap {
    align-items: flex-start;
    margin-bottom: 1.25rem;
  }
}
.main-footer .footer-wrap .footer-logo {
  width: 100%;
  max-width: 20.94rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 991px) {
  .main-footer .footer-wrap .footer-logo {
    max-width: 15.63rem;
  }
}
@media (max-width: 767px) {
  .main-footer .footer-wrap .footer-logo {
    margin: 0 auto 0.63rem;
  }
}
.main-footer .footer-wrap .footer-logo img {
  width: 100%;
}
.main-footer .footer-menu .menu > li {
  padding: 0;
  margin-bottom: 0.63rem;
}
.main-footer .footer-menu .menu > li > a {
  margin: 0;
  display: inline-block;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
}
.main-footer .footer-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .main-footer .footer-menu ul {
    text-align: center;
  }
}
.main-footer .footer-menu ul a {
  display: inline-block;
  text-decoration: none;
  font-size: 1.13rem;
  font-weight: bold;
  margin: 5px 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .main-footer .footer-menu ul a {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .main-footer .footer-menu ul a {
    margin: 0;
  }
}
.main-footer .footer-menu ul a:hover {
  color: #5BFF00;
}
.main-footer .footer-bottom .copyright-text {
  margin-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .main-footer .footer-bottom .copyright-text {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.main-footer .footer-bottom .copyright-text ul {
  padding: 0;
  list-style: none;
  font-size: 0.88rem;
  font-family: "Roboto", sans-serif;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .main-footer .footer-bottom .copyright-text ul {
    margin-top: 0.63rem;
  }
}
.main-footer .footer-bottom .copyright-text ul li {
  padding: 0;
}
@media (max-width: 767px) {
  .main-footer .footer-bottom .copyright-text ul li:first-child a::before {
    display: none;
  }
}
.main-footer .footer-bottom .copyright-text ul a {
  text-decoration: none;
  display: block;
}
.main-footer .footer-bottom .copyright-text ul a::before {
  content: "|";
  display: inline-block;
  margin: 0 0.44rem;
  border-radius: 100%;
  vertical-align: bottom;
  color: #ffffff;
}
.main-footer .footer-bottom .copyright-text ul a:hover, .main-footer .footer-bottom .copyright-text ul a:focus {
  color: #5BFF00;
  text-decoration: underline;
}
.main-footer .footer-bottom .copyright-text p {
  margin-bottom: 0;
  font-size: 0.88rem;
  font-family: "Roboto", sans-serif;
}
.main-footer .footer-bottom .top-bar {
  flex: 1;
  background-color: transparent;
  padding: 0;
  margin-bottom: 1.25rem;
}
@media (max-width: 991px) {
  .main-footer .footer-bottom-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .main-footer .footer-bottom-wrapper {
    align-items: center;
  }
}
.main-footer .footer-bottom-wrapper .bar-wrap {
  display: flex;
  flex-direction: inherit;
}
@media (max-width: 767px) {
  .main-footer .footer-bottom-wrapper .bar-wrap {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .main-footer .footer-bottom-wrapper .bar-wrap .social-media-icons {
    margin-left: 0;
  }
}
.main-footer .footer-bottom-wrapper .bar-wrap .utility-menu {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .main-footer .footer-bottom-wrapper .bar-wrap .utility-menu {
    margin-bottom: 0.63rem;
  }
}
.get-a-qoute {
  position: relative;
  margin: 5rem 0;
}
@media (max-width: 767px) {
  .get-a-qoute {
    margin-top: 2.5rem;
  }
}
.get-a-qoute .container-sm {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .get-a-qoute .wpcf7-form .btn {
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .get-a-qoute .wpcf7-form .btn {
    margin-top: 1.25rem;
  }
}
.get-a-qoute .wpcf7-form .btn-join {
  background-color: #5BFF00;
  padding: 0 9px;
  margin: 0;
}
.fifty-fifty-component {
  margin: 3.44rem 0 4.69rem;
  position: relative;
}
@media (max-width: 991px) {
  .fifty-fifty-component {
    margin: 2.5rem 0;
  }
}
.fifty-fifty-component.ff-two-row {
  margin: 4.82rem 0 5.38rem;
}
.fifty-fifty-component .fs-leadership-info {
  margin-bottom: 2.19rem;
}
@media (max-width: 991px) {
  .fifty-fifty-component .fs-leadership-info {
    margin-bottom: 1.57rem;
  }
}
.fifty-fifty-component .fs-leadership-info p {
  margin-bottom: 0;
  font-weight: 400;
  color: #18243A;
}
@media (max-width: 991px) {
  .fifty-fifty-component .fs-leadership-info p {
    font-size: 1.13rem;
  }
}
.fifty-fifty-component .fs-leadership-info span {
  display: block;
  color: #18243A;
}
.fifty-fifty-component .fs-leadership-info .fs-designation {
  font-style: italic;
}
.fifty-fifty-component .fs-leadership-info .fs-company {
  font-size: 0.88rem;
  text-transform: uppercase;
  font-weight: 700;
}
.fifty-fifty-component .fs-row {
  margin-bottom: 5.38rem;
}
@media (max-width: 991px) {
  .fifty-fifty-component .fs-row {
    margin-bottom: 2.5rem;
  }
}
.fifty-fifty-component .fs-row:last-child {
  margin-bottom: 0;
}
.fifty-fifty-component .fs-heading {
  margin-bottom: 1.88rem;
}
@media (max-width: 991px) {
  .fifty-fifty-component .fs-heading {
    margin-bottom: 0.94rem;
  }
}
.fifty-fifty-component .fs-content-wrapper .row {
  margin-right: -1.4rem;
  margin-left: -1.4rem;
}
.fifty-fifty-component .fs-content-wrapper .row [class*="cell-"] {
  padding-left: 1.41rem;
  padding-right: 1.41rem;
}
@media (min-width: 1200px) {
  .fifty-fifty-component .fs-content-wrapper .row {
    margin-right: -1.56rem;
    margin-left: -1.56rem;
  }
  .fifty-fifty-component .fs-content-wrapper .row [class*="cell-"] {
    padding-left: 1.57rem;
    padding-right: 1.57rem;
  }
}
@media (max-width: 767px) {
  .fifty-fifty-component .fs-content-wrapper .row {
    flex-direction: column-reverse;
  }
}
.fifty-fifty-component .fs-content p {
  line-height: 1.5;
}
@media (max-width: 991px) {
  .fifty-fifty-component .fs-content p {
    font-size: 1rem;
  }
}
.fifty-fifty-component .fs-content .address {
  color: #18243A;
  font-weight: 700;
  font-size: 1.25rem;
  font-style: normal;
  max-width: 15rem;
  line-height: 1.88rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .fifty-fifty-component .fs-content .address {
    font-size: 1rem;
    line-height: inherit;
  }
}
@media (min-width: 992px) {
  .fifty-fifty-component .fs-content {
    line-height: 1.9;
  }
}
.fifty-fifty-component .fs-content h5, .fifty-fifty-component .fs-content .h5 {
  font-family: "Roboto Condensed", sans-serif;
}
@media (min-width: 992px) {
  .fifty-fifty-component .fs-content h5, .fifty-fifty-component .fs-content .h5 {
    line-height: 1.5;
  }
}
.fifty-fifty-component .fs-content .subtitle {
  font-size: 2.5rem;
  font-weight: 100;
  margin-bottom: 1.25rem;
  line-height: 1;
  display: block;
}
@media (max-width: 991px) {
  .fifty-fifty-component .fs-content .subtitle {
    font-size: 2.75rem;
  }
}
@media (max-width: 767px) {
  .fifty-fifty-component .fs-content .subtitle {
    font-size: 2.25rem;
  }
}
.fifty-fifty-component .fs-image {
  position: relative;
  height: 100%;
}
@media (max-width: 1199px) {
  .fifty-fifty-component .fs-image {
    margin-right: -2.81rem;
  }
}
@media (max-width: 991px) {
  .fifty-fifty-component .fs-image {
    margin-right: 0;
  }
}
.fifty-fifty-component .fs-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .fifty-fifty-component .fs-image img {
    border-radius: 0.63rem !important;
  }
}
@media (max-width: 991px) {
  .fifty-fifty-component .fs-image {
    margin-bottom: 1.25rem;
  }
}
.fifty-fifty-component.dark-bg {
  background-color: #18243A;
  background-image: none;
  margin: 0;
  padding: 3.13rem 0;
}
.fifty-fifty-component.dark-bg .fs-heading::after {
  background-color: #ffffff;
}
.fifty-fifty-component.dark-bg::before, .fifty-fifty-component.dark-bg::after {
  display: none;
}
.fifty-fifty-component.pattern-bg {
  margin: 0;
  padding: 3.13rem 0;
  background-size: cover;
}
.fifty-fifty-component.green-bg {
  margin: 0;
  padding: 3.13rem 0;
  background-image: none;
}
.fifty-fifty-component.green-bg::before, .fifty-fifty-component.green-bg::after {
  display: none;
}
.testimonial-comp {
  padding: 2.82rem 0 3.75rem;
}
.testimonial-comp .t-top {
  margin-bottom: 3.75rem;
}
@media (max-width: 991px) {
  .testimonial-comp .t-top {
    margin-bottom: 1.88rem;
  }
}
.testimonial-comp .t-top h2, .testimonial-comp .t-top .h2 {
  margin-bottom: 0;
}
.testimonial-comp .t-heading {
  margin-bottom: 1.88rem;
}
.testimonial-comp .t-content-wrapper {
  display: flex;
}
@media (max-width: 767px) {
  .testimonial-comp .t-content-wrapper {
    flex-direction: column;
  }
}
.testimonial-comp .t-slider {
  position: relative;
  margin-left: -5rem;
}
@media (max-width: 991px) {
  .testimonial-comp .t-slider .slick-slide {
    padding-left: 0.13rem;
  }
}
.testimonial-comp .t-slider .slick-dots {
  margin-top: 3.13rem;
  padding-left: 80px;
}
@media (max-width: 1199px) {
  .testimonial-comp .t-slider .slick-dots {
    right: -1.25rem;
  }
}
@media (max-width: 991px) {
  .testimonial-comp .t-slider .slick-dots {
    right: 0;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .testimonial-comp .t-slider .slick-dots li {
    margin-left: 0.13rem;
    margin-right: 0.13rem;
  }
}
@media (max-width: 1199px) {
  .testimonial-comp .t-slider {
    margin-left: -3.12rem;
  }
}
@media (max-width: 991px) {
  .testimonial-comp .t-slider {
    margin-left: 0;
  }
}
.testimonial-comp .t-slider:before {
  content: "";
  position: absolute;
  right: -6.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 10.19rem;
  height: 8.32rem;
  background-image: url("../svg/quote-icon.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 991px) {
  .testimonial-comp .t-slider:before {
    right: -2.18rem;
    width: 8.75rem;
    height: 8.75rem;
    top: 42%;
  }
}
@media (max-width: 767px) {
  .testimonial-comp .t-slider:before {
    top: 70%;
    width: 6.25rem;
    height: 6.25rem;
    right: -0.93rem;
  }
}
.testimonial-comp .t-left {
  margin-right: 2.5rem;
  max-width: 24.38rem;
  width: 100%;
}
@media (max-width: 991px) {
  .testimonial-comp .t-left {
    max-width: 18.75rem;
    margin-right: 1.25rem;
  }
}
@media (max-width: 767px) {
  .testimonial-comp .t-left {
    max-width: 100%;
    margin-bottom: 1.25rem;
  }
}
.testimonial-comp .t-image {
  position: relative;
  padding-top: 83.5897435897%;
}
.testimonial-comp .t-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .testimonial-comp .t-image {
    padding-top: 60%;
  }
}
.testimonial-comp .t-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  max-width: 31.25rem;
}
@media (max-width: 991px) {
  .testimonial-comp .t-right p {
    font-size: 1.13rem;
  }
}
.testimonial-comp .t-author-details p {
  margin-bottom: 0;
}
.testimonial-comp .t-author-details span {
  display: block;
}
.testimonial-comp .t-author-details .t-designation {
  font-style: italic;
  font-size: 1rem;
}
.testimonial-comp .t-author-details .t-company {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
}
.what-we-do {
  padding: 3.13rem 0 2.19rem;
}
.what-we-do .wwd-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.what-we-do .wwd-heading {
  margin-bottom: 4.38rem;
}
@media (max-width: 991px) {
  .what-we-do .wwd-heading {
    margin-bottom: 1.88rem;
  }
}
.what-we-do .wwd-description {
  max-width: 47.32rem;
  width: 100%;
}
.what-we-do .wwd-slider {
  margin-bottom: 1.88rem;
}
@media (max-width: 767px) {
  .what-we-do .wwd-slider {
    margin-bottom: 20px;
  }
}
.what-we-do .wwd-thumb {
  text-align: center;
  margin: 0 0.63rem;
  width: auto !important;
  flex: auto;
}
.what-we-do .wwd-thumbslider {
  min-height: 7.94rem;
  margin: 0 -0.93rem;
}
@media (max-width: 991px) {
  .what-we-do .wwd-thumbslider {
    min-height: 6.57rem;
  }
}
@media (max-width: 767px) {
  .what-we-do .wwd-thumbslider {
    min-height: 6.25rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .what-we-do .wwd-thumbslider.thumbnail .slick-track {
    width: 100% !important;
    transform: translate3d(0, 0, 0) !important;
  }
}
.what-we-do .wwd-thumbslider .slick-track {
  min-height: 86px;
}
@media (max-width: 991px) {
  .what-we-do .wwd-thumbslider .slick-track {
    min-height: 65px;
  }
}
@media (min-width: 992px) {
  .what-we-do .wwd-thumbslider .slick-track {
    width: 100% !important;
    transform: translate3d(0, 0px, 0px) !important;
  }
}
.what-we-do .wwd-thumbslider .slick-list {
  padding-top: 2.5rem;
}
.what-we-do .wwd-thumbslider .slick-current .wwd-thumb-inner::before {
  height: 0.32rem;
  background-color: #ffffff;
}
.what-we-do .wwd-thumbslider .slick-current .wwd-thumb-inner::after {
  top: -2.81rem;
  opacity: 1;
  visibility: visible;
  font-size: 1.88rem;
}
@media (max-width: 767px) {
  .what-we-do .wwd-thumbslider .slick-current .wwd-thumb-inner::after {
    font-size: 1.5rem;
    top: -2.25rem;
  }
}
.what-we-do .wwd-thumbslider .slick-current .wwd-thumb-count {
  width: 3.63rem;
  height: 3.63rem;
  border-width: 5px;
  border-color: #ffffff;
  font-size: 1.88rem;
  font-weight: 700;
  color: #ffffff;
}
@media (max-width: 991px) {
  .what-we-do .wwd-thumbslider .slick-current .wwd-thumb-count {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .what-we-do .wwd-thumbslider .slick-current .wwd-thumb-count {
    font-size: 1rem;
    border-width: 3px;
    width: 2.19rem;
    height: 2.19rem;
  }
}
.what-we-do .wwd-thumb-count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.19rem;
  height: 2.19rem;
  border-radius: 100vh;
  border: 1px solid #231F20;
  margin: 0 auto;
  font-size: 1.13rem;
  font-weight: 300;
  color: #231F20;
  transition: 0.3s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .what-we-do .wwd-thumb-count {
    border-width: 0.19rem;
    font-weight: 700;
  }
}
.what-we-do .wwd-thumb-count:hover {
  border-color: #ffffff;
  color: #ffffff;
}
.what-we-do .wwd-thumb-inner {
  position: relative;
  cursor: pointer;
  margin: 0 auto;
}
.what-we-do .wwd-thumb-inner::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #231F20;
  margin-bottom: 0.94rem;
  display: inline-block;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .what-we-do .wwd-thumb-inner::before {
    margin-bottom: 0.63rem;
  }
}
@media (max-width: 767px) {
  .what-we-do .wwd-thumb-inner::before {
    height: 0.25rem;
  }
}
.what-we-do .wwd-thumb-inner::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.93rem;
  transform: translateX(-50%);
  content: "g";
  font-family: "growthera";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-transform: none;
  color: #ffffff;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  font-size: 1.63rem;
}
.text-with-cta {
  padding: 2.75rem 0;
}
.text-with-cta .twa-wrapper.have_cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991px) {
  .text-with-cta .twa-wrapper.have_cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
.text-with-cta .twa-wrapper.have_cta .twa-descrtiption {
  max-width: 35.82rem;
  width: 100%;
  margin-right: 1.25rem;
  flex: 1;
  text-align: left;
  margin-left: 0;
}
.text-with-cta .twa-wrapper.have_cta .twa-descrtiption p {
  font-size: 1.13rem;
}
@media (max-width: 991px) {
  .text-with-cta .twa-wrapper.have_cta .twa-descrtiption {
    margin-bottom: 1.25rem;
    max-width: 100%;
    margin-right: 0;
  }
}
.text-with-cta .twa-descrtiption {
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}
.text-with-cta .twa-descrtiption h1, .text-with-cta .twa-descrtiption .h1 {
  font-weight: 400;
}
.text-with-cta .twa-descrtiption h2, .text-with-cta .twa-descrtiption .h2 {
  font-weight: 400;
}
.text-with-cta .twa-descrtiption h3, .text-with-cta .twa-descrtiption .h3 {
  font-weight: 400;
}
.text-with-cta .twa-descrtiption h4, .text-with-cta .twa-descrtiption .h4 {
  font-weight: 400;
}
.text-with-cta .twa-descrtiption h5, .text-with-cta .twa-descrtiption .h5 {
  font-weight: 400;
}
.text-with-cta .twa-descrtiption h6, .text-with-cta .twa-descrtiption .h6 {
  font-weight: 400;
}
@media (max-width: 767px) {
  .text-with-cta .twa-descrtiption p {
    font-size: 1rem;
  }
}
.sales-card-component {
  margin: 3.38rem 0 3.88rem;
}
@media (max-width: 991px) {
  .sales-card-component {
    margin: 2.5rem 0;
  }
}
.sales-card-component .scc-heading {
  margin-bottom: 1.88rem;
}
.sales-card-component .scc-description {
  margin-bottom: 1.88rem;
}
.sales-card-component .scc-description p strong {
  text-decoration: underline;
}
.case-studies .cs-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.case-studies .cs-top-heading {
  padding: 3.38rem 0 3.13rem;
}
@media (max-width: 991px) {
  .case-studies .cs-top-heading {
    padding: 2.5rem 0;
  }
}
.case-studies .cs-top-heading .heading-with-line {
  margin-bottom: 1.69rem;
}
.case-studies .cs-top-heading h2, .case-studies .cs-top-heading .h2 {
  margin-bottom: 0;
}
.case-studies .cs-top {
  position: relative;
  padding: 2.82rem 0 2rem;
  background-position: bottom;
  z-index: 1;
}
.case-studies .cs-top::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #18243a 25%, rgba(243, 244, 243, 0) 100%);
  z-index: -1;
}
.case-studies .cs-heading {
  margin-bottom: 2.5rem;
}
.case-studies .cs-image {
  position: relative;
  display: block;
  padding-top: 83.5897435897%;
  overflow: hidden;
}
.case-studies .cs-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-studies .cs-image img {
  transition: 0.8s;
}
.case-studies .cs-image:hover img {
  transform: scale(1.1);
}
.case-studies .cs-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: #18243A;
  padding: 1.25rem;
  height: 100%;
}
@media (max-width: 991px) {
  .case-studies .cs-title {
    padding: 0.94rem;
  }
}
.case-studies .cs-title h3, .case-studies .cs-title .h3 {
  margin-bottom: 0;
  margin-right: 0.63rem;
}
@media (max-width: 991px) {
  .case-studies .cs-title h3, .case-studies .cs-title .h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .case-studies .cs-title h3, .case-studies .cs-title .h3 {
    font-size: 1.75rem;
  }
}
.case-studies .cs-title a {
  font-weight: 400;
  text-decoration: none;
}
.case-studies .cs-title a:hover, .case-studies .cs-title a:focus {
  color: #5BFF00;
}
.case-studies .cs-link {
  text-transform: uppercase;
  font-weight: 700 !important;
  font-size: 0.88rem;
  letter-spacing: 1.3px;
}
@media (max-width: 991px) {
  .case-studies .cs-link {
    font-size: 0.75rem;
  }
}
.case-studies .cs-link:hover {
  text-decoration: underline;
}
.media-component {
  margin-top: 3.75rem;
}
@media (max-width: 991px) {
  .media-component {
    margin-top: 2.5rem;
  }
}
.media-component .mc-bottom {
  padding: 3.13rem 0 4.38rem;
}
@media (max-width: 767px) {
  .media-component .mc-bottom {
    padding: 1.88rem 0;
  }
}
.media-component .mc-bottom.brand-bg-light {
  background-size: 100% 115%;
}
@media (max-width: 1200px) {
  .media-component .mc-bottom.brand-bg-light {
    background-size: 150% 115%;
  }
}
@media (max-width: 991px) {
  .media-component .mc-bottom.brand-bg-light {
    background-size: cover;
  }
}
.media-component .mc-heading {
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .media-component .mc-heading {
    margin-bottom: 1.25rem;
  }
}
.media-component .mc-wrap {
  max-width: 62.13rem;
  margin: 0 auto;
}
.media-component .mc-wrap-box {
  border-radius: 0.32rem;
  overflow: hidden;
}
.media-component .mc-wrap-box .video-link {
  position: relative;
  display: block;
  transition: 0.3s;
}
.media-component .mc-wrap-box .video-link:hover, .media-component .mc-wrap-box .video-link:focus {
  color: #ffffff;
}
.media-component .mc-wrap-box .video-link:hover .icon-play::after, .media-component .mc-wrap-box .video-link:focus .icon-play::after {
  width: 0;
  height: 0;
}
.media-component .mc-wrap-box .video-link:hover .icon-play::before, .media-component .mc-wrap-box .video-link:focus .icon-play::before {
  color: #ffffff;
}
.media-component .mc-wrap-box .video-link .icon-play {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #5BFF00;
  border-radius: 100vh;
  z-index: 1;
  transition: 0.3s;
  width: 6.88rem;
  height: 6.88rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .media-component .mc-wrap-box .video-link .icon-play {
    width: 4.38rem;
    height: 4.38rem;
  }
}
.media-component .mc-wrap-box .video-link .icon-play::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  background-color: #ffffff;
  border-radius: 100vh;
  z-index: -1;
  transition: 0.3s;
}
.media-component .mc-wrap-box .video-link .icon-play::before {
  content: "";
  content: "g";
  font-family: "growthera";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-transform: none;
  font-size: 2.88rem;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .media-component .mc-wrap-box .video-link .icon-play::before {
    font-size: 1.5rem;
  }
}
.begin-our-journey {
  padding: 3rem 0 2.25rem;
}
@media (max-width: 767px) {
  .begin-our-journey {
    padding: 1.88rem 0 1.25rem;
  }
}
.begin-our-journey h2, .begin-our-journey .h2 {
  margin-bottom: 0;
}
.begin-our-journey .boj-heading {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .begin-our-journey .boj-heading {
    margin-bottom: 1.25rem;
  }
}
.begin-our-journey.get-in-youch .description {
  max-width: 47.19rem;
}
@media (max-width: 767px) {
  .begin-our-journey.get-in-youch .btn {
    font-size: 0.75rem;
    padding-right: 3.13rem;
    padding-left: 0.63rem;
  }
}
.center-wysiwyg {
  padding: 3.38rem 0;
}
@media (max-width: 991px) {
  .center-wysiwyg {
    padding: 2.5rem 0;
  }
}
.center-wysiwyg .heading-with-line {
  margin-bottom: 1.69rem;
}
.center-wysiwyg .cw-content {
  max-width: 60rem;
  margin: 0 auto;
}
.center-wysiwyg .cw-content h2, .center-wysiwyg .cw-content .h2 {
  margin-bottom: 1.75rem;
}
@media (max-width: 991px) {
  .center-wysiwyg .cw-content h2, .center-wysiwyg .cw-content .h2 {
    margin-bottom: 1.25rem;
  }
}
.center-wysiwyg .cw-content p {
  color: #231F20;
}
.center-wysiwyg.dark-bg {
  background-color: #18243A;
}
.center-wysiwyg.dark-bg p, .center-wysiwyg.dark-bg a, .center-wysiwyg.dark-bg ol li, .center-wysiwyg.dark-bg ul li {
  color: #ffffff;
}
.center-wysiwyg.dark-bg a:hover {
  color: #5BFF00;
}
.center-wysiwyg.dark-bg .heading-with-line::after {
  background-color: #ffffff;
}
.center-wysiwyg.white-bg {
  background-color: #ffffff;
}
.center-wysiwyg.green-bg a {
  color: #18243A;
}
.center-wysiwyg.green-bg a:hover {
  color: #ffffff;
}
.implementation-steps {
  margin: 2.82rem 0 1.25rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .implementation-steps {
    margin: 2.5rem 0 0.63rem;
  }
}
.implementation-steps.tcn-component {
  margin: 2.82rem 0 2.5rem;
}
@media (max-width: 767px) {
  .implementation-steps.tcn-component {
    margin: 1.88rem 0 1.25rem;
  }
}
.implementation-steps.tcn-component .is-sub-heading {
  font-weight: 300;
  text-align: center;
}
@media (max-width: 767px) {
  .implementation-steps .light-bg-shape {
    background-size: cover;
  }
}
@media (max-width: 991px) {
  .implementation-steps .is-heading .btn-secondary {
    margin-bottom: 1.25rem;
  }
}
.implementation-steps .is-col-wrapper {
  max-width: 54.38rem;
  margin: 0 auto;
}
.implementation-steps .is-sub-heading h1, .implementation-steps .is-sub-heading .h1 {
  font-weight: 300;
  margin-bottom: 0;
}
.implementation-steps .is-sub-heading h2, .implementation-steps .is-sub-heading .h2 {
  font-weight: 300;
  margin-bottom: 0;
}
.implementation-steps .is-sub-heading h3, .implementation-steps .is-sub-heading .h3 {
  font-weight: 300;
  margin-bottom: 0;
}
.implementation-steps .is-sub-heading h4, .implementation-steps .is-sub-heading .h4 {
  font-weight: 300;
  margin-bottom: 0;
}
.implementation-steps .is-sub-heading h5, .implementation-steps .is-sub-heading .h5 {
  font-weight: 300;
  margin-bottom: 0;
}
.implementation-steps .is-sub-heading h6, .implementation-steps .is-sub-heading .h6 {
  font-weight: 300;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .implementation-steps .is-row {
    margin-right: -0.46rem;
    margin-left: -0.46rem;
  }
  .implementation-steps .is-row [class*="cell-"] {
    padding-left: 0.47rem;
    padding-right: 0.47rem;
  }
}
.implementation-steps .is-col {
  max-width: 15.32rem;
  width: 100%;
  margin: 0 auto 3.44rem;
}
@media (max-width: 767px) {
  .implementation-steps .is-col {
    max-width: 100%;
    margin-bottom: 1.88rem;
  }
}
.implementation-steps .is-col h4, .implementation-steps .is-col .h4 {
  line-height: 1.5;
}
@media (max-width: 991px) {
  .implementation-steps .is-col h4, .implementation-steps .is-col .h4 {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .implementation-steps .is-col h4, .implementation-steps .is-col .h4 {
    font-size: 1rem;
    line-height: 1.2;
  }
}
.implementation-steps .is-col-wrapper {
  padding: 3.13rem 0 0;
}
@media (max-width: 991px) {
  .implementation-steps .is-col-wrapper {
    padding-top: 2.5rem;
  }
}
@media (max-width: 767px) {
  .implementation-steps .is-col-wrapper {
    padding-top: 1.25rem;
  }
}
.implementation-steps .is-step-count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8.94rem;
  height: 8.94rem;
  border-radius: 100vh;
  background-color: #ffffff;
  margin: 0 auto 2rem;
  border: 0.32rem solid #5BFF00;
}
@media (max-width: 991px) {
  .implementation-steps .is-step-count {
    width: 6.25rem;
    height: 6.25rem;
    margin-bottom: 0.94rem;
  }
}
.implementation-steps .is-step-count h2, .implementation-steps .is-step-count .h1 {
  margin-bottom: 0;
  font-size: 3.94rem;
}
@media (max-width: 991px) {
  .implementation-steps .is-step-count h2, .implementation-steps .is-step-count .h1 {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .implementation-steps .is-step-count h2, .implementation-steps .is-step-count .h1 {
    font-size: 2.13rem;
  }
}
.implementation-steps .is-description {
  max-width: 52.82rem;
  margin: 0 auto;
}
.core-values {
  position: relative;
  z-index: 2;
  padding: 2.82rem 0 2.5rem;
  background-color: #18243A;
}
.core-values .cv-heading {
  margin-bottom: 3.19rem;
}
@media (max-width: 767px) {
  .core-values .cv-heading {
    margin-bottom: 1.88rem;
  }
}
.core-values .cv-heading::after {
  background-color: #ffffff;
}
.core-values .view-more-card .vmc-col {
  border: 0.32rem solid #5BFF00;
  background-color: #ffffff;
  padding: 1.63rem 0.5rem;
  transition: 0.4s;
  height: 100%;
}
@media (max-width: 767px) {
  .core-values .view-more-card .vmc-col {
    padding: 1.25rem 0.63rem;
  }
}
.core-values .view-more-card .vmc-col .plus-icon {
  bottom: -1.5rem;
}
@media (max-width: 767px) {
  .core-values .view-more-card .vmc-col .plus-icon {
    bottom: -1.12rem;
  }
}
.core-values .view-more-card .vmc-col.open {
  background-color: #5BFF00;
  text-align: left;
}
.core-values .view-more-card .vmc-col.open .plus-icon {
  bottom: -0.68rem;
}
.core-values .view-more-card .vmc-col.open .vmc-title {
  justify-content: flex-start;
}
.core-values .view-more-card .vmc-title {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.core-values .view-more-card .vmc-description-wrapper {
  left: -0.31rem;
  right: -0.31rem;
  text-align: left;
}
.core-values .view-more-card .vmc-card-description {
  position: relative;
  margin-top: 0;
}
.core-values .view-more-card .vmc-card-description::before {
  content: "";
  width: 2.5rem;
  height: 0.13rem;
  background-color: #231F20;
  display: inline-block;
  transition: 0.3s;
  margin-bottom: 0.75rem;
}
.core-values .view-more-card .vmc-col-wrapper {
  width: 20%;
}
@media (max-width: 991px) {
  .core-values .view-more-card .vmc-col-wrapper {
    width: 33.33%;
  }
}
@media (max-width: 575px) {
  .core-values .view-more-card .vmc-col-wrapper {
    width: 50%;
  }
}
.core-values.light-bg {
  background-color: #ffffff;
}
.core-values.light-bg .cv-heading::after {
  background-color: #18243A;
}
.core-values.light-bg .cv-heading h6 {
  color: #18243A;
}
.core-values.box-open .vmc-card-description {
  display: block;
  padding-bottom: 0;
}
.core-values.box-open .vmc-col {
  background-color: #5BFF00;
}
.core-values.box-open .vmc-title {
  justify-content: flex-start;
}
.core-values.box-open .vmc-description-wrapper .plus-icon {
  display: none;
}
@media (max-width: 767px) {
  .core-values.box-open .vmc-col-wrapper {
    width: 100%;
  }
}
.core-values.box-open .vmc-col-wrapper .vmc-col {
  height: auto;
}
.core-values.box-open .vmc-col-wrapper .vmc-description-wrapper {
  position: relative;
}
.featured-clients {
  margin: 2.63rem 0 1.25rem;
}
.featured-clients .fc-heading {
  margin-bottom: 3.25rem;
}
@media (max-width: 991px) {
  .featured-clients .fc-heading {
    margin-bottom: 2.19rem;
  }
}
.featured-clients .fc-img {
  text-align: center;
  margin-bottom: 3.44rem;
  display: block;
}
@media (max-width: 991px) {
  .featured-clients .fc-img {
    margin-bottom: 1.88rem;
  }
}
.featured-clients .fc-img img {
  margin: 0 auto;
  object-fit: contain;
  height: 4.88rem;
  max-width: 11.25rem;
  width: 100%;
}
.featured-clients .fc-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 1em;
  row-gap: 0;
}
@media (max-width: 991px) {
  .featured-clients .fc-row {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  .featured-clients .fc-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 575px) {
  .featured-clients .fc-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.leadership-team .cs-item {
  display: flex;
  flex-direction: column;
}
.leadership-team .cs-col {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.leadership-team .cs-title {
  height: 100%;
  justify-content: flex-start;
}
.leadership-team .cs-title .icon-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.63rem;
  color: #18243A;
  background-color: #ffffff;
  width: 1.88rem;
  height: 1.88rem;
  border-radius: 0.32rem;
  font-size: 1.25rem;
}
.leadership-team .cs-title {
  flex-direction: column;
  align-items: flex-start;
}
.leadership-team .cs-title .title {
  font-weight: 400;
}
.leadership-team .cs-designation {
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 400;
  margin-top: 0.94rem;
}
@media (max-width: 991px) {
  .leadership-team .cs-designation {
    font-size: 0.88rem;
    margin-top: 0.5rem;
  }
}
.sales-development-unit {
  position: relative;
}
.sales-development-unit::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translateY(-50%);
  background-image: url("../png/shape-background-light.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
@media (max-width: 991px) {
  .sales-development-unit::before {
    background-position: top;
  }
}
@media (max-width: 767px) {
  .sales-development-unit::before {
    display: none;
  }
}
.sales-development-unit .vmc-description-wrapper ul {
  margin-bottom: 0;
}
.sales-development-unit .sdu-top {
  position: relative;
  padding: 3.13rem 0 2.5rem;
  z-index: 3;
}
@media (max-width: 767px) {
  .sales-development-unit .sdu-top {
    padding: 1.88rem 0 1.25rem;
  }
}
.sales-development-unit .sdu-heading {
  margin-bottom: 2.69rem;
}
.sales-development-unit .sdu-sub-title {
  max-width: 41.25rem;
}
.sales-development-unit .sdu-bottom {
  position: relative;
  padding: 3.32rem 0 3.13rem;
  background-color: transparent;
}
@media (max-width: 991px) {
  .sales-development-unit .sdu-bottom {
    padding: 2.5rem 0;
  }
}
.sales-development-unit .sdu-bottom-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}
.sales-development-unit .sdu-bottom-bg::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.06rem;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-left-width: 1.19rem;
  border-right-width: 1.19rem;
  border-top: 1.25rem solid #ffffff;
}
.sales-development-unit .sdu-bottom-heading {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 0.25rem;
}
@media (max-width: 991px) {
  .sales-development-unit .sdu-bottom-heading {
    font-size: 1rem;
    letter-spacing: 0.13rem;
  }
}
.sales-development-unit .sdu-bottom-heading span {
  margin: 0 0.82rem;
}
.sales-development-unit .sdu-bottom-heading::before, .sales-development-unit .sdu-bottom-heading::after {
  content: "";
  position: relative;
  top: 0.82rem;
  width: auto;
  height: 2.38rem;
  border: 0.13rem solid #ffffff;
  flex: 1;
}
@media (max-width: 991px) {
  .sales-development-unit .sdu-bottom-heading::before, .sales-development-unit .sdu-bottom-heading::after {
    top: 0.57rem;
  }
}
@media (max-width: 767px) {
  .sales-development-unit .sdu-bottom-heading::before, .sales-development-unit .sdu-bottom-heading::after {
    display: none;
  }
}
.sales-development-unit .sdu-bottom-heading::before {
  border-bottom: 0;
  border-right: 0;
  border-radius: 1.88rem 0 0 0;
}
.sales-development-unit .sdu-bottom-heading::after {
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 1.88rem 0 0;
}
.sales-development-unit .sdu-col-wrapper {
  margin-bottom: 2.82rem;
}
@media (max-width: 991px) {
  .sales-development-unit .sdu-col-wrapper {
    margin-bottom: 1.88rem;
  }
}
.sales-development-unit .sdu-col-wrapper .vmc-col {
  padding: 1.82rem 0.82rem;
}
.sales-development-unit .sdu-col-wrapper .vmc-col.open .plus-icon {
  bottom: -0.75rem !important;
}
.sales-development-unit .sdu-col-wrapper .plus-icon {
  bottom: -1.68rem !important;
}
.sales-development-unit .sdu-col-wrapper .vmc-card-description {
  padding: 0 1.07rem 1.25rem;
}
.sales-development-unit .sdu-col-wrapper .vmc-card-description a, .sales-development-unit .sdu-col-wrapper .vmc-card-description li {
  color: #231F20;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.13rem;
}
.sales-development-unit.d-upper {
  background-color: #18243A;
}
.sales-development-unit.d-upper::before {
  z-index: 2;
}
.sales-development-unit.d-upper .heading-with-line::after {
  background-color: #ffffff;
}
.sales-development-unit.d-upper .sdu-bottom-bg {
  background-color: #ffffff;
  z-index: 1;
}
.sales-development-unit.d-upper .sdu-bottom-bg::before {
  top: -1.18rem;
  transform: translateX(-50%) scale(-1);
}
.sales-development-unit.d-upper .sdu-bottom-heading::before, .sales-development-unit.d-upper .sdu-bottom-heading::after {
  border-color: #18243A;
}
.sales-development-unit.d-upper .sdu-top .btn-secondary {
  background-color: #5BFF00;
  color: #18243A;
}
.sales-development-unit.d-upper .sdu-top .btn-secondary::before {
  background-color: #5BFF00;
}
.sales-development-unit.d-upper .sdu-top .btn-secondary:hover {
  background-color: #ffffff;
}
.sales-development-unit.d-upper .sdu-top .btn-secondary:hover::before {
  background-color: #ffffff;
}
.sales-development-unit.d-upper .sdu-top h1, .sales-development-unit.d-upper .sdu-top .h1 {
  color: #ffffff;
}
.sales-development-unit.d-upper .sdu-top h2, .sales-development-unit.d-upper .sdu-top .h2 {
  color: #ffffff;
}
.sales-development-unit.d-upper .sdu-top h3, .sales-development-unit.d-upper .sdu-top .h3 {
  color: #ffffff;
}
.sales-development-unit.d-upper .sdu-top h4, .sales-development-unit.d-upper .sdu-top .h4 {
  color: #ffffff;
}
.sales-development-unit.d-upper .sdu-top h5, .sales-development-unit.d-upper .sdu-top .h5 {
  color: #ffffff;
}
.sales-development-unit.d-upper .sdu-top h6, .sales-development-unit.d-upper .sdu-top .h6 {
  color: #ffffff;
}
.sales-development-unit.d-upper .sdu-top span, .sales-development-unit.d-upper .sdu-top p, .sales-development-unit.d-upper .sdu-top li, .sales-development-unit.d-upper .sdu-top a {
  color: #ffffff;
}
.sales-development-unit.d-upper .sdu-bottom h1, .sales-development-unit.d-upper .sdu-bottom .h1 {
  color: #231F20;
}
.sales-development-unit.d-upper .sdu-bottom h2, .sales-development-unit.d-upper .sdu-bottom .h2 {
  color: #231F20;
}
.sales-development-unit.d-upper .sdu-bottom h3, .sales-development-unit.d-upper .sdu-bottom .h3 {
  color: #231F20;
}
.sales-development-unit.d-upper .sdu-bottom h4, .sales-development-unit.d-upper .sdu-bottom .h4 {
  color: #231F20;
}
.sales-development-unit.d-upper .sdu-bottom h5, .sales-development-unit.d-upper .sdu-bottom .h5 {
  color: #231F20;
}
.sales-development-unit.d-upper .sdu-bottom h6, .sales-development-unit.d-upper .sdu-bottom .h6 {
  color: #231F20;
}
.sales-development-unit.d-upper .sdu-bottom span, .sales-development-unit.d-upper .sdu-bottom p, .sales-development-unit.d-upper .sdu-bottom li, .sales-development-unit.d-upper .sdu-bottom a {
  color: #231F20;
}
.sales-development-unit.g-upper {
  background-color: #5BFF00;
}
.sales-development-unit.g-upper::before {
  display: none;
}
.sales-development-unit.g-upper::before {
  z-index: 2;
}
.sales-development-unit.g-upper .sdu-bottom-bg {
  background-color: #ffffff;
  z-index: 1;
}
.sales-development-unit.g-upper .sdu-bottom-bg::before {
  top: -1.18rem;
  transform: translateX(-50%) scale(-1);
}
.sales-development-unit.g-upper .sdu-top .btn-secondary:hover {
  background-color: #ffffff;
  color: #18243A;
}
.sales-development-unit.g-upper .sdu-top .btn-secondary:hover::before {
  background-color: #ffffff;
}
.sales-development-unit.g-upper .sdu-bottom-heading::before, .sales-development-unit.g-upper .sdu-bottom-heading::after {
  border-color: #18243A;
}
.sales-development-unit.g-upper .sdu-bottom h1, .sales-development-unit.g-upper .sdu-bottom .h1 {
  color: #231F20;
}
.sales-development-unit.g-upper .sdu-bottom h2, .sales-development-unit.g-upper .sdu-bottom .h2 {
  color: #231F20;
}
.sales-development-unit.g-upper .sdu-bottom h3, .sales-development-unit.g-upper .sdu-bottom .h3 {
  color: #231F20;
}
.sales-development-unit.g-upper .sdu-bottom h4, .sales-development-unit.g-upper .sdu-bottom .h4 {
  color: #231F20;
}
.sales-development-unit.g-upper .sdu-bottom h5, .sales-development-unit.g-upper .sdu-bottom .h5 {
  color: #231F20;
}
.sales-development-unit.g-upper .sdu-bottom h6, .sales-development-unit.g-upper .sdu-bottom .h6 {
  color: #231F20;
}
.sales-development-unit.g-upper .sdu-bottom span, .sales-development-unit.g-upper .sdu-bottom p, .sales-development-unit.g-upper .sdu-bottom li, .sales-development-unit.g-upper .sdu-bottom a {
  color: #231F20;
}
@media (max-width: 767px) {
  .sales-development-unit.g-upper .sdu-bottom {
    background-position: top;
  }
}
.sales-development-unit.g-d-both {
  background-color: #5BFF00;
}
.sales-development-unit.g-d-both::before {
  display: none;
}
.sales-development-unit.g-d-both .sdu-bottom-bg {
  z-index: 1;
}
.sales-development-unit.g-d-both .sdu-bottom-bg::before {
  top: -1.18rem;
  border-top: 1.25rem solid #18243A;
  transform: translateX(-50%) scale(-1);
}
.sales-development-unit.g-d-both .sdu-bottom.light-bg-shape::before, .sales-development-unit.g-d-both .sdu-bottom.light-bg-shape::after {
  display: none;
}
.sales-development-unit.g-d-both .sdu-top .btn-secondary:hover {
  background-color: #ffffff;
  color: #18243A;
}
.sales-development-unit.g-d-both .sdu-top .btn-secondary:hover::before {
  background-color: #ffffff;
}
.wysiwyg-component {
  position: relative;
  padding: 2.82rem 0 3.13rem;
  z-index: 1;
}
@media (max-width: 991px) {
  .wysiwyg-component {
    padding: 2.5rem 0;
  }
}
.wysiwyg-component::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10.32rem;
  background: linear-gradient(0deg, #18243A 35%, rgba(24, 36, 58, 0) 100%);
  z-index: -1;
}
.wysiwyg-component .small-heading {
  margin-bottom: 20px;
}
.wysiwyg-component .heading-with-line {
  margin-bottom: 1.88rem;
}
.wysiwyg-component .wysiwyg-wrapper {
  max-width: 53.75rem;
}
.wysiwyg-component.white-bg {
  background-color: #ffffff;
}
.wysiwyg-component.light-bg-shape {
  background-image: url("../png/shape-background-light.png") !important;
}
.wysiwyg-component.light-bg-shape::after {
  background: linear-gradient(0deg, white 18%, rgba(255, 255, 255, 0) 100%);
  height: 3.13rem;
}
.wysiwyg-component.light-bg-shape h1, .wysiwyg-component.light-bg-shape .h1 {
  color: #18243A;
}
.wysiwyg-component.light-bg-shape h2, .wysiwyg-component.light-bg-shape .h2 {
  color: #18243A;
}
.wysiwyg-component.light-bg-shape h3, .wysiwyg-component.light-bg-shape .h3 {
  color: #18243A;
}
.wysiwyg-component.light-bg-shape h4, .wysiwyg-component.light-bg-shape .h4 {
  color: #18243A;
}
.wysiwyg-component.light-bg-shape h5, .wysiwyg-component.light-bg-shape .h5 {
  color: #18243A;
}
.wysiwyg-component.light-bg-shape h6, .wysiwyg-component.light-bg-shape .h6 {
  color: #18243A;
}
.wysiwyg-component.light-bg-shape p, .wysiwyg-component.light-bg-shape ul li, .wysiwyg-component.light-bg-shape ol li, .wysiwyg-component.light-bg-shape a {
  color: #18243A;
}
.wysiwyg-component.light-bg-shape .heading-with-line::after {
  background-color: #18243A;
}
.wysiwyg-component.green-bg {
  background-color: #5BFF00;
  background-image: none !important;
}
.wysiwyg-component.green-bg h1, .wysiwyg-component.green-bg .h1 {
  color: #18243A;
}
.wysiwyg-component.green-bg h2, .wysiwyg-component.green-bg .h2 {
  color: #18243A;
}
.wysiwyg-component.green-bg h3, .wysiwyg-component.green-bg .h3 {
  color: #18243A;
}
.wysiwyg-component.green-bg h4, .wysiwyg-component.green-bg .h4 {
  color: #18243A;
}
.wysiwyg-component.green-bg h5, .wysiwyg-component.green-bg .h5 {
  color: #18243A;
}
.wysiwyg-component.green-bg h6, .wysiwyg-component.green-bg .h6 {
  color: #18243A;
}
.wysiwyg-component.green-bg p, .wysiwyg-component.green-bg ul li, .wysiwyg-component.green-bg ol li, .wysiwyg-component.green-bg a {
  color: #18243A;
}
.wysiwyg-component.green-bg .btn-secondary {
  color: #ffffff;
}
.wysiwyg-component.green-bg .btn-secondary:hover {
  color: #18243A;
}
.wysiwyg-component.green-bg::after {
  display: none;
}
.wysiwyg-component.green-bg .heading-with-line::after {
  background-color: #18243A;
}
.deep-discovery .wwd-heading {
  margin-bottom: 2.07rem;
}
@media (max-width: 991px) {
  .deep-discovery .wwd-heading {
    margin-bottom: 1.25rem;
  }
}
.deep-discovery .sub-heading {
  margin-bottom: 1.57rem;
}
.deep-discovery .sub-heading h3, .deep-discovery .sub-heading .h3 {
  font-size: 1.88rem;
  font-weight: 300;
  color: #18243A;
}
@media (max-width: 991px) {
  .deep-discovery .sub-heading h3, .deep-discovery .sub-heading .h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .deep-discovery .sub-heading h3, .deep-discovery .sub-heading .h3 {
    font-size: 1.25rem;
  }
}
.deep-discovery .heading-with-line {
  max-width: 100%;
}
.deep-discovery .heading-with-line.sub-heading h3, .deep-discovery .heading-with-line.sub-heading .h3 {
  text-transform: capitalize;
  letter-spacing: 0;
}
.deep-discovery .wwd-description {
  max-width: 100%;
}
.deep-discovery .wwd-description h1, .deep-discovery .wwd-description .h1 {
  font-weight: 300;
  font-size: 3rem;
}
@media (max-width: 991px) {
  .deep-discovery .wwd-description h1, .deep-discovery .wwd-description .h1 {
    font-size: 2.13rem;
  }
}
@media (max-width: 767px) {
  .deep-discovery .wwd-description h1, .deep-discovery .wwd-description .h1 {
    font-size: 1.5rem;
  }
}
.deep-discovery .wwd-description h2, .deep-discovery .wwd-description .h2 {
  font-weight: 300;
  font-size: 3rem;
}
@media (max-width: 991px) {
  .deep-discovery .wwd-description h2, .deep-discovery .wwd-description .h2 {
    font-size: 2.13rem;
  }
}
@media (max-width: 767px) {
  .deep-discovery .wwd-description h2, .deep-discovery .wwd-description .h2 {
    font-size: 1.5rem;
  }
}
.deep-discovery .wwd-description h3, .deep-discovery .wwd-description .h3 {
  font-weight: 300;
  font-size: 3rem;
}
@media (max-width: 991px) {
  .deep-discovery .wwd-description h3, .deep-discovery .wwd-description .h3 {
    font-size: 2.13rem;
  }
}
@media (max-width: 767px) {
  .deep-discovery .wwd-description h3, .deep-discovery .wwd-description .h3 {
    font-size: 1.5rem;
  }
}
.deep-discovery .wwd-description h4, .deep-discovery .wwd-description .h4 {
  font-weight: 300;
  font-size: 3rem;
}
@media (max-width: 991px) {
  .deep-discovery .wwd-description h4, .deep-discovery .wwd-description .h4 {
    font-size: 2.13rem;
  }
}
@media (max-width: 767px) {
  .deep-discovery .wwd-description h4, .deep-discovery .wwd-description .h4 {
    font-size: 1.5rem;
  }
}
.deep-discovery .wwd-description h5, .deep-discovery .wwd-description .h5 {
  font-weight: 300;
  font-size: 3rem;
}
@media (max-width: 991px) {
  .deep-discovery .wwd-description h5, .deep-discovery .wwd-description .h5 {
    font-size: 2.13rem;
  }
}
@media (max-width: 767px) {
  .deep-discovery .wwd-description h5, .deep-discovery .wwd-description .h5 {
    font-size: 1.5rem;
  }
}
.deep-discovery .wwd-description h6, .deep-discovery .wwd-description .h6 {
  font-weight: 300;
  font-size: 3rem;
}
@media (max-width: 991px) {
  .deep-discovery .wwd-description h6, .deep-discovery .wwd-description .h6 {
    font-size: 2.13rem;
  }
}
@media (max-width: 767px) {
  .deep-discovery .wwd-description h6, .deep-discovery .wwd-description .h6 {
    font-size: 1.5rem;
  }
}
.deep-discovery .wwd-description p {
  font-weight: 300;
  line-height: 1.25;
  font-weight: 400;
}
.deep-discovery.dark-bg {
  background-color: #18243A;
}
.deep-discovery.dark-bg h1, .deep-discovery.dark-bg .h1 {
  color: #ffffff;
}
.deep-discovery.dark-bg h2, .deep-discovery.dark-bg .h2 {
  color: #ffffff;
}
.deep-discovery.dark-bg h3, .deep-discovery.dark-bg .h3 {
  color: #ffffff;
}
.deep-discovery.dark-bg h4, .deep-discovery.dark-bg .h4 {
  color: #ffffff;
}
.deep-discovery.dark-bg h5, .deep-discovery.dark-bg .h5 {
  color: #ffffff;
}
.deep-discovery.dark-bg h6, .deep-discovery.dark-bg .h6 {
  color: #ffffff;
}
.deep-discovery.dark-bg p, .deep-discovery.dark-bg li, .deep-discovery.dark-bg a {
  color: #ffffff;
}
.deep-discovery.dark-bg .wwd-heading .btn-secondary {
  background-color: #5BFF00;
  color: #18243A;
}
.deep-discovery.dark-bg .wwd-heading .btn-secondary::before {
  background-color: #5BFF00;
}
.deep-discovery.dark-bg .wwd-heading .btn-secondary:hover {
  background-color: #ffffff;
  color: #18243A;
}
.deep-discovery.dark-bg .wwd-heading .btn-secondary:hover::before {
  background-color: #ffffff;
}
.deep-discovery.dark-bg .wwd-thumb-count {
  border-color: #ffffff;
  color: #ffffff;
}
.deep-discovery.dark-bg .wwd-thumb-inner::before {
  background-color: #ffffff;
}
.deep-discovery.dark-bg .heading-with-line::after {
  background-color: #ffffff;
}
.deep-discovery.dark-bg .btn {
  color: #18243A;
}
.deep-discovery.green-bg {
  background-color: #5BFF00;
}
.deep-discovery.white-bg {
  background-color: #ffffff;
}
.deep-discovery.white-bg .wwd-heading .btn-secondary {
  background-color: #5BFF00;
  color: #18243A;
}
.deep-discovery.white-bg .wwd-heading .btn-secondary::before {
  background-color: #5BFF00;
}
.deep-discovery.white-bg .wwd-heading .btn-secondary:hover {
  background-color: #18243A;
  color: #ffffff;
}
.deep-discovery.white-bg .wwd-heading .btn-secondary:hover::before {
  background-color: #18243A;
}
.deep-discovery.white-bg .btn:hover {
  background-color: #18243A;
  color: #ffffff;
}
.deep-discovery.white-bg .btn:hover::before {
  background-color: #18243A;
}
.deep-discovery.white-bg .wwd-thumb .wwd-thumb-count:hover {
  border-color: #5BFF00;
  color: #5BFF00;
}
.deep-discovery.white-bg .wwd-thumb.slick-current .wwd-thumb-inner::before {
  background-color: #5BFF00;
}
.deep-discovery.white-bg .wwd-thumb.slick-current .wwd-thumb-inner::after {
  color: #5BFF00;
}
.deep-discovery.white-bg .wwd-thumb.slick-current .wwd-thumb-count {
  border-color: #5BFF00;
  color: #5BFF00;
}
.use-case-component {
  background-size: 100% 31.25rem;
  background-position: top;
  padding: 0;
}
@media (max-width: 991px) {
  .use-case-component .fs-content h2 {
    font-size: 2.25rem;
  }
}
@media (max-width: 767px) {
  .use-case-component .fs-content h2 {
    font-size: 1.88rem;
  }
}
.use-case-component .fs-image {
  margin-right: 0;
}
@media (max-width: 1199px) {
  .use-case-component .wwd-slider {
    margin-right: -2.5rem;
  }
}
@media (max-width: 991px) {
  .use-case-component .wwd-slider {
    margin-right: 0;
  }
}
.use-case-component .wwd-thumb.slick-current .wwd-thumb-inner::before {
  background-color: #BABABA;
}
.use-case-component .wwd-thumb.slick-current .wwd-thumb-count {
  border-color: #BABABA;
  color: #BABABA;
}
.use-case-component .wwd-thumb-inner::after {
  color: #5BFF00;
}
.use-case-component .wwd-thumb-inner::before {
  background-color: #5BFF00;
}
.use-case-component .wwd-thumb-count {
  border-color: #5BFF00;
  color: #5BFF00;
}
.use-case-component .wwd-thumb-count:hover {
  border-color: #BABABA;
  color: #BABABA;
}
.use-case-component .wwd-item.without-image .wwd-col-left {
  width: 100%;
}
.use-case-component .wwd-item.without-image .wwd-col-right {
  display: none;
}
.use-case-component.dark-bg {
  background-image: none;
}
.use-case-component.dark-bg::before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 80%;
  background-image: url("../png/shape-background-light.png");
  background-repeat: no-repeat;
  background-size: 100% 31.25rem;
  background-position: top;
}
@media (max-width: 767px) {
  .use-case-component.dark-bg::before {
    background-size: contain;
    top: 50%;
    transform: translateY(-50%);
    height: 300px;
  }
}
.use-case-component.dark-bg .wwd-thumb-inner::before {
  background-color: #ffffff !important;
}
.use-case-component.dark-bg .wwd-thumb-count {
  border-color: #ffffff !important;
  color: #ffffff !important;
}
.use-case-component.dark-bg .wwd-thumb.slick-current .wwd-thumb-inner::before {
  background-color: #5BFF00 !important;
}
.use-case-component.dark-bg .wwd-thumb.slick-current .wwd-thumb-count {
  border-color: #5BFF00 !important;
  color: #5BFF00 !important;
}
.the-results {
  padding: 3.38rem 0 1.38rem;
}
.the-results .heading-with-line {
  margin-bottom: 1.69rem;
}
.the-results .row {
  justify-content: center;
}
.the-results .tr-heading {
  margin-bottom: 3.5rem;
}
@media (max-width: 991px) {
  .the-results .tr-heading {
    margin-bottom: 1.88rem;
  }
}
.the-results .tr-number {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 13.57rem;
  border-radius: 100vh;
  margin: 0 auto;
  border: 0.38rem solid #18243A;
  margin-bottom: 1.38rem;
}
@media (max-width: 767px) {
  .the-results .tr-number {
    margin-bottom: 0.94rem;
  }
}
.the-results .tr-number::before {
  content: "";
  padding-top: 100%;
}
.the-results .tr-number span, .the-results .tr-number .h2 {
  margin-bottom: 0;
}
.the-results .tr-number-wrap {
  margin-bottom: 1.88rem;
}
.the-results .tr-number-wrap p {
  color: #231F20;
}
@media (max-width: 991px) {
  .the-results .tr-number-wrap p {
    font-size: 1rem;
  }
}
.contact-info {
  padding: 2.38rem 0 2.82rem;
}
.contact-info .ci-image {
  position: relative;
  padding-top: 52%;
}
.contact-info .ci-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .contact-info .ci-image {
    margin-left: -3.12rem;
  }
}
@media (max-width: 991px) {
  .contact-info .ci-image {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .contact-info .ci-image {
    margin-bottom: 1.25rem;
  }
}
.contact-info .ci-title {
  font-weight: 300;
}
.contact-info .ci-address {
  font-size: 1.5rem;
  font-weight: 300;
  font-style: normal;
  line-height: 2;
  margin-bottom: 1.25rem;
}
@media (max-width: 991px) {
  .contact-info .ci-address {
    margin-bottom: 0.63rem;
    line-height: 1.3;
    font-size: 1.25rem;
  }
}
.contact-info .ci-info-wrap {
  max-width: 16.88rem;
}
.contact-info .ci-info-wrap a {
  display: block;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.13rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 991px) {
  .contact-info .ci-info-wrap a {
    margin-bottom: 0.63rem;
  }
}
.contact-info .ci-email {
  margin-bottom: 0 !important;
}
.contact-us-form {
  padding: 2rem 0 2.82rem;
}
.contact-us-form .cuf-heading {
  margin-bottom: 4.07rem;
}
@media (max-width: 991px) {
  .contact-us-form .cuf-heading {
    margin-bottom: 2.5rem;
  }
}
.contact-us-form .cuf-heading .title {
  font-size: 3rem;
}
@media (max-width: 991px) {
  .contact-us-form .cuf-heading .title {
    font-size: 2.38rem;
  }
}
.contact-us-form .cuf-heading .sub-title::after {
  height: 0.32rem;
  width: 4.38rem;
}
.contact-us-form .cuf-wrapper .row {
  margin-right: -0.56rem;
  margin-left: -0.56rem;
}
.contact-us-form .cuf-wrapper .row [class*="cell-"] {
  padding-left: 0.57rem;
  padding-right: 0.57rem;
}
.contact-us-form .cuf-wrapper .zip-code .form-control {
  margin-bottom: 0;
}
.contact-us-form .cuf-wrapper .zip-code p {
  font-size: 0.75rem;
}
.contact-us-form .cuf-wrapper .zip-code .note {
  display: block;
  margin: 0.63rem 0;
  font-size: 0.75rem;
}
.contact-us-form .cuf-wrapper .wpcf7-form.invalid .wpcf7-response-output {
  border-color: #ff0000 !important;
}
.contact-us-form .cuf-wrapper .wpcf7-form.sent .wpcf7-response-output {
  border-color: #5BFF00 !important;
}
.contact-us-form .cuf-wrapper .form-control {
  margin-bottom: 1.13rem;
}
.contact-us-form .cuf-wrapper .form-control.recaptcha {
  margin-left: auto;
  margin-right: 0.94rem;
}
@media (max-width: 991px) {
  .contact-us-form .cuf-wrapper .form-control.recaptcha {
    margin-bottom: 0;
    width: 100%;
    margin-right: 0;
  }
}
.contact-us-form .cuf-wrapper .form-control.recaptcha iframe {
  transform: scale(0.6);
  transform-origin: right;
}
@media (max-width: 991px) {
  .contact-us-form .cuf-wrapper .form-control.recaptcha iframe {
    transform-origin: left;
  }
}
.contact-us-form .cuf-wrapper .form-control.textarea {
  margin-bottom: 2.63rem;
}
.contact-us-form .cuf-wrapper .form-control.textarea textarea {
  padding-top: 1rem;
}
.contact-us-form .cuf-wrapper .form-control.checkbox label::before {
  width: 1.69rem;
  height: 1.69rem;
  background-color: #ffffff;
  border-color: #707170;
  border-radius: 0.19rem;
}
@media (max-width: 767px) {
  .contact-us-form .cuf-wrapper .form-control.checkbox label::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.contact-us-form .cuf-wrapper .form-control .wpcf7-form-control-wrap .wpcf7-not-valid-tip:not(:first-of-type) {
  display: none !important;
}
.contact-us-form .cuf-wrapper .form-control .wpcf7-not-valid-tip {
  font-size: 0.88rem;
  color: #ff0000;
}
.contact-us-form .cuf-wrapper .form-control .input[type="submit"] {
  background-color: transparent;
}
.contact-us-form .cuf-wrapper .form-control .input[type="submit"]:hover, .contact-us-form .cuf-wrapper .form-control .input[type="submit"]:focus {
  background-color: transparent;
}
.contact-us-form .cuf-wrapper .form-control .wpcf7-spinner {
  display: none;
}
.contact-us-form .cuf-wrapper .form-control .wpcf7-submit {
  padding: 0;
  background-color: transparent;
}
.contact-us-form .cuf-wrapper .form-control .wpcf7-list-item-label {
  color: #ffffff;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .contact-us-form .cuf-wrapper .form-control .wpcf7-list-item-label {
    font-size: 0.88rem;
  }
}
.contact-us-form .cuf-wrapper .form-control p {
  font-size: 0;
}
.plain-wysiwyg {
  padding: 3.13rem 0;
}
.plain-wysiwyg .pw-content ul li {
  font-size: 1.13rem;
}
.plain-wysiwyg .pw-content blockquote p {
  font-size: 1.5rem;
}
@media (max-width: 991px) {
  .plain-wysiwyg .pw-content blockquote p {
    font-size: 1.13rem;
  }
}
.plain-wysiwyg .pw-content p {
  font-size: 1.13rem;
  margin-bottom: 2.19rem;
}
@media (max-width: 767px) {
  .plain-wysiwyg .pw-content p {
    margin-bottom: 1.57rem;
  }
}
.plain-wysiwyg .pw-content h1, .plain-wysiwyg .pw-content .h1 {
  font-weight: 400;
  margin-bottom: 2.19rem;
}
@media (max-width: 767px) {
  .plain-wysiwyg .pw-content h1, .plain-wysiwyg .pw-content .h1 {
    margin-bottom: 1.57rem;
  }
}
.plain-wysiwyg .pw-content h2, .plain-wysiwyg .pw-content .h2 {
  font-weight: 400;
  margin-bottom: 2.19rem;
}
@media (max-width: 767px) {
  .plain-wysiwyg .pw-content h2, .plain-wysiwyg .pw-content .h2 {
    margin-bottom: 1.57rem;
  }
}
.plain-wysiwyg .pw-content h3, .plain-wysiwyg .pw-content .h3 {
  font-weight: 400;
  margin-bottom: 2.19rem;
}
@media (max-width: 767px) {
  .plain-wysiwyg .pw-content h3, .plain-wysiwyg .pw-content .h3 {
    margin-bottom: 1.57rem;
  }
}
.plain-wysiwyg .pw-content h4, .plain-wysiwyg .pw-content .h4 {
  font-weight: 400;
  margin-bottom: 2.19rem;
}
@media (max-width: 767px) {
  .plain-wysiwyg .pw-content h4, .plain-wysiwyg .pw-content .h4 {
    margin-bottom: 1.57rem;
  }
}
.plain-wysiwyg .pw-content h5, .plain-wysiwyg .pw-content .h5 {
  font-weight: 400;
  margin-bottom: 2.19rem;
}
@media (max-width: 767px) {
  .plain-wysiwyg .pw-content h5, .plain-wysiwyg .pw-content .h5 {
    margin-bottom: 1.57rem;
  }
}
.plain-wysiwyg .pw-content h6, .plain-wysiwyg .pw-content .h6 {
  font-weight: 400;
  margin-bottom: 2.19rem;
}
@media (max-width: 767px) {
  .plain-wysiwyg .pw-content h6, .plain-wysiwyg .pw-content .h6 {
    margin-bottom: 1.57rem;
  }
}
.open-position .op-heading {
  padding: 3.44rem 0;
  min-height: 12.5rem;
}
@media (max-width: 767px) {
  .open-position .op-heading {
    padding: 1.88rem 0;
  }
}
.open-position .op-heading .heading-with-line {
  margin-bottom: 1.88rem;
}
.open-position .op-card-inner {
  margin-bottom: 4.07rem;
}
.open-position .op-card-inner .heading-with-line::after {
  margin-top: 1.25rem;
}
.open-position .op-card-inner .btn {
  padding-right: 1.25rem;
}
.open-position .op-card-inner .btn:focus {
  background-color: #18243A;
  color: #ffffff;
}
.open-position .op-card-inner .btn:focus::before {
  background-color: #18243A;
}
.open-position .op-card-inner .btn::after {
  display: none;
}
@media (max-width: 991px) {
  .open-position .op-card-inner .op-title h6 {
    font-size: 1.13rem;
  }
  .open-position .op-card-inner .op-desc p {
    font-size: 1rem;
  }
}
.open-position .op-card {
  margin-right: -2.03rem;
  margin-left: -2.03rem;
}
.open-position .op-card [class*="cell-"] {
  padding-left: 2.04rem;
  padding-right: 2.04rem;
}
.open-position .op-desc {
  margin-bottom: 1.57rem;
}
.three-column-logo {
  padding: 3.13rem 0 1.25rem;
}
.three-column-logo .row {
  max-width: 46.75rem;
  width: 100%;
  margin: 0 auto;
}
.three-column-logo .tcl-item {
  display: flex;
  justify-content: center;
  margin-bottom: 1.88rem;
}
.three-column-logo .tcl-item img {
  max-height: 6.75rem;
  object-fit: contain;
}
@media (max-width: 767px) {
  .three-column-logo .tcl-item img {
    max-height: 3.63rem;
  }
}
.three-column-card {
  padding: 3.13rem 0;
}
.three-column-card .tcc-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .three-column-card .tcc-heading {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .three-column-card .tcc-heading .tcc-heading-btn {
    margin-top: 0.94rem;
  }
}
.three-column-card .tcc-heading h2 {
  margin-bottom: 0;
  margin-right: 0.94rem;
  flex: 1;
}
.three-column-card .tcc-top {
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid #BABABA;
  margin-bottom: 1.57rem;
}
.three-column-card .tcc-img {
  width: 4.25rem;
  height: 4.25rem;
  margin-right: 1.25rem;
}
.three-column-card .tcc-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.three-column-card .tcc-title {
  flex: 1;
}
.three-column-card .tcc-title h4, .three-column-card .tcc-title .h4 {
  font-weight: 400;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.5;
}
.three-column-card .tcc-item {
  padding: 1rem 1rem 1.57rem 1rem;
  background-color: #ffffff;
  border-radius: 0.63rem;
  margin-bottom: 0.94rem;
}
.three-column-card .tcc-bottom h6 {
  text-transform: uppercase;
}
.three-column-card .tcc-bottom p {
  font-size: 1rem;
}
.three-column-card .tcc-bottom .btn {
  background-color: #5BFF00;
  color: #231F20;
  padding-right: 1.25rem;
}
.three-column-card .tcc-bottom .btn::after {
  display: none;
}
.three-column-card .tcc-bottom .btn::before {
  background-color: #5BFF00;
}
.three-column-card .tcc-bottom .btn:hover {
  background-color: #18243A;
  color: #ffffff;
}
.three-column-card .tcc-bottom .btn:hover::before {
  background-color: #18243A;
}
.three-column-card.white-bg {
  background-color: #ffffff;
}
.three-column-card.white-bg .tcc-heading-btn .btn {
  background-color: #5BFF00;
  color: #18243A;
}
.three-column-card.white-bg .tcc-heading-btn .btn::before {
  background-color: #5BFF00;
}
.three-column-card.white-bg .tcc-heading-btn .btn:hover {
  background-color: #18243A;
  color: #ffffff;
}
.three-column-card.white-bg .tcc-heading-btn .btn:hover::before {
  background-color: #18243A;
}
.three-column-card.dark-bg {
  background-color: #18243A;
}
.three-column-card.dark-bg .tcc-item {
  margin-bottom: 2.5rem;
}
.three-column-card.dark-bg .tcc-item h1, .three-column-card.dark-bg .tcc-item .h1 {
  color: #18243A;
}
.three-column-card.dark-bg .tcc-item h2, .three-column-card.dark-bg .tcc-item .h2 {
  color: #18243A;
}
.three-column-card.dark-bg .tcc-item h3, .three-column-card.dark-bg .tcc-item .h3 {
  color: #18243A;
}
.three-column-card.dark-bg .tcc-item h4, .three-column-card.dark-bg .tcc-item .h4 {
  color: #18243A;
}
.three-column-card.dark-bg .tcc-item h5, .three-column-card.dark-bg .tcc-item .h5 {
  color: #18243A;
}
.three-column-card.dark-bg .tcc-item h6, .three-column-card.dark-bg .tcc-item .h6 {
  color: #18243A;
}
.three-column-card.dark-bg .tcc-item p, .three-column-card.dark-bg .tcc-item a, .three-column-card.dark-bg .tcc-item li {
  color: #18243A;
}
.odd-even-section {
  margin: 3.75rem 0;
}
@media (max-width: 767px) {
  .odd-even-section {
    margin: 2.5rem 0;
  }
}
@media (max-width: 767px) {
  .odd-even-section .oes-wrapper {
    padding: 0 1.25rem;
  }
}
.odd-even-section .oes-row {
  align-items: center;
  margin-bottom: 3.13rem;
}
@media (max-width: 767px) {
  .odd-even-section .oes-row {
    margin-bottom: 1.88rem;
  }
}
.odd-even-section .oes-row:last-child {
  margin-bottom: 0;
}
.odd-even-section .oes-row:nth-child(even) {
  flex-direction: row-reverse;
}
.odd-even-section .oes-row:nth-child(even) .oes-col-right {
  padding-left: calc((100% - 73.13rem) / 2);
  padding-right: 0;
}
.odd-even-section .oes-row:nth-child(even) .oes-col-right > div {
  padding-left: 2.5rem;
}
@media (max-width: 767px) {
  .odd-even-section .oes-row:nth-child(even) .oes-col-right > div {
    padding-left: 1.25rem;
  }
}
.odd-even-section .oes-desc p {
  font-size: 1rem;
}
.odd-even-section .oes-desc p a {
  color: #18243A;
  font-weight: 700;
}
.odd-even-section .oes-col-right {
  padding-right: calc((100% - 73.13rem) / 2);
}
.odd-even-section .oes-col-right > div {
  padding-right: 2.5rem;
}
@media (max-width: 767px) {
  .odd-even-section .oes-col-right > div {
    padding-right: 1.25rem;
  }
}
@media (max-width: 767px) {
  .odd-even-section .oes-content {
    margin-top: 1.25rem;
  }
}
.odd-even-section .oes-content h4 {
  font-weight: 400;
  margin-bottom: 0;
  border-bottom: 2px solid #18243A;
  padding-bottom: 0.94rem;
  margin-bottom: 1.57rem;
}
.odd-even-section .oes-img {
  position: relative;
  padding-top: 55%;
}
.odd-even-section .oes-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .odd-even-section .oes-img {
    padding-top: 42.456853%;
  }
}
.partner-with-business {
  position: relative;
  margin: 0;
  padding: 2.88rem 0;
}
.partner-with-business .container {
  position: relative;
  z-index: 2;
}
.partner-with-business::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../png/shape-background-light.png");
  background-size: 100%;
  background-repeat: no-repeat;
}
.partner-with-business::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 6.25rem;
  background: linear-gradient(0deg, white 18%, rgba(255, 255, 255, 0) 100%);
  bottom: 0;
}
.partner-with-business .scc-description {
  text-transform: uppercase;
  max-width: 100%;
}
.partner-with-business .scc-description::after {
  display: none;
}
.partner-with-business .vmc-col {
  padding-bottom: 1.25rem;
  background-color: #ffffff;
  border-width: 2px;
  transition: 0.4s;
}
.partner-with-business .vmc-col.open {
  background-color: #18243A;
  border-color: #18243A;
}
.partner-with-business .vmc-col.open .vmc-title h6 {
  color: #ffffff;
}
.partner-with-business .vmc-col.open .plus-icon {
  background-color: #ffffff;
  border-color: #5BFF00;
}
.partner-with-business .vmc-col.open .plus-icon::after {
  background-color: #5BFF00;
}
.partner-with-business .vmc-col.open .vmc-image .hover-image {
  opacity: 1;
}
.partner-with-business .vmc-col.open .vmc-image .default-image {
  opacity: 0;
}
.partner-with-business .vmc-col .vmc-card-description {
  background-color: transparent;
  padding-bottom: 10px;
}
.partner-with-business .vmc-col .vmc-card-description p {
  color: #ffffff;
}
.partner-with-business .vmc-col .vmc-card-description .btn {
  padding-right: 1.25rem;
}
.partner-with-business .vmc-col .vmc-card-description .btn::after {
  display: none;
}
.partner-with-business .vmc-col .vmc-title {
  margin-bottom: 0.63rem;
}
.partner-with-business .vmc-col .vmc-title h6 {
  text-transform: inherit;
  transition: 0.3s;
}
.partner-with-business .vmc-col .vmc-image {
  position: relative;
  margin-bottom: 1.88rem;
}
.partner-with-business .vmc-col .vmc-image .hover-image {
  opacity: 0;
}
.partner-with-business .vmc-col .vmc-image img {
  transition: 0.4s;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.partner-with-business .vmc-description-wrapper {
  position: initial;
  margin-top: 0;
}
.partner-with-business .vmc-description-wrapper .plus-icon {
  left: 50%;
  transform: translateX(-50%);
  bottom: -13px;
}
.partner-with-business .scc-heading {
  text-transform: inherit;
  margin: 0 auto 1.5rem;
}
.partner-with-business .scc-heading::after {
  margin: 0.63rem auto 0;
}
.full-width-cta {
  background-position: bottom;
}
.full-width-cta h6 {
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .full-width-cta h6 {
    font-size: 1rem;
  }
}
.full-width-cta .twa-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.88rem;
}
@media (max-width: 767px) {
  .full-width-cta .twa-wrapper {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.88rem;
  }
}
.full-width-cta .twa-title {
  margin-right: 0.94rem;
  flex: 1;
}
.full-width-cta .twa-title h2, .full-width-cta .twa-title .h1 {
  margin-bottom: 0;
}
.promo-panel {
  position: relative;
}
.promo-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #18243A;
  opacity: 0.43;
  z-index: 1;
}
.promo-panel .container {
  position: relative;
  z-index: 2;
}
.promo-panel .pp-container {
  position: relative;
  padding: 3.13rem 0;
}
.promo-panel .pp-container::before, .promo-panel .pp-container::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 8.13rem;
}
.promo-panel .pp-container::before {
  background: linear-gradient(0deg, rgba(24, 36, 58, 0) 10%, #18243a 100%);
  top: 0;
}
.promo-panel .pp-container::after {
  background: linear-gradient(0deg, rgba(24, 36, 58, 0) 10%, #18243a 100%);
  transform: scale(-1);
  bottom: 0;
}
.promo-panel .pp-heading.heading-with-line {
  margin: 0 auto 1.88rem;
}
.promo-panel .pp-heading.heading-with-line h2 {
  margin-bottom: 0;
  text-transform: initial;
}
.promo-panel .pp-heading.heading-with-line::after {
  margin: 0.82rem auto 0;
}
.promo-panel .pp-desk {
  max-width: 58.07rem;
  margin: 0 auto 1.5rem;
}
.promo-panel .pp-desk h4 {
  font-weight: 400;
}
.promo-panel .pp-desk p {
  font-size: 1.13rem;
}
.growth-potential-form {
  background-color: #18243A;
  padding: 3.13rem 0;
}
.growth-potential-form h2, .growth-potential-form .h1 {
  font-size: 3.75rem;
}
@media (max-width: 1199px) {
  .growth-potential-form h2, .growth-potential-form .h1 {
    font-size: 3rem;
  }
}
@media (max-width: 991px) {
  .growth-potential-form h2, .growth-potential-form .h1 {
    font-size: 2.38rem;
  }
}
@media (max-width: 767px) {
  .growth-potential-form h2, .growth-potential-form .h1 {
    font-size: 1.5rem;
  }
}
.growth-potential-form .gp-cta {
  margin-top: 1.88rem;
}
.hero-section {
  background-color: #18243A;
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
.hero-section .hs-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 5.63rem;
}
@media (max-width: 767px) {
  .hero-section .hs-cta-wrap {
    margin-top: 2.5rem;
  }
}
.hero-section .hs-top {
  position: relative;
  padding: 5.63rem 0 2.19rem;
  background-position: bottom;
}
.hero-section .hs-top::after {
  display: none;
}
@media (max-width: 767px) {
  .hero-section .hs-top {
    padding: 2.5rem 0;
  }
}
.hero-section .hs-top h1, .hero-section .hs-top .h1 {
  margin-bottom: 0;
}
.hero-section .hs-top h1 a, .hero-section .hs-top .h1 a {
  display: inline-block;
  color: #5BFF00;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}
.hero-section .hs-top h1 a:hover, .hero-section .hs-top .h1 a:hover {
  color: #ffffff;
}
@media (max-width: 991px) {
  .hero-section .hs-top h1 a, .hero-section .hs-top .h1 a {
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }
}
.hero-section .hs-top h2, .hero-section .hs-top .h2 {
  margin-bottom: 0;
}
.hero-section .hs-top h2 a, .hero-section .hs-top .h2 a {
  display: inline-block;
  color: #5BFF00;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}
.hero-section .hs-top h2 a:hover, .hero-section .hs-top .h2 a:hover {
  color: #ffffff;
}
@media (max-width: 991px) {
  .hero-section .hs-top h2 a, .hero-section .hs-top .h2 a {
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }
}
.hero-section .hs-top h3, .hero-section .hs-top .h3 {
  margin-bottom: 0;
}
.hero-section .hs-top h3 a, .hero-section .hs-top .h3 a {
  display: inline-block;
  color: #5BFF00;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}
.hero-section .hs-top h3 a:hover, .hero-section .hs-top .h3 a:hover {
  color: #ffffff;
}
@media (max-width: 991px) {
  .hero-section .hs-top h3 a, .hero-section .hs-top .h3 a {
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }
}
.hero-section .hs-top h4, .hero-section .hs-top .h4 {
  margin-bottom: 0;
}
.hero-section .hs-top h4 a, .hero-section .hs-top .h4 a {
  display: inline-block;
  color: #5BFF00;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}
.hero-section .hs-top h4 a:hover, .hero-section .hs-top .h4 a:hover {
  color: #ffffff;
}
@media (max-width: 991px) {
  .hero-section .hs-top h4 a, .hero-section .hs-top .h4 a {
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }
}
.hero-section .hs-top h5, .hero-section .hs-top .h5 {
  margin-bottom: 0;
}
.hero-section .hs-top h5 a, .hero-section .hs-top .h5 a {
  display: inline-block;
  color: #5BFF00;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}
.hero-section .hs-top h5 a:hover, .hero-section .hs-top .h5 a:hover {
  color: #ffffff;
}
@media (max-width: 991px) {
  .hero-section .hs-top h5 a, .hero-section .hs-top .h5 a {
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }
}
.hero-section .hs-top h6, .hero-section .hs-top .h6 {
  margin-bottom: 0;
}
.hero-section .hs-top h6 a, .hero-section .hs-top .h6 a {
  display: inline-block;
  color: #5BFF00;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}
.hero-section .hs-top h6 a:hover, .hero-section .hs-top .h6 a:hover {
  color: #ffffff;
}
@media (max-width: 991px) {
  .hero-section .hs-top h6 a, .hero-section .hs-top .h6 a {
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }
}
.hero-section .hs-bottom {
  display: flex;
  justify-content: space-between;
  padding: 2.19rem 0;
  border-top: 1px solid #ffffff;
}
@media (max-width: 767px) {
  .hero-section .hs-bottom {
    flex-direction: column;
  }
}
.hero-section .hs-description {
  margin-right: 1.88rem;
  max-width: 41.63rem;
  width: 100%;
  flex: 1;
}
@media (max-width: 767px) {
  .hero-section .hs-description {
    margin: 0 0 1.25rem;
  }
}
.hero-section .hs-description p {
  font-size: 1.75rem;
}
@media (max-width: 991px) {
  .hero-section .hs-description p {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .hero-section .hs-description p {
    font-size: 1rem;
  }
}
.hero-section .hs-heading {
  text-align: center;
  margin-bottom: 3rem !important;
}
@media (max-width: 767px) {
  .hero-section .hs-heading {
    font-size: 1.5rem;
  }
}
.hero-section .hs-heading span {
  background-color: #5BFF00;
  color: #18243A;
  padding: 0.5rem 0.94rem;
}
@media (max-width: 767px) {
  .hero-section .hs-heading span {
    padding: 0.38rem 0.63rem;
  }
}
.hero-section .hs-col-top {
  padding-bottom: 1.25rem;
  border-bottom: 2px solid #5BFF00;
  margin-bottom: 1.63rem;
  display: block;
  text-decoration: none;
}
@media (max-width: 767px) {
  .hero-section .hs-col-top {
    margin-bottom: 0.63rem;
    padding-bottom: 0.63rem;
  }
}
.hero-section .hs-col-item {
  text-align: center;
}
@media (max-width: 767px) {
  .hero-section .hs-col-item {
    margin-bottom: 1.88rem;
  }
}
.hero-section .hs-col-item .hs-col-top h3 {
  font-size: 1.88rem;
  font-weight: 400;
}
@media (max-width: 1199px) {
  .hero-section .hs-col-item .hs-col-top h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 991px) {
  .hero-section .hs-col-item .hs-col-top h3 {
    font-size: 1.13rem;
  }
}
.hero-section .hs-col-img {
  width: 4.38rem;
  height: 4.38rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .hero-section .hs-col-img {
    width: 3.13rem;
    height: 3.13rem;
  }
}
.hero-section .hs-col-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-section .hs-form-wrapper {
  margin: 5.63rem auto 0;
}
@media (max-width: 767px) {
  .hero-section .hs-form-wrapper {
    margin-top: 1.25rem;
  }
}
@media (max-width: 767px) {
  .hero-section .hs-form-wrapper .d-flex {
    flex-direction: column;
  }
}
.hero-section .hs-form-wrapper .form-control.input-field {
  max-width: 20.63rem;
  width: 100%;
}
.hero-section .hs-form-wrapper .form-control .btn-normal {
  padding: 0.79rem 1.57rem;
  margin-left: 1.13rem;
}
@media (max-width: 767px) {
  .hero-section .hs-form-wrapper .form-control .btn-normal {
    margin-left: 0;
    margin-top: 1.25rem;
  }
}
.hero-section .hs-form-wrapper .form-control .btn-normal p {
  font-size: 0;
}
.hero-section .hs-form-wrapper .form-control .btn-normal .wpcf7-spinner {
  display: none;
}
.hero-section .hs-form-wrapper .form-control .btn-normal .wpcf7-form-control {
  padding: 0;
  background-color: transparent;
}
.hero-section .hs-form-wrapper .form-control input[type=email] {
  border-radius: 0;
  height: 2.9rem;
}
.blog-listing {
  margin: 2.5rem 0;
}
.blog-listing .container-fluid {
  padding: 0 2.5rem;
}
@media (max-width: 575px) {
  .blog-listing .container-fluid {
    padding: 0 1.25rem;
  }
}
.blog-listing .blog-main-row {
  row-gap: 2.5rem;
  margin-right: -0.62rem;
  margin-left: -0.62rem;
}
.blog-listing .blog-main-row [class*="cell-"] {
  padding-left: 0.63rem;
  padding-right: 0.63rem;
}
.blog-listing .blog-col {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  height: 100%;
  text-align: left;
  border: 1px solid #BABABA;
  overflow: hidden;
  border-radius: 0.63rem;
}
.blog-listing .blog-col .btn-normal {
  transition: 0.4s;
}
.blog-listing .blog-col .btn-normal::before {
  transition: 0.4s;
}
.blog-listing .blog-col:hover {
  color: #000000;
}
.blog-listing .blog-col:hover .blog-image img {
  transform: scale(1.1);
}
.blog-listing .blog-col:hover .btn-normal {
  background-color: #18243A;
  color: #ffffff;
}
.blog-listing .blog-col:hover .btn-normal::before {
  background-color: #18243A;
}
.blog-listing .blog-col .title {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.3;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .blog-listing .blog-col .title {
    font-size: 1.25rem;
  }
}
.blog-listing .blog-image {
  position: relative;
  padding-top: 52.2857142857%;
  display: inline-block;
  width: 100%;
  overflow: hidden;
}
.blog-listing .blog-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-listing .blog-image img {
  transition: 0.8s;
}
.blog-listing .blog-image img:hover {
  transform: scale(1.1);
}
.blog-listing .blog-inner-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  padding: 0.88rem 0.88rem 1rem 1.44rem;
}
@media (max-width: 767px) {
  .blog-listing .blog-inner-content {
    padding: 0.94rem;
  }
}
.blog-listing .blog-inner-content p {
  color: #000000;
  font-size: 1.13rem;
  line-height: 1.33;
  margin-bottom: 0.82rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}
.blog-listing .blog-inner-content .heading-with-line::after {
  margin-top: 0.63rem;
}
.blog-listing-load-more {
  text-align: center;
  margin: 0.94rem 0;
  font-size: 1.13rem;
  font-weight: 700;
}
.blog-detail-content-section {
  padding: 3.13rem 0 0.63rem;
}
@media (max-width: 991px) {
  .blog-detail-content-section {
    padding-top: 1.88rem 0 0.63rem;
  }
}
.blog-detail-content-section .container {
  max-width: 46.25rem;
}
.blog-detail-content-section .blog-heading h1 {
  padding-bottom: 1.57rem;
  margin-bottom: 1.57rem;
  border-bottom: 2px solid #000000;
}
.blog-detail-content-section .blog-heading .excerpt {
  font-size: 1.5rem;
  margin-bottom: 1.57rem;
}
@media (max-width: 991px) {
  .blog-detail-content-section .blog-heading .excerpt {
    font-size: 1.13rem;
  }
}
.blog-detail-content-section .blog-content-wrapper h1, .blog-detail-content-section .blog-content-wrapper .h1 {
  color: #000000;
}
.blog-detail-content-section .blog-content-wrapper h2, .blog-detail-content-section .blog-content-wrapper .h2 {
  color: #000000;
}
.blog-detail-content-section .blog-content-wrapper h3, .blog-detail-content-section .blog-content-wrapper .h3 {
  color: #000000;
}
.blog-detail-content-section .blog-content-wrapper h4, .blog-detail-content-section .blog-content-wrapper .h4 {
  color: #000000;
}
.blog-detail-content-section .blog-content-wrapper h5, .blog-detail-content-section .blog-content-wrapper .h5 {
  color: #000000;
}
.blog-detail-content-section .blog-content-wrapper h6, .blog-detail-content-section .blog-content-wrapper .h6 {
  color: #000000;
}
.blog-detail-content-section .blog-content-wrapper h3, .blog-detail-content-section .blog-content-wrapper .h3 {
  line-height: 1.5;
}
.blog-detail-content-section .blog-content-wrapper ul {
  margin-bottom: 1.57rem;
  margin-left: 1.25rem;
}
@media (max-width: 767px) {
  .blog-detail-content-section .blog-content-wrapper ul {
    margin-left: 0.63rem;
  }
}
.blog-detail-content-section .blog-content-wrapper ul li {
  font-size: 1.25rem;
  color: #000000;
  padding: 0;
}
.blog-detail-content-section .blog-content-wrapper ul li:not(:last-child) {
  margin-bottom: 1.25rem;
}
.blog-detail-content-section .blog-content-wrapper ul li::before {
  line-height: 2;
}
@media (max-width: 991px) {
  .blog-detail-content-section .blog-content-wrapper ul li {
    font-size: 1rem;
  }
  .blog-detail-content-section .blog-content-wrapper ul li::before {
    line-height: 2.3;
  }
}
.blog-detail-content-section .blog-content-wrapper ol {
  margin-bottom: 1.57rem;
  margin-left: 1.25rem;
}
@media (max-width: 767px) {
  .blog-detail-content-section .blog-content-wrapper ol {
    margin-left: 0.63rem;
  }
}
.blog-detail-content-section .blog-content-wrapper ol li {
  color: #000000;
  padding: 0;
  font-size: 1.13rem;
}
.blog-detail-content-section .blog-content-wrapper ol li:not(:last-child) {
  margin-bottom: 1.25rem;
}
.blog-detail-content-section .blog-content-wrapper ol li::marker {
  font-weight: 700;
}
@media (max-width: 991px) {
  .blog-detail-content-section .blog-content-wrapper ol li {
    font-size: 1rem;
  }
}
.blog-detail-content-section .blog-content-wrapper blockquote p {
  font-size: 1.5rem;
}
@media (max-width: 991px) {
  .blog-detail-content-section .blog-content-wrapper blockquote p {
    font-size: 1.13rem;
  }
}
.blog-detail-content-section .blog-content-wrapper h2 {
  font-size: 3rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .blog-detail-content-section .blog-content-wrapper h2 {
    font-size: 1.88rem;
  }
}
.blog-detail-content-section .blog-content-wrapper h4 {
  font-size: 1.88rem;
}
@media (max-width: 767px) {
  .blog-detail-content-section .blog-content-wrapper h4 {
    font-size: 1.25rem;
  }
}
.blog-detail-content-section .blog-content-wrapper p {
  font-size: 1.13rem;
  margin-bottom: 1.57rem;
  line-height: 1.4;
  color: #000000;
}
@media (max-width: 767px) {
  .blog-detail-content-section .blog-content-wrapper p {
    font-size: 1rem;
    margin-bottom: 1.13rem;
  }
}
.blog-detail-content-section .blog-content-wrapper h1, .blog-detail-content-section .blog-content-wrapper .h1 {
  font-weight: 400;
  padding-top: 0.63rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .blog-detail-content-section .blog-content-wrapper h1, .blog-detail-content-section .blog-content-wrapper .h1 {
    margin-bottom: 0.63rem;
  }
}
.blog-detail-content-section .blog-content-wrapper h2, .blog-detail-content-section .blog-content-wrapper .h2 {
  font-weight: 400;
  padding-top: 0.63rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .blog-detail-content-section .blog-content-wrapper h2, .blog-detail-content-section .blog-content-wrapper .h2 {
    margin-bottom: 0.63rem;
  }
}
.blog-detail-content-section .blog-content-wrapper h3, .blog-detail-content-section .blog-content-wrapper .h3 {
  font-weight: 400;
  padding-top: 0.63rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .blog-detail-content-section .blog-content-wrapper h3, .blog-detail-content-section .blog-content-wrapper .h3 {
    margin-bottom: 0.63rem;
  }
}
.blog-detail-content-section .blog-content-wrapper h4, .blog-detail-content-section .blog-content-wrapper .h4 {
  font-weight: 400;
  padding-top: 0.63rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .blog-detail-content-section .blog-content-wrapper h4, .blog-detail-content-section .blog-content-wrapper .h4 {
    margin-bottom: 0.63rem;
  }
}
.blog-detail-content-section .blog-content-wrapper h5, .blog-detail-content-section .blog-content-wrapper .h5 {
  font-weight: 400;
  padding-top: 0.63rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .blog-detail-content-section .blog-content-wrapper h5, .blog-detail-content-section .blog-content-wrapper .h5 {
    margin-bottom: 0.63rem;
  }
}
.blog-detail-content-section .blog-content-wrapper h6, .blog-detail-content-section .blog-content-wrapper .h6 {
  font-weight: 400;
  padding-top: 0.63rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .blog-detail-content-section .blog-content-wrapper h6, .blog-detail-content-section .blog-content-wrapper .h6 {
    margin-bottom: 0.63rem;
  }
}
.blog-detail-content-section .blog-content-wrapper .feaure-img {
  position: relative;
  padding-top: 52.7027027027%;
  margin-bottom: 3.13rem;
}
.blog-detail-content-section .blog-content-wrapper .feaure-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .blog-detail-content-section .blog-content-wrapper .feaure-img {
    margin-bottom: 1.88rem;
  }
}
.blog-detail-content-section .blog-content-wrapper a {
  color: #0066CC;
}
.blog-detail-content-section .blog-content-wrapper a:hover {
  color: #000000;
}
body.single .blog-listing {
  margin: 1.88rem 0;
}
@media (max-width: 767px) {
  body.single .blog-listing {
    margin: 1.57rem 0;
  }
}
body.single .center-wysiwyg .sub-heading {
  margin: 0 auto;
}
body.single .center-wysiwyg .sub-heading::after {
  margin: 0 auto;
}
body.single .center-wysiwyg .sub-heading h2 {
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.23rem;
  font-size: 1.13rem;
}
body.single .center-wysiwyg .heading-with-line {
  text-transform: inherit;
}
.inner-hero {
  position: relative;
  z-index: 1;
}
.inner-hero .inner-hero-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.inner-hero .inner-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-hero .inner-hero-content {
  padding: 4.38rem 0 0.94rem;
}
.inner-hero .inner-hero-content h1, .inner-hero .inner-hero-content .h1 {
  margin-bottom: 0;
}
.inner-hero .inner-hero-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .inner-hero .inner-hero-heading {
    flex-direction: column;
    align-items: flex-start;
  }
}
.inner-hero .inner-hero-heading h1, .inner-hero .inner-hero-heading .h1 {
  margin-right: 1.25rem;
  text-transform: capitalize;
  margin-bottom: 0.63rem;
}
@media (max-width: 767px) {
  .inner-hero .inner-hero-heading .breadcrumb-wrapper .btn {
    font-size: 0.75rem;
    padding: 0.63rem;
    margin-right: 1.25rem;
  }
  .inner-hero .inner-hero-heading .breadcrumb-wrapper .btn::before {
    width: 1.25rem;
    height: 1.25rem;
    right: 0.19rem;
  }
}
@media (max-width: 767px) {
  .inner-hero .inner-hero-heading .breadcrumb-wrapper {
    margin-top: 1.25rem;
  }
}
.case-studies-details.center-wysiwyg p {
  color: #231F20;
}
.case-studies-details h2, .case-studies-details .h2 {
  margin-bottom: 2.19rem;
}
@media (max-width: 991px) {
  .case-studies-details h2, .case-studies-details .h2 {
    margin-bottom: 0.94rem;
  }
}
.industry-details {
  padding: 4.07rem 0 3.38rem;
}
@media (max-width: 991px) {
  .industry-details {
    padding: 2.5rem 0 0.63rem;
  }
}
.industry-details h2, .industry-details .h2 {
  line-height: 0.8;
}
.industry-details .heading-with-line {
  margin-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .industry-details .heading-with-line {
    font-size: 1rem;
    margin-bottom: 0.94rem;
  }
}
.industry-details .heading-with-line::after {
  margin-top: 0.94rem;
}
@media (max-width: 767px) {
  .industry-details .heading-with-line::after {
    margin-top: 0.63rem;
  }
}
.industry-details .website-link {
  text-decoration: none;
  font-weight: 700;
}
.industry-details .id-column {
  border-right: 0.07rem solid #BABABA;
}
@media (max-width: 991px) {
  .industry-details .id-column {
    border: 0;
    margin-bottom: 3.13rem;
  }
}
@media (max-width: 767px) {
  .industry-details .id-column {
    margin-bottom: 1.88rem;
  }
}
.industry-details .id-column:last-child {
  border: 0;
}
.error-404 {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 182.5px;
  min-height: 100vh;
}
@media (max-width: 767px) {
  .error-404 {
    min-height: auto;
  }
}
.error-404 .container {
  padding: 3.75rem 0;
}
.error-404 .btn:hover {
  color: #18243A;
  text-decoration: none;
}
.error-404 a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.error-404 .inner-hero-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.error-404 .inner-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sourceRoot%22%3A%22https%3A%2F%2Fgrowthera.com%2F%22%2C%22sources%22%3A%5B%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fstyle.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fvendors%2F_slick.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fvendors%2F_fancybox.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fbase%2F_fonts.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fbase%2F_normalize.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fbase%2F_typography.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fabstracts%2F_mixins.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fbase%2F_utilities.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fbase%2F_buttons.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fbase%2F_forms.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Flayout%2F_default.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Flayout%2F_device-menu.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Flayout%2F_header.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Flayout%2F_footer.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_get-a-qoute.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_fifty-fifty-image.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_testimonial.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_what-we-do-component.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_text-with-cta.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_sales-card-component.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_case-studies.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_media-component.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_begin-our-journey.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_center-wysiwyg.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_implementation-steps.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_core-values.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_featured-clients.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_leadership-team.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_sales-development-unit.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_wysiwyg.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_deep-discovery.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_use-case.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_the-results.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_contact-info.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_contact-us.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_plain-wysiwyg.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_open-positions.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_three-column-logo.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_three-column-card.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_odd-even-section.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_partner-with-businesses.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_full-width-cta.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_promo-panel.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Fcomponents%2F_growth-potential-form.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Ftemplates%2F_comp-hero.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Ftemplates%2F_blog-listing.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Ftemplates%2F_blog-details.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Ftemplates%2F_comp-inner-hero.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Ftemplates%2F_case-studies-detail.scss%22%2C%22wp-content%2Fthemes%2Fgrowth-era%2Fassets%2Fscss%2Ftemplates%2F_error-404.scss%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22AAAA%3BAAAA%3BAAAA%3BAAAA%3BACEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASD%3BAAAA%3BAAAA%3BAAAA%3BAASH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAgBC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAC9KD%3BAAAA%3BAAAA%3BAAAA%3BAAAiD%3BAAAA%3BAAAA%3BAAAoE%3BAAAA%3BAAAA%3BAAAA%3BAAA%2BC%3BAAAA%3BAAAA%3BAAAA%3BAAAkD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAqF%3BAAAA%3BAAAA%3BAAA8B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAkL%3BAAAA%3BAAAA%3BAAA4C%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAsK%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAwH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAwO%3BAAAA%3BAAAA%3BAAA2D%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAyb%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAyG%3BAAAA%3BAAAA%3BAAAoC%3BAAAA%3BAAAA%3BAAAqC%3BAAAA%3BAAAA%3BAAAA%3BAAAsD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAsT%3BAAAA%3BAAAA%3BAAAwC%3BAAAA%3BAAAA%3BAAAA%3BAAA2E%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAsvC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAwF%3BAAAA%3BAAAA%3BAAA%2BD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAA6F%3BAAAA%3BAAAA%3BAAAA%3BAAA0C%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAyZ%3BAAAmC%3BAAAA%3BAAAA%3BAAAA%3BAAAqC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAqR%3BAAAA%3BAAAA%3BAAA0E%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAgN%3BAAAA%3BAAAA%3BAAAiD%3BAAAA%3BAAAA%3BAAAA%3BAAAgF%3BAAAA%3BAAAA%3BAAA4C%3BAAAA%3BAAAA%3BAAAmD%3BAAAmC%3BAAAA%3BAAAA%3BAAAA%3BAAAqD%3BAAAA%3BAAAA%3BAAAkD%3BAAAmC%3BAAAA%3BAAAA%3BAAAA%3BAAAoD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAA0K%3BAAAmC%3BAAAA%3BAAAA%3BAAAA%3BAAAuC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAoH%3BAAAA%3BAAAA%3BAAAmE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAuJ%3BAAAA%3BAAAA%3BAAAA%3BAAAgE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAsL%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAqN%3BAAA2B%3BAAAA%3BAAAA%3BAAAA%3BAAA%2BB%3BAAAyB%3BAAAA%3BAAAA%3BAAAA%3BAAA8C%3BAAAA%3BAAAA%3BAAAA%3BAAAoD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAuD%3BAAAA%3BAAAA%3BAAAoI%3BAAAA%3BAAAA%3BAAAmZ%3BAAAA%3BAAAA%3BAAAuW%3BAAAA%3BAAAA%3BAAA0D%3BAAAA%3BAAAA%3BAAA2D%3BAAAA%3BAAAA%3BAAA6D%3BAAAA%3BAAAA%3BAAAoE%3BAAAA%3BAAAA%3BAAAkE%3BAAAA%3BAAAA%3BAAAsE%3BAAA2B%3BAAAA%3BAAAA%3BAAAe%3BAAAA%3BAAAA%3BAAAA%3BAAAc%3BAAA4B%3BAAAA%3BAAAA%3BAAAA%3BAAAc%3BAAA6B%3BAAAA%3BAAAA%3BAAAA%3BAAA6D%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAsD%3BAAAgC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAA4D%3BAAA%2BB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAgD%3BAAAiC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAA%2BC%3BAAAA%3BAAAA%3BAAAA%3BAAAoG%3BAAAA%3BAAAA%3BAAAA%3BAAA6E%3BAAAA%3BAAAA%3BAAAoG%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAA8I%3BAAAA%3BAAAA%3BAAAA%3BAAA%2BI%3BAAAA%3BAAAA%3BAAAA%3BAAAiJ%3BAAAA%3BAAAA%3BAAAoE%3BAAAA%3BAAAA%3BAAAmF%3BAAAA%3BAAAA%3BAAAqF%3BAAAA%3BAAAA%3BAAAA%3BAAA6F%3BAAAA%3BAAAA%3BAAAA%3BAAAgG%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAuE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAA8E%3BAAAA%3BAAAA%3BAAA2D%3BAAAA%3BAAAA%3BAAAA%3BAAAsE%3BAAAA%3BAAAA%3BAAAA%3BAAAwF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAsG%3BAAAA%3BAAAA%3BAAAA%3BAAAuE%3BAAAA%3BAAAA%3BAAAwE%3BAAAA%3BAAAA%3BAAAA%3BAAAiF%3BAAAA%3BAAAA%3BAAAA%3BAAAoE%3BAAAA%3BAAAA%3BAAAA%3BAAA2E%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAA0F%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAyY%3BAAAA%3BAAAA%3BAAAA%3BAAAyN%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAiM%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAA2T%3BAAAA%3BAAAA%3BAAAmF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAA8G%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAA2J%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAqG%3BAAAA%3BAAAA%3BAAAuH%3BAAAA%3BAAAA%3BAAAwE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAiO%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAA6T%3BAAAA%3BAAAA%3BAAAuF%3BAAAA%3BAAAA%3BAAAA%3BAAA0E%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAA2R%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAyxB%3BAAAmC%3BAAAA%3BAAAA%3BAAAA%3BAAAgC%3BAAAA%3BAAAA%3BAAAwH%3BAAAA%3BAAAA%3BAAAyE%3BAAAA%3BAAAA%3BAAAuC%3BAAAA%3BAAAA%3BAAAkD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAwF%3BAAAA%3BAAAA%3BAAAkD%3BAAAyB%3BAAAA%3BAAAA%3BAAAA%3BAAAiE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAgN%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAA2Q%3BAAAA%3BAAAA%3BAAAoD%3BAAAA%3BAAAA%3BAAA0D%3BAAAA%3BAAAA%3BAAA0F%3BAAAA%3BAAAA%3BAAA2F%3BAAAA%3BAAAA%3BAAAyD%3BAAAA%3BAAAA%3BAAA4F%3BAAAA%3BAAAA%3BACIvie%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAH3DF%3BAAAA%3BAIEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiFA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAJzFA%3BAAAA%3BAIuGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAJnHA%3BAAAA%3BAIyHA%3BAAAA%3BAAAA%3BAAAA%3BAJzHA%3BAAAA%3BAAAA%3BAKGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACPM%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADHP%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACPM%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADHP%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACPM%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADHP%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACPM%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADHP%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACPM%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADHP%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAsDF%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAChEO%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADwER%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAC1FQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAD0GP%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAL9KA%3BAAAA%3BAKqLA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BALzLD%3BAAAA%3BAKmMA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAL1ND%3BAAAA%3BAAAA%3BAOGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADqCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACtBR%3BAAAA%3BAAAA%3BAPlBA%3BAO4BA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAOR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAP7CA%3BAOsDI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAMQ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAP%2FIR%3BAOuJI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAJA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAP3KJ%3BAOyLI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUQ%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAPA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAPA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAD3MJ%3BACwNI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUQ%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAPA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAPA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAASJ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BADlVZ%3BACwNI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUQ%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAPA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAPA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAASJ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BADlVZ%3BACwNI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUQ%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAPA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAPA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAASJ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BADlVZ%3BACwNI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUQ%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAPA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAPA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAASJ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BADlVZ%3BACwNI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUQ%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAPA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAPA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAASJ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAClWpB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAmBC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAQH%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASF%3BAAAA%3BAAAA%3BAC5IA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAcA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAoBC%3BAAAA%3BAAAA%3BAAAA%3BAHiGG%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAGlGJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAThFA%3BASqFA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAT7FA%3BASmGA%3BAAAA%3BAAAA%3BAAgBA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAOH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAqBF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH%2FIM%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGiKP%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAC5MF%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAJwMQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIlMR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJTO%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BANxCR%3BAU8DA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUD%3BAAAA%3BAAAA%3BAAAA%3BAJkJQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAI3IN%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAVrID%3BAU4IA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJpGQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAI2GP%3BAAAA%3BAAAA%3BAAAA%3BAJ3GO%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BANxCR%3BAU8JC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAV3KF%3BAUkLA%3BAAAA%3BAAAA%3BAAAA%3BAJzCI%3BAAAA%3BAAAA%3BAAAA%3BAAjGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiGJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAI%2BCF%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQU%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWR%3BAAAA%3BAAAA%3BAAAA%3BAAIY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAJ1MJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIkNN%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMU%3BAAAA%3BAAAA%3BAAAA%3BAAKV%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKU%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAQX%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJ1PM%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIqQL%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWH%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJvRM%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAI%2BRN%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJlTK%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAI0TL%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJvUQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIiVP%3BAAAA%3BAAAA%3BAJjVO%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIuVN%3BAAAA%3BAAAA%3BAV%2FXF%3BAWWA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAL6BQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKdJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAASZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQgB%3BAAAA%3BAAAA%3BAAAA%3BAL3DR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKuEJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQQ%3BAAAA%3BAAAA%3BAAQZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYY%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMQ%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAkBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWI%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAQR%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiBR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYI%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAXvaR%3BAYIG%3BAAAA%3BAAAA%3BAAMH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BANoBM%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAMVL%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAOH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BANCO%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAMQP%3BAAAA%3BAAAA%3BAAAA%3BANRO%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAMiBN%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcD%3BAAAA%3BAAAA%3BAAAA%3BAN%2FBO%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAMqCN%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAME%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BANvDI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAMoEH%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOE%3BAAAA%3BAAAA%3BAAAA%3BAASH%3BAAAA%3BAAAA%3BANzFI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAM8FH%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAMH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASE%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAmBA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAgBJ%3BAAAA%3BAAAA%3BAAAA%3BANzNQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAM0ON%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BANzPK%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAMkQJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUH%3BAAAA%3BAAAA%3BAN5QO%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAMiRN%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAZxUJ%3BAaCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAPuCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAO9BN%3BAAAA%3BAAAA%3BAP8BM%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAOpBL%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAPoBK%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAOVL%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAPUK%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAOAJ%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAPtBK%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAO6BJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAPJI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAzBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAOyCH%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAPhDK%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAOuDJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAPvDI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAOgEH%3BAAAA%3BAAAA%3BAPhEG%3BAOqEC%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAPpGK%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAOoHL%3BAAAA%3BAAAA%3BAAAA%3BAPpHK%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAOgIJ%3BAAAA%3BAAAA%3BAPhII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAQxCR%3BAAAA%3BAAAA%3BAAAA%3BARwCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAQlCJ%3BAAAA%3BAAAA%3BAAAA%3BARkCI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAQrBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACnBZ%3BAAAA%3BAAAA%3BAAAA%3BATwCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BASjCJ%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAT6BA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BASxBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BATwBJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAShBI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BATGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BASEI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BATNA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BASiBI%3BAAAA%3BAAAA%3BAAAA%3BATgFR%3BAAAA%3BAAAA%3BAAAA%3BAAzHI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAyHJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAjGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAS4BI%3BAAAA%3BAAAA%3BAT5BJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BASkCI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BATlCJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAxBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAS0EI%3BAAAA%3BAAAA%3BAT1EJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BASgFI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BATxDJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BASsEA%3BAAAA%3BAAAA%3BAAAA%3BATtEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAS%2BEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAT%2FEJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAS6FJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMQ%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAC7JR%3BAAAA%3BAAAA%3BAAGQ%3BAAAA%3BAAAA%3BAVqCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAUhCI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAVyBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAUnBA%3BAAAA%3BAAAA%3BAAAA%3BAVmBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAUXI%3BAAAA%3BAAAA%3BAAAA%3BAVWJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAUYI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAVZJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAUqCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAVrCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAUkDA%3BAAAA%3BAAAA%3BAAAA%3BAV0KJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA5NI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAU0DA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAV1DA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAUuEI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACzHZ%3BAAAA%3BAAAA%3BAAGQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAXgCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAW1BA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAXsBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAWhBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAXUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAyBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAWjBQ%3BAAAA%3BAAAA%3BAXRR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAxBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAW0CQ%3BAAAA%3BAAAA%3BAAMQ%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAX5BhB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAWuCY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAXvCZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAW8DA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAX9DA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAWgFI%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAX1FJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAWyGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACjJZ%3BAAAA%3BAAAA%3BAAIY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAZoCJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAY5BQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAZqBZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAYVA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAZyMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2FLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAaxCR%3BAAAA%3BAAAA%3BAbwCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAalCA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGQ%3BAAAA%3BAAAA%3BACNR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAd6BA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAcxBI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAd0NJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAcpNQ%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAdjBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAc4BI%3BAAAA%3BAAAA%3BAAAA%3BAd5BJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAcsCI%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAd%2FCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAcuDI%3BAAAA%3BAAAA%3BAC%2FFZ%3BAAAA%3BAAAA%3BAfwCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAelCA%3BAAAA%3BAAAA%3BAfkCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAe7BI%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAf2BR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAenBA%3BAAAA%3BAAAA%3BAfmBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAebA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAIQ%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAfXR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAe8BY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAfxCZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAgBxCR%3BAAAA%3BAAAA%3BAhBwCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAgBnCJ%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAhB%2BBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAgBvBA%3BAAAA%3BAAAA%3BAhBuBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAiBxCR%3BAAAA%3BAAAA%3BAjBwCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAiBnCJ%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAjB4BJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAiBtBI%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAC7CZ%3BAAAA%3BAAAA%3BAAAA%3BAlBwCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAkBlCJ%3BAAAA%3BAAAA%3BAlBkCI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAkB7BA%3BAAAA%3BAAAA%3BAAAA%3BAlB6BA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAkBhBQ%3BAAAA%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAAA%3BAlB0MA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2FLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiGJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAkB7FI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAlBJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAkBYI%3BAAAA%3BAAAA%3BAlBZJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAkBuBA%3BAAAA%3BAAAA%3BAlBvBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAkBgCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAlBhCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAkB6CI%3BAAAA%3BAAAA%3BAAAA%3BAlB7CJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAkBwDA%3BAAAA%3BAAAA%3BAAAA%3BAChGR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMQ%3BAAAA%3BAAAA%3BAnBkCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAmB7BI%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAnBsBJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAmBbQ%3BAAAA%3BAAAA%3BAnBaR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAmBPQ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUJ%3BAAAA%3BAAAA%3BAnB5BJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAmBuCJ%3BAAAA%3BAAAA%3BAAGQ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAnB9DJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAmBsEI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BACjHZ%3BAAAA%3BAAAA%3BAAGQ%3BAAAA%3BAAAA%3BApBqCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAoB%2FBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BApB%2BBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAoBxBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BApBgBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAqBtCA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BArBQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAsBxCR%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAtBsCI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAsBlBA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAtBaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAsBLA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAtBDA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAsBSA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAtB7BA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAsByCI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAtB5CJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAsB4DI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAtBvEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAsB4EI%3BAAAA%3BAAAA%3BAAGQ%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASZ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAtB4DZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAsBpDI%3BAAAA%3BAAAA%3BAtBoDJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAsB5CI%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAOR%3BAAAA%3BAAAA%3BAtBWJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAsBFI%3BAAAA%3BAAAA%3BAtB7LJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAsBqMJ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BACzQpB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAvBwCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAuBjCJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAvBwMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAuBjMA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAAA%3BAvBwLI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAuBlLA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BACjER%3BAAAA%3BAAAA%3BAxBuCI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAwBjCJ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAxB%2BBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAwBnBJ%3BAAAA%3BAAAA%3BAAGQ%3BAAAA%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAxByMI%3BAAAA%3BAAAA%3BAAAA%3BAA%2FLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2BLA%3BAAAA%3BAAAA%3BAAAA%3BAA%2FLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2BLA%3BAAAA%3BAAAA%3BAAAA%3BAA%2FLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2BLA%3BAAAA%3BAAAA%3BAAAA%3BAA%2FLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2BLA%3BAAAA%3BAAAA%3BAAAA%3BAA%2FLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2BLA%3BAAAA%3BAAAA%3BAAAA%3BAA%2FLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAwBEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAxBsLI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAwBjLA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAMZ%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGQ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAOR%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BACzIhB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAzBwCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAyB1BJ%3BAAAA%3BAAAA%3BAzB0BI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAyBZQ%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAzB1BA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAyBgDI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAOY%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BACvGhB%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BA1B%2BBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA0BzBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA1ByBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA0BfI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BA1BKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA2BxCR%3BAAAA%3BAAAA%3BAAIQ%3BAAAA%3BAAAA%3BAAAA%3BA3BgQJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA5NI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA2BtBA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA3BmBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA2BPA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA3BKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA2BMA%3BAAAA%3BAAAA%3BAC9CR%3BAAAA%3BAAAA%3BAAGQ%3BAAAA%3BAAAA%3BA5BqCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA4BhCI%3BAAAA%3BAAAA%3BA5BgCJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA4BzBQ%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BA5BmHR%3BAAAA%3BAAAA%3BAAAA%3BA4B%2FGY%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BA5BZR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA4BoBY%3BAAAA%3BAAAA%3BAAAA%3BA5BpBZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA4B4BQ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA5BpChB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA4BmDgB%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BA5BzER%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA4BgFQ%3BAAAA%3BAAAA%3BACxHhB%3BAAAA%3BAAAA%3BAAIY%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BA7B%2BBJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA6BxBA%3BAAAA%3BAAAA%3BAAAA%3BA7BwBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2BLA%3BAAAA%3BAAAA%3BAAAA%3BAA%2FLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2BLA%3BAAAA%3BAAAA%3BAAAA%3BAA%2FLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2BLA%3BAAAA%3BAAAA%3BAAAA%3BAA%2FLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2BLA%3BAAAA%3BAAAA%3BAAAA%3BAA%2FLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2BLA%3BAAAA%3BAAAA%3BAAAA%3BAA%2FLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2BLA%3BAAAA%3BAAAA%3BAAAA%3BAA%2FLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA8BtCA%3BAAAA%3BAAAA%3BAAAA%3BA9BsCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA8BhCI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAGQ%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BA9BYR%3BA8BNY%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAMZ%3BAAAA%3BAAAA%3BAAAA%3BA9B4FJ%3BAAAA%3BAAAA%3BAAAA%3BA8BzFI%3BAAAA%3BAAAA%3BAChDR%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BA%2FB4BJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAgCxCR%3BAAAA%3BAAAA%3BAAGQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAhCqCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAgCvBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAOhB%3BAAAA%3BAAAA%3BAAGQ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAOhB%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAhCiIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAgC5HI%3BAAAA%3BAAAA%3BAC3GZ%3BAAAA%3BAAAA%3BAjCwCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAiC7BA%3BAAAA%3BAAAA%3BAAAA%3BAjC6BA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAiCvBI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAjCmLR%3BAAAA%3BAAAA%3BAAjKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAiCXI%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAjCgLA%3BAAAA%3BAAAA%3BAA7KA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAiCII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BAAAA%3BAjCgNJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA5NI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAkCxCR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAIQ%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAWJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWR%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BACxHZ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAnCsCI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAmC%2FBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAnC%2BBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAmCpBA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BACvBZ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BACzDZ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BArCqCI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAqCxBA%3BAAAA%3BAAAA%3BACdR%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAtC%2BBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAsCvBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAtCmBJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2BLA%3BAAAA%3BAAAA%3BAsC1MQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAtCKZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2BLA%3BAAAA%3BAAAA%3BAsC1MQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAtCKZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2BLA%3BAAAA%3BAAAA%3BAsC1MQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAtCKZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2BLA%3BAAAA%3BAAAA%3BAsC1MQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAtCKZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2BLA%3BAAAA%3BAAAA%3BAsC1MQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAtCKZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2BLA%3BAAAA%3BAAAA%3BAsC1MQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAtCKZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAsCKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAtCLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAsCcA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAtCdA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAsCsBI%3BAAAA%3BAAAA%3BAtCtBJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAsCgCA%3BAAAA%3BAAAA%3BAAAA%3BAtChCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAsCwCI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAtCxCJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAsCiDA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAtCjDA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAsC4DA%3BAAAA%3BAAAA%3BAtC5DA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAsCkEQ%3BAAAA%3BAAAA%3BAAAA%3BAtClER%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAsC8EA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAtC9EA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAsCsFI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA4BJ%3BAAAA%3BAAAA%3BAtClHA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAsC6HQ%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAtCjIR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAsCwIY%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAC3LhB%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAvCsCI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAuC%2FBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAvCgIJ%3BAAAA%3BAAAA%3BAAAA%3BAuC5HI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUI%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAGQ%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAvCJJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAuCgBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAvC4MJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAuCpMQ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAvC%2FBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAuCyCI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaI%3BAAAA%3BAAAA%3BAAOhB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACrGA%3BAAAA%3BAAAA%3BAxCwCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAwCnCJ%3BAAAA%3BAAAA%3BAAKQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAxCyBJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2BLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAwC5MI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAxCUJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAwCJQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAxCHZ%3BAAAA%3BAAAA%3BAAAA%3BAwCQgB%3BAAAA%3BAAAA%3BAAAA%3BAAMZ%3BAAAA%3BAAAA%3BAAAA%3BAxCdJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAwCoBQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAxC3BZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAwCoCQ%3BAAAA%3BAAAA%3BAxCpCR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAwC2CI%3BAAAA%3BAAAA%3BAAAA%3BAxC3CJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAwCkDI%3BAAAA%3BAAAA%3BAxClDJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAwCwDI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAxCxDJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2BLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2FLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2BLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2FLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2BLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2FLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2BLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2FLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2BLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2FLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2BLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2FLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAwC0EI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAxCkJR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA5NI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAwCmFI%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAUR%3BAAAA%3BAAAA%3BAxC%2FFA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAwCsGI%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQH%3BAAAA%3BAAAA%3BAC3JZ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAzCiBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAyCRA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAzCQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAyCGY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAzCHZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA0C5BA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BA1CwBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA0CjBR%3BAAAA%3BAAAA%3BA1CiBQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA0CZJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BA1CSI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA0CHA%3BAAAA%3BAAAA%3BA1CGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA0CIJ%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BA1CRI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA0CiBA%3BAAAA%3BAAAA%3BACzDR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA3CwCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA2C%2FBJ%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%22%7D */