/* 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: 0.9375rem 0;
  padding: 0;
  text-align: center;
}
.slick-slider .slick-dots li {
  display: inline-block;
  vertical-align: middle;
  list-style: none;
  line-height: 0;
  padding-left: 5px;
  padding-right: 5px;
}
.slick-slider .slick-dots li button {
  width: 20px;
  height: 20px;
  padding: 0;
  border: 2px solid #FF6718;
  border-radius: 100%;
  font-size: 0;
  background-color: #B20030;
  transition: background-color ease 0.3s, opacity ease 0.3s;
  outline: none;
}
.slick-slider .slick-dots li button:focus, .slick-slider .slick-dots li button:hover {
  outline: none;
  cursor: pointer;
  background-color: #FF6718;
  opacity: 0.8;
}
.slick-slider .slick-dots li.slick-active button {
  background-color: #FF6718;
}

.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 #B20030;
  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: #FF6718;
}
.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;
}

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

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

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

.carousel__viewport {
  position: relative;
  overflow: hidden;
  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;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

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

.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: 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;
}

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

.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  box-sizing: border-box;
  display: 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: thin dotted;
}

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

@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;
  -webkit-overflow-scrolling: touch;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px;
}

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

@media all and (min-width: 1024px) {
  .fancybox__slide {
    padding: 64px 100px;
  }
}
.fancybox__content {
  margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
  padding: 36px;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  position: relative;
  align-self: center;
  display: flex;
  flex-direction: column;
  z-index: 20;
}

.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 all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-next {
    right: 40px;
  }
}
.fancybox__nav .carousel__button.is-prev {
  left: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }
}
.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  right: calc(env(safe-area-inset-right, 0px) + 8px);
  z-index: 40;
}

@media all and (min-width: 1024px) {
  .carousel__button.is-close {
    right: 40px;
  }
}
.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -36px;
  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;
  min-width: auto;
}

.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 {
  cursor: move;
  cursor: grab;
}

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

.fancybox__carousel .fancybox__slide:not(.has-image) .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__image {
  transform-origin: 0 0;
  touch-action: none;
  user-select: 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__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 {
  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: 5px solid var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
  opacity: 0;
  transition: opacity 0.15s ease;
  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: 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 all and (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(1, 210, 232, 0.94));
  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: "bt-certainpath";
  src: url("../../fonts/icons-fonts/bt-certainpath.eot");
  src: url("../../fonts/icons-fonts/bt-certainpath.eot?#iefix") format("embedded-opentype"), url("../../fonts/icons-fonts/bt-certainpath.woff") format("woff"), url("../../fonts/icons-fonts/bt-certainpath.ttf") format("truetype"), url("../../fonts/icons-fonts/bt-certainpath.svg#bt-certainpath") format("svg");
  font-weight: normal;
  font-style: normal;
}
[data-icon]:before {
  font-family: "bt-certainpath" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^=icon-]:before,
[class*=" icon-"]:before {
  font-family: "bt-certainpath" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-search-icon:before {
  content: "a";
}

.icon-admin-icon:before {
  content: "b";
}

.icon-facebook-icon:before {
  content: "j";
}

.icon-instagram-icon:before {
  content: "d";
}

.icon-linked-in:before {
  content: "e";
}

.icon-twitter-icon:before {
  content: "f";
}

.icon-youtube-icon:before {
  content: "g";
}

.icon-play-icon:before {
  content: "h";
}

.icon-btn-link:before {
  content: "i";
}

.icon-email:before {
  content: "k";
}

.icon-call:before {
  content: "c";
}

@font-face {
  font-family: "Manrope";
  src: url("../../fonts/Manrope-Medium.woff2") format("woff2"), url("../../fonts/Manrope-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../../fonts/Manrope-Bold.woff2") format("woff2"), url("../../fonts/Manrope-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../../fonts/Manrope-Regular.woff2") format("woff2"), url("../../fonts/Manrope-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../../fonts/Manrope-Light.woff2") format("woff2"), url("../../fonts/Manrope-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../../fonts/Manrope-ExtraBold.woff2") format("woff2"), url("../../fonts/Manrope-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../../fonts/Manrope-ExtraLight.woff2") format("woff2"), url("../../fonts/Manrope-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../../fonts/Manrope-SemiBold.woff2") format("woff2"), url("../../fonts/Manrope-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica";
  src: url("../../fonts/Helvetica.woff2") format("woff2"), url("../../fonts/Helvetica.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* 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: inline-block;
}

/**
 * Basic typography style for copy text
 */
html {
  font-size: 100%;
  height: 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: #17064A;
  font-size: 1rem;
  font-family: "Manrope", "Arial", sans-serif;
  line-height: 1.5;
  background-color: #ffffff;
  word-break: break-word;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  body {
    height: 100%;
  }
}
body.scroll-fixed {
  overflow: hidden;
}

h1,
.h1 {
  margin-bottom: 0.9375rem;
  color: #17064A;
  font-family: "Manrope", "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
}
@media (max-width: 767px) {
  h1,
.h1 {
    font-size: 2rem;
  }
}
h1 a,
.h1 a {
  display: block;
  color: inherit;
  text-decoration: none;
}
@media (max-width: 991px) {
  h1,
.h1 {
    font-size: 2.3076923077rem;
  }
}

h2,
.h2 {
  margin-bottom: 0.9375rem;
  color: #17064A;
  font-family: "Manrope", "Arial", sans-serif;
  font-size: 2.4375rem;
  font-weight: 700;
  line-height: 1.25;
}
@media (max-width: 767px) {
  h2,
.h2 {
    font-size: 1.625rem;
  }
}
h2 a,
.h2 a {
  display: block;
  color: inherit;
  text-decoration: none;
}
@media (max-width: 767px) {
  h2,
.h2 {
    font-size: 1.875rem;
  }
}

h3,
.h3 {
  margin-bottom: 0.9375rem;
  color: #17064A;
  font-family: "Manrope", "Arial", sans-serif;
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: 1.25;
}
@media (max-width: 767px) {
  h3,
.h3 {
    font-size: 1.2916666667rem;
  }
}
h3 a,
.h3 a {
  display: block;
  color: inherit;
  text-decoration: none;
}
@media (max-width: 767px) {
  h3,
.h3 {
    font-size: 1.6875rem;
  }
}

h4,
.h4 {
  margin-bottom: 0.9375rem;
  color: #17064A;
  font-family: "Manrope", "Arial", sans-serif;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.25;
}
@media (max-width: 767px) {
  h4,
.h4 {
    font-size: 1.0416666667rem;
  }
}
h4 a,
.h4 a {
  display: block;
  color: inherit;
  text-decoration: none;
}
@media (max-width: 767px) {
  h4,
.h4 {
    font-size: 1.5625rem;
  }
}

h5,
.h5 {
  margin-bottom: 0.9375rem;
  color: #17064A;
  font-family: "Manrope", "Arial", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
}
@media (max-width: 767px) {
  h5,
.h5 {
    font-size: 0.8333333333rem;
  }
}
h5 a,
.h5 a {
  display: block;
  color: inherit;
  text-decoration: none;
}
@media (max-width: 767px) {
  h5,
.h5 {
    font-size: 1.25rem;
  }
}

h6,
.h6 {
  margin-bottom: 0.9375rem;
  color: #17064A;
  font-family: "Manrope", "Arial", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
}
@media (max-width: 767px) {
  h6,
.h6 {
    font-size: 0.75rem;
  }
}
h6 a,
.h6 a {
  display: block;
  color: inherit;
  text-decoration: none;
}
@media (max-width: 767px) {
  h6,
.h6 {
    font-size: 1.125rem;
  }
}

p {
  margin-bottom: 0.9375rem;
}
p:last-child {
  margin-bottom: 0;
}

ul {
  padding-left: 0.625rem;
  margin-bottom: 0.9375rem;
}
ul ul {
  margin-bottom: 0;
}
ul li {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
ul li:last-child {
  padding-bottom: 0;
}

ol {
  padding-left: 1.25rem;
  margin-bottom: 0.9375rem;
}
ol ol {
  margin-bottom: 0;
}
ol li {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
ol li:last-child {
  padding-bottom: 0;
}

blockquote {
  position: relative;
  display: block;
  margin-bottom: 1.5625rem;
  padding: 0 1.25rem;
  text-align: left;
  line-height: 1.5;
  font-size: 1rem;
  font-style: normal;
  color: #17064A;
  background-color: transparent;
  border-left: 0.25rem solid #B20030;
}
blockquote p {
  font-size: 1.25rem;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

hr {
  height: 0;
  margin: 0.625rem auto 2.5rem;
  border: 0 #000000 solid;
  border-top-width: 0.0625rem;
  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: #B20030;
  transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
}
a:hover, a:focus {
  color: #000000;
  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.0625rem solid #E9E9E9;
  padding: 0.625rem;
}

/**
 * Main content containers
 */
.container-fluid, .container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3.125rem;
  padding-right: 3.125rem;
}
@media (max-width: 991px) {
  .container-fluid, .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.container {
  max-width: 79.375rem;
}
/* row and column */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(-1.875rem / 2);
  margin-left: calc(-1.875rem / 2);
}
.row [class*=cell-] {
  padding-left: calc(1.875rem / 2);
  padding-right: calc(1.875rem / 2);
}
.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.row.no-gutters > [class*=cell-] {
  padding-right: 0;
  padding-left: 0;
}

[class*=cell-] {
  width: 100%;
}

/* 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;
  }
}
@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;
  }
}
@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;
  }
}
@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;
  }
}
@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;
  }
}
input[type=button],
input[type=reset],
input[type=submit], .btn {
  display: inline-block;
  padding: 0.6875rem 2rem 1.0625rem;
  vertical-align: top;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 0;
  background-color: #B20030;
  transition: background-color 0.3s ease 0s, color 0.3s ease 0s, border-color 0.3s ease 0s;
}
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover, .btn:hover, input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus, .btn:focus, a:hover input[type=button],
a:hover input[type=reset],
a:hover input[type=submit], a:hover .btn {
  color: #ffffff;
  text-decoration: none;
  background-color: #FF6718;
  cursor: pointer;
}
.btn-link, .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a, #mobilenav ul.button-link a,
#mobilenav li.button-link a {
  position: relative;
  color: #B20030;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease 0s, color 0.3s ease 0s, border-color 0.3s ease 0s;
}
.btn-link:after, .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a:after, #mobilenav ul.button-link a:after,
#mobilenav li.button-link a:after {
  position: absolute;
  bottom: calc(50% - 6px);
  vertical-align: middle;
  margin-left: 0.3125rem;
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1;
  transition: transform 0.3s;
  content: "i";
  font-family: "bt-certainpath" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-transform: none;
}
.btn-link:hover, .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a:hover, #mobilenav ul.button-link a:hover,
#mobilenav li.button-link a:hover, .btn-link:focus, .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a:focus, #mobilenav ul.button-link a:focus,
#mobilenav li.button-link a:focus, a:hover .btn-link, a:hover .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a, .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a:hover a, a:hover #mobilenav ul.button-link a, #mobilenav ul.button-link a:hover a,
a:hover #mobilenav li.button-link a,
#mobilenav li.button-link a:hover a {
  text-decoration: none;
  color: #B20030;
}
.btn-link:hover:after, .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a:hover:after, #mobilenav ul.button-link a:hover:after,
#mobilenav li.button-link a:hover:after, .btn-link:focus:after, .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a:focus:after, #mobilenav ul.button-link a:focus:after,
#mobilenav li.button-link a:focus:after, a:hover .btn-link:after, a:hover .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a:after, .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a:hover a:after, a:hover #mobilenav ul.button-link a:after, #mobilenav ul.button-link a:hover a:after,
a:hover #mobilenav li.button-link a:after,
#mobilenav li.button-link a:hover a:after {
  transform: translateX(5px);
}
.btn-link.white, .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a.white, #mobilenav ul.button-link a.white,
#mobilenav li.button-link a.white {
  color: #ffffff;
}
.btn-link.white:hover, .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a.white:hover, #mobilenav ul.button-link a.white:hover,
#mobilenav li.button-link a.white:hover, .btn-link.white:focus, .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a.white:focus, #mobilenav ul.button-link a.white:focus,
#mobilenav li.button-link a.white:focus {
  color: #ffffff;
}
.btn-link.sm, .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a.sm, #mobilenav ul.button-link a.sm,
#mobilenav li.button-link a.sm {
  font-size: 0.875rem;
}
.btn.blue {
  background-color: #17064A;
}
.btn.blue:hover, .btn.blue:focus {
  background-color: #FF6718;
}
.btn.yellow {
  color: #B20030;
  background-color: #FBF9DF;
}
.btn.yellow:hover, .btn.yellow:focus {
  color: #ffffff;
  background-color: #FF6718;
}

.play-arrow {
  position: relative;
  padding-right: 2.5rem;
}
.play-arrow:before {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #ffffff;
  content: "";
}

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

form label {
  display: block;
  margin-bottom: 0.625rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Manrope", "Arial", sans-serif;
  font-size: 1rem;
  color: #727272;
  text-transform: capitalize;
}

input,
textarea,
button,
select {
  font-family: "Manrope", "Arial", 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: 3.125rem;
  padding: 0 0.9375rem;
  color: #2F2F2F;
  font-size: 1rem;
  font-weight: 400;
  border: 0.0625rem solid rgba(40, 40, 40, 0.3);
  border-radius: 3px;
}
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: #FF6718;
  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: rgba(0, 0, 0, 0.5);
  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: rgba(0, 0, 0, 0.5);
  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: rgba(0, 0, 0, 0.5);
  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: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

textarea {
  display: block;
  height: 9.375rem;
  padding: 0.625rem 0.9375rem;
  resize: none;
  overflow: auto;
}

select {
  -webkit-appearance: none;
  padding-right: 1.875em;
  background-color: #ffffff;
  background-image: url("../../images/select-down-arrow.svg");
  background-size: 0.875rem 0.4375rem;
  background-position: right 0.5em center;
  background-repeat: no-repeat;
  cursor: pointer;
  color: transparent;
  padding-top: 0.625rem;
}

select:focus {
  outline: none;
}

/* for ie */
select::-ms-expand {
  display: none;
}

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.625rem;
}
.radio-btn-group .radio-option:first-child {
  padding-left: 0;
}
.radio-btn-group .radio-option .radio-custom {
  opacity: 0;
  position: absolute;
}
.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.625rem;
  width: 0.625rem;
  margin-top: 0.1875rem;
  margin-right: 0.625rem;
  background-color: #ffffff;
  border: 0.125rem solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0px 2px #000000;
  cursor: pointer;
}

.hbspt-form {
  position: relative;
  padding: 2.5rem 2.5rem 4.6875rem;
  background-color: #E9E9E9;
}
@media (max-width: 767px) {
  .hbspt-form {
    padding: 1.875rem 1.875rem 4.6875rem;
  }
}
.hbspt-form:before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 21px;
  width: 100%;
  background-image: url("../../images/form-pattern.svg");
  content: "";
  background-size: cover;
}
.hbspt-form .hs-form {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 1.5rem !important;
}
.hbspt-form .hs-form-field {
  position: relative;
  border-radius: 3px;
  transition: 0.3s;
  grid-column: span 6;
}
@media (max-width: 767px) {
  .hbspt-form .hs-form-field {
    grid-column: span 12;
  }
}
.hbspt-form .hs-form-field.hs-email {
  grid-column: span 12;
}
.hbspt-form .hs-form-field.focused input {
  border-color: #17064A;
}
.hbspt-form .hs-form-field.focused label:not(.hs-error-msg) {
  transform: scale(0.7);
  top: 7px;
}
.hbspt-form .hs-form-field.focused select {
  color: #2F2F2F;
}
.hbspt-form .hs-form-field.focused-effect label {
  color: #FF6718;
}
.hbspt-form .hs-form-field.focused-effect input:not(.hs-error-msg) {
  border-color: #FF6718;
  box-shadow: 0 0 3px #FF6718;
}
.hbspt-form .hs-form-field .hs-error-msgs {
  padding: 0;
  margin: 0;
}
.hbspt-form .hs-form-field .hs-error-msgs li {
  list-style: none;
}
.hbspt-form .hs-form-field .hs-error-msgs .hs-error-msg {
  position: relative;
  top: auto;
  left: auto;
  color: #B20030;
  font-size: 0.625rem !important;
  font-weight: 400;
  opacity: 1 !important;
}
.hbspt-form .hs-form-field label:not(.hs-error-msg) {
  position: absolute;
  top: 12px;
  left: 16px;
  margin-bottom: 0 !important;
  padding: 0 !important;
  font-size: 1rem !important;
  pointer-events: none;
  opacity: 0.6;
  transition: 0.4s ease;
  transform-origin: top left;
}
.hbspt-form .hs-submit {
  grid-column: span 12;
}
.hbspt-form .hs-submit .hs-button {
  display: block;
  margin: 0 auto;
  width: 11.125rem;
  color: #FBF9DF;
  font-weight: 700;
}
.hbspt-form input:not([type=submit]) {
  padding-top: 14px !important;
}
.hbspt-form .submitted-message {
  font-size: 2.4375rem;
  font-weight: 700;
}
.hbspt-form textarea {
  padding-top: 1.25rem;
}
.hbspt-form .hs_error_rollup {
  grid-column: span 12;
}

.page-template-template-landing-page .wrapper {
  overflow: hidden;
}
.page-template-template-landing-page 
.wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
  width: 100%;
  min-height: 100%;
}
.main-container {
  width: 100%;
}

/*.remove-menu .main-container {
  background-image: url("../../images/event-bg-side.svg");
  background-repeat: no-repeat;
  background-size: 500px;
  background-position: right top 300px;
}*/
.slick-dots li {
  padding: 0 0.3125rem;
}

.bg-red {
  background-color: #B20030;
  color: #ffffff;
}
.bg-red * {
  color: currentcolor;
}
.bg-red * a:not(.btn):hover, .bg-red * a:not(.btn):focus {
  color: #FF6718;
}

.bg-blue {
  background-color: #17064A;
  color: #ffffff;
}
.bg-blue * {
  color: currentcolor;
}
.bg-blue * a:hover, .bg-blue * a:focus {
  color: #FF6718;
}

.list-style ul,
.wysiwyg-block ul {
  padding-left: 0;
}
.list-style ul li,
.wysiwyg-block ul li {
  position: relative;
  padding-left: 1.375rem;
  list-style: none;
}
.list-style ul li:before,
.wysiwyg-block ul li:before {
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 0.375rem;
  content: "";
  background-color: #B20030;
}
.list-style ul ul,
.wysiwyg-block ul ul {
  margin-top: 0.625rem;
  margin-bottom: 1.5625rem;
}
.list-style ul ul li:before,
.wysiwyg-block ul ul li:before {
  background-color: #FF6718;
}
.list-style ol,
.wysiwyg-block ol {
  padding-left: 0;
  margin-bottom: 0;
  counter-reset: counter-1;
}
.list-style ol > li,
.wysiwyg-block ol > li {
  position: relative;
  padding-left: 1.375rem;
  list-style: none;
  counter-increment: counter-1;
}
.list-style ol > li:before,
.wysiwyg-block ol > li:before {
  display: none;
}
.list-style ol > li:after,
.wysiwyg-block ol > li:after {
  position: absolute;
  left: 0;
  top: 0.6875rem;
  color: #B20030;
  font-size: 0.875rem;
  font-weight: 700;
  content: counter(counter-1) ". ";
  line-height: 1;
}
.list-style ol ol,
.wysiwyg-block ol ol {
  counter-reset: counter-2;
}
.list-style ol ol > li,
.wysiwyg-block ol ol > li {
  counter-increment: counter-2;
}
.list-style ol ol > li:after,
.wysiwyg-block ol ol > li:after {
  content: counter(counter-2, lower-alpha) ". ";
  line-height: 1;
}

.tick-list-style ul {
  padding-left: 0;
}
.tick-list-style ul li {
  position: relative;
  padding-left: 1.875rem;
  list-style: none;
  font-size: 1rem;
  font-family: "Manrope", "Arial", sans-serif;
}
.tick-list-style ul li:before {
  position: absolute;
  left: 0;
  top: 0.625rem;
  width: 1.1875rem;
  height: 1.1875rem;
  border-radius: 1.25rem;
  content: "";
  background-color: transparent;
  border: 2px solid #FF6718;
}
.tick-list-style ul li:after {
  position: absolute;
  left: 0.3125rem;
  top: 1rem;
  width: 10px;
  height: 8px;
  background-image: url("../../images/tick-img.svg");
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

.breadcrumbs {
  margin-bottom: 1.5625rem;
}
@media (max-width: 767px) {
  .breadcrumbs {
    margin-bottom: 0.625rem;
  }
}
.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  margin-bottom: 0;
  font-size: 0;
}
.breadcrumbs ul li {
  position: relative;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 0.875rem;
  list-style: none;
  line-height: 1.2;
  text-transform: capitalize;
  color: #B20030;
}
.breadcrumbs ul li:not(:last-child) {
  padding: 0 1.25rem 0 0;
}
.breadcrumbs ul li:after {
  position: absolute;
  top: 0;
  right: 5px;
  transform: translateY(5px);
  font-size: 0.5625rem;
  color: #2F2F2F;
  content: "i";
  font-family: "bt-certainpath" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
}
.breadcrumbs ul li:last-child:after {
  display: none;
}
.breadcrumbs ul li a {
  display: block;
  color: #17064A;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}
.breadcrumbs ul li a:hover {
  color: #FF6718;
}
.breadcrumbs ul li span {
  display: block;
  color: #B20030;
  line-height: 1.2;
}

.pagination ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
}
.pagination ul li {
  padding: 0 !important;
  line-height: 1.2;
  list-style: none;
}
.pagination ul li:before {
  display: none;
}
.pagination ul li a {
  transition: 0.3s;
  text-decoration: none !important;
}
.pagination ul li a:hover {
  color: #FF6718;
}
.pagination ul .prev:before,
.pagination ul .prev-custom:before {
  display: block;
  font-size: 2.1875rem;
  font-weight: 300;
  line-height: 0.5;
  content: "<";
}
.pagination ul .next:after,
.pagination ul .next-custom:after {
  display: block;
  font-size: 2.1875rem;
  font-weight: 300;
  line-height: 0.5;
  content: ">";
}
.pagination ul span,
.pagination ul .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  color: #17064A;
  font-size: 1.25rem;
  font-family: "Helvetica", "Arial", sans-serif;
  font-weight: 400;
}
.pagination ul span.current,
.pagination ul .page-numbers.current {
  color: #FF6718;
  font-weight: 700;
}
.pagination ul .prev,
.pagination ul .prev-custom,
.pagination ul .next,
.pagination ul .next-custom {
  display: flex;
  align-items: center;
  margin-top: -4px;
  color: #17064A;
  font-family: "Manrope", "Arial", sans-serif;
  font-weight: 700;
}
.pagination ul .prev.disabled,
.pagination ul .prev-custom.disabled,
.pagination ul .next.disabled,
.pagination ul .next-custom.disabled {
  display: none;
}

.error404 {
  background-color: #B20030;
}

.error-404 {
  position: relative;
  min-height: calc(100vh - 325px);
  padding: 7.8125rem 0;
  color: #FBF9DF;
  text-align: center;
  background-color: #B20030;
  z-index: 1;
}
@media (max-width: 991px) {
  .error-404 {
    min-height: calc(100vh - 303px);
  }
}
@media (max-width: 767px) {
  .error-404 {
    min-height: auto;
    padding: 3.75rem 0 3.75rem;
  }
}
.error-404 .bg-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.error-404 .bg-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .error-404 .bg-img.desktop {
    display: none;
  }
}
.error-404 .bg-img.device {
  display: none;
}
@media (max-width: 767px) {
  .error-404 .bg-img.device {
    display: block;
  }
}
.error-404-wrapper {
  position: relative;
  padding: 0 50px;
  z-index: 1;
}
.error-404 h1 {
  font-size: 8.6875rem;
}
@media (max-width: 991px) {
  .error-404 h1 {
    font-size: 6.25rem;
  }
}
@media (max-width: 991px) {
  .error-404 h1 {
    font-size: 3.75rem;
  }
}
.error-404 h2 {
  margin-bottom: 1.875rem;
}
@media (max-width: 991px) {
  .error-404 h2 {
    font-size: 1.5625rem;
  }
}
@media (max-width: 991px) {
  .error-404 h2 {
    font-size: 1.375rem;
  }
}
.error-404 .breadcrumbs {
  margin-bottom: 0;
}
.error-404 .breadcrumbs ul {
  justify-content: center;
}
.error-404 .breadcrumbs ul li:after {
  color: currentcolor !important;
}
.error-404 *:not(.btn) {
  color: currentcolor !important;
}
.error-404 *:not(.btn) a:not(.btn):hover {
  color: #17064A !important;
}

/* responsive nav for small devices */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 19px;
  padding: 0;
  margin: 0;
  text-align: center;
  background-color: transparent;
  z-index: 999;
  order: 2;
}
@media (max-width: 1023px) {
  .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: 3px;
  width: 100%;
  background: #17064A;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
  cursor: pointer;
}
.hamburger span:before, .hamburger span:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #17064A;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
  cursor: pointer;
}
.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: #17064A;
}
.hamburger.is-clicked span:before {
  transform: rotate(45deg);
}
.hamburger.is-clicked span:after {
  transform: translateY(-6px) rotate(-45deg);
  top: 6px;
}

#mobilenav {
  display: none;
}
@media (max-width: 1023px) {
  #mobilenav {
    display: block;
  }
}
#mobilenav #menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}
#mobilenav.is-open #menu {
  left: 0;
  opacity: 1;
}
#mobilenav.is-open .nav-backdrop {
  opacity: 1;
  z-index: 999;
  visibility: visible;
}
#mobilenav ul,
#mobilenav li {
  position: relative;
  padding: 0;
  margin: 0;
  font-weight: 700;
  list-style: none;
}
#mobilenav ul ul,
#mobilenav li ul {
  display: none;
  padding-left: 1rem;
}
#mobilenav ul a,
#mobilenav li a {
  display: block;
  padding: 0.625rem 0;
  cursor: pointer;
  z-index: 2;
  text-decoration: none;
  color: #17064A;
  background: #ffffff;
}
#mobilenav ul .is-open > .caret:after,
#mobilenav li .is-open > .caret:after {
  opacity: 0;
}
#mobilenav ul li.mega-menu {
  font-size: 1.5625rem;
}
#mobilenav ul li.mega-menu li {
  font-weight: 700;
}
#mobilenav ul li.mega-menu li li {
  font-weight: 400;
}
#mobilenav ul li .has-sub > a {
  padding-right: 40px;
}
#mobilenav ul li {
  font-size: 1.5625rem;
}
#mobilenav ul li.is-open > .caret {
  transform: rotate(-90deg);
}
#mobilenav ul li .caret {
  font-size: 1.125rem;
}
#mobilenav ul li li {
  font-size: 1.125rem;
  font-weight: 400;
}
#mobilenav ul li li .caret {
  font-size: 0.875rem;
  top: 0.375rem;
}
#mobilenav ul li li li {
  font-size: 0.9375rem;
}
#mobilenav .caret {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  position: absolute;
  top: 0.9375rem;
  right: 0;
  cursor: pointer;
  transition: 0.3s;
}
#mobilenav .caret:before {
  position: absolute;
  display: block;
  margin: auto;
  content: "i";
  font-family: "bt-certainpath" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  color: #B20030;
  line-height: 1;
}
#mobilenav .caret:not(.trigger-caret) {
  pointer-events: none;
}
#mobilenav .nav-backdrop {
  position: fixed;
  height: 100%;
  width: 100%;
  background: transparent;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in;
}
#mobilenav .menu-outer {
  max-height: 100vh;
  overflow-y: auto;
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.24);
}
#mobilenav .menu-outer .menu {
  padding: 1.25rem 1.875rem 2.5rem;
  background-color: #ffffff;
}
#mobilenav .hd-items {
  padding: 1.25rem 1.875rem 2.5rem;
  background-color: #ffffff;
}
#mobilenav .hd-link {
  padding-bottom: 0.625rem;
}
#mobilenav .hd-link a {
  color: #17064A;
  text-decoration: none;
}
#mobilenav .hd-link a:before {
  margin-right: 0.5rem;
}
#mobilenav .hd-link-wrap {
  padding-bottom: 0.625rem;
}

body.is-open {
  overflow: hidden;
}

/*--- header ---*/
.main-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 999;
  transform: translateY(0);
  transition: transform ease 0.3s;
  /* nav */
}
.main-header.hide-navbar {
  transform: translateY(-110%);
}
.main-header.fixed-navbar {
  box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.16);
}
.admin-bar .main-header {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .main-header {
    top: 0;
  }
}
.main-header .header-wrap {
  position: relative;
  width: 100%;
  height: auto;
  padding: 2.0625rem 0 1.1875rem;
  background-color: #ffffff;
  z-index: 999;
}
@media (max-width: 1199px) {
  .main-header .header-wrap {
    padding: 1.25rem 0;
  }
}
@media (max-width: 991px) {
  .main-header .header-wrap {
    padding: 0.9375rem 0;
  }
}
@media (max-width: 767px) {
  .main-header .header-wrap {
    padding: 0.6875rem 0;
  }
}
.main-header .header-wrap:before {
  position: absolute;
  left: -100%;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0) 60%);
  content: "";
  pointer-events: none;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.main-header .header-wrap.menu-open:before {
  opacity: 0.3;
  left: 0;
}
.main-header .brand {
  position: relative;
  width: 12rem;
  z-index: 1;
}
@media (max-width: 767px) {
  .main-header .brand {
    width: 10.625rem;
  }
}
@media (min-width: 1200px) {
  .home .main-header .brand {
    transform: scale(0.5);
    transform-origin: left;
    transition: ease all 0.5s;
    opacity: 0;
    transition-delay: 0.9S;
  }
  .animationOn .home .main-header .brand {
    transform: scale(1);
    opacity: 1;
  }
}
.main-header .hd-wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.main-header .hd-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 192px);
  padding-left: 0.9375rem;
}

.remove-menu .hamburger,
.remove-menu .hd-right .navigation {display: none !important;}
.remove-menu .main-header .hd-right {justify-content: flex-end;}
.remove-menu .main-header .header-wrap {padding: 2.0625rem 0;}
.remove-menu .main-header .hd-wrapper {justify-content: center;}
.remove-menu .promo_50_50.white-theme.red-full-bg {margin-bottom: 50px;}
.remove-menu .main-footer .footer-wrap {display: block;font-size: 16px;}
.remove-menu .main-footer .footer-wrap .footer-logo {display: inline-block;margin-bottom: 20px;}

@media (min-width: 1200px) {
  .main-header .hd-right {
    justify-content: flex-end;
  }
}
@media (max-width: 1023px) {
  .main-header .hd-right {
    width: calc(100% - 270px);
    justify-content: flex-end;
  }
}
@media (max-width: 767px) {
  .main-header .hd-right {
    width: calc(100% - 201px);
  }
  .remove-menu .main-header .hd-right {
    display: none;
  }
  .remove-menu .main-header .header-wrap {
    padding: 1.0625rem 0;
  }
}
.main-header .navigation {
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .home .main-header .navigation {
    opacity: 0;
    transform: translateY(-40px);
    transition: ease all 0.5s;
    transition-delay: 0.9S;
    position: absolute;
    left: 0;
    right: 0;
  }
  .animationOn .home .main-header .navigation {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1023px) {
  .main-header .navigation {
    display: none;
  }
}
.main-header .navigation > nav > ul {
  display: flex;
  justify-content: center;
}
@media (max-width: 1199px) {
  .main-header .navigation > nav > ul {
    justify-content: flex-end;
  }
}
.main-header .navigation > nav > ul > li:not(:last-child) {
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .main-header .navigation > nav > ul > li:not(:last-child) {
    margin-right: 1.25rem;
  }
}
.main-header .navigation > nav > ul > li > ul,
.main-header .navigation > nav > ul > li > .mega-menu-wrap {
  margin-top: 31px;
}
.main-header .navigation > nav > ul > li > ul:before,
.main-header .navigation > nav > ul > li > .mega-menu-wrap:before {
  position: absolute;
  top: -0.5625rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1.0625rem;
  height: 1.0625rem;
  background-color: #ffffff;
  transform: rotate(45deg);
  content: "";
}
.main-header .navigation > nav > ul > li > ul:after,
.main-header .navigation > nav > ul > li > .mega-menu-wrap:after {
  position: absolute;
  top: -1.9375rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 1.9375rem;
  content: "";
}
.main-header .navigation ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.main-header .navigation ul li {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
}
.main-header .navigation ul li a {
  color: #17064A;
  font-weight: 700;
  text-decoration: none;
}
.main-header .navigation ul li:hover > .mega-menu-wrap,
.main-header .navigation ul li:hover > ul {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}
.main-header .navigation ul li .sub-menu li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.main-header .navigation ul li .sub-menu li a {
  font-weight: 400;
}
.main-header .navigation ul li .sub-menu li a:hover {
  color: #B20030;
}
.main-header .navigation ul li:not(.mega-menu) .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 11.25rem;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.4s;
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.24);
  background-color: #ffffff;
}
.main-header .navigation ul li.mega-menu > .sub-menu {
  display: none;
}
.main-header .navigation ul li.mega-menu > .mega-menu-wrap {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 39.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.4s;
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.24);
  background-color: #ffffff;
}
.main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu {
  display: grid;
  grid-template-columns: 230px 160px 242px;
}
.main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu > .menu-item {
  padding: 1.875rem;
  margin-bottom: 0;
}
.main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu > .menu-item:first-child:before {
  position: absolute;
  right: 0;
  top: 2.375rem;
  width: 1px;
  height: calc(100% - 69px);
  content: "";
  background-color: #707070;
  opacity: 0.4;
}
.main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu > .menu-item > a {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.8125rem;
  display: block;
  pointer-events: none;
}
.main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu > .menu-item > .sub-menu {
  position: relative;
  top: auto;
  left: auto;
  opacity: 1;
  visibility: visible;
  min-width: auto;
  transform: none;
  box-shadow: none;
  padding: 0;
  background-color: transparent;
}
.main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu > .menu-item > .sub-menu a {
  font-size: 0.875rem;
}
.main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start {
  background-color: #F5F5F5;
}
.main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .link-label a {
  pointer-events: none;
}
.main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a {
  color: #B20030;
  font-weight: 700;
}
.main-header .hd-items {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  z-index: 1;
}
@media (max-width: 767px) {
  .main-header .hd-items {
    margin-left: auto;
  }
}
@media (min-width: 1200px) {
  .home .main-header .hd-items .link-wrap {
    opacity: 0;
    transform: translateY(-40px);
    transition: ease all 0.5s;
    transition-delay: 0.9S;
  }
  .animationOn .home .main-header .hd-items .link-wrap {
    opacity: 1;
    transform: translateY(0);
  }
}
.main-header .hd-items .link-wrap .hd-link {
  color: #17064A;
  font-size: 0.875rem;
  text-decoration: none;
}
.main-header .hd-items .link-wrap .hd-link:not(:last-child) {
  margin-right: 1.25rem;
}
.main-header .hd-items .link-wrap .hd-link:before {
  margin-right: 0.4375rem;
}
.main-header .hd-items .link-wrap .hd-link:hover {
  color: #FF6718;
}
@media (max-width: 767px) {
  .main-header .hd-items .link-wrap {
    display: none;
  }
}
.main-header .hd-items .btn {
  margin-left: 1.25rem;
}
@media (max-width: 767px) {
  .main-header .hd-items .btn {
    display: none;
  }
}
@media (min-width: 1200px) {
  .home .main-header .hd-items .btn_wrap {
    transform: scale(1, 0.1);
    transition: ease all 0.5s;
    opacity: 0;
    transition-delay: 1S;
  }
  .animationOn .home .main-header .hd-items .btn_wrap {
    transform: scale(1, 1);
    opacity: 1;
  }
}
.main-header .search-main {
  position: relative;
  width: 31px;
  height: 31px;
  margin-left: 0.625rem;
}
@media (min-width: 1200px) {
  .home .main-header .search-main {
    transform: translate(-10px, 10px);
    transition: ease all 0.5s;
    opacity: 0;
    transition-delay: 1S;
  }
  .animationOn .home .main-header .search-main {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@media (max-width: 767px) {
  .main-header .search-main {
    margin-right: 0.9375rem;
    margin-left: auto;
  }
}
.main-header .search-main .icon-search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  color: #17064A;
  cursor: pointer;
  transition: 0.3s;
}
.main-header .search-main .icon-search-icon:hover {
  color: #FF6718;
}
.main-header .search-form-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: 0.5s;
  width: 0;
}
@media (max-width: 767px) {
  .main-header .search-form-wrapper {
    top: 114%;
    width: 18.0625rem;
    height: 0;
    align-items: flex-end;
    overflow: hidden;
  }
}
.main-header .search-form-wrapper.active {
  width: 19.75rem;
  border: 1px solid #17064A;
}
@media (max-width: 767px) {
  .main-header .search-form-wrapper.active {
    width: 18.0625rem;
    height: 1.9375rem;
  }
}
.main-header .search-form-wrapper .search-form {
  position: relative;
  display: flex;
  align-items: center;
  justify-self: center;
  z-index: 9;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 767px) {
  .main-header .search-form-wrapper .search-form {
    width: 100%;
  }
}
.main-header .search-form-wrapper .search-form .search-field {
  padding-left: 2.3125rem;
  height: 1.9375rem;
  width: 100%;
  color: #2F2F2F;
  background-color: #ffffff;
  border: none;
  font-weight: 700;
}
.main-header .search-form-wrapper .search-form .search-field::-webkit-input-placeholder {
  color: #2F2F2F;
  opacity: 0.5;
}
.main-header .search-form-wrapper .search-form .search-field:-moz-placeholder {
  color: #2F2F2F;
  opacity: 0.5;
}
.main-header .search-form-wrapper .search-form .search-field::-moz-placeholder {
  color: #2F2F2F;
  opacity: 0.5;
}
.main-header .search-form-wrapper .search-form .search-field:-ms-input-placeholder {
  color: #2F2F2F;
  opacity: 0.5;
}
.main-header .search-form-wrapper .search-form .search-submit {
  position: absolute;
  left: 0;
  top: 0;
  height: 1.9375rem;
  width: 1.9375rem;
  min-width: auto;
  padding: 0;
  font-size: 0;
  background-image: url("../../images/search-icon-blue.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1rem;
  background-color: transparent;
}
.main-header .search-form-wrapper .search-form .search-submit:hover {
  background-color: #FF6718;
}

.global-banner {
  position: relative;
  padding: 0.625rem 0;
}
@media (min-width: 1200px) {
  .home .global-banner {
    transform: scale(1, 0.1);
    transform-origin: top;
    transition: ease all 0.5s;
    transition-delay: 0.3s;
  }
  .home .global-banner > div {
    transition: ease all 0.4s;
    opacity: 0;
  }
  .animationOn .home .global-banner {
    transform: scale(1, 1);
  }
  .animationOn .home .global-banner > div {
    opacity: 1;
  }
}
.global-banner .caret-icon {
  position: absolute;
  top: 0.4375rem;
  right: 3.125rem;
  width: 26px;
  height: 26px;
  border-radius: 26px;
  border: 2px solid #FBF9DF;
  transition: 0.3s;
  cursor: pointer;
}
@media (max-width: 991px) {
  .global-banner .caret-icon {
    right: 1.25rem;
  }
}
.global-banner .caret-icon:before, .global-banner .caret-icon:after {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.375rem;
  line-height: 1;
  color: #FBF9DF;
  transition: 0.3s;
}
.global-banner .caret-icon:before {
  top: 45%;
  content: "+";
}
.global-banner .caret-icon:after {
  top: 40%;
  content: "-";
  opacity: 0;
  font-size: 28px;
}
.global-banner .caret-icon.active {
  background-color: #FBF9DF;
}
.global-banner .caret-icon.active:before {
  opacity: 0;
}
.global-banner .caret-icon.active:after {
  opacity: 1;
  color: #B20030;
}
.global-banner .gb-wrap {
  margin: 0 auto;
  padding: 0 2.1875rem;
}
@media (max-width: 991px) {
  .global-banner .gb-wrap {
    padding-left: 0;
  }
}
.global-banner .gb-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: #FBF9DF;
  font-size: 0.875rem;
}
.global-banner .gb-desc {
  display: none;
  max-height: 70vh;
  overflow: auto;
}
.global-banner .gb-desc-inner {
  margin: 1.8125rem 0;
}
.global-banner .btn-link, .global-banner #mobilenav ul.button-link a, #mobilenav ul.button-link .global-banner a,
.global-banner #mobilenav li.button-link a,
#mobilenav li.button-link .global-banner a, .global-banner .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a, .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link .global-banner a {
  margin-left: 0.3125rem;
  font-size: 0.875rem;
  line-height: 1.1875rem;
}
.global-banner .btn-link:hover, .global-banner #mobilenav ul.button-link a:hover, #mobilenav ul.button-link .global-banner a:hover,
.global-banner #mobilenav li.button-link a:hover,
#mobilenav li.button-link .global-banner a:hover, .global-banner .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a:hover, .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link .global-banner a:hover, .global-banner .btn-link:focus, .global-banner #mobilenav ul.button-link a:focus, #mobilenav ul.button-link .global-banner a:focus,
.global-banner #mobilenav li.button-link a:focus,
#mobilenav li.button-link .global-banner a:focus, .global-banner .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a:focus, .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link .global-banner a:focus {
  color: #17064A;
}
.global-banner .btn-link:after, .global-banner #mobilenav ul.button-link a:after, #mobilenav ul.button-link .global-banner a:after,
.global-banner #mobilenav li.button-link a:after,
#mobilenav li.button-link .global-banner a:after, .global-banner .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a:after, .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link .global-banner a:after {
  margin-top: -1px;
  font-size: 0.625rem;
  transition: transform 0.3s;
}

body.home {
  overflow: hidden;
}
.animationOn body.home {
  overflow: initial;
}

/*--- footer ---*/
.main-footer {
  width: 100%;
  height: auto;
  padding: 3.5rem 0 2.625rem;
  line-height: normal;
}
.main-footer.white-bg {
  padding-top: 0 !important;
}
@media (max-width: 767px) {
  .main-footer {
    padding: 1.875rem 0;
  }
}
.main-footer .footer-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.main-footer.white-bg .footer-wrap {
  justify-content: space-between;
  color: #707070;
  font-size: 18px;
}
.main-footer.white-bg .footer-wrap a {
  color: #707070;
}
.main-footer.white-bg .footer-wrap a:hover {
  color: #B20030;
}
.main-footer.white-bg .footer-wrap .copyright-information {
  margin-left: auto;
  margin-right: 10px;
}
.main-footer .footer-left {
  max-width: 13.125rem;
  display: block;
}
@media (max-width: 767px) {
  .main-footer .footer-left {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}
.main-footer .footer-left .footer-logo {
  display: block;
  max-width: 9.5rem;
  margin-bottom: 0.9375rem;
}
@media (max-width: 767px) {
  .main-footer .footer-left .footer-logo {
    max-width: 10.625rem;
    margin: 0 auto 1.5625rem;
  }
}
.main-footer .footer-left .footer-logo img {
  width: 100%;
  display: block;
}
.main-footer .footer-left .copyright-information {
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .main-footer .footer-left .copyright-information {
    display: none;
  }
}
@media (max-width: 767px) {
  .main-footer .footer-left .footer-menu {
    display: none;
  }
}
.main-footer .footer-left p {
  font-size: 10px;
}
.main-footer .footer-left p a {
  text-decoration: none;
}
.main-footer .footer-left p a:not(:first-child) {
  margin-left: 2px;
}
.main-footer .footer-left p a:not(:last-child) {
  margin-right: 2px;
}
.main-footer .footer-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: calc(100% - 210px);
  padding-left: 0.9375rem;
}
@media (max-width: 767px) {
  .main-footer .footer-right {
    width: 100%;
    justify-content: center;
  }
}
.main-footer .footer-right .footer-menu {
  width: 100%;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .main-footer .footer-right .footer-menu {
    margin-bottom: 1.75rem;
  }
}
.main-footer .footer-right .footer-menu a {
  text-decoration: none;
}
.main-footer .footer-right .footer-menu .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-bottom: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .main-footer .footer-right .footer-menu .menu {
    display: block;
    text-align: center;
  }
}
.main-footer .footer-right .footer-menu .menu li {
  padding: 0;
  list-style: none;
}
.main-footer .footer-right .footer-menu .menu li:not(:last-child) {
  margin-right: 4.6875rem;
}
@media (max-width: 1399px) {
  .main-footer .footer-right .footer-menu .menu li:not(:last-child) {
    margin-right: 2.1875rem;
  }
}
@media (max-width: 991px) {
  .main-footer .footer-right .footer-menu .menu li:not(:last-child) {
    margin-right: 1rem;
  }
}
@media (max-width: 767px) {
  .main-footer .footer-right .footer-menu .menu li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 0.8125rem;
  }
}
.main-footer .footer-right .footer-menu .menu li a {
  font-weight: 700;
  font-size: 1.125rem;
}
@media (max-width: 991px) {
  .main-footer .footer-right .footer-menu .menu li a {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .main-footer .footer-right .footer-menu .menu li a {
    font-size: 0.875rem;
  }
}
.main-footer .footer-right .device-text {
  width: 100%;
  margin-bottom: 1.5625rem;
}
.main-footer .footer-right .device-text p {
  font-size: 10px;
}
.main-footer .footer-right .device-text p a {
  text-decoration: none;
}
.main-footer .footer-right .device-text .copyright-information {
  margin-bottom: 0.4375rem;
}

.social-links ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.social-links li {
  list-style: none;
  padding: 0 !important;
}
.social-links li:not(:last-child) {
  margin-right: 0.625rem;
}
.social-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  width: 25px;
  text-decoration: none !important;
}
.social-links li a:hover {
  text-decoration: none !important;
  color: #FF6718;
}

.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-section.active .he-image {
  transform: translateX(-100%);
}
@media (max-width: 991px) {
  .hero-section.active .he-image {
    transform: translateX(0);
  }
}
.hero-section.active .he-video {
  transform: translateX(0);
}
.hero-section.active .he-video .image-block_cell {
  left: -300px;
}
.hero-section.active .he-video .image-block_cell span:nth-child(1) {
  left: 0;
}
.hero-section.active .he-video .image-block_cell span:nth-child(2) {
  left: 50px;
}
.hero-section.active .he-video .image-block_cell span:nth-child(3) {
  left: 100px;
}
@media (min-width: 1200px) {
  .hero-section.active .he-video .play-icon {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
@media (max-width: 991px) {
  .hero-section.has-video .he-image .image-block {
    display: none;
  }
}
.hero-section .he-image {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: calc(100vh - 141px);
  transition: 0.6s;
  transition-delay: 0.5s;
}
@media (max-width: 991px) {
  .hero-section .he-image {
    height: auto;
  }
}
.hero-section .he-desc {
  width: 45%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .hero-section .he-desc {
    width: 100%;
  }
}
.hero-section .he-desc > div {
  padding-left: 3.125rem;
  padding-right: 55px;
  max-width: 36.875rem;
}
@media (max-width: 991px) {
  .hero-section .he-desc > div {
    width: 100%;
    max-width: 100%;
    padding: 2.1875rem 1.25rem;
  }
}
@media (min-width: 1200px) {
  .hero-section .he-desc .heading {
    transform: translatey(-70%);
    opacity: 0;
    transition: ease all 0.9s;
    transition-delay: 0.5S;
  }
  .animationOn .hero-section .he-desc .heading {
    transform: translatey(0);
    opacity: 1;
  }
  .hero-section .he-desc .description {
    transform: translatey(-50%);
    opacity: 0;
    transition: ease all 0.9s;
    transition-delay: 0.8S;
  }
  .animationOn .hero-section .he-desc .description {
    transform: translatey(0);
    opacity: 1;
  }
  .hero-section .he-desc .cta-wrap {
    transform: scale(1, 0.1);
    transition: ease all 0.9s;
    opacity: 0;
    transition-delay: 1s;
  }
  .animationOn .hero-section .he-desc .cta-wrap {
    opacity: 1;
    transform: scale(1, 1);
  }
}
.hero-section .he-desc h1 {
  margin-bottom: 0.625rem;
  font-size: 4.5rem;
}
@media (max-width: 1199px) {
  .hero-section .he-desc h1 {
    font-size: 3.75rem;
  }
}
@media (max-width: 991px) {
  .hero-section .he-desc h1 {
    font-size: 2.9375rem;
  }
}
.hero-section .he-desc p {
  font-size: 1.25rem;
}
.hero-section .he-desc .cta-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.9375rem;
}
.hero-section .he-desc .cta-wrap [class*=btn] {
  margin: 1.9375rem 0.9375rem 0;
}
@media (max-width: 767px) {
  .hero-section .he-desc .cta-wrap .play-arrow {
    display: none;
  }
}
.hero-section .image-block {
  position: absolute;
  width: 55%;
  top: 0;
  overflow: hidden;
  right: 0;
  height: 100%;
}
.hero-section .image-block img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .hero-section .image-block {
    position: relative;
    width: 100%;
    height: auto;
  }
}
@media (min-width: 1200px) {
  .hero-section .image-block img {
    transform: translateX(100%);
    transition: ease all 1s;
    transition-delay: 1.2S;
  }
  .hero-section .image-block:after, .hero-section .image-block:before {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 10%;
    height: 100%;
    transition: ease all 1s;
    transition-delay: 1.2S;
  }
  .hero-section .image-block:before {
    z-index: 3;
    background-color: #B20030;
  }
  .hero-section .image-block:after {
    background-color: #17064A;
    left: 105%;
  }
  .animationOn .hero-section .image-block img {
    transform: translateX(0);
  }
  .animationOn .hero-section .image-block:before {
    left: -10%;
    width: 5%;
  }
  .animationOn .hero-section .image-block:after {
    left: -5%;
    width: 5%;
  }
}
@media (max-width: 991px) {
  .hero-section .image-block img {
    position: relative;
    width: 100%;
    height: auto;
  }
}
@media (min-width: 1200px) {
  .hero-section .image-block .play-icon {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    transition: ease all 1s;
    transition-delay: 1.8S;
  }
  .animationOn .hero-section .image-block .play-icon {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
.hero-section .he-video {
  position: absolute;
  top: 0;
  transform: translateX(100%);
  overflow: hidden;
  width: 100%;
  height: calc(100vh - 141px);
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .hero-section .he-video {
    transition: 1s;
    transition-delay: 0.5s;
  }
}
@media (max-width: 991px) {
  .hero-section .he-video {
    position: relative;
    transform: none;
    height: auto;
  }
}
.hero-section .he-video:before {
  padding-top: 56.25%;
  display: none;
  content: "";
}
@media (max-width: 991px) {
  .hero-section .he-video:before {
    display: block;
  }
}
.hero-section .he-video.active .image-block {
  opacity: 0;
}
.hero-section .he-video.active .play-icon {
  opacity: 0;
}
.hero-section .he-video.active .close-icon {
  opacity: 1;
}
.hero-section .he-video .image-block {
  position: absolute;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: 0.3s;
}
.hero-section .he-video .image-block img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .hero-section .he-video .image-block_cell {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    transition: ease all 2s;
    transition-delay: 0.8s;
  }
  .hero-section .he-video .image-block_cell span {
    width: 6.25rem;
    height: 100%;
    position: absolute;
    top: 0;
    transition: ease all 1.5s;
    transition-delay: 0.2s;
  }
  .hero-section .he-video .image-block_cell span:nth-child(1) {
    background-color: #FF6718;
    left: 100%;
  }
  .hero-section .he-video .image-block_cell span:nth-child(2) {
    background-color: #B20030;
    left: calc(100% + 100px);
  }
  .hero-section .he-video .image-block_cell span:nth-child(3) {
    background-color: #17064A;
    left: calc(100% + 200px);
  }
}
@media (max-width: 991px) {
  .hero-section .he-video .image-block_cell {
    display: none;
  }
}
.hero-section .he-video video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .hero-section .he-video video {
    position: relative;
    object-fit: contain;
    height: 100%;
    width: auto;
  }
}
.hero-section .he-video-ratio {
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}
@media (min-width: 992px) {
  .hero-section .he-video-ratio {
    padding-top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.hero-section .he-video .close-icon {
  position: absolute;
  z-index: 1;
  top: 8%;
  right: 10%;
  font-size: 2rem;
  width: 1em;
  height: 1em;
  border-radius: 1em;
  background-color: #17064A;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
  transition: 0.3s;
}
.hero-section .he-video .close-icon:before, .hero-section .he-video .close-icon:after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3px;
  height: 15px;
  background-color: #FBF9DF;
  content: "";
}
.hero-section .he-video .close-icon:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.hero-section .he-video .close-icon:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (min-width: 1200px) {
  .hero-section .he-video .play-icon {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    transition: 0.65s;
    transition-delay: 1s;
  }
}

.play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  width: 1em;
  height: 1em;
  border-radius: 1em;
  background-color: #B20030;
  z-index: 1;
  cursor: pointer;
  transition: 0.3s;
}
.play-icon:before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-35%, -50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 19px solid #FBF9DF;
  content: "";
}

.landing-hero.red-theme {
  background-color: #B20030;
}
.landing-hero.red-theme .h2:last-child {
  margin-bottom: 0;
}
.landing-hero.red-theme .h2,
.landing-hero.red-theme p {
  color: #FBF9DF;
}
.landing-hero.red-theme .breadcrumbs ul li {
  color: #FBF9DF;
}
.landing-hero.red-theme .breadcrumbs ul li:after {
  color: #FBF9DF;
}
.landing-hero.red-theme .breadcrumbs ul li a {
  color: #FBF9DF;
}
.landing-hero.red-theme .breadcrumbs ul li a:hover {
  color: #FF6718;
}
.landing-hero.red-theme .breadcrumbs ul li span {
  color: #ffffff;
}
.landing-hero .lh-wrap {
  display: flex;
  flex-wrap: wrap;
}
.landing-hero .ls-img {
  position: relative;
  width: 50%;
}
.landing-hero .ls-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .landing-hero .ls-img {
    display: none;
  }
}
.landing-hero .ls-desc {
  padding-left: calc((100% - 79.375rem) / 2);
  width: 50%;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  padding-right: 1.25rem;
}
.landing-hero .ls-desc > div {
  padding-left: 3.125rem;
}
@media (max-width: 991px) {
  .landing-hero .ls-desc > div {
    padding-left: 1.25rem;
  }
}
@media (max-width: 991px) {
  .landing-hero .ls-desc {
    width: 100%;
  }
}
.landing-hero .ls-desc p {
  font-size: 1.25rem;
}
@media (max-width: 1199px) {
  .landing-hero .ls-desc p {
    font-size: 1.125rem;
  }
}
@media (max-width: 767px) {
  .landing-hero .ls-desc p {
    font-size: 1rem;
  }
}
.landing-hero .ls-desc .btn {
  margin-top: 1.25rem;
}
.landing-hero.banner-form {
  position: relative;
}
.landing-hero.banner-form .banner-img{
  height: 770px;
  overflow: hidden;
}
.landing-hero.banner-form.testi-side .banner-img{
  height: 500px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .landing-hero.banner-form.testi-side .banner-img,
  .landing-hero.banner-form .banner-img {
    height: auto;
  }
}
@media (max-width: 767px) {
  .landing-hero.banner-form.testi-side .banner-img,
  .landing-hero.banner-form .banner-img {
    height: 250px;
  }
}
.landing-hero.banner-form .banner-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.landing-hero.banner-form .container{
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.landing-hero.banner-form .banner-form {
  width: 52%;
  position: relative;
  padding: 4rem 4rem 3rem;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  border-bottom-right-radius: 5.25rem;
  float: right;
}
.landing-hero.banner-form.form-left .banner-form {
  float: none;
}
.landing-hero.banner-form .banner-form .h1 {
  font-size: 2.92rem;
}
@media (max-width: 1350px) {
  .landing-hero.banner-form .banner-form {  
    padding: 3rem 3rem 2rem;
  }
}

@media (max-width: 1023px) {
  .landing-hero.banner-form .container {  
    position: relative;
    top: 0;
    margin-top: 50px;
  }
  .landing-hero.banner-form .banner-form {
    float: none !important;
    width: 100%;
  }
}
@media (max-width:991px) {
  .landing-hero.banner-form .banner-form .h1 {
    font-size: 2.3076923077rem;
  }
}
@media (max-width: 767px) {
  .landing-hero.banner-form .banner-form {  
    padding: 20px;
  }
}
.landing-hero.banner-form + * {
  clear: both;
  margin-top: 200px;
}
.landing-hero.banner-form + .testimonial-h {
  clear: none;
  margin-top: 0;
  margin-bottom: 100px;
}
.thank-you-banner {
  text-align: center;
  padding: 124px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../images/thanks-bg.svg);
  background-color: #B20030;
  text-align: center;
  margin-bottom: 100px;
}
.thank-you-banner h1,
.thank-you-banner h3 {
  color: #ffffff;
}
.thank-you-banner h3 {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .thank-you-banner {
    padding: 50px 0;
    margin-bottom: 70px;
  }
  .thank-you-banner h3 {
    font-size: 1.6rem;
  }
}
.testimonial-h.testi-under {
  text-align: center;
  padding: 150px 0 100px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.testimonial-h.testi-under.bg-blue {
  background-image: url(../../images/bg-blue12.svg);
}
.testimonial-h.testi-under.bg-red {
  background-image: url(../../images/bg-red12.svg);
}
.landing-hero.banner-form + .testimonial-h .inner{
  width: 40%;
  padding-top: 70px;
}
.landing-hero.banner-form.form-left + .testimonial-h .inner {
  margin-left: auto;
}
.landing-hero.banner-form + .testimonial-h.testi-side .container {
  min-height: 409px;
  display: flex;
  align-items: center;
}
.landing-hero.banner-form + .testimonial-h.testi-under .inner {
  width: 950px;
  padding-top: 0;
  margin: 0 auto;
}
@media (max-width:980px) {
  .landing-hero.banner-form + .testimonial-h .inner {
    width: 100% !important;
  }
  .landing-hero.banner-form + .testimonial-h .inner br{
    display: none !important;
  }
}
.landing-hero.banner-form + .testimonial-h .text {
  font-weight: 300;
  font-size: 1.70rem;
}
.landing-hero.banner-form + .testimonial-h strong {
  margin-top: 20px;
  display: block;
}
.landing-hero.banner-form h1{
  font-size: 3.5rem;
}
.landing-hero.banner-form h3 {
  color: #B20030;
  margin-bottom: 0;
}
@media (max-width: 1300px) {
  .landing-hero.banner-form h1 {
    font-size: 3rem;
  }
}
@media (max-width: 980px) {
  .landing-hero.banner-form h1 br{
    display: none;
  }
}
@media (max-width: 767px) {
  .landing-hero.banner-form h1 {
    font-size: 2.3rem;
  }
  .landing-hero.banner-form h1 br{
    display: block;
  }
  .landing-hero.banner-form h3 {
    font-size: 1.4rem;
  }
  .landing-hero.banner-form + .testimonial-h.testi-under {
    padding: 50px 0;
    margin-top: 50px;
  }
  .landing-hero.banner-form + .testimonial-h.testi-under .inner {
    width: 100%;
  }
}
.landing-hero.banner-form .desc{
  margin-bottom: 30px;
  font-size: 20px;
}
.landing-hero.banner-form .form-h .hbspt-form{
  position: relative;
  padding: 0;
  background-color: transparent;
  margin-right: -8px;
}
.landing-hero.banner-form .form-h .hbspt-form:before {
  display: none;
}
.landing-hero.banner-form .form-h .hbspt-form .hs-form{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  grid-gap: 0 !important;
  justify-content: space-between;
}
.landing-hero.banner-form .form-h fieldset input,
.landing-hero.banner-form .form-h fieldset select,

.landing-hero.banner-form .form-h fieldset textarea,
.landing-hero.banner-form .form-h fieldset input,
.landing-hero.banner-form .form-h fieldset {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0;
  background: white;
}
.landing-hero.banner-form .form-h fieldset:nth-child(3) .field,
.landing-hero.banner-form .form-h fieldset:nth-child(1) .field {
  width: 50%;
}
.landing-hero.banner-form .form-h fieldset select {
  background-image: url(../../images/select-arrow.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
}
@media (max-width: 767px) {
  .landing-hero.banner-form .form-h fieldset:nth-child(3) .field, .landing-hero.banner-form .form-h fieldset:nth-child(1) .field,
  .landing-hero.banner-form .form-h fieldset:nth-child(5), .landing-hero.banner-form .form-h fieldset:nth-child(4), .landing-hero.banner-form .form-h fieldset:nth-child(1), .landing-hero.banner-form .form-h fieldset:nth-child(2) {
    width: 100%;
  }
}
.landing-hero.banner-form .form-h .field {
  width: 100%;
  max-width: 100%;
  margin: 0 0 10px;
}
.landing-hero.banner-form .form-h label {
  color: #17064A;
  opacity: 1;
}
.landing-hero.banner-form .form-h fieldset textarea {
  height: 3.4rem;
}
.landing-hero.banner-form .hbspt-form .hs-submit .hs-button {
  min-width: 200px;
  margin-top: 10px;
}
.main-content {
  position: relative;
}

.sub-menu-list {
  position: absolute;
  width: 100%;
  top: -90px;
  z-index: 9;
  background-color: #ffffff;
  transition: ease 0.3s;
}
.sub-menu-list.fixed {
  position: fixed;
  top: 0;
}
.sub-menu-list .sub-menu-wrap {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .sub-menu-list .sub-menu-wrap {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.sub-menu-list .dropdown {
  position: relative;
  padding: 0.625rem 2.1875rem 0.625rem 0;
  display: none;
  border-bottom: 3px solid #FF6718;
  font-weight: 700;
  cursor: pointer;
}
@media (max-width: 991px) {
  .sub-menu-list .dropdown {
    display: block;
  }
}
.sub-menu-list .dropdown:after {
  position: absolute;
  right: 0;
  top: 55%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #B20030;
  content: "";
  transition: width 0.3s;
}
.sub-menu-list .dropdown.active:after {
  transform: translateY(-50%) scaleY(-1);
}
.sub-menu-list ul {
  display: none;
  margin: 0 auto;
  padding: 0.9375rem 0;
  width: auto;
}
@media (min-width: 992px) {
  .sub-menu-list ul {
    display: block !important;
  }
}
@media (max-width: 991px) {
  .sub-menu-list ul {
    width: 100%;
    padding: 0;
    margin-top: 0;
  }
}
.sub-menu-list li {
  list-style: none;
  display: inline-block;
  margin: 0 1.25rem;
  padding: 0;
}
@media (max-width: 991px) {
  .sub-menu-list li {
    margin: 5px 0;
    display: block;
  }
}
.sub-menu-list li:first-child {
  margin-left: 0;
}
.sub-menu-list li:last-child {
  margin-right: 0;
}
.sub-menu-list li a {
  display: block;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: #17064A;
}
@media (max-width: 991px) {
  .sub-menu-list li a {
    display: block;
  }
}
.sub-menu-list li a:before {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  height: 3px;
  width: 0;
  background-color: #FF6718;
  content: "";
  transition: width 0.3s;
}
@media (max-width: 991px) {
  .sub-menu-list li a:before {
    display: none;
  }
}
.sub-menu-list li.active a {
  font-weight: 700;
}
@media (max-width: 991px) {
  .sub-menu-list li.active a {
    font-weight: 400;
  }
}
.sub-menu-list li.active a:before {
  width: 100%;
}

.listing-hero {
  position: relative;
  padding-top: 3.125rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .listing-hero {
    padding-top: 1.875rem;
    padding-bottom: 3.75rem;
  }
}
.listing-hero .bg-icon {
  position: absolute;
  top: 1.25rem;
  right: 0;
  width: 6.8125rem;
  pointer-events: none;
}
@media (max-width: 991px) {
  .listing-hero .bg-icon {
    display: none;
  }
}
.listing-hero .lh-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.listing-hero .lh-desc {
  width: 45%;
  max-width: 28.9375rem;
}
@media (max-width: 991px) {
  .listing-hero .lh-desc {
    width: 48%;
  }
}
@media (max-width: 767px) {
  .listing-hero .lh-desc {
    width: 100%;
    max-width: 100%;
  }
}
.listing-hero .lh-desc p {
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .listing-hero .lh-desc p {
    font-size: 1.1875rem;
  }
}
.listing-hero .lh-img {
  width: 45%;
  max-width: 31.25rem;
}
@media (max-width: 991px) {
  .listing-hero .lh-img {
    width: 48%;
  }
}
@media (max-width: 767px) {
  .listing-hero .lh-img {
    width: 100%;
    max-width: 100%;
    margin-top: 3.75rem;
  }
}
.listing-hero .lh-img-wrap {
  display: block;
}
.listing-hero .lh-img-wrap:after {
  content: "";
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.listing-hero .lh-img-wrap img {
  display: block;
  width: 100%;
}
.listing-hero .lh-img .lh-link {
  position: relative;
  display: block;
  text-decoration: none;
}
.listing-hero .lh-img .lh-link:hover .lh-img-wrap:after {
  background-color: rgba(255, 103, 24, 0.5);
}
.listing-hero .lh-img .lh-link .feature-label {
  position: absolute;
  top: 1.6875rem;
  left: 1.6875rem;
  font-size: 0.625rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #B20030;
  border-radius: 0.6875rem;
  padding: 0.125rem 0.6875rem 0.25rem;
}
@media (max-width: 767px) {
  .listing-hero .lh-img .lh-link .feature-label {
    top: 1.0625rem;
    left: 1.0625rem;
  }
}
.listing-hero .lh-img .lh-link .title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.8125rem 1.6875rem 1.125rem;
  background-color: rgba(178, 0, 48, 0.8);
}
@media (max-width: 767px) {
  .listing-hero .lh-img .lh-link .title {
    position: relative;
    padding: 1.25rem;
    background-color: #B20030;
  }
}
.listing-hero .lh-img .lh-link .title h5 {
  margin-bottom: 0;
  color: #ffffff;
}
@media (max-width: 767px) {
  .listing-hero .lh-img .lh-link .title h5 {
    font-size: 1rem;
  }
}

.feature-sub-hero .fs-title {
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .feature-sub-hero .fs-title {
    margin-bottom: 1.5625rem;
  }
}
@media (max-width: 767px) {
  .feature-sub-hero [class*=cell-] + [class*=cell-] {
    margin-top: 2.5rem;
  }
}
.feature-sub-hero .fs-wrap {
  position: relative;
  display: block;
  text-decoration: none !important;
}
.feature-sub-hero .fs-wrap:hover .fs-img:after {
  background-color: rgba(255, 103, 24, 0.5);
}
.feature-sub-hero .fs-img {
  position: relative;
}
.feature-sub-hero .fs-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-sub-hero .fs-img:after {
  content: "";
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.feature-sub-hero .fs-img:before {
  display: block;
  content: "";
  padding-top: 53.3687943262%;
}
.feature-sub-hero .feature-label {
  position: absolute;
  top: 1.6875rem;
  left: 1.6875rem;
  font-size: 0.625rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #B20030;
  border-radius: 0.6875rem;
  padding: 0.125rem 0.6875rem 0.25rem;
}
@media (max-width: 767px) {
  .feature-sub-hero .feature-label {
    top: 1.0625rem;
    left: 1.0625rem;
  }
}
.feature-sub-hero .fz-desc {
  background-color: #B20030;
  padding: 1.875rem;
}
@media (max-width: 767px) {
  .feature-sub-hero .fz-desc {
    padding: 1.25rem;
  }
}
.feature-sub-hero .fz-desc h5 {
  color: #FBF9DF;
}
@media (max-width: 767px) {
  .feature-sub-hero .fz-desc h5 {
    font-size: 1rem;
  }
}
.feature-sub-hero .btn-link, .feature-sub-hero #mobilenav ul.button-link a, #mobilenav ul.button-link .feature-sub-hero a,
.feature-sub-hero #mobilenav li.button-link a,
#mobilenav li.button-link .feature-sub-hero a, .feature-sub-hero .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a, .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link .feature-sub-hero a {
  color: #FBF9DF !important;
}

.listing-fitler-bar {
  margin: 4.375rem 0 3.125rem;
}
@media (max-width: 767px) {
  .listing-fitler-bar {
    margin: 3.125rem 0;
  }
}
.listing-fitler-bar .device-flex {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  height: 3.5rem;
}
@media (max-width: 1023px) {
  .listing-fitler-bar .device-flex {
    flex: 1 1 auto;
  }
}
@media (max-width: 767px) {
  .listing-fitler-bar .device-flex {
    height: auto;
  }
}
.listing-fitler-bar .device-flex .submit-filter {
  margin-right: 20px;
}
.listing-fitler-bar .device-flex .submit-filter input[type=submit] {
  padding: 0;
  background-color: transparent;
  color: #17064A;
}
.listing-fitler-bar .device-flex .submit-filter input[type=submit]:hover {
  color: #FF6718;
}
.listing-fitler-bar .device-flex .reset-filters {
  color: #17064A;
  text-decoration: none;
}
.listing-fitler-bar .device-flex .reset-filters:hover {
  color: #FF6718;
}
.listing-fitler-bar .filter-form {
  position: relative;
  width: 100%;
}
.listing-fitler-bar .filter-form .filter-box {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 1023px) {
  .listing-fitler-bar .filter-form .filter-box {
    flex-wrap: wrap;
  }
}
.listing-fitler-bar .filter-form .filter-mid {
  flex: 1 0 auto;
  margin-right: 1.25rem;
}
@media (max-width: 1023px) {
  .listing-fitler-bar .filter-form .filter-mid {
    width: 100%;
    margin: 0;
  }
}
.listing-fitler-bar .filter-form .tag-listing {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 1.25rem;
  z-index: 1;
}
@media (max-width: 991px) {
  .listing-fitler-bar .filter-form .tag-listing {
    position: relative;
  }
}
.listing-fitler-bar .filter-form .tag-listing .remove-filter {
  position: relative;
  display: inline-block;
  padding-left: 0.9375rem;
  margin-right: 1.5rem;
  font-size: 0.875rem;
  transition: 0.3s;
  cursor: pointer;
}
@media (max-width: 991px) {
  .listing-fitler-bar .filter-form .tag-listing .remove-filter {
    margin-right: 1rem;
  }
}
.listing-fitler-bar .filter-form .tag-listing .remove-filter:hover, .listing-fitler-bar .filter-form .tag-listing .remove-filter:focus {
  color: #B20030;
}
.listing-fitler-bar .filter-form .tag-listing .remove-filter:hover:before, .listing-fitler-bar .filter-form .tag-listing .remove-filter:hover:after, .listing-fitler-bar .filter-form .tag-listing .remove-filter:focus:before, .listing-fitler-bar .filter-form .tag-listing .remove-filter:focus:after {
  background-color: #B20030;
}
.listing-fitler-bar .filter-form .tag-listing .remove-filter:before, .listing-fitler-bar .filter-form .tag-listing .remove-filter:after {
  position: absolute;
  left: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.125rem;
  height: 0.875rem;
  content: "";
  background-color: #17064A;
  transition: 0.3s;
}
.listing-fitler-bar .filter-form .tag-listing .remove-filter:before {
  transform: translateY(-50%) rotate(45deg);
}
.listing-fitler-bar .filter-form .tag-listing .remove-filter:after {
  transform: translateY(-50%) rotate(-45deg);
}
.listing-fitler-bar .filter-mid {
  display: flex;
  flex-wrap: wrap;
}
.listing-fitler-bar .filter-col:not(:last-of-type) {
  margin-right: 1.25rem;
}
.listing-fitler-bar .filter-col .label {
  margin-bottom: 0.625rem;
  color: #B20030;
  font-size: 0.75rem;
  font-weight: 700;
}
@media (max-width: 1023px) {
  .listing-fitler-bar .filter-col.tag-col {
    margin-left: auto;
  }
}
.listing-fitler-bar .filter-col.tag-col .label {
  opacity: 0;
  pointer-events: none;
}
.listing-fitler-bar .filter-col:not(.has-form) {
  position: relative;
  width: 14.0625rem;
}
@media (max-width: 1023px) {
  .listing-fitler-bar .filter-col:not(.has-form) {
    width: 49%;
    margin-bottom: 1.5rem;
    margin-right: 0;
  }
}
.listing-fitler-bar .has-form {
  flex: 1 1 auto;
  position: relative;
}
@media (max-width: 1023px) {
  .listing-fitler-bar .has-form {
    width: 100%;
    margin: 0 0 35px 0 !important;
  }
}
.listing-fitler-bar .has-form .form-wrap {
  position: relative;
}
.listing-fitler-bar .has-form input {
  height: 3.5rem;
  padding-left: 1.25rem;
  padding-right: 4.125rem;
  color: #FF6718;
  font-family: "Helvetica", "Arial", sans-serif;
  font-weight: 300;
  background-color: #ffffff;
  border: 1px solid #E9E9E9;
  border-radius: 0;
}
.listing-fitler-bar .has-form input::-webkit-input-placeholder {
  color: #17064A;
  opacity: 1;
}
.listing-fitler-bar .has-form input:-moz-placeholder {
  color: #17064A;
  opacity: 1;
}
.listing-fitler-bar .has-form input::-moz-placeholder {
  color: #17064A;
  opacity: 1;
}
.listing-fitler-bar .has-form input:-ms-input-placeholder {
  color: #17064A;
  opacity: 1;
}
.listing-fitler-bar .has-form .submit-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 66px;
  background-image: url("../../images/search-icon-blue.svg");
  background-size: 1.125rem;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
  transition: 0.3s;
  cursor: pointer;
}
.listing-fitler-bar .has-form .submit-btn:hover {
  background-color: #FF6718;
}
.listing-fitler-bar .filter-item {
  position: relative;
  display: block;
  padding: 0.9375rem 3.1875rem 0.9375rem 1.375rem;
  color: #17064A;
  font-family: "Helvetica", "Arial", sans-serif;
  font-weight: 300;
  background-color: #ffffff;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  z-index: 3;
  border: 1px solid #E9E9E9;
}
.listing-fitler-bar .filter-item:after {
  position: absolute;
  right: 17px;
  top: 26px;
  content: "";
  width: 0;
  height: 0;
  background-color: #ffffff;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #17064A;
  transition: 0.3s;
  pointer-events: none;
}
.listing-fitler-bar .filter-item.active {
  border-color: transparent;
}
.listing-fitler-bar .filter-item.active:after {
  transform: scaleY(-1);
}
.listing-fitler-bar .filter-dropdown {
  position: absolute;
  left: 0;
  top: 28px;
  width: 100%;
  padding-top: 56px;
  background-color: #ffffff;
  display: none;
  z-index: 2;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.16);
}
.listing-fitler-bar .filter-dropdown-wrap {
  padding: 0.8125rem 1rem 1.875rem;
}
.listing-fitler-bar .filter-option:not(:last-child) {
  margin-bottom: 1rem;
}
.listing-fitler-bar .filter-option label {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  color: #17064A;
  font-family: "Helvetica", "Arial", sans-serif;
  font-weight: 300;
  line-height: 1;
}

.listing-comp {
  margin-top: 3.125rem;
  margin-bottom: 4.375rem;
}
.listing-comp .listing-block {
  margin-bottom: 40px;
}
.listing-comp .listing-inner .block-image {
  display: block;
  text-decoration: none;
}
.listing-comp .listing-inner .block-image .img-block {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
}
.listing-comp .listing-inner .block-image .img-block img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.listing-comp .listing-inner .block-image .img-block:before {
  padding-top: 65.9340659341%;
  display: block;
  content: "";
}
.listing-comp .listing-inner .block-image .img-block:after {
  content: "";
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.listing-comp .listing-inner .block-image .cat-terms {
  position: absolute;
  top: 1.0625rem;
  left: 1.0625rem;
  padding: 0.125rem 0.6875rem 0.25rem;
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: 700;
  background-color: #B20030;
  border-radius: 0.6875rem;
  z-index: 1;
}
@media (max-width: 767px) {
  .listing-comp .listing-inner .block-image .cat-terms {
    top: 1.0625rem;
    left: 1.0625rem;
  }
}
.listing-comp .listing-inner .block-image .post-title:last-child {
  margin-bottom: 0;
}
.listing-comp .listing-inner .block-image:hover .img-block {
  border-bottom-right-radius: 6.25rem;
}
.listing-comp .listing-inner .block-image:hover .img-block:after {
  background-color: rgba(255, 103, 24, 0.5);
}
.listing-comp .listing-inner .block-image:hover .post-title {
  color: #B20030;
}
.listing-comp .pagination {
  margin-top: 30px;
}

.resource-hero {
  position: relative;
  padding-top: 3.125rem;
  padding-bottom: 5rem;
  z-index: 1;
}
@media (max-width: 991px) {
  .resource-hero {
    padding-top: 1.875rem;
    padding-bottom: 3.75rem;
  }
}
.resource-hero.full-width .rh-desc {
  width: 100%;
  max-width: 100%;
}
.resource-hero .bg-icon {
  position: absolute;
  top: 1.25rem;
  right: 0;
  width: 6.8125rem;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 991px) {
  .resource-hero .bg-icon {
    display: none;
  }
}
.resource-hero .rh-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.resource-hero .rh-desc {
  width: 48%;
  max-width: 35.125rem;
}
@media (max-width: 767px) {
  .resource-hero .rh-desc {
    width: 100%;
    max-width: 100%;
  }
}
.resource-hero .rh-desc p {
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .resource-hero .rh-desc p {
    font-size: 1.1875rem;
  }
}
.resource-hero .rh-img {
  width: 48%;
  max-width: 35.125rem;
  border-radius: 0 0 6.25rem 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .resource-hero .rh-img {
    width: 48%;
  }
}
@media (max-width: 767px) {
  .resource-hero .rh-img {
    width: 100%;
    max-width: 100%;
    margin-top: 2.8125rem;
  }
}
.resource-hero .rh-img img {
  display: block;
  width: 100%;
}

.resource_detail .rd_wrap {
  display: flex;
  padding-right: 52px;
}
@media (max-width: 991px) {
  .resource_detail .rd_wrap {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .resource_detail .rd_wrap {
    flex-wrap: wrap;
  }
}
.resource_detail .rd_social {
  position: sticky;
  top: 8.8125rem;
  align-self: flex-start;
  flex: 0 0 auto;
  width: 3.25rem;
  padding-top: 0.9375rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .resource_detail .rd_social {
    position: relative;
    top: auto;
    width: 100%;
    padding-top: 0;
  }
}
.resource_detail .rd_social_label {
  position: absolute;
  color: #727272;
  font-size: 0.75rem;
  font-weight: 700;
  transform: translateX(-100%) rotate(-90deg);
  transform-origin: top right;
  left: -5px;
}
@media (max-width: 767px) {
  .resource_detail .rd_social_label {
    top: -2px;
  }
}
.resource_detail .rd_social_feed {
  margin: 0;
  padding: 0 0 0 1.25rem;
}
@media (max-width: 767px) {
  .resource_detail .rd_social_feed {
    display: flex;
    flex-wrap: wrap;
  }
}
.resource_detail .rd_social_feed li {
  padding: 0;
  list-style: none;
}
.resource_detail .rd_social_feed li:not(:last-child) {
  margin-bottom: 1.6875rem;
}
@media (max-width: 767px) {
  .resource_detail .rd_social_feed li:not(:last-child) {
    margin-bottom: 0;
    margin-right: 1.6875rem;
  }
}
.resource_detail .rd_social_feed li a {
  display: block;
  font-size: 2rem;
  text-decoration: none;
  line-height: 0.7;
}
.resource_detail .rd_social_feed li a:hover {
  color: #FF6718;
}
.resource_detail .rd_content {
  flex: 1 1 auto;
  padding: 0 1.25rem;
}
@media (max-width: 991px) {
  .resource_detail .rd_content {
    padding: 0 0 0 1.25rem;
  }
}
@media (max-width: 767px) {
  .resource_detail .rd_content {
    padding: 0;
    width: 100%;
  }
}
.resource_detail .rd_content .container {
  padding: 0;
}
.resource_detail .rd_content .wysiwyg {
  max-width: 760px;
  margin: 3.125rem auto;
}
.resource_detail .rd_content .wysiwyg:first-child {
  margin-top: 0;
}
.resource_detail .rd_content .wysiwyg .wp-caption {
  width: 100% !important;
}
.resource_detail .rd_content .wysiwyg h5 {
  color: #B20030;
}
.resource_detail .rd_content .post_video_comp {
  max-width: 760px;
  margin: 3.125rem auto;
}
@media (max-width: 767px) {
  .resource_detail .rd_content .post_video_comp {
    width: calc(100% + 40px);
    max-width: calc(100% + 40px);
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }
}
.resource_detail .rd_content .post_video_comp .image_part {
  position: relative;
}
.resource_detail .rd_content .post_video_comp .image_part img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.resource_detail .rd_content .post_video_comp .image_part:before {
  content: "";
  padding-top: 54.0789473684%;
  display: block;
}
.resource_detail .rd_content .post_video_comp .image_part .video-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (max-width: 991px) {
  .resource_detail .rd_content .post_video_comp .image_part .video-box .play-icon {
    font-size: 3.875rem;
  }
  .resource_detail .rd_content .post_video_comp .image_part .video-box .play-icon:before {
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 14px solid #FBF9DF;
  }
}
.resource_detail .rd_content .in_line_listing_promo {
  max-width: 54.0625rem;
  margin: 3.125rem auto 0;
}
@media (max-width: 767px) {
  .resource_detail .rd_content .in_line_listing_promo {
    width: calc(100% + 40px);
    max-width: calc(100% + 40px);
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    margin-top: 3.125rem;
  }
}

.gated-form-wrapper {
  margin: 4.375rem 0;
}
.gated-form-wrapper .gf-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 68rem;
}
.gated-form-wrapper .form-desc {
  width: 57%;
  padding-right: 4.0625rem;
}
@media (max-width: 1199px) {
  .gated-form-wrapper .form-desc {
    width: 55%;
    padding-right: 1.875rem;
  }
}
@media (max-width: 991px) {
  .gated-form-wrapper .form-desc {
    width: 100%;
    padding-right: 0;
  }
}
.gated-form-wrapper .gform-part {
  position: relative;
  width: 43%;
}
@media (max-width: 1199px) {
  .gated-form-wrapper .gform-part {
    width: 45%;
  }
}
@media (max-width: 991px) {
  .gated-form-wrapper .gform-part {
    width: 100%;
    margin-top: 3.75rem;
  }
}

.search-results .search-result {
  margin-top: 3.125rem;
  margin-bottom: 6.25rem;
}
@media (max-width: 767px) {
  .search-results .search-result {
    margin-top: 1.875rem;
    margin-bottom: 3.125rem;
  }
}
.search-results .search-result-form {
  position: relative;
  max-width: 19.75rem;
  margin-top: 2.9375rem;
  width: 100%;
}
.search-results .search-result-field {
  height: 1.9375rem;
  padding-left: 1.9375rem;
  border-radius: 0;
  border: 1px solid #17064A;
  transition: 0.3s;
}
.search-results .search-result-field::-webkit-input-placeholder {
  color: #2F2F2F;
  opacity: 0.5;
  font-weight: 700;
}
.search-results .search-result-field:-moz-placeholder {
  color: #2F2F2F;
  opacity: 0.5;
  font-weight: 700;
}
.search-results .search-result-field::-moz-placeholder {
  color: #2F2F2F;
  opacity: 0.5;
  font-weight: 700;
}
.search-results .search-result-field:-ms-input-placeholder {
  color: #2F2F2F;
  opacity: 0.5;
  font-weight: 700;
}
.search-results .search-result .search-submit {
  position: absolute;
  border: none;
  background-color: transparent;
  left: 0;
  top: 0;
  padding: 0;
  width: 31px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-result-count {
  margin-top: 1.5625rem;
}

.search-content-wrapper {
  margin-top: 4.0625rem;
}
@media (max-width: 767px) {
  .search-content-wrapper {
    margin-top: 2.5rem;
  }
}
.search-content-wrapper .search-items {
  max-width: 787px;
}
.search-content-wrapper .search-result-item:not(:last-child) {
  margin-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .search-content-wrapper .search-result-item:not(:last-child) {
    margin-top: 2.5rem;
  }
}
@media (max-width: 767px) {
  .search-content-wrapper .search-result-item h2 {
    margin-top: 0.4375rem;
  }
}
.search-content-wrapper .search-result-item h2 a {
  text-decoration: none;
}
.search-content-wrapper .search-result-item h2 a:hover {
  color: #FF6718;
}
.search-content-wrapper .search-result-item p:last-of-type {
  margin-bottom: 0;
}
.search-content-wrapper .search-result-item .btn {
  margin-top: 1.5625rem;
}
@media (max-width: 767px) {
  .search-content-wrapper .search-result-item .btn {
    margin-top: 1.25rem;
  }
}
.search-content-wrapper .pagination {
  margin-top: 4.375rem;
}

.three_column_content_promo {
  margin: 4.375rem 0;
}
@media (max-width: 1199px) {
  .three_column_content_promo {
    margin: 3.125rem 0;
  }
}
@media (max-width: 767px) {
  .three_column_content_promo {
    margin: 1.875rem 0;
  }
}
.three_column_content_promo .section-heading {
  margin-bottom: 3rem;
}
.three_column_content_promo .section-heading h2 {
  margin-bottom: 0;
  font-weight: normal;
}
.column_grid_content {
  margin-bottom: 50px;
  border-bottom: 1px solid #17064A;
}
.column_grid_content .grid-content-wrap,
.three_column_grid_content .grid-content-wrap,
.three_column_content_promo .features-overview-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.three_column_content_promo .features-overview-wrap .single-feature {
  width: 33%;
  border-right: 1px solid #DBDBDB;
  min-height: 17.6875rem;
  padding: 0.625rem 1.0625rem;
  margin-bottom: 3.125rem;
}
.column_grid_content .container {
  max-width: 1030px;
}
.column_grid_content,
.three_column_grid_content {
  margin-top: 50px;
}
.top-text-block {
  padding-bottom: 77px;
  position: relative;
  font-size: 2rem;
  line-height: 1.25;
}
.top-text-block:after {
  position: absolute;
  content: '';
  width: 210px;
  height: 5px;
  background: #FF6718;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}
.top-text-block a {
  font-weight: 600;
}
.top-text-block + .three_column_grid_content {
  margin-top: 100px;
  margin-bottom: 50px;
  border-bottom: 1px solid #17064A;
  padding-bottom: 100px;
}
.top-text-block + .three_column_grid_content h2 {
  margin-bottom: 100px;
}
.three_column_grid_content h2{
  margin-bottom: 30px;
}
.top-text-block a,
.three_column_grid_content h2 a {
  color: #B20030;
  display: inline-block;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.top-text-block a:hover,
.three_column_grid_content h2 a:hover {
  text-decoration: none;
}
.column_grid_content h2 {
  margin-bottom: 50px;
  text-align: center;
  font-size: 2.3rem;
}
.column_grid_content .grid-content-wrap,
.three_column_grid_content .grid-content-wrap {
  margin: 0 -20px;
}
.column_grid_content .grid-content-wrap .single-grid-item,
.three_column_grid_content .grid-content-wrap .single-grid-item{
  width: 33%;
  padding: 0 15px;
  margin-bottom: 30px;
  color: #707070;
  font-size: 18px;
  line-height: 1.3;
}
.column_grid_content .grid-content-wrap .single-grid-item {
  width: 50%;
  margin-bottom: 80px;
}
.column_grid_content .image-h,
.three_column_grid_content .image-h{
  width: 100%;
  display: flex;
  height: 200px;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  background: #17064A;
  margin-bottom: 15px;
  border-bottom-right-radius: 4.25rem;
  overflow: hidden;
}
.column_grid_content .image-h figure,
.three_column_grid_content .image-h figure {
  max-width: 60%;
  max-height: 60%;
}
.top-text-block + .three_column_grid_content .grid-content-wrap .single-grid-item a {
  font-weight: 600;
}

@media (min-width: 1024px) {
  .top-text-block + .three_column_grid_content .grid-content-wrap .single-grid-item h3 {
    font-size: 1.9rem;
  }
}
.top-text-block + .three_column_grid_content .single-grid-item:nth-child(3n + 3) .image-h,
.column_grid_content .single-grid-item:nth-child(1) .image-h,
.three_column_grid_content .single-grid-item:nth-child(3n + 2) .image-h{
  background: #B20030;
}
.top-text-block + .three_column_grid_content .single-grid-item:nth-child(3n + 2) .image-h,
.column_grid_content .single-grid-item:nth-child(3) .image-h,
.three_column_grid_content .single-grid-item:nth-child(3n + 3) .image-h{
  background: #FF6718;
}

.column_grid_content .single-grid-item:nth-child(4) .image-h {
  background: #FFDED0;
}
.column_grid_content a {
  font-weight: 600;
}
@media (max-width: 1023px) {
  .top-text-block br,
  .top-text-block + .three_column_grid_content h2 br{
    display: none;
  }
}
@media (max-width: 767px) {
  .top-text-block {
    font-size: 1.5rem;
  }
  .top-text-block + .three_column_grid_content h2 {
    margin-bottom: 50px;
  }
  .three_column_content_promo .features-overview-wrap .single-feature {
    width: 50%;
    min-height: 10.3125rem;
    margin-bottom: 1.875rem;
  }
  .column_grid_content .grid-content-wrap .single-grid-item,
  .three_column_grid_content .grid-content-wrap .single-grid-item {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .three_column_content_promo .features-overview-wrap .single-feature {
    width: 100%;
    padding: 0px 0px 1.875rem 0px;
    border: none !important;
    border-bottom: 1px solid #DBDBDB !important;
    min-height: inherit;
    margin-bottom: 1.25rem;
  }
}
.three_column_content_promo .features-overview-wrap .single-feature:first-child {
  border-left: none;
}
.three_column_content_promo .features-overview-wrap .single-feature:nth-child(3n) {
  border-right: none;
}
@media (max-width: 767px) {
  .three_column_content_promo .features-overview-wrap .single-feature:nth-child(3n) {
    border-right: 1px solid #DBDBDB;
  }
}
@media (max-width: 767px) {
  .three_column_content_promo .features-overview-wrap .single-feature:nth-child(2n) {
    border-right: none;
  }
}
.three_column_content_promo .features-overview-wrap .single-feature:last-child {
  border-right: none !important;
}
.three_column_content_promo .features-overview-wrap .single-feature-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s;
  text-decoration: none;
  padding: 2.5rem 2.8125rem;
}
@media (max-width: 1199px) {
  .three_column_content_promo .features-overview-wrap .single-feature-wrap {
    padding: 0.9375rem 1.25rem;
  }
}
@media (max-width: 575px) {
  .three_column_content_promo .features-overview-wrap .single-feature-wrap {
    padding: 0px 1.875rem;
  }
}
.three_column_content_promo .features-overview-wrap .single-feature-wrap.hover h3::after {
  content: ">";
  position: absolute;
  bottom: -10px;
  right: 0;
  font-size: 3.625rem;
  font-weight: normal;
  line-height: 1;
}
@media (max-width: 575px) {
  .three_column_content_promo .features-overview-wrap .single-feature-wrap.hover h3::after {
    font-size: 2.5rem;
  }
}
.three_column_content_promo .features-overview-wrap .single-feature-wrap.hover:hover {
  background: #FF6718;
  border-bottom-right-radius: 6.25rem;
}
.three_column_content_promo .features-overview-wrap .single-feature-wrap.hover:hover h3,
.three_column_content_promo .features-overview-wrap .single-feature-wrap.hover:hover p {
  color: #FBF9DF;
}
.three_column_content_promo .features-overview-wrap .single-feature-wrap h3 {
  margin-bottom: 1.5625rem;
  font-size: 2.1875rem;
  color: #B20030;
  position: relative;
  padding-right: 3.4375rem;
}
@media (max-width: 1199px) {
  .three_column_content_promo .features-overview-wrap .single-feature-wrap h3 {
    font-size: 1.375rem;
  }
}
@media (max-width: 767px) {
  .three_column_content_promo .features-overview-wrap .single-feature-wrap h3 {
    font-size: 1.625rem;
  }
}
@media (max-width: 575px) {
  .three_column_content_promo .features-overview-wrap .single-feature-wrap h3 {
    font-size: 1.375rem;
  }
}
.three_column_content_promo .features-overview-wrap .single-feature-wrap p {
  color: #17064A;
  font-size: 1rem;
}
@media (max-width: 575px) {
  .three_column_content_promo .features-overview-wrap .single-feature-wrap p {
    padding-right: 2.1875rem;
  }
}

.promo_50_50 {
  margin: 7.5rem 0;
}
@media (max-width: 1199px) {
  .promo_50_50 {
    margin: 6.25rem 0;
  }
}
@media (max-width: 767px) {
  .promo_50_50 {
    margin: 2.75rem 0 3.25rem;
  }
}
.promo_50_50.has-animation {
  overflow: hidden;
  position: relative;
}
.promo_50_50.has-animation .content_part {
  opacity: 0;
  transition: 0.8s ease-out;
  transform: translateY(10%);
}
.promo_50_50.has-animation.animate .content_part {
  opacity: 1;
  transform: translateY(0);
}
.promo_50_50.white-theme.red-full-bg {
  background-color: #B20030;
  padding: 80px 0 0;
  overflow: visible;
  margin-top: 50px;
}
.promo_50_50.white-theme.txt-left .promo_50_50_wrap {
  flex-direction: row-reverse;
}
.promo_50_50.white-theme .promo_50_50_wrap {
  margin: 0 -1.875rem;
}
@media (max-width: 1199px) {
  .promo_50_50.white-theme .promo_50_50_wrap {
    margin: 0 -15px;
  }
}
@media (max-width: 1199px) and (max-width: 767px) {
  .promo_50_50.white-theme .promo_50_50_wrap {
    margin: 0 -1.25rem;
  }
}
.promo_50_50.white-theme .promo_50_50_wrap + .promo_50_50_wrap {
  margin-bottom: 7.5rem;
}
@media (max-width: 1199px) {
  .promo_50_50.white-theme .promo_50_50_wrap + .promo_50_50_wrap {
    margin-bottom: 6.25rem;
  }
}
@media (max-width: 767px) {
  .promo_50_50.white-theme .promo_50_50_wrap + .promo_50_50_wrap {
    margin-bottom: 3.125rem;
  }
}
.promo_50_50.white-theme .promo_50_50_wrap .image_part {
  width: 50%;
  padding: 0 1.875rem;
}
@media (max-width: 1199px) {
  .promo_50_50.white-theme .promo_50_50_wrap .image_part {
    padding: 0 0.9375rem;
  }
}
@media (max-width: 767px) {
  .promo_50_50.white-theme .promo_50_50_wrap .image_part {
    padding: 0;
    width: 100%;
  }
}
.promo_50_50.white-theme .promo_50_50_wrap .image_part figure {
  position: relative;
  border-bottom-right-radius: 6.25rem;
  overflow: hidden;
}
.promo_50_50.white-theme.red-full-bg .promo_50_50_wrap .image_part figure {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 6.25rem;
  margin-bottom: -70px;
}
.promo_50_50.white-theme .promo_50_50_wrap .image_part figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo_50_50.white-theme .promo_50_50_wrap .image_part figure:before {
  content: "";
  padding-top: 66.7259786477%;
  display: block;
}
.promo_50_50.white-theme.red-full-bg .promo_50_50_wrap .image_part figure:before {
  padding-top: 90%;
}
.promo_50_50.white-theme .promo_50_50_wrap .image_part figure .video-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.promo_50_50.white-theme .promo_50_50_wrap .image_part.full-height figure img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: initial;
}
.promo_50_50.white-theme .promo_50_50_wrap .image_part.full-height figure:before {
  display: none;
}
.promo_50_50.white-theme .promo_50_50_wrap .content_part {
  width: 50%;
  padding: 0 1.875rem 1.25rem;
}
@media (max-width: 1399px) {
  .promo_50_50.white-theme .promo_50_50_wrap .content_part {
    padding: 0 2.5rem 2.5rem;
  }
}
@media (max-width: 1199px) {
  .promo_50_50.white-theme .promo_50_50_wrap .content_part {
    padding: 0 0.9375rem 0.9375rem;
  }
}
@media (max-width: 767px) {
  .promo_50_50.white-theme .promo_50_50_wrap .content_part {
    padding: 2.875rem 1.25rem 0;
    width: 100%;
  }
}
.promo_50_50.white-theme .promo_50_50_wrap .content_part .eyebrow_text {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  display: block;
  letter-spacing: 1.2px;
  color: #B20030;
  margin-bottom: 0.625rem;
}
.promo_50_50.white-theme .promo_50_50_wrap .content_part h2 {
  margin-bottom: 0.75rem;
}
@media (max-width: 767px) {
  .promo_50_50.white-theme .promo_50_50_wrap .content_part h2 {
    font-size: 1.875rem;
    line-height: 1.16;
  }
}
.promo_50_50.white-theme .promo_50_50_wrap .content_part p {
  color: #727272;
}

.promo_50_50.white-theme.red-full-bg h2,
.promo_50_50.white-theme.red-full-bg .promo_50_50_wrap .content_part p {
  color: #fff;
}
.promo_50_50.white-theme.red-full-bg .promo_50_50_wrap .content_part {
  padding-bottom: 60px;
}
.promo_50_50.white-theme.red-full-bg .btn {
  min-width: 200px;
}
@media (max-width: 767px) {
  .promo_50_50.white-theme .promo_50_50_wrap .content_part p {
    margin-right: 0.75rem;
  }
}
.promo_50_50.white-theme .promo_50_50_wrap .content_part a.btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .promo_50_50.white-theme .promo_50_50_wrap .content_part a.btn {
    margin-top: 0.6875rem;
  }
  .promo_50_50.white-theme.red-full-bg {
    padding-top: 0;
  }
  .promo_50_50.white-theme.red-full-bg .promo_50_50_wrap .content_part {
    padding-bottom: 50px;
  }
  .promo_50_50.white-theme.red-full-bg .promo_50_50_wrap .image_part figure {
    border-bottom-left-radius: 5.25rem;
    margin-bottom: 0;
  }
}
.promo_50_50.red-theme {
  position: relative;
}
.promo_50_50.red-theme.txt-right .image_part {
  left: 0;
}
.promo_50_50.red-theme.txt-right .content_part {
  margin-left: auto;
  padding-left: 4.375rem;
  border-bottom-left-radius: 6.25rem;
  overflow: hidden;
  padding-right: calc((100% - 79.375rem) / 2);
}
.promo_50_50.red-theme.txt-right .content_part > div {
  padding-right: 3.125rem;
}
@media (max-width: 991px) {
  .promo_50_50.red-theme.txt-right .content_part > div {
    padding-right: 1.25rem;
  }
}
@media (max-width: 1399px) {
  .promo_50_50.red-theme.txt-right .content_part {
    padding-left: 2.5rem;
  }
}
@media (max-width: 767px) {
  .promo_50_50.red-theme.txt-right .content_part {
    padding-left: 1.25rem;
  }
}
.promo_50_50.red-theme.txt-left .image_part {
  right: 0;
}
.promo_50_50.red-theme.txt-left .content_part {
  margin-left: 0;
  padding-right: 4.375rem;
  border-bottom-right-radius: 6.25rem;
  overflow: hidden;
  padding-left: calc((100% - 79.375rem) / 2);
}
.promo_50_50.red-theme.txt-left .content_part > div {
  padding-left: 3.125rem;
}
@media (max-width: 991px) {
  .promo_50_50.red-theme.txt-left .content_part > div {
    padding-left: 1.25rem;
  }
}
@media (max-width: 1399px) {
  .promo_50_50.red-theme.txt-left .content_part {
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .promo_50_50.red-theme.txt-left .content_part {
    padding-right: 1.25rem;
  }
}
.promo_50_50.red-theme .image_part {
  position: absolute;
  top: -3.5rem;
  width: calc(50% + 15px);
  height: 100%;
}
@media (max-width: 1199px) {
  .promo_50_50.red-theme .image_part {
    padding: 0 0.9375rem;
  }
}
@media (max-width: 767px) {
  .promo_50_50.red-theme .image_part {
    position: relative;
    padding: 0;
    width: 100%;
    top: auto;
  }
}
.promo_50_50.red-theme .image_part figure {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.promo_50_50.red-theme .image_part figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .promo_50_50.red-theme .image_part figure {
    position: relative;
  }
}
.promo_50_50.red-theme .image_part figure .video-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .promo_50_50.red-theme .image_part figure img {
    position: relative;
  }
}
.promo_50_50.red-theme .content_part {
  position: relative;
  width: 50%;
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
  z-index: 1;
}
@media (max-width: 1199px) {
  .promo_50_50.red-theme .content_part {
    width: 55%;
  }
}
@media (max-width: 767px) {
  .promo_50_50.red-theme .content_part {
    width: 100%;
  }
}
.promo_50_50.red-theme .content_part .eyebrow_text {
  display: inline-block;
  padding: 0 0.8125rem 0.25rem;
  margin-bottom: 1.25rem;
  color: #FBF9DF;
  font-size: 15px;
  border-radius: 13px;
  font-weight: 700;
  background-color: #17064A;
}
.promo_50_50.red-theme .content_part h2 {
  margin-bottom: 0.75rem;
}
@media (max-width: 767px) {
  .promo_50_50.red-theme .content_part h2 {
    font-size: 1.875rem;
    line-height: 1.16;
  }
}
@media (max-width: 767px) {
  .promo_50_50.red-theme .content_part p {
    margin-right: 0.75rem;
  }
}
.promo_50_50.red-theme .content_part a.btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .promo_50_50.red-theme .content_part a.btn {
    margin-top: 0.6875rem;
  }
}

.featured_jobs {
  margin: 7.5rem 0;
}
@media (max-width: 1199px) {
  .featured_jobs {
    margin: 6.25rem 0;
  }
}
@media (max-width: 767px) {
  .featured_jobs {
    margin: 3.125rem 0;
  }
}
.featured_jobs .feature-heading {
  align-items: flex-end;
}
.featured_jobs .feature-heading .h2 {
  margin: 0px 4.0625rem 0px 0px;
}
@media (max-width: 991px) {
  .featured_jobs .feature-heading .h2 {
    font-size: 1.5625rem;
  }
}
.featured_jobs .featuredlist {
  margin-top: 2.5rem;
}
@media (max-width: 991px) {
  .featured_jobs .featuredlist {
    margin-top: 1.5625rem;
  }
}
.featured_jobs .featuredlist .feature-grid-wrap {
  display: block;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
  margin-bottom: 1.875rem;
}
.featured_jobs .featuredlist .feature-grid-wrap .featured-icon {
  position: relative;
  display: block;
  overflow: hidden;
  transition: all 0.3s;
}
.featured_jobs .featuredlist .feature-grid-wrap .featured-icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured_jobs .featuredlist .feature-grid-wrap .featured-icon:before {
  display: block;
  padding-top: 40.9574468085%;
  content: "";
}
.featured_jobs .featuredlist .feature-grid-wrap .featured-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured_jobs .featuredlist .feature-grid-wrap .job-info {
  background-color: #B20030;
  padding: 1.5625rem;
}
.featured_jobs .featuredlist .feature-grid-wrap .job-info .location {
  color: #FBF9DF;
  font-family: "Manrope", "Arial", sans-serif;
  font-size: 1rem;
}
.featured_jobs .featuredlist .feature-grid-wrap .job-info .h4 {
  margin-top: 0.9375rem;
  font-size: 1.875rem;
  color: #FBF9DF;
  font-family: "Manrope", "Arial", sans-serif;
}
@media (max-width: 991px) {
  .featured_jobs .featuredlist .feature-grid-wrap .job-info .h4 {
    font-size: 1.25rem;
  }
}
.featured_jobs .featuredlist .feature-grid-wrap .job-info .btn-link, .featured_jobs .featuredlist .feature-grid-wrap .job-info #mobilenav ul.button-link a, #mobilenav ul.button-link .featured_jobs .featuredlist .feature-grid-wrap .job-info a,
.featured_jobs .featuredlist .feature-grid-wrap .job-info #mobilenav li.button-link a,
#mobilenav li.button-link .featured_jobs .featuredlist .feature-grid-wrap .job-info a, .featured_jobs .featuredlist .feature-grid-wrap .job-info .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a, .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link .featured_jobs .featuredlist .feature-grid-wrap .job-info a {
  color: #ffffff;
  font-weight: 700;
  font-family: "Manrope", "Arial", sans-serif;
  font-size: 1rem;
  margin-top: 1rem;
}
.featured_jobs .featuredlist .feature-grid-wrap .feature-label {
  position: absolute;
  top: 1.5625rem;
  left: 1.5625rem;
  background-color: #B20030;
  display: inline-block;
  padding: 0.25rem 0.625rem 0.1875rem 0.625rem;
  color: #ffffff;
  border-radius: 11px;
  font-size: 0.625rem;
  letter-spacing: 0.0625rem;
  font-family: "Manrope", "Arial", sans-serif;
  font-weight: 700;
}

.featured_media_promo {
  margin: 7.5rem 0;
}
@media (max-width: 1199px) {
  .featured_media_promo {
    margin: 6.25rem 0;
  }
}
@media (max-width: 767px) {
  .featured_media_promo {
    margin: 3.125rem 0;
  }
}
.featured_media_promo .feature-heading {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .featured_media_promo .feature-heading {
    flex-wrap: wrap;
  }
}
.featured_media_promo .feature-heading .h2 {
  margin: 0px 4.0625rem 0px 0px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .featured_media_promo .feature-heading .h2 {
    width: 100%;
    margin: 0 0 0.625rem 0;
  }
}
@media (max-width: 991px) {
  .featured_media_promo .feature-heading .h2 {
    font-size: 1.5625rem;
  }
}
.featured_media_promo .feature-heading .btn-link, .featured_media_promo .feature-heading #mobilenav ul.button-link a, #mobilenav ul.button-link .featured_media_promo .feature-heading a,
.featured_media_promo .feature-heading #mobilenav li.button-link a,
#mobilenav li.button-link .featured_media_promo .feature-heading a, .featured_media_promo .feature-heading .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a, .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link .featured_media_promo .feature-heading a {
  flex: 0 0 auto;
}
.featured_media_promo .relatedlist {
  margin-top: 3.4375rem;
}
@media (max-width: 991px) {
  .featured_media_promo .relatedlist {
    margin-top: 2.5rem;
  }
}
.featured_media_promo .relatedlist .feature-grid-wrap {
  display: block;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
  margin-bottom: 1.875rem;
}
.featured_media_promo .relatedlist .feature-grid-wrap .featured-icon {
  position: relative;
  display: block;
  overflow: hidden;
  transition: all 0.3s;
}
.featured_media_promo .relatedlist .feature-grid-wrap .featured-icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured_media_promo .relatedlist .feature-grid-wrap .featured-icon:before {
  display: block;
  padding-top: 66.4835164835%;
  content: "";
}
.featured_media_promo .relatedlist .feature-grid-wrap .featured-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured_media_promo .relatedlist .feature-grid-wrap .featured-icon:after {
  content: "";
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.featured_media_promo .relatedlist .feature-grid-wrap .h4 {
  margin-top: 1.25rem;
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .featured_media_promo .relatedlist .feature-grid-wrap .h4 {
    margin-top: 0.9375rem;
    font-size: 1rem;
  }
}
.featured_media_promo .relatedlist .feature-grid-wrap .feature-label {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background-color: #B20030;
  display: inline-block;
  padding: 0.25rem 0.625rem 0.1875rem 0.625rem;
  color: #ffffff;
  border-radius: 11px;
  font-size: 0.625rem;
  letter-spacing: 0.0625rem;
  font-family: "Helvetica", "Arial", sans-serif;
  font-weight: 700;
}
.featured_media_promo .relatedlist .feature-grid-wrap:hover .featured-icon {
  border-bottom-right-radius: 6.25rem;
}
.featured_media_promo .relatedlist .feature-grid-wrap:hover .featured-icon:after {
  background-color: rgba(255, 103, 24, 0.5);
}
.featured_media_promo .relatedlist .feature-grid-wrap:hover .h4 {
  color: #B20030;
}

.featured_text {
  margin: 6.25rem 0;
}
@media (max-width: 1199px) {
  .featured_text {
    margin: 5rem 0;
  }
}
@media (max-width: 767px) {
  .featured_text {
    margin: 3.125rem 0;
  }
}
.featured_text .ft_heading {
  text-align: center;
  max-width: 50rem;
  margin: auto;
}
.featured_text .ft_box {
  margin-top: 5.625rem;
  display: block;
  text-decoration: none;
  color: #17064A;
}
@media (max-width: 575px) {
  .featured_text .ft_box {
    margin-top: 3.4375rem;
  }
}
@media (max-width: 575px) {
  .featured_text .ft_box {
    text-align: center;
  }
}
.featured_text .ft_box h5 {
  font-size: 1.25rem;
}
.featured_text .ft_box.haslink:hover .h5,
.featured_text .ft_box.haslink:hover h5 {
  text-decoration: underline;
}
.featured_text .ft_icon {
  min-height: 3.875rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 575px) {
  .featured_text .ft_icon {
    justify-content: center;
  }
}
.featured_text .ft_icon img {
  max-height: 3.875rem;
}

.features-overview {
  margin: 7.5rem 0;
}
@media (max-width: 1199px) {
  .features-overview {
    margin: 6.25rem 0;
  }
}
@media (max-width: 767px) {
  .features-overview {
    margin: 3.125rem 0;
  }
}
.features-overview .section-heading {
  display: flex;
  align-items: flex-end;
  margin-bottom: 3rem;
  padding-right: 0.9375rem;
}
@media (max-width: 767px) {
  .features-overview .section-heading {
    justify-content: space-between;
    margin-bottom: 1.5625rem;
  }
}
.features-overview .section-heading h2 {
  margin-bottom: 0;
}
.features-overview .section-heading .btn-link, .features-overview .section-heading #mobilenav ul.button-link a, #mobilenav ul.button-link .features-overview .section-heading a,
.features-overview .section-heading #mobilenav li.button-link a,
#mobilenav li.button-link .features-overview .section-heading a, .features-overview .section-heading .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a, .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link .features-overview .section-heading a {
  flex: 0 0 auto;
  margin-left: 1.875rem;
}
.features-overview-wrap {
  display: flex;
  flex-wrap: wrap;
}
.features-overview .single-feature {
  width: 25%;
  border-right: 1px solid #DBDBDB;
  min-height: 32.125rem;
  padding: 0.625rem 0.9375rem 0.3125rem;
}
@media (max-width: 991px) {
  .features-overview .single-feature {
    min-height: 25rem;
  }
}
@media (max-width: 767px) {
  .features-overview .single-feature {
    padding: 1.875rem 1.0625rem;
    width: 50%;
    min-height: auto;
    padding: 0 0.9375rem;
  }
}
@media (max-width: 575px) {
  .features-overview .single-feature {
    width: 100%;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid #DBDBDB;
    padding: 25px 0;
  }
}
.features-overview .single-feature:first-child {
  border-left: 1px solid #DBDBDB;
}
@media (max-width: 575px) {
  .features-overview .single-feature:first-child {
    border-top: 1px solid #DBDBDB;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .features-overview .single-feature:nth-child(4n+3) {
    border-left: 1px solid #DBDBDB;
  }
}
.features-overview .single-feature-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s;
  text-decoration: none;
}
@media (max-width: 767px) {
  .features-overview .single-feature-wrap {
    flex-direction: row;
    padding: 1.875rem 0.9375rem;
    min-height: 10.3125rem;
  }
}
.features-overview .single-feature-wrap .feature-icon {
  margin-bottom: 1.5625rem;
  position: relative;
  max-width: 4rem;
}
@media (max-width: 767px) {
  .features-overview .single-feature-wrap .feature-icon {
    max-width: 3.5rem;
    margin-bottom: 0;
  }
}
.features-overview .single-feature-wrap .feature-icon img {
  transition: all 0.5s;
}
.features-overview .single-feature-wrap .feature-icon .hover-icon {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .features-overview .single-feature-wrap .feature-desc {
    max-width: calc(100% - 56px);
    padding-left: 1.5625rem;
    text-align: left;
  }
}
.features-overview .single-feature-wrap h3 {
  margin-bottom: 1.5625rem;
}
@media (max-width: 991px) {
  .features-overview .single-feature-wrap h3 {
    font-size: 1.5625rem;
  }
}
@media (max-width: 767px) {
  .features-overview .single-feature-wrap h3 {
    margin-bottom: 0.125rem;
  }
}
.features-overview .single-feature-wrap .link-text .btn-link, .features-overview .single-feature-wrap .link-text #mobilenav ul.button-link a, #mobilenav ul.button-link .features-overview .single-feature-wrap .link-text a,
.features-overview .single-feature-wrap .link-text #mobilenav li.button-link a,
#mobilenav li.button-link .features-overview .single-feature-wrap .link-text a, .features-overview .single-feature-wrap .link-text .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a, .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link .features-overview .single-feature-wrap .link-text a {
  font-size: 0.875rem;
  font-weight: 800;
  transition: 0.4s;
}
.features-overview .single-feature-wrap:hover {
  background: #FF6718;
  border-bottom-right-radius: 6.25rem;
}
.features-overview .single-feature-wrap:hover .feature-icon img {
  opacity: 0;
}
.features-overview .single-feature-wrap:hover .feature-icon img.hover-icon {
  opacity: 1;
}
.features-overview .single-feature-wrap:hover h3 {
  color: #FBF9DF;
}
.features-overview .single-feature-wrap:hover .btn-link, .features-overview .single-feature-wrap:hover #mobilenav ul.button-link a, #mobilenav ul.button-link .features-overview .single-feature-wrap:hover a,
.features-overview .single-feature-wrap:hover #mobilenav li.button-link a,
#mobilenav li.button-link .features-overview .single-feature-wrap:hover a, .features-overview .single-feature-wrap:hover .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a, .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link .features-overview .single-feature-wrap:hover a {
  color: #ffffff;
}
.features-overview .single-feature-wrap:hover .btn-link:after, .features-overview .single-feature-wrap:hover #mobilenav ul.button-link a:after, #mobilenav ul.button-link .features-overview .single-feature-wrap:hover a:after,
.features-overview .single-feature-wrap:hover #mobilenav li.button-link a:after,
#mobilenav li.button-link .features-overview .single-feature-wrap:hover a:after, .features-overview .single-feature-wrap:hover .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a:after, .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link .features-overview .single-feature-wrap:hover a:after {
  transform: translateX(0);
  color: #ffffff;
}

.contact-us {
  margin: 5.5rem 0;
}
@media (max-width: 991px) {
  .contact-us {
    margin: 3.4375rem 0;
  }
}
.contact-us .cu-wrap {
  max-width: 1047px;
  margin: 0 auto;
  overflow: hidden;
}
.contact-us .cu-wrap-in {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -1.25rem;
}
.contact-us .cu-content {
  width: 50%;
  max-width: 29.5rem;
  padding: 0 1.25rem;
}
@media (max-width: 991px) {
  .contact-us .cu-content {
    width: 100%;
    max-width: 100%;
  }
}
.contact-us .cu-content h2 {
  margin-bottom: 1.6875rem;
}
.contact-us .cu-content .btn-icon:not(:last-child) {
  margin-top: 1rem;
}
.contact-us .cu-content .has-icon {
  position: relative;
  display: inline-block;
  padding-left: 2.3125rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}
.contact-us .cu-content .has-icon:hover {
  color: #FF6718;
}
.contact-us .cu-content .has-icon:before {
  position: absolute;
  top: 3px;
  left: 0;
}
.contact-us .cu-content .social-links {
  margin-top: 1.6875rem;
}
.contact-us .cu-content .social-links a {
  color: #17064A;
}
.contact-us .cu-content .social-links a:hover {
  color: #FF6718;
}
.contact-us .cu-form {
  width: 50%;
  max-width: 31.4375rem;
  padding: 0 1.25rem;
}
@media (max-width: 991px) {
  .contact-us .cu-form {
    width: 100%;
    max-width: 100%;
    margin-top: 3.75rem;
  }
}

.full-width-cta.gray-style {
  padding: 6.25rem 0;
  background-color: #F2F2F2;
}
@media (max-width: 991px) {
  .full-width-cta.gray-style {
    padding: 4.375rem 0 0;
  }
}
@media (max-width: 991px) {
  .full-width-cta.gray-style .fwc-wrapper {
    padding: 0 0 4.375rem;
  }
}
.full-width-cta.red-style {
  padding: 7.5rem 0 8.125rem;
  color: #FBF9DF;
  background-color: #B20030;
  background-image: url("../../images/full-width-cta.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 991px) {
  .full-width-cta.red-style {
    padding: 0 0 4.375rem;
  }
}
@media (max-width: 767px) {
  .full-width-cta.red-style {
    background-image: none;
  }
}
@media (max-width: 991px) {
  .full-width-cta.red-style .fwc-wrapper {
    padding: 4.375rem 0 0;
  }
}
.full-width-cta.left-style {
  position: relative;
  color: #FBF9DF;
  background-color: #B20030;
  padding: 2.1875rem 0;
}
@media (max-width: 991px) {
  .full-width-cta.left-style {
    padding-bottom: 0;
  }
}
.full-width-cta.left-style:after {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: calc((100% - 857px) / 2);
  content: "";
  background-color: #17064A;
  background-image: url("../../images/full-width-cta-2.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1399px) {
  .full-width-cta.left-style:after {
    width: calc((100% - 720px) / 2);
  }
}
@media (max-width: 1199px) {
  .full-width-cta.left-style:after {
    width: calc((100% - 500px) / 2);
  }
}
@media (max-width: 991px) {
  .full-width-cta.left-style:after {
    position: relative;
    display: block;
    width: 100%;
    height: 5.9375rem;
    background-position: top 25% center;
  }
}
.full-width-cta.left-style .fwc-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 70%;
  max-width: 53.5625rem;
  z-index: 1;
}
@media (max-width: 991px) {
  .full-width-cta.left-style .fwc-wrapper {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    margin-bottom: 2.8125rem;
    text-align: center;
  }
}
.full-width-cta.left-style .fwc-wrapper .content-part {
  flex: 1 1 auto;
}
.full-width-cta.left-style .fwc-wrapper .btn-part {
  margin: 0 0 0 1.875rem;
  flex: 0 0 auto;
}
@media (max-width: 991px) {
  .full-width-cta.left-style .fwc-wrapper .btn-part {
    margin: 1.875rem 0 0 0;
  }
}
.full-width-cta h2 {
  color: currentcolor;
}
@media (max-width: 991px) {
  .full-width-cta h2 {
    font-size: 1.375rem;
  }
}
.full-width-cta p {
  font-size: 1.125rem;
}
.full-width-cta .btn-part {
  margin-top: 1.25rem;
}
@media (max-width: 991px) {
  .full-width-cta .btn-part {
    margin-top: 2.1875rem;
  }
}

.high_level_text {
  margin: 7.5rem 0;
}
@media (max-width: 1199px) {
  .high_level_text {
    margin: 6.25rem 0;
  }
}
@media (max-width: 767px) {
  .high_level_text {
    margin: 2.75rem 0 3.25rem;
  }
}
.high_level_text .high_level_text_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.high_level_text .high_level_text_wrap .heading_wrap {
  width: 60%;
}
@media (max-width: 1199px) {
  .high_level_text .high_level_text_wrap .heading_wrap {
    padding-left: 0px;
  }
}
@media (max-width: 767px) {
  .high_level_text .high_level_text_wrap .heading_wrap {
    width: 100%;
    text-align: center;
  }
}
.high_level_text .high_level_text_wrap .heading_wrap h2 {
  font-weight: 300;
  margin-bottom: 0;
}
.high_level_text .high_level_text_wrap .heading_wrap h2 span {
  font-weight: 700;
}
@media (max-width: 767px) {
  .high_level_text .high_level_text_wrap .heading_wrap h2 {
    margin-bottom: 2.625rem;
  }
}
.high_level_text .high_level_text_wrap .button_wrap {
  padding-right: 4.5625rem;
}
@media (max-width: 1199px) {
  .high_level_text .high_level_text_wrap .button_wrap {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .high_level_text .high_level_text_wrap .button_wrap {
    width: 100%;
    text-align: center;
  }
}
.high_level_text .high_level_text_wrap.primary.secondary_theme {
  display: none;
}
.high_level_text .high_level_text_wrap.secondary.primary_theme {
  display: none;
}
.high_level_text .high_level_text_wrap.secondary .heading_wrap {
  width: 41%;
}
@media (max-width: 991px) {
  .high_level_text .high_level_text_wrap.secondary .heading_wrap {
    width: 100%;
    text-align: left;
  }
}
.high_level_text .high_level_text_wrap.secondary .heading_wrap h2 {
  font-weight: 800;
  margin-bottom: 50px;
}
.high_level_text .high_level_text_wrap.secondary .heading_wrap h2:empty {
  display: none;
}
@media (max-width: 991px) {
  .high_level_text .high_level_text_wrap.secondary .heading_wrap h2 {
    margin-bottom: 18px;
  }
}
@media (max-width: 991px) {
  .high_level_text .high_level_text_wrap.secondary .heading_wrap a.btn {
    display: none;
  }
}
.high_level_text .high_level_text_wrap.secondary .heading_seconadr_wrap {
  width: 59%;
  padding-left: 3.125rem;
}
@media (max-width: 991px) {
  .high_level_text .high_level_text_wrap.secondary .heading_seconadr_wrap {
    width: 100%;
    padding-left: 0;
  }
}
.high_level_text .high_level_text_wrap.secondary .heading_seconadr_wrap h2 {
  font-weight: 300;
}
.high_level_text .high_level_text_wrap.secondary .heading_seconadr_wrap h2:empty {
  display: none;
}
@media (max-width: 767px) {
  .high_level_text .high_level_text_wrap.secondary .heading_seconadr_wrap h2 {
    font-size: 20px;
    margin-bottom: 45px;
  }
}
.high_level_text .high_level_text_wrap.secondary .button_wrap {
  display: none;
}
@media (max-width: 991px) {
  .high_level_text .high_level_text_wrap.secondary .button_wrap {
    text-align: left;
    display: block;
  }
}

.in_line_listing_promo {
  margin: 3.125rem 0;
}
@media (max-width: 991px) {
  .in_line_listing_promo .container {
    padding: 0px;
  }
}
.in_line_listing_promo .testi-wrapper {
  position: relative;
  max-width: 54.0625rem;
  background-color: #B20030;
  margin: auto;
}
@media (max-width: 991px) {
  .in_line_listing_promo .testi-wrapper {
    max-width: 100%;
  }
}
.in_line_listing_promo .testi-wrapper .testi-inner {
  max-width: 43.75rem;
  display: flex;
}
@media (max-width: 991px) {
  .in_line_listing_promo .testi-wrapper .testi-inner {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}
.in_line_listing_promo .testi-wrapper .testi-inner .image-part {
  position: relative;
  flex: 0 0 285px;
  overflow: hidden;
}
.in_line_listing_promo .testi-wrapper .testi-inner .image-part img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .in_line_listing_promo .testi-wrapper .testi-inner .image-part {
    display: none;
  }
}
.in_line_listing_promo .testi-wrapper .testi-inner .content-part {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 3.125rem;
  flex: 1 1 auto;
  padding: 1.875rem 0px;
}
@media (max-width: 991px) {
  .in_line_listing_promo .testi-wrapper .testi-inner .content-part {
    margin: 0;
    padding: 1.875rem 1.25rem;
  }
}
.in_line_listing_promo .testi-wrapper .testi-inner .content-part h3 {
  font-size: 1.5625rem;
  color: #FBF9DF;
}
.in_line_listing_promo .testi-wrapper .testi-inner .content-part p {
  font-weight: 300;
  font-size: 0.875rem;
  color: #FBF9DF;
}
.in_line_listing_promo .testi-wrapper .testi-inner .content-part .btn {
  margin-top: 0.625rem;
}
@media (max-width: 991px) {
  .in_line_listing_promo .testi-wrapper .testi-inner .content-part .btn {
    margin-top: 1.25rem;
  }
}
.in_line_listing_promo .testi-wrapper .testi-inner:after {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: calc((100% - 638px) / 2);
  content: "";
  background-color: #17064A;
  background-image: url("../../images/testimonial-shape.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 991px) {
  .in_line_listing_promo .testi-wrapper .testi-inner:after {
    position: relative;
    display: block;
    width: 100%;
    height: 7.75rem;
    background-position: top 25% center;
    background-image: url("../../images/testimonial-mshape.svg");
  }
}

.map {
  position: relative;
}
.map:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(255, 103, 24, 0.3);
  pointer-events: none;
}
.map-desc {
  position: absolute;
  padding-top: 30px;
  padding-right: 36px;
  padding-bottom: 40px;
  color: #FBF9DF;
  background-color: #17064A;
  border-bottom-right-radius: 6.25rem;
  overflow: hidden;
  padding-left: calc((100% - 79.375rem) / 2);
  z-index: 1;
}
.map-desc > div {
  padding-left: 3.125rem;
}
@media (max-width: 991px) {
  .map-desc > div {
    padding-left: 1.25rem;
  }
}
@media (max-width: 991px) {
  .map-desc {
    position: relative;
  }
}
.map-desc h2 {
  margin-bottom: 0;
  color: currentcolor;
}
.map-desc p {
  font-size: 1.25rem;
}
.map-desc a {
  color: currentcolor;
  text-decoration: none;
}
.map-desc a:hover {
  color: #FF6718;
}
.map-img {
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  .map-img {
    height: 500px;
    margin-top: -5.625rem;
  }
}
@media (max-width: 575px) {
  .map-img {
    height: 300px;
  }
}
.map-img .map-link {
  display: block;
}
@media (max-width: 991px) {
  .map-img .map-link {
    height: 500px;
    margin-top: -5.625rem;
  }
}
@media (max-width: 575px) {
  .map-img .map-link {
    height: 300px;
  }
}
.map-img img {
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  .map-img img {
    height: 100%;
    object-fit: cover;
  }
}

.mission_vision_promo {
  margin: 7.5rem 0;
}
@media (max-width: 1199px) {
  .mission_vision_promo {
    margin: 6.25rem 0;
  }
}
@media (max-width: 767px) {
  .mission_vision_promo {
    margin: 3.125rem 0;
  }
}
.mission_vision_promo.has-animation {
  position: relative;
}
.mission_vision_promo.has-animation .mission-left {
  transform: translateY(15%);
  opacity: 0;
  transition: 0.8s ease-out;
}
.mission_vision_promo.has-animation .image-left {
  transform: translateY(20%);
  opacity: 0;
  transition: 0.8s ease-out;
}
.mission_vision_promo.has-animation .image-right {
  transform: translateX(17%);
  opacity: 0;
  transition: 0.8s ease-out;
}
.mission_vision_promo.has-animation.animate .mission-left,
.mission_vision_promo.has-animation.animate .image-left {
  opacity: 1;
  transform: translateY(0);
}
.mission_vision_promo.has-animation.animate .image-right {
  opacity: 1;
  transform: translateX(0);
}
.mission_vision_promo .h2 {
  max-width: 73.125rem;
  margin: 0px auto 4.6875rem auto;
}
.mission_vision_promo .mission-inner {
  background-color: #B20030;
  position: relative;
}
.mission_vision_promo .mission-inner .d-flex {
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.mission_vision_promo .mission-inner .d-flex .mission-left {
  max-width: 28.125rem;
  padding: 3.5rem 0;
}
@media (max-width: 1199px) {
  .mission_vision_promo .mission-inner .d-flex .mission-left {
    max-width: 18.75rem;
  }
}
@media (max-width: 991px) {
  .mission_vision_promo .mission-inner .d-flex .mission-left {
    order: 2;
    max-width: 100%;
    padding: 2.1875rem 0 3.125rem 0;
  }
}
.mission_vision_promo .mission-inner .d-flex .mission-left ul li {
  color: #ffffff;
}
.mission_vision_promo .mission-inner .d-flex .mission-left h3 {
  font-weight: 700;
  font-size: 1.9375rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .mission_vision_promo .mission-inner .d-flex .mission-left h3 {
    font-size: 1.375rem;
  }
}
.mission_vision_promo .mission-inner .d-flex .mission-left p {
  font-size: 1.25rem;
  color: #ffffff;
}
@media (max-width: 767px) {
  .mission_vision_promo .mission-inner .d-flex .mission-left p {
    font-size: 1.125rem;
  }
}
.mission_vision_promo .mission-inner .d-flex .mission-left .btn-link, .mission_vision_promo .mission-inner .d-flex .mission-left #mobilenav ul.button-link a, #mobilenav ul.button-link .mission_vision_promo .mission-inner .d-flex .mission-left a,
.mission_vision_promo .mission-inner .d-flex .mission-left #mobilenav li.button-link a,
#mobilenav li.button-link .mission_vision_promo .mission-inner .d-flex .mission-left a, .mission_vision_promo .mission-inner .d-flex .mission-left .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a, .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link .mission_vision_promo .mission-inner .d-flex .mission-left a {
  color: #ffffff;
  margin-top: 1.25rem;
  display: inline-block;
}
.mission_vision_promo .mission-inner .d-flex .mission-left .btn-link:hover, .mission_vision_promo .mission-inner .d-flex .mission-left #mobilenav ul.button-link a:hover, #mobilenav ul.button-link .mission_vision_promo .mission-inner .d-flex .mission-left a:hover,
.mission_vision_promo .mission-inner .d-flex .mission-left #mobilenav li.button-link a:hover,
#mobilenav li.button-link .mission_vision_promo .mission-inner .d-flex .mission-left a:hover, .mission_vision_promo .mission-inner .d-flex .mission-left .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a:hover, .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link .mission_vision_promo .mission-inner .d-flex .mission-left a:hover {
  color: #17064A;
}
.mission_vision_promo .mission-inner .d-flex .mission-right {
  width: calc(100% - 440px);
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-right: -70px;
}
@media (max-width: 1399px) {
  .mission_vision_promo .mission-inner .d-flex .mission-right {
    margin-right: -30px;
  }
}
@media (max-width: 1199px) {
  .mission_vision_promo .mission-inner .d-flex .mission-right {
    width: calc(100% - 300px);
  }
}
@media (max-width: 991px) {
  .mission_vision_promo .mission-inner .d-flex .mission-right {
    order: 1;
    width: 100%;
    margin-right: 0px;
  }
}
.mission_vision_promo .mission-inner .d-flex .mission-right .image-left {
  width: 48%;
  margin-top: -40px;
}
.mission_vision_promo .mission-inner .d-flex .mission-right .image-right {
  align-self: flex-end;
  margin-bottom: -40px;
  width: 48%;
}
@media (max-width: 991px) {
  .mission_vision_promo .mission-inner .d-flex .mission-right .image-right {
    margin-bottom: 0px;
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .mission_vision_promo .mission-inner .d-flex .mission-right .image-right {
    margin-top: 40px;
  }
}
.mission_vision_promo .mission-inner .d-flex .mission-right figure {
  position: relative;
  display: block;
  border-bottom-right-radius: 6.25rem;
  overflow: hidden;
}
.mission_vision_promo .mission-inner .d-flex .mission-right figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mission_vision_promo .mission-inner .d-flex .mission-right figure:before {
  display: block;
  padding-top: 108.5164835165%;
  content: "";
}
.mission_vision_promo .mission-inner .d-flex .mission-right figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mission_vision_promo .mission-inner .mission-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mission_vision_promo .mission-inner .mission-shape:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../../../assets/images/mission-shape.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .mission_vision_promo .mission-inner .mission-shape:before {
    content: none;
  }
}
.mission_vision_promo .mission-inner .mission-shape:after {
  display: none;
  content: url(../../../assets/images/mission-mshape.svg);
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 991px) {
  .mission_vision_promo .mission-inner .mission-shape:after {
    display: block;
  }
}

.statistic_image_promo {
  margin: 7.5rem 0;
}
@media (max-width: 1199px) {
  .statistic_image_promo {
    margin: 6.25rem 0;
  }
}
@media (max-width: 767px) {
  .statistic_image_promo {
    margin: 3.125rem 0;
  }
}
@media (max-width: 991px) {
  .statistic_image_promo .container {
    padding: 0px;
  }
}
.statistic_image_promo .stat-left-inner {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: 100%;
  align-items: flex-end;
}
@media (max-width: 991px) {
  .statistic_image_promo .stat-left-inner {
    align-items: center;
    margin-bottom: 1.25rem;
  }
}
.statistic_image_promo .stat-left-inner span {
  font-family: "Manrope", "Arial", sans-serif;
  font-size: 4.5rem;
  color: #B20030;
  font-weight: 800;
}
@media (max-width: 1199px) {
  .statistic_image_promo .stat-left-inner span {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .statistic_image_promo .stat-left-inner span {
    font-size: 3.125rem;
  }
}
@media (max-width: 575px) {
  .statistic_image_promo .stat-left-inner span {
    font-size: 1.875rem;
  }
}
.statistic_image_promo .stat-left-inner p {
  font-size: 1.25rem;
}
@media (max-width: 1199px) {
  .statistic_image_promo .stat-left-inner p {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .statistic_image_promo .stat-left-inner p {
    font-size: 1.125rem;
  }
}
@media (max-width: 575px) {
  .statistic_image_promo .stat-left-inner p {
    font-size: 1rem;
  }
}
.statistic_image_promo .stat-left-inner .stat-info {
  margin-bottom: 1.25rem;
  max-width: 18.75rem;
}
@media (max-width: 991px) {
  .statistic_image_promo .stat-left-inner .stat-info {
    max-width: 50%;
    width: 50%;
    padding: 0px 1.875rem;
    margin-bottom: 0px;
    order: 2;
  }
}
@media (max-width: 767px) {
  .statistic_image_promo .stat-left-inner .stat-info {
    padding: 0px 0.9375rem;
  }
}
.statistic_image_promo .stat-left-inner .stat-info.stat-second span, .statistic_image_promo .stat-left-inner .stat-info.stat-second p {
  color: #FF6718;
}
.statistic_image_promo .stat-left-inner .stat-info.stat-third span, .statistic_image_promo .stat-left-inner .stat-info.stat-third p {
  color: #17064A;
}
.statistic_image_promo .stat-left-inner .image-left {
  width: 100%;
}
@media (max-width: 991px) {
  .statistic_image_promo .stat-left-inner .image-left {
    width: 50%;
    order: 1;
  }
}
.statistic_image_promo .stat-left-inner .image-left figure {
  position: relative;
  display: block;
  border-bottom-right-radius: 6.25rem;
  overflow: hidden;
}
.statistic_image_promo .stat-left-inner .image-left figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.statistic_image_promo .stat-left-inner .image-left figure:before {
  display: block;
  padding-top: 108.5164835165%;
  content: "";
}
.statistic_image_promo .stat-left-inner .image-left figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .statistic_image_promo .stat-left-inner.stat-middle .stat-info {
    order: 1;
  }
}
@media (max-width: 991px) {
  .statistic_image_promo .stat-left-inner.stat-middle .image-left {
    order: 2;
  }
}

.statistic_testimonial {
  margin: 7.5rem 0;
}
@media (max-width: 1199px) {
  .statistic_testimonial {
    margin: 6.25rem 0;
  }
}
@media (max-width: 767px) {
  .statistic_testimonial {
    margin: 3.125rem 0;
  }
}
.statistic_testimonial.has-animation {
  position: relative;
  overflow: hidden;
}
.statistic_testimonial.has-animation .testi-left {
  transform: translateX(-10%);
  opacity: 0;
  transition: 0.8s ease-out;
}
.statistic_testimonial.has-animation .testi-stat:after {
  opacity: 0;
  width: 0 !important;
  transition: 0.8s ease-out;
}
.statistic_testimonial.has-animation .ts-in {
  position: relative;
  transform: translateY(10%);
  opacity: 0;
  transition: 0.8s ease-out;
  z-index: 1;
}
.statistic_testimonial.has-animation.animate .testi-left {
  opacity: 1;
  transform: translateX(0);
}
.statistic_testimonial.has-animation.animate .ts-in {
  opacity: 1;
  transform: translateY(0);
}
.statistic_testimonial.has-animation.animate .testi-stat:after {
  opacity: 1;
  width: 4rem !important;
}
@media (max-width: 991px) {
  .statistic_testimonial.has-animation.animate .testi-stat:after {
    width: 100% !important;
  }
}
.statistic_testimonial .ft_heading {
  text-align: center;
  max-width: 50rem;
  margin: auto;
}
.statistic_testimonial .ft_heading .h2 {
  font-weight: 800;
}
.statistic_testimonial .ft_heading .btn-link, .statistic_testimonial .ft_heading #mobilenav ul.button-link a, #mobilenav ul.button-link .statistic_testimonial .ft_heading a,
.statistic_testimonial .ft_heading #mobilenav li.button-link a,
#mobilenav li.button-link .statistic_testimonial .ft_heading a, .statistic_testimonial .ft_heading .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link a, .main-header .navigation ul li.mega-menu > .mega-menu-wrap > .mega-menu-inner > .sub-menu .get-start .button-link .statistic_testimonial .ft_heading a {
  font-weight: 400;
}
.statistic_testimonial .testimonial-sect {
  margin-top: 4.375rem;
}
@media (max-width: 767px) {
  .statistic_testimonial .testimonial-sect {
    margin-top: 1.875rem;
  }
}
.statistic_testimonial .testimonial-sect .row {
  justify-content: space-between;
}
@media (max-width: 767px) {
  .statistic_testimonial .testimonial-sect .testi-left {
    text-align: center;
    margin-bottom: 2.1875rem;
  }
}
.statistic_testimonial .testimonial-sect .testi-left h3 {
  font-weight: 800;
  font-size: 1.9375rem;
}
@media (max-width: 991px) {
  .statistic_testimonial .testimonial-sect .testi-left h3 {
    font-size: 1.5625rem;
  }
}
.statistic_testimonial .testimonial-sect .testi-left p {
  font-weight: 300;
  font-size: 1.875rem;
}
@media (max-width: 991px) {
  .statistic_testimonial .testimonial-sect .testi-left p {
    font-size: 1.375rem;
  }
}
.statistic_testimonial .testimonial-sect .testi-left .testimonial-info {
  margin-top: 1.5625rem;
}
.statistic_testimonial .testimonial-sect .testi-left .testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 0.625rem;
}
.statistic_testimonial .testimonial-sect .testi-left .testimonial-info p {
  font-size: 0.875rem;
  font-weight: 300;
}
.statistic_testimonial .testimonial-sect .testi-stat {
  padding-bottom: 1.875rem;
  margin-bottom: 1.375rem;
  position: relative;
}
@media (max-width: 767px) {
  .statistic_testimonial .testimonial-sect .testi-stat {
    display: flex;
    align-items: center;
  }
}
.statistic_testimonial .testimonial-sect .testi-stat h3 {
  margin-bottom: 0.9375rem;
  color: #FF6718;
  font-size: 2.4375rem;
  font-weight: 800;
}
@media (max-width: 991px) {
  .statistic_testimonial .testimonial-sect .testi-stat h3 {
    font-size: 2.1875rem;
    margin-bottom: 0px;
  }
}
.statistic_testimonial .testimonial-sect .testi-stat p {
  font-size: 1rem;
  color: #2F2F2F;
}
@media (max-width: 991px) {
  .statistic_testimonial .testimonial-sect .testi-stat p {
    font-size: 1.25rem;
  }
}
.statistic_testimonial .testimonial-sect .testi-stat:after {
  content: "";
  border-bottom: 1px solid #E9E9E9;
  width: 4rem;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .statistic_testimonial .testimonial-sect .testi-stat:after {
    width: 100%;
  }
}
.statistic_testimonial .testimonial-sect .testi-stat:last-child:after {
  border: none;
  content: none;
}
.statistic_testimonial .testimonial-sect .testi-stat:last-child {
  padding: 0;
  margin: 0;
}
.statistic_testimonial .testimonial-sect .ts-in {
  width: 100%;
}
@media (max-width: 991px) {
  .statistic_testimonial .testimonial-sect .ts-in {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .statistic_testimonial .testimonial-sect .ts-in .title {
    width: 7.1875rem;
  }
}
@media (max-width: 991px) {
  .statistic_testimonial .testimonial-sect .ts-in .label {
    width: calc(100% - 115px);
    padding-left: 0.9375rem;
  }
}

.testimonial {
  position: relative;
  background-color: rgba(233, 233, 233, 0.5);
  padding: 6.25rem 0;
}
@media (max-width: 991px) {
  .testimonial {
    padding-bottom: 0;
  }
}
.testimonial:after {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: calc((100% - 958px) / 2);
  content: "";
  background-color: #17064A;
  background-image: url("../../images/testimonial-shape.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1399px) {
  .testimonial:after {
    width: calc((100% - 810px) / 2);
  }
}
@media (max-width: 1199px) {
  .testimonial:after {
    width: calc((100% - 625px) / 2);
  }
}
@media (max-width: 991px) {
  .testimonial:after {
    position: relative;
    display: block;
    width: 100%;
    height: 7.75rem;
    background-position: top 25% center;
    background-image: url("../../images/testimonial-mshape.svg");
  }
}
.testimonial .testi-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 82%;
  max-width: 59.875rem;
  z-index: 1;
}
@media (max-width: 991px) {
  .testimonial .testi-wrapper {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    margin-bottom: 2.8125rem;
    text-align: center;
  }
}
.testimonial .testi-wrapper .image-part {
  flex: 0 0 265px;
}
.testimonial .testi-wrapper .image-part figure {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 100%;
}
.testimonial .testi-wrapper .image-part figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial .testi-wrapper .image-part figure:before {
  display: block;
  padding-top: 100%;
  content: "";
}
.testimonial .testi-wrapper .image-part figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial .testi-wrapper .content-part {
  margin: 0 0 0 1.875rem;
  flex: 1 1 auto;
  max-width: 640px;
}
.testimonial .testi-wrapper .image-part + .content-part {
  max-width: 100%;
}
@media (max-width: 991px) {
  .testimonial .testi-wrapper .content-part {
    margin: 2.1875rem 0 0 0;
  }
}
.testimonial .testi-wrapper .content-part h3 {
  font-weight: 800;
  font-size: 1.9375rem;
  margin-bottom: 1.5625rem;
}
@media (max-width: 991px) {
  .testimonial .testi-wrapper .content-part h3 {
    font-size: 1.5625rem;
  }
}
.testimonial .testi-wrapper .content-part p {
  font-weight: 300;
  font-size: 1.875rem;
}
@media (max-width: 991px) {
  .testimonial .testi-wrapper .content-part p {
    font-size: 1.375rem;
  }
}
.testimonial .testi-wrapper .content-part .testimonial-info {
  margin-top: 1.5625rem;
}
.testimonial .testi-wrapper .content-part .testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 0.625rem;
}
.testimonial .testi-wrapper .content-part .testimonial-info p {
  font-size: 0.875rem;
  font-weight: 300;
}

.timeline {
  margin-top: 7.5rem;
}
@media (max-width: 1199px) {
  .timeline {
    margin-top: 5.625rem;
  }
}
@media (max-width: 991px) {
  .timeline {
    margin-top: 4.375rem;
  }
}
@media (max-width: 767px) {
  .timeline {
    margin-top: 3.125rem;
  }
}
.timeline .tm-heading {
  margin-bottom: 4.375rem;
}
@media (max-width: 1199px) {
  .timeline .tm-heading {
    margin-bottom: 3.75rem;
  }
}
@media (max-width: 991px) {
  .timeline .tm-heading {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 767px) {
  .timeline .tm-heading {
    margin-bottom: 1.875rem;
  }
}
.timeline .tm-heading h2 {
  margin-bottom: 0;
  text-align: center;
  font-size: 2.4375rem;
}
.timeline .tm-group {
  position: relative;
}
.timeline .tm-box {
  padding: 0 20px;
}
@media (max-width: 767px) {
  .timeline .tm-box {
    padding: 0;
  }
}
.timeline .tm-box.active .tm-wrapper {
  background-color: #F2F2F2;
}
.timeline .tm-box.active .tm-wrapper .circle {
  border: 1px solid #B20030;
}
.timeline .tm-box.active .tm-wrapper .circle:before {
  background-color: #B20030;
}
@media (max-width: 767px) {
  .timeline .tm-box.active .tm-wrapper .tm-date {
    font-weight: 700;
  }
}
.timeline .tm-box.active .tm-wrapper .tm-date:after {
  transform: rotate(90deg) translateY(-10px) translateX(5px);
}
.timeline .tm-box.active .tm-right-normal {
  opacity: 0;
}
.timeline .tm-box.active .tm-right-active {
  opacity: 1;
  visibility: visible;
}
.timeline .tm-wrapper {
  transition: 0.3s;
}
.timeline .tm-block {
  display: flex;
  flex-wrap: wrap;
  min-height: 10.9375rem;
}
@media (max-width: 767px) {
  .timeline .tm-block {
    min-height: auto;
  }
}
.timeline .tm-left {
  position: relative;
  width: 40%;
  display: flex;
  align-items: center;
  padding-right: 35px;
  padding-top: 30px;
  padding-bottom: 30px;
  border-right: 1px solid #FF6718;
}
@media (max-width: 1199px) {
  .timeline .tm-left {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .timeline .tm-left {
    width: calc(100% - 60px);
    padding: 40px 0 30px 30px;
    margin-left: 60px;
    border-right: none;
    border-left: 1px solid #FF6718;
  }
}
.timeline .tm-left .tm-date {
  position: relative;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: #B20030;
}
@media (max-width: 1199px) {
  .timeline .tm-left .tm-date {
    font-size: 4rem;
  }
}
@media (max-width: 767px) {
  .timeline .tm-left .tm-date {
    font-size: 3.125rem;
    padding-right: 35px;
    font-weight: 400;
  }
}
.timeline .tm-left .tm-date:after {
  position: absolute;
  right: 0;
  display: none;
  font-size: 50px;
  content: ">";
  top: 8px;
  line-height: 0.6;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .timeline .tm-left .tm-date:after {
    display: block;
  }
}
.timeline .tm-left .circle {
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  border: 1px solid #FF6718;
  border-radius: 1rem;
  background-color: #ffffff;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .timeline .tm-left .circle {
    left: -9px;
    right: 0;
    top: 60px;
    transform: none;
  }
}
.timeline .tm-left .circle:before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 0.375rem;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #FF6718;
  content: "";
  transition: 0.3s;
}
.timeline .tm-right {
  position: relative;
  width: 60%;
  display: flex;
  align-items: center;
  padding-left: 35px;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 1199px) {
  .timeline .tm-right {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .timeline .tm-right {
    display: none;
    width: calc(100% - 60px);
    padding: 0.625rem 0 2.5rem 1.875rem;
    margin-left: 60px;
    border-left: 1px solid #FF6718;
  }
}
.timeline .tm-right h5 {
  margin-bottom: 0.6875rem;
  color: #B20030;
}
.timeline .tm-right-normal {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
@media (max-width: 767px) {
  .timeline .tm-right-normal {
    opacity: 0;
    visibility: visible;
  }
}
.timeline .tm-right-normal h5 {
  margin-bottom: 2px;
}
.timeline .tm-right-active {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .timeline .tm-right-active {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 991px) {
  .timeline .tm-right-active {
    flex-wrap: wrap;
  }
}
.timeline .tm-right-active .image-block {
  flex: 0 0 265px;
  margin-right: 2rem;
  border-bottom-right-radius: 5rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .timeline .tm-right-active .image-block {
    margin-bottom: 1.25rem;
    margin-right: 0;
  }
}

.video_comp {
  padding-top: 7.5rem;
  margin-bottom: 13.125rem;
  color: #FBF9DF;
}
@media (max-width: 991px) {
  .video_comp {
    padding-top: 2.1875rem;
    margin-bottom: 10rem;
  }
}
.video_comp .video_wrap {
  display: flex;
  flex-wrap: wrap;
}
.video_comp .content_part {
  max-width: 16.5625rem;
}
@media (max-width: 991px) {
  .video_comp .content_part {
    width: 100%;
    max-width: 100%;
    padding-bottom: 2.1875rem;
  }
}
.video_comp .image_part {
  width: calc(100% - 265px);
  padding-left: 1.875rem;
  margin-bottom: -6.25rem;
}
@media (max-width: 991px) {
  .video_comp .image_part {
    width: calc(100% + 40px);
    padding-left: 0;
    margin-left: -20px;
    margin-right: -20px;
  }
}
.video_comp figure {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-bottom-right-radius: 6.25rem;
}
.video_comp figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video_comp figure:before {
  display: block;
  padding-top: 54.1231126597%;
  content: "";
}
.video_comp figure .video-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .video_comp figure .video-box .play-icon {
    font-size: 3.875rem;
  }
  .video_comp figure .video-box .play-icon:before {
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 14px solid #FBF9DF;
  }
}
.video_comp figure img {
  width: 100%;
  display: block;
}

.wysiwyg {
  margin: 5.625rem 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .wysiwyg {
    margin: 4.375rem 0;
  }
}
@media (max-width: 767px) {
  .wysiwyg {
    margin: 3.125rem 0;
  }
}
.wysiwyg h5 {
  color: #B20030;
}

.paycor_iframe {
  margin: 7.5rem 0;
}
@media (max-width: 1199px) {
  .paycor_iframe {
    margin: 6.25rem 0;
  }
}
@media (max-width: 767px) {
  .paycor_iframe {
    margin: 3.125rem 0;
  }
  .paycor_iframe .pi_wrap {
    padding-left: 0;
    padding-right: 0;
  }
}
.paycor_iframe .ft_heading {
  text-align: center;
  max-width: 28.125rem;
  margin: auto;
}
.hightlights h2 {
  margin-bottom: 25px;
}
.hightlights-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 90px;
}

.single-hightlights {
  width: 33.332%;
  padding: 39px 0;
  text-align: center;
  border-top: 2px solid #E9E9E9;
}

.single-hightlights:nth-child(1),
.single-hightlights:nth-child(2),
.single-hightlights:nth-child(3) {border-top: 0;}
.single-hightlights:nth-child(3n + 1) .single-hightlights-wrap {border-left: 0;}
.single-hightlights-wrap {
  padding: 0 25px;
  border-left: 2px solid #E9E9E9;
}
.single-hightlights img {
  margin-bottom: 30px;
  max-width: 80%;
}
@media (max-width: 1199px) {
  .single-hightlights {
    width: 50%;
  }
  .single-hightlights:nth-child(1),
  .single-hightlights:nth-child(2) {border-top: 0;}
  .single-hightlights:nth-child(3) {border-top: 2px solid #E9E9E9;}
  .single-hightlights:nth-child(3n + 1) .single-hightlights-wrap {border-left:  2px solid #E9E9E9;}
  .single-hightlights:nth-child(3n + 1) .single-hightlights-wrap {border-left:  2px solid #E9E9E9;}
}
@media (max-width: 767px) {
  .single-hightlights {width: 100%;}
  .single-hightlights:nth-child(2) {border-top: 2px solid #E9E9E9;}
  .single-hightlights .single-hightlights-wrap {border-left: none !important;}
  .hightlights-wrap {margin-bottom: 50px;}
}
.location {
  position: relative;
  color: #fff;
  padding: 100px 0;
  font-size: 26px;
  line-height: 38px;
  background-color: #B20030;
  background-image: url("../../images/red-bg-side.svg");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center right;
}

.location h2 {
  color: #FBF9DF;
  margin-bottom: 40px;
}

.location .area-timing {
  display: flex;
  flex-wrap: wrap;
}

.location .left-text {
  max-width: 370px;
  padding-right: 43px;
  border-right: 2px solid #fff;
  margin-right: 67px;
}

.location .schedule-table {
  max-width: calc(100% - 437px);
  margin: -10px 0;
}

.location .schedule-table td {
  padding: 2px 30px 2px 0;
}
@media (max-width: 980px) {
  .location .left-text {
    width: 100%;
    padding-right: 0;
    border-bottom: 2px solid #fff;
    border-right: none;
    margin-right: 0;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  .location .schedule-table {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
}

.events-hightlights {
  padding: 100px 0;
}

.events-hightlights .section-heading {
  margin-bottom: 50px;
  color: #17064A;
  font-size: 18px;
}

.events-hightlights .hightlights-wrap {
  margin-bottom: 0;
}
.events-hightlights .single-highlight {
  border-bottom: 2px solid #E9E9E9;
  width: 51%;
  padding-bottom: 44px;
  margin-bottom: 44px;
}

.events-hightlights .single-highlight:nth-child(2n + 1) {
  width: 49%;
}
.events-hightlights .highlight-icon {
  width: 165px;
  text-align: center;
}

.events-hightlights .single-highlight-wrap {
  display: flex;
  flex-wrap: wrap;
  border-left: 2px solid #e9e9e9;
  font-weight: 700;
  font-size: 23px;
  line-height: 32px;
}

.events-hightlights .highlight-desc {
  max-width: calc(100% - 165px);
}

.events-hightlights .single-highlight:nth-child(2n + 1) .single-highlight-wrap {
  border-left: none;
}

.events-hightlights .single-highlight:nth-child(2n + 1) .single-highlight-wrap .highlight-icon {
  text-align: left;
  width: 135px;
}

.events-hightlights .highlight-icon img {
  max-width: 90px;
}

.events-hightlights .single-highlight:nth-child(2n + 1):last-child {
  width: 60%;
  border-bottom: 0;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .location {padding: 50px 0;font-size: 18px;line-height: 1.5;}
  .location table {font-size: 16px;}
  .location table td {padding-right: 15px;white-space: nowrap;}
  .location table td:last-child {padding-right: 0;white-space: normal;}
  .events-hightlights {padding: 50px 0;}
  .events-hightlights .single-highlight {width: 100% !important;border-left: none !important;border-bottom: 2px solid #e9e9e9;}
  .events-hightlights .single-highlight:last-child {border-bottom: 0 !important;}
  .events-hightlights .highlight-icon {width: 100% !important;text-align: center !important;margin-bottom: 30px;}
  .events-hightlights .highlight-desc {max-width: 100%;width: 100%;text-align: center;}
}

.single-events .main-container{
  background-image: url("../../images/event-bg-side.svg");
  background-repeat: no-repeat;
  background-size: 500px;
  background-position: right bottom 250px;
}
.events-list {padding: 100px 0 0;}
.events-list .section-heading {text-align: center;}
.events-list .listing-fitler-bar {margin: 30px 0;}
.events-list .listing-fitler-bar .filter-form {z-index: 3;}
.events-list .listing-fitler-bar .filter-mid {align-items: center;width: auto;}
.events-list .listing-fitler-bar .filter-col {width: 225px;margin-bottom: 0;margin-right: 3.25rem;}
.events-list .listing-fitler-bar .filter-mid .label {color: #707070;margin-right: 20px;}
.events-list .listing-fitler-bar .filter-mid .filter-option label{cursor: pointer;}
.events-list .listing-fitler-bar .filter-mid .filter-option label.active,
.events-list .listing-fitler-bar .filter-mid .filter-option label:hover {color: #FF6718;}
.events-list .listing-fitler-bar .device-flex {height: auto;}
.events-list .listing-fitler-bar .device-flex .btn {background: transparent;border: 2px solid #17064A;padding: 10px 26px 12px;}
.events-list .listing-fitler-bar .device-flex .btn:hover {background: #FF6718;color: #fff;border-color: #FF6718;}
.events-list .listing-fitler-bar .filter-item {padding: 10px 40px 10px 10px;}
.events-list .listing-fitler-bar .filter-item:after {border-left: 5px solid transparent; border-right: 5px solid transparent;  border-top: 8px solid #B20030;top: 17px;}

.events-list .listing-comp .listing-inner {margin-bottom: 30px}
.events-list .listing-comp .listing-inner .block-image .img-block {margin-bottom: 0;}
.events-list .listing-comp .listing-inner .block-image .img-block:before {padding-top: 100%;}
.events-list .listing-comp .listing-inner .block-image .text {position: absolute;z-index: 2;color: #fff;text-align: center;width: 100%;height: 100%;left: 0;top: 0;display: flex; justify-content: center;flex-wrap: wrap;align-content: center;}
.events-list .listing-comp .listing-inner .block-image .date {display: block;margin-bottom: 10px;width: 100%;}
.events-list .listing-comp .listing-inner .block-image .text h4 {color: #fff;width: 100%;margin-bottom: 0;}
.events-list .listing-comp .listing-inner .block-image .text h5 {color: #fff;width: 100%;}
.events-list .listing-comp .listing-inner .block-image:hover .img-block:after {background-color: rgb(23 6 74 / 50%);}
@media (max-width: 980px) {
  .events-list .listing-fitler-bar .filter-col {width: 200px;margin-bottom: 0;margin-right: 1.5rem;}
}
@media (max-width: 767px) {
  .events-list .listing-fitler-bar .filter-form .filter-box,
  .events-list .listing-fitler-bar .filter-mid {display: block;}
  .events-list .listing-fitler-bar .filter-mid .label {margin-bottom: 20px;}
  .events-list .listing-fitler-bar .filter-col {width: 100%;margin-bottom: 20px;margin-right: 0;}
}
.event-form {
  padding: 0px 0 100px;
}
.event-form .section-heading {
  text-align: center;
}
.event-form .hbspt-form {
  padding: 0;
  background: none;
}
.event-form .hbspt-form:before {
  display: none;
}
.event-form .hbspt-form fieldset .field {
  margin-bottom: 20px;
}
.event-form .hbspt-form fieldset {
  max-width: 100% !important;
}
.event-form .hbspt-form .hs-form-field label {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  margin-bottom: 5px !important;
  opacity: 1 !important;
  transform-origin: none !important;
}
.event-form input[type=url], .event-form input[type=text], .event-form input[type=password], .event-form input[type=email], .event-form input[type=tel], .event-form input[type=search], .event-form input[type=number], .event-form input[type=date], .event-form textarea, .event-form select {
  padding-top: 0 !important
}
/*# sourceMappingURL=style.min.css.map */