/* 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 */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
.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.94rem 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 #09BDC9;
  border-radius: 100%;
  font-size: 0;
  background-color: #0A1940;
  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: #09BDC9;
  opacity: 0.8;
}
.slick-slider .slick-dots li.slick-active button {
  background-color: #09BDC9;
}

.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 #0A1940;
  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: #09BDC9;
}
.slick-arrow.slick-prev {
  left: 0;
  border-top: 0;
  border-right: 0;
  transform: rotate(45deg);
}
.slick-arrow.slick-next {
  right: 0;
  transform: rotate(-135deg);
}
.slick-arrow.slick-hidden {
  display: none;
}

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

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

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

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

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

.carousel__track {
  display: flex;
}

.carousel__slide {
  flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

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

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

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

.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: 0.25;
  transition: opacity 0.15s ease-in-out;
}

.carousel__dots .carousel__dot.is-selected:after {
  opacity: 1;
}

.carousel__button {
  width: var(--carousel-button-width, 48px);
  height: var(--carousel-button-height, 48px);
  padding: 0;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  box-shadow: var(--carousel-button-shadow, none);
  transition: opacity 0.15s ease;
}

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

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

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

.carousel__button[disabled] {
  cursor: default;
  opacity: 0.3;
}

.carousel__button svg {
  width: var(--carousel-button-svg-width, 50%);
  height: var(--carousel-button-svg-height, 50%);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
  stroke-linejoin: bevel;
  stroke-linecap: round;
  filter: var(--carousel-button-svg-filter, none);
  pointer-events: none;
}

html.with-fancybox {
  scroll-behavior: auto;
}

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

.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  z-index: 1050;
  outline: none;
  transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}

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

.fancybox__container :focus {
  outline: none;
}

body:not(.is-using-mouse) .fancybox__container :focus {
  box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
}

@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width:48px;
    --carousel-button-height:48px;
    --carousel-button-svg-width:27px;
    --carousel-button-svg-height:27px;
  }
}
.fancybox__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}

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

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

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

.fancybox__track {
  display: flex;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  outline: 0;
  overflow: auto;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px;
}

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

@media 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__content :focus:not(.carousel__button.is-close) {
  box-shadow: none;
}

.fancybox__caption {
  align-self: center;
  max-width: 100%;
  margin: 0;
  padding: 1rem 0 0 0;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  visibility: visible;
  cursor: auto;
  flex-shrink: 0;
  overflow-wrap: anywhere;
}

.is-loading .fancybox__caption {
  visibility: hidden;
}

.fancybox__container > .carousel__dots {
  top: 100%;
  color: var(--fancybox-color, #fff);
}

.fancybox__nav .carousel__button {
  z-index: 40;
}

.fancybox__nav .carousel__button.is-next {
  right: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-next {
    right: 40px;
  }
}
.fancybox__nav .carousel__button.is-prev {
  left: 8px;
}

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

@media all and (min-width: 1024px) {
  .carousel__button.is-close {
    right: 40px;
  }
}
.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--fancybox-color, #fff);
}

.fancybox__no-click, .fancybox__no-click button {
  pointer-events: none;
}

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

.fancybox__slide .fancybox__spinner {
  cursor: pointer;
  z-index: 1053;
}

.fancybox__spinner svg {
  animation: fancybox-rotate 2s linear infinite;
  transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}

.fancybox__spinner svg circle {
  fill: none;
  stroke-width: 2.75;
  stroke-miterlimit: 10;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.fancybox__backdrop, .fancybox__caption, .fancybox__nav, .carousel__dots, .carousel__button.is-close {
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop, .fancybox__container.is-animated[aria-hidden=false] .fancybox__caption, .fancybox__container.is-animated[aria-hidden=false] .fancybox__nav, .fancybox__container.is-animated[aria-hidden=false] .carousel__dots, .fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
  animation: 0.15s ease backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__backdrop, .fancybox__container.is-animated.is-closing .fancybox__caption, .fancybox__container.is-animated.is-closing .fancybox__nav, .fancybox__container.is-animated.is-closing .carousel__dots, .fancybox__container.is-animated.is-closing .carousel__button.is-close {
  animation: 0.15s ease both fancybox-fadeOut;
}

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

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

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

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

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

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

@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fancybox-zoomInUp {
  from {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fancybox-zoomOutDown {
  to {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutUp {
  to {
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutDown {
  to {
    transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

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

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

.fancybox__image {
  transform-origin: 0 0;
  user-select: none;
  transition: none;
}

.has-image .fancybox__content {
  padding: 0;
  background: transparent;
  min-height: 1px;
}

.is-closing .has-image .fancybox__content {
  overflow: visible;
}

.has-image[data-image-fit=contain] {
  overflow: visible;
  touch-action: none;
}

.has-image[data-image-fit=contain] .fancybox__content {
  flex-direction: row;
  flex-wrap: wrap;
}

.has-image[data-image-fit=contain] .fancybox__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.has-image[data-image-fit=contain-w] {
  overflow-x: hidden;
  overflow-y: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__content {
  min-height: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__image {
  max-width: 100%;
  height: auto;
}

.has-image[data-image-fit=cover] {
  overflow: visible;
  touch-action: none;
}

.has-image[data-image-fit=cover] .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-image[data-image-fit=cover] .fancybox__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

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

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

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

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

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

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

.fancybox__thumbs {
  flex: 0 0 auto;
  position: relative;
  padding: 0px 3px;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}

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

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

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: 5px;
  border-style: solid;
  border-color: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  opacity: 0;
  transition: opacity 0.15s ease;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
  opacity: 0.92;
}

.fancybox__thumbs .carousel__slide > * {
  pointer-events: none;
  user-select: none;
}

.fancybox__thumb {
  position: relative;
  width: 100%;
  padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
  background-size: cover;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.006) 8.1%, rgba(0, 0, 0, 0.021) 15.5%, rgba(0, 0, 0, 0.046) 22.5%, rgba(0, 0, 0, 0.077) 29%, rgba(0, 0, 0, 0.114) 35.3%, rgba(0, 0, 0, 0.155) 41.2%, rgba(0, 0, 0, 0.198) 47.1%, rgba(0, 0, 0, 0.242) 52.9%, rgba(0, 0, 0, 0.285) 58.8%, rgba(0, 0, 0, 0.326) 64.7%, rgba(0, 0, 0, 0.363) 71%, rgba(0, 0, 0, 0.394) 77.5%, rgba(0, 0, 0, 0.419) 84.5%, rgba(0, 0, 0, 0.434) 91.9%, rgba(0, 0, 0, 0.44) 100%);
  padding: 0;
  touch-action: none;
  display: flex;
  justify-content: space-between;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4));
}

@media 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(34, 213, 233, 0.96));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 30;
  user-select: none;
}

.fancybox__container:fullscreen::backdrop {
  opacity: 0;
}

.fancybox__button--fullscreen g:nth-child(2) {
  display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__button--slideshow g:nth-child(2) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
  display: block;
}

@font-face {
  font-family: "undefend-icon";
  src: url("../fonts/undefend-icon.eot");
  src: url("../fonts/undefend-icon.eot?#iefix") format("embedded-opentype"), url("../fonts/undefend-icon.woff") format("woff"), url("../fonts/undefend-icon.ttf") format("truetype"), url("../fonts/undefend-icon.svg#undefend-icon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "undefend-icon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-plus:before {
  content: "\e90a";
}

.icon-home-icon:before {
  content: "\e909";
  color: #fff;
}

.icon-message-icon:before {
  content: "\e907";
  color: #fff;
}

.icon-right-arrow:before {
  content: "\e906";
}

.icon-play-icon:before {
  content: "\e905";
  color: #fff;
}

.icon-quote-icon:before {
  content: "\e904";
}

.icon-phone-icon:before {
  content: "\e908";
  color: #fff;
}

.icon-btn-arrow:before {
  content: "\e903";
  color: #fff;
}

.icon-linkedin:before {
  content: "\e900";
}

.icon-Youtube-icon:before {
  content: "\e901";
}

.icon-facebook-icon:before {
  content: "\e902";
}

/* 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: #0A1940;
  font-size: 1rem;
  font-family: "roboto", sans-serif;
  line-height: 1.5;
  background-color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  body {
    height: 100%;
  }
}
body.scroll-fixed {
  overflow: hidden;
}

h1,
.h1 {
  margin-bottom: 0.94rem;
  color: #0A1940;
  font-family: inherit;
  font-size: 3.69rem;
  font-weight: 700;
  line-height: 1.1;
  word-break: break-word;
  line-height: 1.17;
}
h1 a,
.h1 a {
  display: block;
  color: inherit;
  text-decoration: none;
}

h2,
.h2 {
  margin-bottom: 0.94rem;
  color: #0A1940;
  font-family: inherit;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  word-break: break-word;
  line-height: 1.2;
  font-weight: 500;
}
h2 a,
.h2 a {
  display: block;
  color: inherit;
  text-decoration: none;
}
@media (max-width: 991px) {
  h2,
  .h2 {
    font-size: 2.18rem;
  }
}

h3,
.h3 {
  margin-bottom: 0.94rem;
  color: #0A1940;
  font-family: inherit;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  word-break: break-word;
}
h3 a,
.h3 a {
  display: block;
  color: inherit;
  text-decoration: none;
}
@media (max-width: 991px) {
  h3,
  .h3 {
    font-size: 1.88rem;
  }
}

h4,
.h4 {
  margin-bottom: 0.94rem;
  color: #0A1940;
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  word-break: break-word;
}
h4 a,
.h4 a {
  display: block;
  color: inherit;
  text-decoration: none;
}
@media (max-width: 767px) {
  h4,
  .h4 {
    font-size: 1.38rem;
  }
}

h5,
.h5 {
  margin-bottom: 0.94rem;
  color: #0A1940;
  font-family: inherit;
  font-size: 1.38rem;
  font-weight: 700;
  line-height: 1.1;
  word-break: break-word;
}
h5 a,
.h5 a {
  display: block;
  color: inherit;
  text-decoration: none;
}

h6,
.h6 {
  margin-bottom: 0.94rem;
  color: #0A1940;
  font-family: inherit;
  font-size: 1.13rem;
  font-weight: 700;
  line-height: 1.1;
  word-break: break-word;
}
h6 a,
.h6 a {
  display: block;
  color: inherit;
  text-decoration: none;
}

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

ul {
  padding-left: 1.25rem;
  margin-bottom: 0.94rem;
}
ul ul {
  margin-bottom: 0;
}
ul li {
  padding-top: 0.38rem;
  padding-bottom: 0.38rem;
}
ul li:last-child {
  padding-bottom: 0;
}

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

blockquote {
  position: relative;
  display: block;
  margin-bottom: 1.57rem;
  padding: 1.25rem 1.25rem;
  text-align: left;
  line-height: 2;
  font-size: 1.13rem;
  font-style: italic;
  color: #000000;
  background-color: #BCBCBC;
  border-left: 0.25rem solid #0A1940;
}
blockquote p {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

hr {
  height: 0;
  margin: 0.63rem auto 2.5rem;
  border: 0 #000000 solid;
  border-top-width: 0.07rem;
  overflow: visible;
}

img {
  display: inline-block;
  height: auto;
  max-width: 100%;
  vertical-align: top;
  border: none;
}
img[src$=".svg"] {
  max-height: 100%;
}

picture {
  display: inline-block;
  vertical-align: top;
}

/* Link
------------------------------------------------------------------------------*/
a {
  color: #0A1940;
  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.07rem solid #BCBCBC;
  padding: 0.63rem;
}

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

.container {
  max-width: 71.89rem;
}
/* row and column */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.94rem;
  margin-left: -0.94rem;
}
.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.row.no-gutters > [class*=cell-] {
  padding-right: 0;
}

[class*=cell-] {
  position: relative;
  width: 100%;
  padding-left: 0.94rem;
  padding-right: 0.94rem;
}

/* align item */
.d-none {
  display: none;
}
.d-block {
  display: block;
}
.d-flex {
  display: flex;
  flex-wrap: wrap;
}
.d-flex-inline {
  display: inline-flex;
}
.d-flex img {
  align-self: center;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.align-items-start {
  align-items: flex-start;
}
.align-items-center {
  align-items: center;
}
.align-items-end {
  align-items: flex-end;
}
.align-content-center {
  align-content: center;
}
.alignnone {
  float: none;
  margin: 1.25rem 0;
}
.aligncenter {
  display: block;
  clear: both;
  margin: 1.25rem auto;
}
.alignleft {
  float: left;
  margin: 0 1.25rem 1.25rem 0;
}
.alignright {
  float: right;
  margin: 0 0 1.25rem 1.25rem;
}

.justify-content-start {
  justify-content: flex-start;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-end {
  justify-content: flex-end;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-around {
  justify-content: space-around;
}
.justify-content-evenly {
  justify-content: space-evenly;
}

/* text alignment */
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}

.bg-white {
  background-color: #ffffff;
}

.text-white {
  color: #ffffff;
}

.bg-black {
  background-color: #000000;
}

.text-black {
  color: #000000;
}

.bg-dark {
  background-color: #0A1940;
}

.text-dark {
  color: #0A1940;
}

/* 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-0,
.m-0,
.my-0 {
  margin-top: 0rem;
}

.pt-0,
.p-0,
.py-0 {
  padding-top: 0rem;
}

.mb-0,
.m-0,
.my-0 {
  margin-bottom: 0rem;
}

.pb-0,
.p-0,
.py-0 {
  padding-bottom: 0rem;
}

.ml-0,
.m-0,
.mx-0 {
  margin-left: 0rem;
}

.pl-0,
.p-0,
.px-0 {
  padding-left: 0rem;
}

.mr-0,
.m-0,
.mx-0 {
  margin-right: 0rem;
}

.pr-0,
.p-0,
.px-0 {
  padding-right: 0rem;
}

.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-0,
  .m-sm-0,
  .my-sm-0 {
    margin-top: 0rem;
  }
  .pt-sm-0,
  .p-sm-0,
  .py-sm-0 {
    padding-top: 0rem;
  }
  .mb-sm-0,
  .m-sm-0,
  .my-sm-0 {
    margin-bottom: 0rem;
  }
  .pb-sm-0,
  .p-sm-0,
  .py-sm-0 {
    padding-bottom: 0rem;
  }
  .ml-sm-0,
  .m-sm-0,
  .mx-sm-0 {
    margin-left: 0rem;
  }
  .pl-sm-0,
  .p-sm-0,
  .px-sm-0 {
    padding-left: 0rem;
  }
  .mr-sm-0,
  .m-sm-0,
  .mx-sm-0 {
    margin-right: 0rem;
  }
  .pr-sm-0,
  .p-sm-0,
  .px-sm-0 {
    padding-right: 0rem;
  }
  .mt-sm-30,
  .m-sm-30,
  .my-sm-30 {
    margin-top: 1.875rem;
  }
  .pt-sm-30,
  .p-sm-30,
  .py-sm-30 {
    padding-top: 1.875rem;
  }
  .mb-sm-30,
  .m-sm-30,
  .my-sm-30 {
    margin-bottom: 1.875rem;
  }
  .pb-sm-30,
  .p-sm-30,
  .py-sm-30 {
    padding-bottom: 1.875rem;
  }
  .ml-sm-30,
  .m-sm-30,
  .mx-sm-30 {
    margin-left: 1.875rem;
  }
  .pl-sm-30,
  .p-sm-30,
  .px-sm-30 {
    padding-left: 1.875rem;
  }
  .mr-sm-30,
  .m-sm-30,
  .mx-sm-30 {
    margin-right: 1.875rem;
  }
  .pr-sm-30,
  .p-sm-30,
  .px-sm-30 {
    padding-right: 1.875rem;
  }
  .d-sm-none {
    display: none;
  }
  .d-sm-block {
    display: block;
  }
  .d-sm-flex {
    display: flex;
  }
  .align-sm-items-start {
    align-items: flex-start;
  }
  .align-sm-items-center {
    align-items: center;
  }
  .align-sm-items-end {
    align-items: flex-end;
  }
  .align-sm-content-center {
    align-content: center;
  }
  .justify-sm-content-start {
    justify-content: flex-start;
  }
  .justify-sm-content-center {
    justify-content: center;
  }
  .justify-sm-content-end {
    justify-content: flex-end;
  }
  .justify-sm-content-between {
    justify-content: space-between;
  }
  .justify-sm-content-around {
    justify-content: space-around;
  }
  .justify-sm-content-evenly {
    justify-content: space-evenly;
  }
  .text-sm-center {
    text-align: center;
  }
  .text-sm-right {
    text-align: right;
  }
  .text-sm-left {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .cell-md-1 {
    width: 8.3333333333%;
  }
  .cell-md-2 {
    width: 16.6666666667%;
  }
  .cell-md-3 {
    width: 25%;
  }
  .cell-md-4 {
    width: 33.3333333333%;
  }
  .cell-md-5 {
    width: 41.6666666667%;
  }
  .cell-md-6 {
    width: 50%;
  }
  .cell-md-7 {
    width: 58.3333333333%;
  }
  .cell-md-8 {
    width: 66.6666666667%;
  }
  .cell-md-9 {
    width: 75%;
  }
  .cell-md-10 {
    width: 83.3333333333%;
  }
  .cell-md-11 {
    width: 91.6666666667%;
  }
  .cell-md-12 {
    width: 100%;
  }
  .mt-md-0,
  .m-md-0,
  .my-md-0 {
    margin-top: 0rem;
  }
  .pt-md-0,
  .p-md-0,
  .py-md-0 {
    padding-top: 0rem;
  }
  .mb-md-0,
  .m-md-0,
  .my-md-0 {
    margin-bottom: 0rem;
  }
  .pb-md-0,
  .p-md-0,
  .py-md-0 {
    padding-bottom: 0rem;
  }
  .ml-md-0,
  .m-md-0,
  .mx-md-0 {
    margin-left: 0rem;
  }
  .pl-md-0,
  .p-md-0,
  .px-md-0 {
    padding-left: 0rem;
  }
  .mr-md-0,
  .m-md-0,
  .mx-md-0 {
    margin-right: 0rem;
  }
  .pr-md-0,
  .p-md-0,
  .px-md-0 {
    padding-right: 0rem;
  }
  .mt-md-30,
  .m-md-30,
  .my-md-30 {
    margin-top: 1.875rem;
  }
  .pt-md-30,
  .p-md-30,
  .py-md-30 {
    padding-top: 1.875rem;
  }
  .mb-md-30,
  .m-md-30,
  .my-md-30 {
    margin-bottom: 1.875rem;
  }
  .pb-md-30,
  .p-md-30,
  .py-md-30 {
    padding-bottom: 1.875rem;
  }
  .ml-md-30,
  .m-md-30,
  .mx-md-30 {
    margin-left: 1.875rem;
  }
  .pl-md-30,
  .p-md-30,
  .px-md-30 {
    padding-left: 1.875rem;
  }
  .mr-md-30,
  .m-md-30,
  .mx-md-30 {
    margin-right: 1.875rem;
  }
  .pr-md-30,
  .p-md-30,
  .px-md-30 {
    padding-right: 1.875rem;
  }
  .d-md-none {
    display: none;
  }
  .d-md-block {
    display: block;
  }
  .d-md-flex {
    display: flex;
  }
  .align-md-items-start {
    align-items: flex-start;
  }
  .align-md-items-center {
    align-items: center;
  }
  .align-md-items-end {
    align-items: flex-end;
  }
  .align-md-content-center {
    align-content: center;
  }
  .justify-md-content-start {
    justify-content: flex-start;
  }
  .justify-md-content-center {
    justify-content: center;
  }
  .justify-md-content-end {
    justify-content: flex-end;
  }
  .justify-md-content-between {
    justify-content: space-between;
  }
  .justify-md-content-around {
    justify-content: space-around;
  }
  .justify-md-content-evenly {
    justify-content: space-evenly;
  }
  .text-md-center {
    text-align: center;
  }
  .text-md-right {
    text-align: right;
  }
  .text-md-left {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .cell-lg-1 {
    width: 8.3333333333%;
  }
  .cell-lg-2 {
    width: 16.6666666667%;
  }
  .cell-lg-3 {
    width: 25%;
  }
  .cell-lg-4 {
    width: 33.3333333333%;
  }
  .cell-lg-5 {
    width: 41.6666666667%;
  }
  .cell-lg-6 {
    width: 50%;
  }
  .cell-lg-7 {
    width: 58.3333333333%;
  }
  .cell-lg-8 {
    width: 66.6666666667%;
  }
  .cell-lg-9 {
    width: 75%;
  }
  .cell-lg-10 {
    width: 83.3333333333%;
  }
  .cell-lg-11 {
    width: 91.6666666667%;
  }
  .cell-lg-12 {
    width: 100%;
  }
  .mt-lg-0,
  .m-lg-0,
  .my-lg-0 {
    margin-top: 0rem;
  }
  .pt-lg-0,
  .p-lg-0,
  .py-lg-0 {
    padding-top: 0rem;
  }
  .mb-lg-0,
  .m-lg-0,
  .my-lg-0 {
    margin-bottom: 0rem;
  }
  .pb-lg-0,
  .p-lg-0,
  .py-lg-0 {
    padding-bottom: 0rem;
  }
  .ml-lg-0,
  .m-lg-0,
  .mx-lg-0 {
    margin-left: 0rem;
  }
  .pl-lg-0,
  .p-lg-0,
  .px-lg-0 {
    padding-left: 0rem;
  }
  .mr-lg-0,
  .m-lg-0,
  .mx-lg-0 {
    margin-right: 0rem;
  }
  .pr-lg-0,
  .p-lg-0,
  .px-lg-0 {
    padding-right: 0rem;
  }
  .mt-lg-30,
  .m-lg-30,
  .my-lg-30 {
    margin-top: 1.875rem;
  }
  .pt-lg-30,
  .p-lg-30,
  .py-lg-30 {
    padding-top: 1.875rem;
  }
  .mb-lg-30,
  .m-lg-30,
  .my-lg-30 {
    margin-bottom: 1.875rem;
  }
  .pb-lg-30,
  .p-lg-30,
  .py-lg-30 {
    padding-bottom: 1.875rem;
  }
  .ml-lg-30,
  .m-lg-30,
  .mx-lg-30 {
    margin-left: 1.875rem;
  }
  .pl-lg-30,
  .p-lg-30,
  .px-lg-30 {
    padding-left: 1.875rem;
  }
  .mr-lg-30,
  .m-lg-30,
  .mx-lg-30 {
    margin-right: 1.875rem;
  }
  .pr-lg-30,
  .p-lg-30,
  .px-lg-30 {
    padding-right: 1.875rem;
  }
  .d-lg-none {
    display: none;
  }
  .d-lg-block {
    display: block;
  }
  .d-lg-flex {
    display: flex;
  }
  .align-lg-items-start {
    align-items: flex-start;
  }
  .align-lg-items-center {
    align-items: center;
  }
  .align-lg-items-end {
    align-items: flex-end;
  }
  .align-lg-content-center {
    align-content: center;
  }
  .justify-lg-content-start {
    justify-content: flex-start;
  }
  .justify-lg-content-center {
    justify-content: center;
  }
  .justify-lg-content-end {
    justify-content: flex-end;
  }
  .justify-lg-content-between {
    justify-content: space-between;
  }
  .justify-lg-content-around {
    justify-content: space-around;
  }
  .justify-lg-content-evenly {
    justify-content: space-evenly;
  }
  .text-lg-center {
    text-align: center;
  }
  .text-lg-right {
    text-align: right;
  }
  .text-lg-left {
    text-align: left;
  }
}
@media (min-width: 1170px) {
  .cell-lgxl-1 {
    width: 8.3333333333%;
  }
  .cell-lgxl-2 {
    width: 16.6666666667%;
  }
  .cell-lgxl-3 {
    width: 25%;
  }
  .cell-lgxl-4 {
    width: 33.3333333333%;
  }
  .cell-lgxl-5 {
    width: 41.6666666667%;
  }
  .cell-lgxl-6 {
    width: 50%;
  }
  .cell-lgxl-7 {
    width: 58.3333333333%;
  }
  .cell-lgxl-8 {
    width: 66.6666666667%;
  }
  .cell-lgxl-9 {
    width: 75%;
  }
  .cell-lgxl-10 {
    width: 83.3333333333%;
  }
  .cell-lgxl-11 {
    width: 91.6666666667%;
  }
  .cell-lgxl-12 {
    width: 100%;
  }
  .mt-lgxl-0,
  .m-lgxl-0,
  .my-lgxl-0 {
    margin-top: 0rem;
  }
  .pt-lgxl-0,
  .p-lgxl-0,
  .py-lgxl-0 {
    padding-top: 0rem;
  }
  .mb-lgxl-0,
  .m-lgxl-0,
  .my-lgxl-0 {
    margin-bottom: 0rem;
  }
  .pb-lgxl-0,
  .p-lgxl-0,
  .py-lgxl-0 {
    padding-bottom: 0rem;
  }
  .ml-lgxl-0,
  .m-lgxl-0,
  .mx-lgxl-0 {
    margin-left: 0rem;
  }
  .pl-lgxl-0,
  .p-lgxl-0,
  .px-lgxl-0 {
    padding-left: 0rem;
  }
  .mr-lgxl-0,
  .m-lgxl-0,
  .mx-lgxl-0 {
    margin-right: 0rem;
  }
  .pr-lgxl-0,
  .p-lgxl-0,
  .px-lgxl-0 {
    padding-right: 0rem;
  }
  .mt-lgxl-30,
  .m-lgxl-30,
  .my-lgxl-30 {
    margin-top: 1.875rem;
  }
  .pt-lgxl-30,
  .p-lgxl-30,
  .py-lgxl-30 {
    padding-top: 1.875rem;
  }
  .mb-lgxl-30,
  .m-lgxl-30,
  .my-lgxl-30 {
    margin-bottom: 1.875rem;
  }
  .pb-lgxl-30,
  .p-lgxl-30,
  .py-lgxl-30 {
    padding-bottom: 1.875rem;
  }
  .ml-lgxl-30,
  .m-lgxl-30,
  .mx-lgxl-30 {
    margin-left: 1.875rem;
  }
  .pl-lgxl-30,
  .p-lgxl-30,
  .px-lgxl-30 {
    padding-left: 1.875rem;
  }
  .mr-lgxl-30,
  .m-lgxl-30,
  .mx-lgxl-30 {
    margin-right: 1.875rem;
  }
  .pr-lgxl-30,
  .p-lgxl-30,
  .px-lgxl-30 {
    padding-right: 1.875rem;
  }
  .d-lgxl-none {
    display: none;
  }
  .d-lgxl-block {
    display: block;
  }
  .d-lgxl-flex {
    display: flex;
  }
  .align-lgxl-items-start {
    align-items: flex-start;
  }
  .align-lgxl-items-center {
    align-items: center;
  }
  .align-lgxl-items-end {
    align-items: flex-end;
  }
  .align-lgxl-content-center {
    align-content: center;
  }
  .justify-lgxl-content-start {
    justify-content: flex-start;
  }
  .justify-lgxl-content-center {
    justify-content: center;
  }
  .justify-lgxl-content-end {
    justify-content: flex-end;
  }
  .justify-lgxl-content-between {
    justify-content: space-between;
  }
  .justify-lgxl-content-around {
    justify-content: space-around;
  }
  .justify-lgxl-content-evenly {
    justify-content: space-evenly;
  }
  .text-lgxl-center {
    text-align: center;
  }
  .text-lgxl-right {
    text-align: right;
  }
  .text-lgxl-left {
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .cell-xl-1 {
    width: 8.3333333333%;
  }
  .cell-xl-2 {
    width: 16.6666666667%;
  }
  .cell-xl-3 {
    width: 25%;
  }
  .cell-xl-4 {
    width: 33.3333333333%;
  }
  .cell-xl-5 {
    width: 41.6666666667%;
  }
  .cell-xl-6 {
    width: 50%;
  }
  .cell-xl-7 {
    width: 58.3333333333%;
  }
  .cell-xl-8 {
    width: 66.6666666667%;
  }
  .cell-xl-9 {
    width: 75%;
  }
  .cell-xl-10 {
    width: 83.3333333333%;
  }
  .cell-xl-11 {
    width: 91.6666666667%;
  }
  .cell-xl-12 {
    width: 100%;
  }
  .mt-xl-0,
  .m-xl-0,
  .my-xl-0 {
    margin-top: 0rem;
  }
  .pt-xl-0,
  .p-xl-0,
  .py-xl-0 {
    padding-top: 0rem;
  }
  .mb-xl-0,
  .m-xl-0,
  .my-xl-0 {
    margin-bottom: 0rem;
  }
  .pb-xl-0,
  .p-xl-0,
  .py-xl-0 {
    padding-bottom: 0rem;
  }
  .ml-xl-0,
  .m-xl-0,
  .mx-xl-0 {
    margin-left: 0rem;
  }
  .pl-xl-0,
  .p-xl-0,
  .px-xl-0 {
    padding-left: 0rem;
  }
  .mr-xl-0,
  .m-xl-0,
  .mx-xl-0 {
    margin-right: 0rem;
  }
  .pr-xl-0,
  .p-xl-0,
  .px-xl-0 {
    padding-right: 0rem;
  }
  .mt-xl-30,
  .m-xl-30,
  .my-xl-30 {
    margin-top: 1.875rem;
  }
  .pt-xl-30,
  .p-xl-30,
  .py-xl-30 {
    padding-top: 1.875rem;
  }
  .mb-xl-30,
  .m-xl-30,
  .my-xl-30 {
    margin-bottom: 1.875rem;
  }
  .pb-xl-30,
  .p-xl-30,
  .py-xl-30 {
    padding-bottom: 1.875rem;
  }
  .ml-xl-30,
  .m-xl-30,
  .mx-xl-30 {
    margin-left: 1.875rem;
  }
  .pl-xl-30,
  .p-xl-30,
  .px-xl-30 {
    padding-left: 1.875rem;
  }
  .mr-xl-30,
  .m-xl-30,
  .mx-xl-30 {
    margin-right: 1.875rem;
  }
  .pr-xl-30,
  .p-xl-30,
  .px-xl-30 {
    padding-right: 1.875rem;
  }
  .d-xl-none {
    display: none;
  }
  .d-xl-block {
    display: block;
  }
  .d-xl-flex {
    display: flex;
  }
  .align-xl-items-start {
    align-items: flex-start;
  }
  .align-xl-items-center {
    align-items: center;
  }
  .align-xl-items-end {
    align-items: flex-end;
  }
  .align-xl-content-center {
    align-content: center;
  }
  .justify-xl-content-start {
    justify-content: flex-start;
  }
  .justify-xl-content-center {
    justify-content: center;
  }
  .justify-xl-content-end {
    justify-content: flex-end;
  }
  .justify-xl-content-between {
    justify-content: space-between;
  }
  .justify-xl-content-around {
    justify-content: space-around;
  }
  .justify-xl-content-evenly {
    justify-content: space-evenly;
  }
  .text-xl-center {
    text-align: center;
  }
  .text-xl-right {
    text-align: right;
  }
  .text-xl-left {
    text-align: left;
  }
}
@media (min-width: 1400px) {
  .cell-xxl-1 {
    width: 8.3333333333%;
  }
  .cell-xxl-2 {
    width: 16.6666666667%;
  }
  .cell-xxl-3 {
    width: 25%;
  }
  .cell-xxl-4 {
    width: 33.3333333333%;
  }
  .cell-xxl-5 {
    width: 41.6666666667%;
  }
  .cell-xxl-6 {
    width: 50%;
  }
  .cell-xxl-7 {
    width: 58.3333333333%;
  }
  .cell-xxl-8 {
    width: 66.6666666667%;
  }
  .cell-xxl-9 {
    width: 75%;
  }
  .cell-xxl-10 {
    width: 83.3333333333%;
  }
  .cell-xxl-11 {
    width: 91.6666666667%;
  }
  .cell-xxl-12 {
    width: 100%;
  }
  .mt-xxl-0,
  .m-xxl-0,
  .my-xxl-0 {
    margin-top: 0rem;
  }
  .pt-xxl-0,
  .p-xxl-0,
  .py-xxl-0 {
    padding-top: 0rem;
  }
  .mb-xxl-0,
  .m-xxl-0,
  .my-xxl-0 {
    margin-bottom: 0rem;
  }
  .pb-xxl-0,
  .p-xxl-0,
  .py-xxl-0 {
    padding-bottom: 0rem;
  }
  .ml-xxl-0,
  .m-xxl-0,
  .mx-xxl-0 {
    margin-left: 0rem;
  }
  .pl-xxl-0,
  .p-xxl-0,
  .px-xxl-0 {
    padding-left: 0rem;
  }
  .mr-xxl-0,
  .m-xxl-0,
  .mx-xxl-0 {
    margin-right: 0rem;
  }
  .pr-xxl-0,
  .p-xxl-0,
  .px-xxl-0 {
    padding-right: 0rem;
  }
  .mt-xxl-30,
  .m-xxl-30,
  .my-xxl-30 {
    margin-top: 1.875rem;
  }
  .pt-xxl-30,
  .p-xxl-30,
  .py-xxl-30 {
    padding-top: 1.875rem;
  }
  .mb-xxl-30,
  .m-xxl-30,
  .my-xxl-30 {
    margin-bottom: 1.875rem;
  }
  .pb-xxl-30,
  .p-xxl-30,
  .py-xxl-30 {
    padding-bottom: 1.875rem;
  }
  .ml-xxl-30,
  .m-xxl-30,
  .mx-xxl-30 {
    margin-left: 1.875rem;
  }
  .pl-xxl-30,
  .p-xxl-30,
  .px-xxl-30 {
    padding-left: 1.875rem;
  }
  .mr-xxl-30,
  .m-xxl-30,
  .mx-xxl-30 {
    margin-right: 1.875rem;
  }
  .pr-xxl-30,
  .p-xxl-30,
  .px-xxl-30 {
    padding-right: 1.875rem;
  }
  .d-xxl-none {
    display: none;
  }
  .d-xxl-block {
    display: block;
  }
  .d-xxl-flex {
    display: flex;
  }
  .align-xxl-items-start {
    align-items: flex-start;
  }
  .align-xxl-items-center {
    align-items: center;
  }
  .align-xxl-items-end {
    align-items: flex-end;
  }
  .align-xxl-content-center {
    align-content: center;
  }
  .justify-xxl-content-start {
    justify-content: flex-start;
  }
  .justify-xxl-content-center {
    justify-content: center;
  }
  .justify-xxl-content-end {
    justify-content: flex-end;
  }
  .justify-xxl-content-between {
    justify-content: space-between;
  }
  .justify-xxl-content-around {
    justify-content: space-around;
  }
  .justify-xxl-content-evenly {
    justify-content: space-evenly;
  }
  .text-xxl-center {
    text-align: center;
  }
  .text-xxl-right {
    text-align: right;
  }
  .text-xxl-left {
    text-align: left;
  }
}
.work-with-us .upload-field label, input[type=button],
input[type=reset],
input[type=submit], .btn {
  display: inline-block;
  padding: 0.75rem 3.5rem 0.94rem 1.57rem;
  vertical-align: top;
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 1.94rem;
  background-color: #09BDC9;
  transition: background-color 0.3s ease 0s, color 0.3s ease 0s, border-color 0.3s ease 0s;
  position: relative;
  font-weight: 500;
}
@media (max-width: 991px) {
  .work-with-us .upload-field label, input[type=button],
  input[type=reset],
  input[type=submit], .btn {
    font-size: 1.32rem;
    padding: 0.94rem 3.44rem 0.94rem 1.75rem;
  }
}
.work-with-us .upload-field label:hover, input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover, .btn:hover, a:hover .work-with-us .upload-field label, .work-with-us .upload-field a:hover label, a:hover input[type=button],
a:hover input[type=reset],
a:hover input[type=submit], a:hover .btn {
  text-decoration: none;
  color: #09BDC9;
  background-color: #ffffff;
  cursor: pointer;
}

.btn:after {
  content: "\e903";
  font-family: "undefend-icon";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  pointer-events: none;
}
@media (max-width: 991px) {
  .btn:after {
    font-size: 16px;
  }
}
.btn-link {
  margin-bottom: 0.13rem;
  color: #0A1940;
  font-size: 1rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease 0s, color 0.3s ease 0s, border-color 0.3s ease 0s;
}
.btn-link:hover, .btn-link:focus, a:hover .btn-link {
  color: #09BDC9;
  text-decoration: none;
  border-color: currentColor;
}
.btn-white {
  background: #ffffff;
  color: #09BDC9;
}
.btn-dark-bg:hover, .btn-dark-bg:focus {
  background: #ffffff;
  color: #09BDC9;
}
.btn-outline {
  background-color: transparent;
  border: 2px solid #09BDC9;
  font-size: 1.13rem;
  color: #09BDC9;
  font-weight: 500;
  padding: 0.5rem 1.13rem;
}
.btn-outline:hover, .btn-outline:focus {
  border-color: #0A1940;
}
.btn-outline::after {
  display: none;
}

input[type=button],
input[type=reset],
input[type=submit] {
  width: 100%;
  text-align: left;
  -webkit-appearance: button;
}
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  color: #09BDC9;
  background-color: #ffffff;
}

form label {
  display: block;
  margin-bottom: 0.63rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "roboto", sans-serif;
  font-size: 0.88rem;
  color: #000000;
}

input,
textarea,
button,
select {
  font-family: "roboto", 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.38rem;
  padding: 0 0.94rem;
  color: #000000;
  font-size: 1rem;
  font-weight: 400;
  border: 0.07rem solid #D0D0D0;
  border-radius: 0.32rem;
}
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: #09BDC9;
  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: 7.57rem;
  padding: 0.63rem 0.94rem;
  resize: none;
  overflow: auto;
}

select {
  -webkit-appearance: none;
  padding-right: 1.875em;
  color: rgba(0, 0, 0, 0.5);
  background-color: transparent;
  background-image: url("../images/select-down-arrow.svg");
  background-size: 0.94rem 0.57rem;
  background-position: right 14px center;
  background-repeat: no-repeat;
  cursor: pointer;
}
select option {
  color: #000000;
}

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.63rem;
}
.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.63rem;
  width: 0.63rem;
  margin-top: 0.19rem;
  margin-right: 0.63rem;
  background-color: #ffffff;
  border: 0.13rem solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0px 2px #000000;
  cursor: pointer;
}

.checkbox > span,
.gfield_checkbox > span {
  margin-left: 0;
  position: relative;
}
.checkbox input[type=checkbox],
.gfield_checkbox input[type=checkbox] {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: 1;
  margin: 0 !important;
  padding: 0;
  cursor: pointer;
}
.checkbox input[type=checkbox]:checked + label:after, .checkbox input[type=checkbox]:checked + .wpcf7-list-item-label:after,
.gfield_checkbox input[type=checkbox]:checked + label:after,
.gfield_checkbox input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}
.checkbox label, .checkbox .wpcf7-list-item-label,
.gfield_checkbox label,
.gfield_checkbox .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding-left: 1.88rem;
}
.checkbox label::before, .checkbox .wpcf7-list-item-label::before,
.gfield_checkbox label::before,
.gfield_checkbox .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  vertical-align: middle;
  height: 1.32rem;
  width: 1.32rem;
  background-color: transparent;
  border: 1px solid #707070;
  border-radius: 0.19rem;
  -webkit-appearance: none;
  cursor: pointer;
}
.checkbox label:after, .checkbox .wpcf7-list-item-label:after,
.gfield_checkbox label:after,
.gfield_checkbox .wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 7px;
  display: block;
  width: 0.44rem;
  height: 0.75rem;
  border: solid #09BDC9;
  border-width: 0 0.19rem 0.19rem 0;
  transform: rotate(42deg);
  opacity: 0;
  transition: 0.3s;
}

/* contact form 7 */
@media (max-width: 767px) {
  .submit-field {
    margin-top: 30px;
  }
}

.wpcf7 .btn {
  padding: 0;
}
.wpcf7-submit {
  background-color: transparent;
}
.wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: -1.87rem;
  margin: 0 !important;
  transform: translateY(-50%);
}
.wpcf7-response-output {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #65D193;
  font-size: 1.88rem !important;
  text-align: center;
}
@media (max-width: 991px) {
  .wpcf7 form.sent .wpcf7-response-output {
    font-size: 1.38rem !important;
  }
}
.wpcf7 form.sent .row, .wpcf7 form.sent .form-inner {
  display: none;
}
.wpcf7 form.invalid .wpcf7-response-output {
  border-color: #F2CC63;
}
.wpcf7 form.failed .wpcf7-response-output {
  border-color: #EB6272;
}
@media (max-width: 767px) {
  .wpcf7 .recevie-update-checkbox {
    margin-bottom: 0.94rem;
  }
}

/* contact form 7 on dark background */
.bg-dark .wpcf7 select {
  background-color: #ffffff;
}
.bg-dark .wpcf7-list-item-label {
  color: #ffffff;
}
.bg-dark .wpcf7-list-item-label::before {
  background-color: #ffffff;
}
.bg-dark .wpcf7-response-output {
  color: #ffffff;
}
.bg-dark .wpcf7 .btn::after {
  transition: 0.3s;
}
.bg-dark .wpcf7 .btn input[type=submit]:hover {
  background-color: #ffffff;
  color: #09BDC9;
}
.bg-dark .wpcf7 .btn input[type=submit]:focus {
  background-color: #09BDC9;
  color: #ffffff;
}
.bg-dark .wpcf7 .btn:hover input[type=submit] {
  background-color: #ffffff;
  color: #09BDC9;
}
.bg-dark .wpcf7 .btn:hover::after {
  color: #09BDC9;
}

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

.slick-dots li {
  padding: 0 0.32rem;
}

/* theme color borders */
.-purple {
  border-color: #AD53F0 !important;
}

.-green {
  border-color: #65D193 !important;
}

.-red {
  border-color: #EB6272 !important;
}

.-light-blue {
  border-color: #09BDC9 !important;
}

.-orange {
  border-color: #E88064 !important;
}

.-yellow {
  border-color: #F2CC63 !important;
}

/* responsive nav for small devices */
.hamburger {
  --humburgerBox: 1.57rem;
  display: none;
  align-items: center;
  justify-content: center;
  width: var(--humburgerBox);
  height: var(--humburgerBox);
  padding: 0;
  margin: 0;
  text-align: center;
  background-color: transparent;
  z-index: 999;
}
@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }
}
.hamburger:hover, .hamburger:focus {
  background-color: transparent;
  outline: none;
  cursor: pointer;
}
.hamburger span {
  position: relative;
  left: 0;
  right: 0;
  display: block;
  margin: 0 auto;
  border-radius: 0;
  height: 2px;
  width: 100%;
  background: #0A1940;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
  cursor: pointer;
  border-radius: 2px;
}
.hamburger span:before, .hamburger span:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #0A1940;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
  cursor: pointer;
  border-radius: 2px;
}
.hamburger span:before {
  top: -6px;
}
.hamburger span:after {
  bottom: -6px;
}
.hamburger.is-clicked span {
  background-color: transparent !important;
}
.hamburger.is-clicked span:before, .hamburger.is-clicked span:after {
  top: 0;
  background-color: #0A1940;
}
.hamburger.is-clicked span:before {
  transform: rotate(45deg);
}
.hamburger.is-clicked span:after {
  transform: translateY(-6px) rotate(-45deg);
  top: 6px;
}

.mbnav {
  position: relative;
  display: none;
  z-index: 999;
}
@media (max-width: 991px) {
  .mbnav {
    display: block;
  }
}
.mbnav.is-open .btn-wrap {
  transform: translateY(0);
}
.mbnav__state {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 100%;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  z-index: 999;
  pointer-events: none;
}
.mbnav__inner {
  position: relative;
  max-height: 100vh;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.mbnav__top {
  display: flex;
  justify-content: space-between;
  background: #09bdc9;
}
.mbnav__logo {
  color: #ffffff;
  padding: 15px;
}
.mbnav .menu-wrap {
  --leftSlide: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: var(--leftSlide);
  transition: 0.4s ease;
}
.mbnav .menu-wrap .menu-wrap {
  right: -100%;
  opacity: 0;
  visibility: hidden;
}
.mbnav .menu-wrap > .menu-inner {
  max-height: 100%;
  padding-top: 5.32rem;
  padding-bottom: 1.25rem;
  background-color: #ffffff;
  pointer-events: auto;
  overflow: hidden auto;
}
.mbnav ul {
  position: static;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0 20px;
  transition: 0.4s ease;
}
.mbnav ul li.is-open > .menu-wrap {
  opacity: 1;
  visibility: visible;
}
.mbnav ul li:not(.btn-wrap) {
  position: static;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
  margin: 0 0 0 0;
  list-style: none;
  color: #0A1940;
  font-size: 1.13rem;
  font-weight: 500;
  border-bottom: 1px solid #BCBCBC;
}
.mbnav ul li:not(.btn-wrap):last-child {
  border-bottom: 0;
}
.mbnav ul li:not(.btn-wrap)::before {
  display: none;
}
.mbnav ul li:not(.btn-wrap).has-sub a::after {
  display: none;
}
.mbnav ul li:not(.btn-wrap) .mbnav__caret::before, .mbnav ul li:not(.btn-wrap) a::after {
  content: "";
  --sArrowWidth: 10px;
  display: flex;
  align-items: center;
  margin: auto;
  width: var(--sArrowWidth);
  height: var(--sArrowWidth);
  border: calc(var(--sArrowWidth) / 4) solid #0A1940;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}
.mbnav ul li:not(.btn-wrap) a {
  position: relative;
  display: block;
  padding: 10px 0;
  color: currentColor;
  line-height: 1.3;
  text-decoration: none !important;
  z-index: 2;
  cursor: pointer;
  flex: 1 1 auto;
  order: -1;
}
.mbnav ul li:not(.btn-wrap) a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin-left: auto;
  margin-right: 0;
  display: none;
}
.mbnav__caret {
  display: grid;
  align-items: center;
  justify-content: flex-end;
  width: 30px;
  height: auto;
  cursor: pointer;
  z-index: 1;
}
.mbnav__caret:not(.trigger-caret) {
  pointer-events: none;
}
.color-mbnav .mbnav__caret::before {
  color: #0A1940 !important;
}

.mbnav ul li:not(.btn-wrap).is-open > .mbnav__caret:after {
  transform: rotate(0);
}
.mbnav ul li:not(.btn-wrap).has-sub > a {
  flex: 1 1 auto;
}
.mbnav ul li:not(.btn-wrap) .btn-wrap {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: calc(100% - 40px);
  margin: 0;
  transform: translateY(200%);
  transition: 0.4s ease-in-out;
}
.mbnav ul li:not(.btn-wrap) .btn-wrap::before {
  display: none;
}
.mbnav ul li:not(.btn-wrap) .btn-wrap a {
  display: block;
}
.mbnav ul ul li {
  font-size: 16px;
}
.mbnav ul ul li a {
  padding-left: 25px;
}
.mbnav ul ul li li {
  font-size: 14px;
}
.mbnav ul ul li li a {
  padding-left: 35px;
}
.mbnav ul > li > .sub-menu {
  position: absolute;
  left: 100%;
}
.mbnav ul .back-click {
  width: 100%;
  order: -1;
  color: currentColor;
  padding: 15px 0;
  font-weight: 400;
}
.mbnav ul .back-click::before {
  content: "\e906";
  font-family: "undefend-icon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-transform: none;
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
  color: #0A1940;
  margin-right: 15px;
  margin-bottom: 3px;
  font-size: 14px;
  border: 0;
  transform: rotate(180deg);
  top: -1px;
}
.mbnav__backdrop {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  visibility: hidden;
  transition: all 0.4s ease-in;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  z-index: -1;
}
.mbnav__overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.4s ease-in;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}
.mbnav__overlay.is-show {
  opacity: 1;
  visibility: visible;
}
.mbnav.is-open .mbnav__state {
  left: 0;
}
.mbnav.is-open .mbnav__backdrop {
  opacity: 1;
  z-index: 999;
  visibility: visible;
}

/*top header*/
.top-header-wrap {
  width: 100%;
  padding: 10px 0;
  background-color: #0A1940;
  z-index: 99;
}
.top-header-wrap .thw-imgwrap {
  position: relative;
  width: 22px;
  height: 22px;
  margin-right: 8px;
}
.top-header-wrap .thw-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.top-header-wrap .thw-content {
  display: flex;
  justify-content: center;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 500;
}
@media (max-width: 575px) {
  .top-header-wrap .thw-content {
    flex-wrap: wrap;
    font-size: 0.75rem;
  }
}
.top-header-wrap .thw-content span {
  display: block;
  color: #F2CC63;
  margin-right: 8px;
  text-transform: uppercase;
}
.top-header-wrap .thw-content p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .top-header-wrap .thw-content p {
    text-align: center;
  }
}
.top-header-wrap .thw-content a {
  display: inline-block;
  text-decoration: underline;
  text-transform: uppercase;
  transition: 0.6s color;
}
.top-header-wrap .thw-content a:hover {
  color: #ffffff;
  transition: 0.6s;
}

/*--- header ---*/
@media (max-width: 991px) {
  .header-wrap {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: #ffffff;
  z-index: 999;
  padding: 0;
  transition: all 0.3s;
  /* nav */
}
.main-header .brand {
  width: 13.32rem;
}
@media (max-width: 991px) {
  .main-header .brand {
    width: 11.25rem;
  }
}
@media (max-width: 767px) {
  .main-header .brand {
    width: 9.38rem;
  }
}
@media (min-width: 992px) {
  .main-header .mob-social {
    display: none;
  }
}
.main-header .right-header {
  padding-top: 25px;
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .main-header .right-header {
    display: none;
  }
}
.main-header .right-header ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-header .top-menu {
  margin-bottom: 1.5rem;
  justify-content: flex-end;
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .main-header .top-menu {
    margin-bottom: 0.94rem;
  }
}
.main-header .top-menu ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.main-header .top-menu ul li {
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0;
}
.main-header .top-menu ul li a {
  color: #7B7B7B;
  text-decoration: none;
}
.main-header .top-menu ul li a:hover {
  color: #09BDC9;
}
.main-header .top-menu .contact-details ul li {
  position: relative;
  padding: 0 8px;
}
.main-header .top-menu .contact-details ul li:not(:last-child):after {
  content: "|";
  position: absolute;
  top: 0;
  right: 0;
  font-size: 14px;
  color: #7B7B7B;
}
.main-header .top-menu .social-icons {
  margin-left: 7px;
}
.main-header .top-menu .social-icons ul {
  margin: 0 -4px;
}
.main-header .top-menu .social-icons ul li {
  padding: 0 4px;
  font-size: 18px;
}
@media (max-width: 991px) {
  .main-header .top-menu .social-icons ul li {
    font-size: 16px;
  }
}
.main-header .top-menu .social-icons ul li a {
  color: #09bdc9;
}
.main-header .top-menu .social-icons ul li a:hover {
  color: #0A1940;
}
.main-header .social-icons {
  margin-left: 7px;
}
@media (max-width: 991px) {
  .main-header .social-icons {
    margin-top: 2px;
  }
}
.main-header .social-icons ul {
  margin: 0 -4px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-self: flex-end;
}
@media (max-width: 991px) {
  .main-header .social-icons ul {
    padding-left: 0;
    margin-right: 10px;
  }
}
.main-header .social-icons ul li {
  padding: 0 4px;
  font-size: 18px;
}
@media (max-width: 991px) {
  .main-header .social-icons ul li {
    font-size: 16px;
  }
}
.main-header .social-icons ul li a {
  color: #09bdc9;
  text-decoration: none;
}
@media (max-width: 991px) {
  .main-header .social-icons ul li a {
    display: flex;
  }
}
.main-header .social-icons ul li a:hover {
  color: #0A1940;
}
.main-header .social-icons ul li a.fa-youtube {
  font-size: 1.38rem;
}
.main-header .social-icons ul li a.fa-linkedin-in {
  font-size: 1.25rem;
}
.main-header .navigation {
  word-break: keep-all;
}
.main-header .navigation ul {
  padding: 0;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin: 0 -11px;
}
.main-header .navigation ul:not(.sub-menu) > li:not(:last-child) > a {
  padding-bottom: 31px;
}
.main-header .navigation ul:not(.sub-menu) > li:not(:last-child):before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 10px;
  background: #09BDC9;
  transition: all 0.3s;
}
.main-header .navigation ul li {
  list-style: none;
  margin: 0 11px;
  padding: 4px 0 0px 0;
  font-size: 1.13rem;
  position: relative;
}
@media (max-width: 1199px) {
  .main-header .navigation ul li {
    margin: 0 7px;
  }
}
.main-header .navigation ul li a {
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s;
}
.main-header .navigation ul li a:hover {
  color: #09BDC9;
}
.main-header .navigation ul li.get-started a {
  padding: 6px 26px;
  font-size: 0.88rem;
  background: #09BDC9;
  border-radius: 20px;
  color: #ffffff;
}
.main-header .navigation ul li.get-started a:hover {
  background: #0A1940;
}
.main-header .navigation ul li.get-started.current-menu-item a {
  color: #ffffff;
  background: #0A1940;
}
.main-header .navigation ul li.current-menu-item > a {
  color: #09BDC9;
}
.main-header .navigation ul li.current-menu-item:before, .main-header .navigation ul li:hover:before {
  width: 100% !important;
}
.main-header .navigation ul li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  background: #0A1940;
  flex-wrap: wrap;
  margin: 0;
  padding: 16px 25px 10px 27px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.main-header .navigation ul li > ul li {
  display: block;
  width: 100%;
  padding: 0px 0 10px;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.main-header .navigation ul li > ul li a {
  color: #09BDC9;
  font-size: 1.13rem;
  padding: 10px 0 0;
  width: 100%;
  line-height: 1.2;
  white-space: nowrap;
}
.main-header .navigation ul li > ul li a:hover {
  color: #ffffff;
}
.main-header .navigation ul li > ul li:last-child {
  border-bottom: 0;
}
.main-header .navigation ul li > ul ul {
  position: relative;
  padding: 0;
  margin: 0;
  width: 100%;
  min-width: auto;
  opacity: 1;
  visibility: unset;
}
.main-header .navigation ul li > ul ul li {
  padding-left: 11px;
  border: none;
  padding-bottom: 5px;
}
.main-header .navigation ul li > ul ul li:before {
  content: "\e906";
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 9px;
  color: #ffffff;
  font-family: "undefend-icon";
  pointer-events: none;
}
.main-header .navigation ul li > ul ul li a {
  padding: 0;
  font-size: 1rem;
  display: block;
}
.main-header .navigation ul li > ul ul li.current-menu-item a {
  color: #ffffff;
}
.main-header .navigation ul li:hover > ul {
  opacity: 1;
  visibility: visible;
}
.main-header.fixed-header {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
}
.main-header.fixed-header .right-header {
  padding-top: 10px;
}
.main-header.fixed-header .top-menu {
  margin-bottom: 15px;
}
.main-header.fixed-header .navigation ul:not(.sub-menu) > li:not(:last-child) > a {
  padding-bottom: 20px;
}

.page-template-template-landing-page .wrapper {
  padding: 0;
}

.wrapper {
  padding-top: 138px;
}
@media (max-width: 991px) {
  .wrapper {
    padding-top: 68px;
  }
}

/*--- footer ---*/
.main-footer {
  width: 100%;
  height: auto;
  background: #0A1940;
  line-height: normal;
  padding: 2.5rem 0 0.82rem;
  position: relative;
}
@media (max-width: 991px) {
  .main-footer {
    padding: 2.5rem 0;
  }
}
.main-footer .bg-image {
  z-index: 0;
}
.main-footer .footer-logo {
  width: 100%;
  text-align: center;
  margin-bottom: 2.5rem;
}
.main-footer .footer-wrap .foote-menus .menu-column {
  padding: 0 0.94rem;
}
.main-footer .footer-wrap .foote-menus .menu-column .single-menu-wrap {
  margin-bottom: 1.88rem;
}
.main-footer .footer-wrap .foote-menus .menu-column .menu-title {
  display: block;
  margin-bottom: 0.38rem;
}
.main-footer .footer-wrap .foote-menus .menu-column ul {
  list-style: none;
  padding: 0;
}
.main-footer .footer-wrap .foote-menus .menu-column ul li {
  font-size: 0.88rem;
  padding: 0;
  margin-bottom: 0.44rem;
}
.main-footer .footer-wrap .foote-menus .menu-column ul li a {
  color: #09BDC9;
  text-decoration: none;
}
.main-footer .footer-wrap .foote-menus .menu-column ul li a:hover {
  color: #ffffff;
}
.main-footer .footer-wrap .foote-menus .menu-column ul li hr {
  border-color: rgba(188, 188, 188, 0.5);
  margin: 0.94rem 0;
}
.main-footer .footer-wrap .foote-menus .menu-column ul ul {
  margin-top: 0.44rem;
}
.main-footer .footer-wrap .foote-menus .menu-column ul ul li {
  position: relative;
  padding-left: 0.63rem;
}
.main-footer .footer-wrap .foote-menus .menu-column ul ul li:before {
  content: "\e906";
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 9px;
  color: #09BDC9;
  font-family: "undefend-icon";
}
.main-footer .footer-wrap .foote-menus .menu-column ul#menu-footer-menu3 {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(188, 188, 188, 0.5);
}
.main-footer .footer-wrap .foote-menus .menu-column:first-child {
  width: 31%;
}
@media (max-width: 767px) {
  .main-footer .footer-wrap .foote-menus .menu-column:first-child {
    width: 100%;
  }
}
.main-footer .footer-wrap .foote-menus .menu-column:nth-child(2) {
  width: 37%;
}
@media (max-width: 767px) {
  .main-footer .footer-wrap .foote-menus .menu-column:nth-child(2) {
    width: 100%;
  }
}
.main-footer .footer-wrap .foote-menus .menu-column:nth-child(3) {
  width: 32%;
}
@media (max-width: 767px) {
  .main-footer .footer-wrap .foote-menus .menu-column:nth-child(3) {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .main-footer .footer-wrap .footer-info-wrap {
    text-align: left;
  }
}
.main-footer .footer-wrap .footer-info-wrap .footer-logo {
  margin-bottom: 6.25rem;
  text-align: right;
}
@media (max-width: 991px) {
  .main-footer .footer-wrap .footer-info-wrap .footer-logo {
    display: none;
  }
}
@media (max-width: 991px) {
  .main-footer .footer-wrap .footer-info-wrap .info-content .contact-info ul {
    padding-left: 0;
  }
}
.main-footer .footer-wrap .footer-info-wrap .info-content .contact-info ul li {
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
@media (max-width: 991px) {
  .main-footer .footer-wrap .footer-info-wrap .info-content .contact-info ul li {
    justify-content: flex-start;
  }
}
.main-footer .footer-wrap .footer-info-wrap .info-content .contact-info ul li a {
  text-decoration: none;
  color: #ffffff;
}
.main-footer .footer-wrap .footer-info-wrap .info-content .contact-info ul li a:hover {
  color: #09BDC9;
}
@media (max-width: 991px) {
  .main-footer .footer-wrap .footer-info-wrap .info-content .contact-info ul li a {
    order: 2;
  }
}
.main-footer .footer-wrap .footer-info-wrap .info-content .contact-info ul li span {
  font-size: 1.07rem;
  margin-left: 0.38rem;
}
.main-footer .footer-wrap .footer-info-wrap .info-content .contact-info ul li span.icon-message-icon {
  font-size: 0.88rem;
}
@media (max-width: 991px) {
  .main-footer .footer-wrap .footer-info-wrap .info-content .contact-info ul li span {
    margin-left: 0;
    margin-right: 0.38rem;
  }
}
.main-footer .footer-wrap .footer-info-wrap .info-content .social-icons {
  margin-bottom: 2rem;
}
.main-footer .footer-wrap .footer-info-wrap .info-content .social-icons ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 -5px;
  list-style: none;
}
@media (max-width: 991px) {
  .main-footer .footer-wrap .footer-info-wrap .info-content .social-icons ul {
    justify-content: flex-start;
    padding-left: 0;
  }
}
.main-footer .footer-wrap .footer-info-wrap .info-content .social-icons ul li {
  padding: 0 5px;
}
.main-footer .footer-wrap .footer-info-wrap .info-content .social-icons ul li a {
  text-decoration: none;
  color: #09BDC9;
}
.main-footer .footer-wrap .footer-info-wrap .info-content .social-icons ul li a:hover {
  color: #ffffff;
}
.main-footer .footer-wrap .footer-info-wrap .info-content .btn {
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.57rem 1.63rem;
}
.main-footer .footer-wrap .footer-info-wrap .info-content .btn:hover {
  background: #ffffff;
  color: #09BDC9;
}
.main-footer .footer-wrap .footer-info-wrap .info-content .btn:after {
  display: none;
}
.main-footer .footer-wrap .footer-info-wrap .copyright-text {
  margin-top: 1.57rem;
}
@media (max-width: 991px) {
  .main-footer .footer-wrap .footer-info-wrap .copyright-text {
    text-align: center;
  }
}
.main-footer .footer-wrap .footer-info-wrap .copyright-text p {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 500;
}

.lp-footer-section {
  position: relative;
  width: 100%;
  height: auto;
  background: #0A1940;
  padding: 2.38rem 0;
}
@media (max-width: 767px) {
  .lp-footer-section {
    padding: 1.25rem 0;
  }
}
.lp-footer-section .bg-image {
  z-index: 0;
}
.lp-footer-section .lp-footer-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1;
  text-align: center;
}
.lp-footer-section .lp-copyright-text {
  color: #ffffff;
  font-size: 14px;
}
.lp-footer-section .lp-copyright-text p {
  margin-bottom: 6px;
}
.lp-footer-section .lp-footer-logo {
  width: 13.25rem;
  height: 2.5rem;
  margin-bottom: 2.07rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .lp-footer-section .lp-footer-logo {
    margin-bottom: 1.25rem;
  }
}
.lp-footer-section ul.lp-info {
  display: flex;
  padding-left: 0;
  margin-bottom: 6px;
}
.lp-footer-section ul.lp-info li {
  position: relative;
  padding: 0 8px;
  list-style: none;
}
.lp-footer-section ul.lp-info li:not(:last-child):after {
  content: "|";
  position: absolute;
  top: 0;
  right: 0;
  font-size: 14px;
  color: #ffffff;
}
.lp-footer-section ul.lp-info li:last-child {
  padding: 0 6px;
}
.lp-footer-section ul.lp-info li a {
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
}
.lp-footer-section ul.lp-info li a:hover {
  text-decoration: underline;
}

.hero-section {
  padding: 2.57rem 0 2.13rem;
  position: relative;
}
.hero-section:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 14, 42, 0.2);
}
.hero-content {
  padding-bottom: 2.32rem;
}
@media (max-width: 991px) {
  .hero-content {
    padding-bottom: 3.13rem;
  }
}
.hero-content h1 {
  color: #ffffff;
  font-weight: 300;
  padding-bottom: 2.19rem;
  margin-bottom: 1.88rem;
  position: relative;
}
.hero-content h1:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 69px;
  height: 5px;
  background: #ffffff;
}
.hero-content p {
  font-size: 1.13rem;
  line-height: 2;
  font-weight: 300;
}
.hero-content a.btn {
  margin-top: 0.82rem;
}
.hero-links-wrap {
  min-height: 33.5rem;
  max-width: 39.07rem;
  position: relative;
  margin: auto;
}
@media (max-width: 575px) {
  .hero-links-wrap {
    min-height: inherit;
  }
}
.hero-links-wrap ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 575px) {
  .hero-links-wrap ul {
    margin: 0 -0.62rem;
    display: flex;
    flex-wrap: wrap;
  }
}
.hero-links-wrap ul li {
  padding: 0;
  position: absolute;
  max-width: 16.25rem;
}
@media (max-width: 575px) {
  .hero-links-wrap ul li {
    position: static;
    padding: 0 0.63rem;
    width: 50%;
    max-width: 100%;
    margin-bottom: 1.25rem;
  }
}
.hero-links-wrap ul li span {
  color: #ffffff;
  padding-left: 3.38rem;
  display: inline-block;
  position: relative;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .hero-links-wrap ul li span {
    font-size: 0.88rem;
  }
}
@media (max-width: 575px) {
  .hero-links-wrap ul li span {
    padding-left: 2.75rem;
  }
}
.hero-links-wrap ul li span:before {
  content: "";
  position: absolute;
  left: 48px;
  top: 5px;
  width: 1px;
  height: calc(100% + 13px);
  background: #ffffff;
  min-height: 37px;
}
@media (max-width: 575px) {
  .hero-links-wrap ul li span:before {
    left: 38px;
  }
}
.hero-links-wrap ul li a {
  text-decoration: none;
}
.hero-links-wrap ul li a:hover span {
  color: #09BDC9;
}
.hero-links-wrap ul li .circle {
  width: 5.88rem;
  height: 5.88rem;
  position: relative;
  margin-top: -5px;
}
@media (max-width: 575px) {
  .hero-links-wrap ul li .circle {
    margin-left: -0.62rem;
  }
}
.hero-links-wrap ul li .circle figure {
  width: 94px;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-links-wrap ul li .circle figure img:not(.circle-image) {
  margin-top: -5px;
}
.hero-links-wrap ul li .circle figure .circle-image {
  position: absolute;
  top: 0;
  left: 0;
  animation: rotate 15s infinite linear;
}
.hero-links-wrap ul li .circle figure:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: url("../images/yellow-triangle.svg");
  width: 25px;
  height: 27px;
  background-repeat: no-repeat !important;
  transform: translate(-50%, -50%);
  background-size: 100%;
}
.hero-links-wrap ul li .circle.pink-image figure:before {
  background: url("../images/pink-triangle.svg");
}
.hero-links-wrap ul li .circle.purple-image figure:before {
  background: url("../images/purple-triangle.svg");
}
.hero-links-wrap ul li .circle.cyan-image figure:before {
  background: url("../images/blue-triangle.svg");
}
.hero-links-wrap ul li .circle.orange-image figure:before {
  background: url("../images/orange-triangle.svg");
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.hero-links-wrap ul li:first-child {
  top: 18px;
  left: -10px;
}
.hero-links-wrap ul li:nth-child(2) {
  top: 0;
  right: 0;
}
.hero-links-wrap ul li:nth-child(3) {
  top: 14.6%;
  left: 26%;
}
@media (max-width: 1100px) {
  .hero-links-wrap ul li:nth-child(3) {
    left: 22%;
  }
}
@media (max-width: 767px) {
  .hero-links-wrap ul li:nth-child(3) {
    left: 23%;
  }
}
.hero-links-wrap ul li:nth-child(4) {
  top: 39.7%;
  left: 27px;
}
.hero-links-wrap ul li:nth-child(5) {
  right: 36px;
  top: 30.5%;
}
@media (max-width: 767px) {
  .hero-links-wrap ul li:nth-child(5) {
    right: 20px;
  }
}
.hero-links-wrap ul li:nth-child(6) {
  bottom: 8.8%;
  left: -43px;
}
@media (max-width: 1100px) {
  .hero-links-wrap ul li:nth-child(6) {
    left: -15px;
  }
}
@media (max-width: 767px) {
  .hero-links-wrap ul li:nth-child(6) {
    left: -10px;
  }
}
.hero-links-wrap ul li:nth-child(7) {
  bottom: 17.2%;
  left: 39.6%;
}
@media (max-width: 1100px) {
  .hero-links-wrap ul li:nth-child(7) {
    left: 44.6%;
  }
}
.hero-links-wrap ul li:nth-child(8) {
  bottom: 0;
  right: -23px;
}
@media (max-width: 1100px) {
  .hero-links-wrap ul li:nth-child(8) {
    right: 0;
  }
}
@media (max-width: 767px) {
  .hero-links-wrap ul li:nth-child(8) {
    right: 0;
  }
}

.logo-slider {
  padding: 2rem 0 2.19rem;
}
.logo-slider .slick-track {
  align-items: center;
}
.logo-slider .item {
  padding: 0 0.63rem;
}
@media (max-width: 767px) {
  .logo-slider .item {
    padding: 0 1.25rem;
  }
}
.logo-slider .item figure {
  max-width: 11.25rem;
}
.logo-slider .item img {
  margin: auto;
  opacity: 0.3;
  transition: all 0.5s;
  max-width: 9.38rem;
  max-height: 6.25rem;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logo-slider .item img:hover {
  opacity: 1;
}

.section-heading {
  flex-wrap: wrap;
  border-bottom: 5px solid rgba(255, 255, 255, 0.16);
  padding-bottom: 2.19rem;
}
.section-heading .headings {
  width: calc(100% - 232px);
}
@media (max-width: 767px) {
  .section-heading .headings {
    width: 100%;
  }
}
.section-heading h2 {
  margin-bottom: 0.57rem;
}
.section-heading h6 {
  margin-bottom: 0;
  letter-spacing: 0.23rem;
  text-transform: uppercase;
}
.section-heading h6 + h2 {
  margin-top: 0.63rem;
  margin-bottom: 0;
}
.section-heading .btn-block {
  padding-left: 0.94rem;
}
@media (max-width: 767px) {
  .section-heading .btn-block {
    padding: 1.88rem 0 0;
    width: 100%;
  }
}
.section-heading.text-white h2 {
  color: #ffffff;
}
.section-heading.text-white h6 {
  color: #ffffff;
}

.title-btn {
  padding-top: 1.69rem;
}
.title-btn h4 {
  width: calc(100% - 217px);
  padding-right: 0.94rem;
  line-height: 1.5;
  font-weight: 400;
  max-width: 37.5rem;
  margin: 0;
}
@media (max-width: 767px) {
  .title-btn h4 {
    width: 100%;
    margin-bottom: 1.25rem;
  }
}

.product-section {
  background: #0A1940;
  padding: 1.69rem 0;
}
.product-blocks {
  padding-top: 0.82rem;
}
.product-blocks .row {
  margin: 0 -1.25rem;
}
@media (max-width: 991px) {
  .product-blocks .row {
    margin: 0 -0.93rem;
  }
}
.product-blocks .row .product {
  padding: 0 1.25rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 991px) {
  .product-blocks .row .product {
    padding: 0 0.94rem;
  }
}
@media (max-width: 767px) {
  .product-blocks .row .product {
    margin-bottom: 2.5rem;
  }
}
.product-blocks .row .product-heading {
  padding-bottom: 3px;
  border-bottom: 5px solid #fff;
  margin-bottom: 0.69rem;
}
.product-blocks .row .product-heading h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .product-blocks .row .product-heading h3 {
    font-size: 1.75rem;
  }
}
.product-blocks .row .product-heading h5 {
  color: #fff;
  font-size: 1.25rem;
}
@media (max-width: 991px) {
  .product-blocks .row .product-heading h5 {
    font-size: 1.13rem;
  }
}
.product-blocks .row .product-desc p {
  color: #fff;
  font-size: 1.13rem;
  line-height: 1.67;
  margin-bottom: 0.69rem;
  padding-right: 0.75rem;
}
.product-blocks .row .product-desc .product-btn {
  padding: 0.94rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .product-blocks .row .product-desc .product-btn {
    padding: 0.94rem 0.94rem;
  }
}
.product-blocks .row .product-desc .product-btn .btn {
  padding: 0.57rem 2.57rem 0.57rem 0.88rem;
  font-size: 0.88rem;
}
.product-blocks .row .product-desc .product-btn .btn:after {
  content: "";
  background: url("../images/border-arrow.svg");
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  right: 9px;
}
.product-blocks .row .product-desc .product-btn .product-logo {
  padding-left: 0.63rem;
}
@media (max-width: 991px) {
  .product-blocks .row .product-desc .product-btn .product-logo {
    padding-left: 0px;
    min-height: 33px;
    margin-top: 0.63rem;
  }
}
@media (max-width: 767px) {
  .product-blocks .row .product-desc .product-btn .product-logo {
    padding-left: 0.63rem;
    min-height: inherit;
    margin-top: 0;
  }
}
.product-blocks .row .product:nth-child(3n+1) .product-heading {
  border-color: #AD53F0;
}
.product-blocks .row .product:nth-child(3n+1) .product-desc .product-btn {
  background: #AD53F0;
}
.product-blocks .row .product:nth-child(3n+2) .product-heading {
  border-color: #EB6272;
}
.product-blocks .row .product:nth-child(3n+2) .product-desc .product-btn {
  background: #EB6272;
}
.product-blocks .row .product:nth-child(3n+3) .product-heading {
  border-color: #09BDC9;
}
.product-blocks .row .product:nth-child(3n+3) .product-desc .product-btn {
  background: #09BDC9;
}

.our-world {
  padding: 2.63rem 0;
  position: relative;
}
.our-world .section-heading {
  padding-bottom: 2.13rem;
  border-bottom: 0;
}
.our-world .world-tab {
  display: flex;
  flex-wrap: wrap;
}
.our-world .world-tab .tab-items {
  width: 36.5%;
  padding: 0 3.44rem 0 0.94rem;
}
@media (max-width: 991px) {
  .our-world .world-tab .tab-items {
    width: 40.23%;
    padding: 0 2.25rem 0 0;
  }
}
@media (max-width: 767px) {
  .our-world .world-tab .tab-items {
    width: 100%;
  }
}
.our-world .world-tab .tab-items .single-tab {
  padding-left: calc((100% - 1090px) / 2);
  margin-bottom: 1rem;
  position: relative;
}
@media (max-width: 991px) {
  .our-world .world-tab .tab-items .single-tab {
    padding-left: 1.25rem;
  }
}
.our-world .world-tab .tab-items .single-tab-wrap:not(:last-child) .tab-content {
  margin-bottom: 0.94rem;
}
.our-world .world-tab .tab-items .single-tab-wrap .tab-content {
  padding-left: 1.25rem;
}
@media (min-width: 768px) {
  .our-world .world-tab .tab-items .single-tab-wrap .tab-content {
    display: none !important;
  }
}
.our-world .world-tab .tab-items .single-tab .accordian-title {
  position: relative;
  cursor: pointer;
}
.our-world .world-tab .tab-items .single-tab .accordian-title h6 {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 1.44rem 2.32rem 1.44rem 0;
  position: relative;
  transition: all 0.3s;
}
.our-world .world-tab .tab-items .single-tab .accordian-title h6:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 68px;
  height: 5px;
  background: #ffffff;
  opacity: 0;
  transition: all 0.3s;
}
.our-world .world-tab .tab-items .single-tab .accordian-title:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: url("../images/tab-arrow.svg") no-repeat center center;
  background-size: 1.38rem;
  border-radius: 50%;
  transition: all 0.5s;
}
.our-world .world-tab .tab-items .single-tab .accordian-content {
  padding: 0 1.57rem 1.25rem 0;
}
@media (max-width: 991px) {
  .our-world .world-tab .tab-items .single-tab .accordian-content {
    padding: 0 0.63rem 1.25rem 0;
  }
}
.our-world .world-tab .tab-items .single-tab .accordian-content p {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.13rem;
  line-height: 1.66;
}
.our-world .world-tab .tab-items .single-tab:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  border: 5px solid #09BDC9;
  border-radius: 35px;
  border-left: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  z-index: -1;
}
.our-world .world-tab .tab-items .single-tab.active {
  background: #0A1940;
  background-position: top right;
  margin-right: 0;
  background-size: cover;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.our-world .world-tab .tab-items .single-tab.active:after {
  border: none;
  background: #0A1940;
}
.our-world .world-tab .tab-items .single-tab.active:before {
  content: "";
  position: absolute;
  left: calc(100% - 10px);
  top: 0;
  width: 47px;
  height: 100%;
  background: url(../images/tab-active-bg1.png) no-repeat top right;
  background-size: 100% 100%;
  backface-visibility: hidden;
}
.our-world .world-tab .tab-items .single-tab.active .accordian-title {
  pointer-events: none;
}
.our-world .world-tab .tab-items .single-tab.active .accordian-title h6 {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.33;
  font-weight: 300;
  color: #ffffff;
  padding: 1rem 1.57rem 1.75rem 0;
  margin-bottom: 1.75rem;
}
@media (max-width: 991px) {
  .our-world .world-tab .tab-items .single-tab.active .accordian-title h6 {
    font-size: 1.57rem;
  }
}
.our-world .world-tab .tab-items .single-tab.active .accordian-title h6:after {
  opacity: 1;
}
.our-world .world-tab .tab-items .single-tab.active .accordian-title:after {
  border: 3px solid #ffffff;
  transform: rotate(90deg);
  top: 10px;
  right: 5px;
}
.our-world .world-tab .tab-content .videos {
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .our-world .world-tab .tab-content .videos {
    margin: 0.63rem 0 1rem 0;
  }
}
.our-world .world-tab .tab-content .videos .vimeo-video {
  aspect-ratio: 16/9;
  position: relative;
  padding-bottom: 56.2%;
}
.our-world .world-tab .tab-content .videos .vimeo-video iframe {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
}
.our-world .world-tab .tab-content .videos .image {
  margin-bottom: 0 !important;
}
.our-world .world-tab .tab-content .image {
  margin: -1.25rem -0.81rem 1rem -1rem;
  position: relative;
}
@media (max-width: 991px) {
  .our-world .world-tab .tab-content .image {
    margin: -1.25rem 0 1rem 0;
  }
}
@media (max-width: 767px) {
  .our-world .world-tab .tab-content .image {
    margin: 0.63rem 0 1rem 0;
  }
}
.our-world .world-tab .tab-content .image img {
  width: 100%;
}
.our-world .world-tab .tab-content .image .icon-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4.82rem;
  color: #ffffff;
}
.our-world .world-tab .tab-content .image-block img {
  width: 100%;
}
.our-world .world-tab .tab-content .tab-text {
  max-width: 511px;
}
.our-world .world-tab .tab-content .tab-text h4 {
  margin-bottom: 0.69rem;
}
.our-world .world-tab .tab-content .tab-text p {
  font-size: 1.13rem;
  line-height: 1.66;
}
.our-world .world-tab .tab-content .tab-text a.btn {
  margin-top: 0.44rem;
}
@media (min-width: 992px) {
  .our-world .world-tab .tab-content .tab-text a.btn:after {
    font-size: 1.38rem;
  }
}
.our-world .world-tab .tab-content .title-content-block {
  margin-top: 2.5rem;
}
.our-world .world-tab .tab-content .title-content-block .text-block {
  padding-left: 2.19rem;
  position: relative;
}
.our-world .world-tab .tab-content .title-content-block .text-block:not(:last-child) {
  margin-bottom: 1.57rem;
}
.our-world .world-tab .tab-content .title-content-block .text-block:before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 22px;
  height: 22px;
  background: url("../images/tick-icon.svg") no-repeat center center;
  background-size: cover;
}
.our-world .world-tab .tab-content .title-content-block .text-block h6 {
  margin-bottom: 0.94rem;
  font-size: 1.13rem;
}
.our-world .world-tab .tab-content .title-content-block .text-block p {
  line-height: 1.875;
}
.our-world .world-tab .tab-content.image .owner-video {
  pointer-events: none;
  display: none;
}
.our-world .world-tab .tab-content.image .owner-video .image .icon-play-icon {
  display: none;
}
.our-world .world-tab .tab-content.video .image-block {
  display: none;
}
.our-world .world-tab .world-content {
  width: 63.5%;
  padding: 0 0.94rem 0 1.07rem;
  padding-right: calc((100% - 1090px) / 2);
}
@media (max-width: 1100px) {
  .our-world .world-tab .world-content {
    padding-right: 1.88rem;
  }
}
@media (max-width: 991px) {
  .our-world .world-tab .world-content {
    width: 59.77%;
    padding-right: 0.94rem;
  }
}
@media (max-width: 767px) {
  .our-world .world-tab .world-content {
    display: none;
  }
}

.page-id-205 .our-world .world-tab .tab-content .image, .page-id-392 .our-world .world-tab .tab-content .image {
  margin: 0 0 1rem 0;
}

.page-id-41 .our-world .world-tab .tab-content.video .image {
  display: none;
}
.page-id-41 .our-world .world-tab .tab-content.video .video-player {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
}
.page-id-41 .our-world .world-tab .tab-content .video-player {
  display: none;
}

.video-player {
  width: 100%;
}

.vimeo-video {
  aspect-ratio: 16/9;
  position: relative;
  padding-bottom: 56.2%;
}
.vimeo-video iframe {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
}

.lightbox-video {
  position: relative;
  display: block;
}
.lightbox-video .video-image {
  border-radius: 5px;
  overflow: hidden;
}
.lightbox-video .video-image img {
  width: 100%;
}
.lightbox-video .icon-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  font-size: 3.82rem;
}

.partner-security-section {
  padding: 3rem 0;
  background: #0A1940;
}
.partner-security-section .section-heading .left-heading {
  width: calc(100% - 232px);
}
@media (max-width: 767px) {
  .partner-security-section .section-heading .left-heading {
    width: 100%;
  }
}
.partner-security-section .section-heading .left-heading .headings {
  width: 53%;
}
@media (max-width: 767px) {
  .partner-security-section .section-heading .left-heading .headings {
    width: 100%;
    margin-bottom: 1.25rem;
  }
}
.partner-security-section .section-heading .left-heading .heading-para {
  width: 47%;
  max-width: 21.25rem;
  padding-left: 0.94rem;
  border-left: 5px solid #ffffff;
}
@media (max-width: 767px) {
  .partner-security-section .section-heading .left-heading .heading-para {
    width: 100%;
    max-width: 100%;
  }
}
.partner-security-section .section-heading .left-heading .heading-para p {
  font-size: 1.13rem;
  font-weight: 700;
  line-height: 1.66;
}
.partner-security-section .section-heading .btn-block {
  width: 232px;
}
.partner-security-section .block-icon {
  padding-top: 2.5rem;
}
.partner-security-section .block-icon .row {
  margin: 0 -0.75rem;
}
.partner-security-section .block-icon .row .single-block {
  padding: 0 0.75rem;
}
@media (max-width: 991px) {
  .partner-security-section .block-icon .row .single-block:not(:last-child) {
    margin-bottom: 1.88rem;
  }
}
@media (max-width: 767px) {
  .partner-security-section .block-icon .row .single-block:not(:last-child) {
    margin-bottom: 3.13rem;
  }
}
.partner-security-section .block-icon .row .single-block .single-block-wrap {
  padding-left: 0.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  height: 100%;
}

.single-block .block-image {
  margin-bottom: 1.5rem;
}
.single-block h6 {
  color: #ffffff;
  font-size: 1.13rem;
  padding-bottom: 1.57rem;
  margin-bottom: 1.25rem;
  position: relative;
}
.single-block h6:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 5px;
  background: rgba(255, 255, 255, 0.4);
}
.single-block .btn {
  font-size: 1.13rem;
  padding: 0.63rem 3.13rem 0.63rem 0.88rem;
}
.single-block .btn:after {
  font-size: 0.75rem;
  right: 15px;
}

.testimonial {
  background: #0A1940;
  padding: 2.38rem 0;
}
.testimonial-image {
  width: 26%;
}
@media (max-width: 767px) {
  .testimonial-image {
    width: 100%;
    text-align: center;
    margin-bottom: 1.25rem;
  }
}
.testimonial-content {
  width: 74%;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .testimonial-content {
    width: 100%;
  }
}
.testimonial-content .text {
  width: 54%;
  padding: 0 0.94rem 0 0.69rem;
}
@media (max-width: 991px) {
  .testimonial-content .text {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .testimonial-content .text {
    width: 100%;
    padding-right: 0;
    margin-bottom: 1.25rem;
  }
}
.testimonial-content .text p {
  font-size: 1.38rem;
  line-height: 1.63;
}
@media (max-width: 991px) {
  .testimonial-content .text p {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .testimonial-content .text p {
    font-size: 1.38rem;
  }
}
.testimonial-content .author-info {
  width: 46%;
  padding: 0.38rem 0 0 1.94rem;
  position: relative;
}
@media (max-width: 991px) {
  .testimonial-content .author-info {
    padding: 0.38rem 0 0 1.25rem;
  }
}
@media (max-width: 767px) {
  .testimonial-content .author-info {
    width: 100%;
  }
}
.testimonial-content .author-info h4 {
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 0.38rem;
}
.testimonial-content .author-info p {
  font-size: 1.13rem;
  margin-bottom: 0.38rem;
}
.testimonial-content .author-info .social-icons ul {
  padding: 0;
  margin: 0;
}
.testimonial-content .author-info .social-icons ul li {
  list-style: none;
  padding: 0;
}
.testimonial-content .author-info .social-icons ul li a {
  color: #09BDC9;
  text-decoration: none;
  font-size: 1.32rem;
}
.testimonial-content .author-info .social-icons ul li a:hover {
  color: #ffffff;
}
.testimonial-content .author-info .icon-quote-icon {
  font-size: 1.75rem;
  position: absolute;
  top: 6px;
  right: -3px;
  color: rgba(217, 217, 217, 0.3);
}
.testimonial-content .author-info:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: calc(100% - 10px);
  background: #BCBCBC;
}
@media (max-width: 767px) {
  .testimonial-content .author-info:after {
    height: 100%;
  }
}

.our-partner {
  padding: 3.32rem 0 4.69rem;
  position: relative;
}
.our-partner .section-heading {
  border-color: #BCBCBC;
  padding-bottom: 1.88rem;
}
.our-partner .section-heading h2 {
  margin-top: 0.88rem;
}
.our-partner .single-block h6 {
  color: #0A1940;
}
.our-partner .partner-blocks .title-btn {
  margin-bottom: 2.88rem;
}
.our-partner .partner-blocks .row {
  margin: 0 -0.43rem;
  margin-top: 2.88rem;
}
.our-partner .partner-blocks .single-block {
  padding: 0 0.44rem;
  height: auto;
}
.our-partner .partner-blocks .single-block .single-block-wrap {
  border: 3px solid #000;
  border-radius: 9px;
  padding: 0.88rem 0.82rem 0.69rem;
  height: 100%;
  transition: all 0.3s;
  background: #ffffff;
  cursor: pointer;
}
.our-partner .partner-blocks .single-block .single-block-wrap .block-image {
  position: relative;
  margin-bottom: 0.82rem;
  display: inline-flex;
  height: 3rem;
}
.our-partner .partner-blocks .single-block .single-block-wrap .block-image svg {
  width: 100%;
  height: 100%;
}
.our-partner .partner-blocks .single-block .single-block-wrap .block-image .hover {
  position: absolute;
  top: 0;
  left: 0;
  max-height: 46px;
  opacity: 0;
}
.our-partner .partner-blocks .single-block .single-block-wrap h6 {
  font-size: 1rem;
  padding-bottom: 1.13rem;
  margin-bottom: 1.07rem;
  transition: all 0.3s;
}
.our-partner .partner-blocks .single-block .single-block-wrap h6:after {
  width: 26px;
  height: 3px;
  background: #000;
  transition: all 0.3s;
}
.our-partner .partner-blocks .single-block .single-block-wrap p {
  font-size: 0.88rem;
  line-height: 1.71;
  transition: all 0.3s;
}
.our-partner .partner-blocks .single-block .single-block-wrap:hover {
  background: #09BDC9;
}
.our-partner .partner-blocks .single-block .single-block-wrap:hover .block-image {
  position: relative;
}
.our-partner .partner-blocks .single-block .single-block-wrap:hover .block-image .hover {
  opacity: 1;
  z-index: 1;
}
.our-partner .partner-blocks .single-block .single-block-wrap:hover .block-image svg path {
  fill: #fff !important;
}
.our-partner .partner-blocks .single-block .single-block-wrap:hover h6 {
  color: #ffffff;
}
.our-partner .partner-blocks .single-block .single-block-wrap:hover h6:after {
  background: #ffffff;
}
.our-partner .partner-blocks .single-block .single-block-wrap:hover p {
  color: #ffffff;
}
.our-partner .partner-blocks .single-block.active .block-image .hover, .our-partner .partner-blocks .single-block.slick-active .block-image .hover {
  opacity: 1;
  z-index: 1;
}
.our-partner .partner-blocks .single-block.active .block-image svg path, .our-partner .partner-blocks .single-block.slick-active .block-image svg path {
  fill: #ffffff !important;
}
.our-partner .partner-blocks .single-block.active h6, .our-partner .partner-blocks .single-block.slick-active h6 {
  color: #ffffff;
}
.our-partner .partner-blocks .single-block.active h6:after, .our-partner .partner-blocks .single-block.slick-active h6:after {
  background: #ffffff;
}
.our-partner .partner-blocks .single-block.active p, .our-partner .partner-blocks .single-block.slick-active p {
  color: #ffffff;
}
.our-partner .partner-blocks .single-block:nth-child(4n+1) .single-block-wrap {
  border-color: #09BDC9;
}
.our-partner .partner-blocks .single-block:nth-child(4n+1) .single-block-wrap .block-image svg path {
  fill: #09BDC9;
}
.our-partner .partner-blocks .single-block:nth-child(4n+1) .single-block-wrap h6:after {
  background: #09BDC9;
}
.our-partner .partner-blocks .single-block:nth-child(4n+1) .single-block-wrap:hover {
  background: #09BDC9;
}
.our-partner .partner-blocks .single-block:nth-child(4n+1) .single-block-wrap:hover h6:after {
  background: #ffffff;
}
.our-partner .partner-blocks .single-block:nth-child(4n+1).active .single-block-wrap, .our-partner .partner-blocks .single-block:nth-child(4n+1).slick-active .single-block-wrap {
  background: #09BDC9;
}
.our-partner .partner-blocks .single-block:nth-child(4n+1).active .single-block-wrap h6:after, .our-partner .partner-blocks .single-block:nth-child(4n+1).slick-active .single-block-wrap h6:after {
  background: #ffffff;
}
.our-partner .partner-blocks .single-block:nth-child(4n+2) .single-block-wrap {
  border-color: #EB6272;
}
.our-partner .partner-blocks .single-block:nth-child(4n+2) .single-block-wrap .block-image svg path {
  fill: #EB6272;
}
.our-partner .partner-blocks .single-block:nth-child(4n+2) .single-block-wrap h6:after {
  background: #EB6272;
}
.our-partner .partner-blocks .single-block:nth-child(4n+2) .single-block-wrap:hover {
  background: #EB6272;
}
.our-partner .partner-blocks .single-block:nth-child(4n+2) .single-block-wrap:hover h6:after {
  background: #ffffff;
}
.our-partner .partner-blocks .single-block:nth-child(4n+2).active .single-block-wrap, .our-partner .partner-blocks .single-block:nth-child(4n+2).slick-active .single-block-wrap {
  background: #EB6272;
}
.our-partner .partner-blocks .single-block:nth-child(4n+2).active .single-block-wrap h6:after, .our-partner .partner-blocks .single-block:nth-child(4n+2).slick-active .single-block-wrap h6:after {
  background: #ffffff;
}
.our-partner .partner-blocks .single-block:nth-child(4n+3) .single-block-wrap {
  border-color: #AD53F0;
}
.our-partner .partner-blocks .single-block:nth-child(4n+3) .single-block-wrap .block-image svg path {
  fill: #AD53F0;
}
.our-partner .partner-blocks .single-block:nth-child(4n+3) .single-block-wrap h6:after {
  background: #AD53F0;
}
.our-partner .partner-blocks .single-block:nth-child(4n+3) .single-block-wrap:hover {
  background: #AD53F0;
}
.our-partner .partner-blocks .single-block:nth-child(4n+3) .single-block-wrap:hover h6:after {
  background: #ffffff;
}
.our-partner .partner-blocks .single-block:nth-child(4n+3).active .single-block-wrap, .our-partner .partner-blocks .single-block:nth-child(4n+3).slick-active .single-block-wrap {
  background: #AD53F0;
}
.our-partner .partner-blocks .single-block:nth-child(4n+3).active .single-block-wrap h6:after, .our-partner .partner-blocks .single-block:nth-child(4n+3).slick-active .single-block-wrap h6:after {
  background: #ffffff;
}
.our-partner .partner-blocks .single-block:nth-child(4n+4) .single-block-wrap {
  border-color: #E88064;
}
.our-partner .partner-blocks .single-block:nth-child(4n+4) .single-block-wrap .block-image svg path {
  fill: #E88064;
}
.our-partner .partner-blocks .single-block:nth-child(4n+4) .single-block-wrap h6:after {
  background: #E88064;
}
.our-partner .partner-blocks .single-block:nth-child(4n+4) .single-block-wrap:hover {
  background: #E88064;
}
.our-partner .partner-blocks .single-block:nth-child(4n+4) .single-block-wrap:hover h6:after {
  background: #ffffff;
}
.our-partner .partner-blocks .single-block:nth-child(4n+4).active .single-block-wrap, .our-partner .partner-blocks .single-block:nth-child(4n+4).slick-active .single-block-wrap {
  background: #E88064;
}
.our-partner .partner-blocks .single-block:nth-child(4n+4).active .single-block-wrap h6:after, .our-partner .partner-blocks .single-block:nth-child(4n+4).slick-active .single-block-wrap h6:after {
  background: #ffffff;
}
.our-partner .block-slider-content {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .our-partner .block-slider-content {
    margin-top: 5rem;
  }
}
.our-partner .block-slider-content .single-slider-content {
  padding-right: calc((100% - 1090px) / 2);
}
@media (max-width: 991px) {
  .our-partner .block-slider-content .single-slider-content {
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  .our-partner .block-slider-content .single-slider-content {
    padding-right: 0;
  }
}
.our-partner .block-slider-content .single-slider-content .slider-wrap {
  display: flex;
  flex-wrap: wrap;
}
.our-partner .block-slider-content .single-slider-content .slider-wrap .slider-image {
  width: 61.4%;
  border-radius: 8px;
  position: relative;
  max-height: 100%;
}
@media (max-width: 991px) {
  .our-partner .block-slider-content .single-slider-content .slider-wrap .slider-image {
    width: 55%;
  }
}
@media (max-width: 767px) {
  .our-partner .block-slider-content .single-slider-content .slider-wrap .slider-image {
    width: 100%;
    padding-bottom: 60%;
  }
}
.our-partner .block-slider-content .single-slider-content .slider-wrap .slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.our-partner .block-slider-content .single-slider-content .slider-wrap .slider-content {
  width: 38.6%;
  padding-left: 2.94rem;
}
@media (max-width: 991px) {
  .our-partner .block-slider-content .single-slider-content .slider-wrap .slider-content {
    padding-left: 1.88rem;
    width: 45%;
  }
}
@media (max-width: 767px) {
  .our-partner .block-slider-content .single-slider-content .slider-wrap .slider-content {
    width: 100%;
    padding: 20px 0.94rem 0;
  }
}
@media (max-width: 767px) {
  .our-partner .block-slider-content .slick-arrow {
    top: -50px;
  }
}
@media (max-width: 767px) {
  .our-partner .block-slider-content .slick-arrow.slick-prev {
    left: calc(50% - 25px);
    transform: translateX(-50%) rotate(-180deg);
  }
}
@media (max-width: 767px) {
  .our-partner .block-slider-content .slick-arrow.slick-next {
    right: calc(50% - 25px);
    transform: translateX(50%);
  }
}

.tick-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.32rem 0;
}
.tick-list li {
  font-size: 1rem;
  line-height: 1.875;
  font-weight: 600;
  padding: 0 0 0 2rem;
  margin-bottom: 0.88rem;
  position: relative;
}
.tick-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  background: url("../images/tick-icon.svg") no-repeat center center;
}

.slick-arrow {
  width: 42px;
  height: 42px;
  background: url("../images/slider-arrow.svg") no-repeat center center;
  background-size: cover;
  border: none;
  background-color: #ffffff;
  border-radius: 50%;
  top: 50%;
  transition: all 0.5s;
}
.slick-arrow:hover {
  background-color: #0A1940;
}
.slick-arrow.slick-next {
  transform: rotate(0) translateY(-50%);
  right: 24px;
}
.slick-arrow.slick-prev {
  transform: translateY(-50%) rotate(-180deg);
  left: 24px;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-section {
  position: relative;
  z-index: 0;
  background: #47a9af;
  overflow: hidden;
}
@media (max-width: 991px) {
  .business-section {
    padding-bottom: 0;
    margin-top: 0;
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (max-width: 991px) {
  .business-section .bg-image {
    position: relative;
    z-index: 1;
  }
}
.business-section .bg-image img {
  object-position: top right;
}
@media (max-width: 1199px) {
  .business-section .bg-image img {
    object-position: top right;
  }
}
.business-content {
  max-width: 36.25rem;
  padding: 4.82rem 0 3.63rem;
}
@media (max-width: 991px) {
  .business-content {
    max-width: 100%;
    padding-bottom: 2.5rem;
  }
}
.business-content h6 {
  letter-spacing: 3.6px;
  color: #ffffff;
}
.business-content h2 {
  color: #ffffff;
  font-weight: 300;
  padding-bottom: 1.44rem;
  margin-bottom: 1.75rem;
  position: relative;
}
.business-content h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 68px;
  height: 5px;
  background: #ffffff;
}
.business-content p {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 1.82rem;
}
@media (max-width: 991px) {
  .business-content p {
    font-size: 1.38rem;
  }
}
.business-content .btn-white:after {
  content: "";
  background: url(../images/slider-arrow.svg);
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-size: 100%;
}
.business-image {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.business-image img {
  margin-top: auto;
  object-position: bottom left;
  bottom: 0;
  max-width: 143%;
}
@media (max-width: 991px) {
  .business-image img {
    width: 100%;
  }
}

.partner-support + .business-section .bg-image img {
  object-position: top right;
}
@media (max-width: 1199px) {
  .partner-support + .business-section .bg-image img {
    object-position: top right;
  }
}

.blindspot-integration + .business-section .bg-image img {
  object-position: 0 -20px;
}
@media (max-width: 1199px) {
  .blindspot-integration + .business-section .bg-image img {
    object-position: top right;
  }
}

.breadcum {
  margin-bottom: 1.07rem;
}
.breadcum span {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.breadcum span a {
  color: #ffffff;
  text-decoration: none;
}
.breadcum span a .icon-home-icon {
  font-size: 0.69rem;
}
.breadcum span a .icon-home-icon:before {
  transition: all 0.3s;
}
.breadcum span a:hover {
  color: #09BDC9;
}
.breadcum span a:hover .icon-home-icon:before {
  color: #09BDC9;
}
.breadcum span a,
.breadcum span strong {
  padding: 0 0.32rem;
  position: relative;
  font-size: 0.88rem;
  text-decoration: none;
  font-weight: 700;
}

.inner-page-hero-section {
  padding: 1.38rem 0 2.82rem;
}
.inner-page-hero-section .hero-content {
  padding-bottom: 0.94rem;
}
@media (max-width: 991px) {
  .inner-page-hero-section .hero-content {
    padding-bottom: 3.13rem;
  }
}
.inner-page-hero-section .hero-content-wrap .banner-logo {
  margin-bottom: 1.25rem;
}
.inner-page-hero-section .hero-content-wrap h1 {
  line-height: 1.4;
  padding-bottom: 0;
  margin-bottom: 0.44rem;
}
.inner-page-hero-section .hero-content-wrap h1:after {
  display: none;
}
.inner-page-hero-section .hero-content-wrap h1 + h6 {
  padding-top: 1.75rem;
  position: relative;
}
.inner-page-hero-section .hero-content-wrap h1 + h6::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 68px;
  height: 5px;
  background: #ffffff;
}
.inner-page-hero-section .hero-content-wrap h6 {
  color: #ffffff;
  margin-bottom: 0;
  letter-spacing: 3.6px;
  line-height: 1.66;
  text-transform: uppercase;
}
.inner-page-hero-section .hero-image .banner-image-wrap {
  position: relative;
  display: block;
}
.inner-page-hero-section .hero-image .banner-image-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.3);
}
.inner-page-hero-section .hero-image .banner-image-wrap .icon-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.inner-page-hero-section .hero-image .banner-image-wrap .icon-play-icon::before {
  font-size: 3.75rem;
}
.inner-page-hero-section .hero-image .banner-image {
  margin-left: 2.25rem;
  box-shadow: 0 3px 6px rgba(51, 51, 51, 0.45);
  overflow: hidden;
}
@media (max-width: 991px) {
  .inner-page-hero-section .hero-image .banner-image {
    margin-right: 0;
    margin-left: 0;
  }
}
.inner-page-hero-section .hero-image .banner-image img {
  width: 100%;
  border-radius: 5px;
}

.error-404 {
  margin: 3.13rem 0;
}

.our-innovations {
  padding: 2.5rem 0 3.13rem;
}
.our-innovations .section-heading {
  padding-bottom: 1.44rem;
}
.our-innovations .innovation-slider .innovation-thumb {
  padding-bottom: 2.19rem;
  margin-right: -0.75rem;
}
.our-innovations .innovation-slider .innovation-thumb .slick-track {
  margin: 0 -7px;
}
.our-innovations .innovation-slider .innovation-thumb .thumb-item {
  padding: 0 7px;
  height: auto;
  margin-bottom: 0.75rem;
}
.our-innovations .innovation-slider .innovation-thumb .thumb-item h4 {
  margin: 0;
  font-size: 1.38rem;
  color: #09BDC9;
  line-height: 1.36;
  padding: 1rem 0.63rem 1.13rem 0;
  position: relative;
  transition: all 0.3s;
  height: 100%;
  cursor: pointer;
}
@media (max-width: 1100px) {
  .our-innovations .innovation-slider .innovation-thumb .thumb-item h4 {
    font-size: 1.19rem;
  }
}
.our-innovations .innovation-slider .innovation-thumb .thumb-item h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #09BDC9;
  transition: all 0.3s;
}
.our-innovations .innovation-slider .innovation-thumb .thumb-item h4:before {
  content: "";
  position: absolute;
  left: 12px;
  top: 100%;
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 11px solid #0A1940;
  opacity: 0;
}
.our-innovations .innovation-slider .innovation-thumb .thumb-item.slick-current h4 {
  background: #0A1940;
  padding: 1rem 1.44rem 1.13rem 0.88rem;
  border-radius: 10px 10px 0 0;
  color: #ffffff;
}
.our-innovations .innovation-slider .innovation-thumb .thumb-item.slick-current h4:after {
  width: 0;
}
.our-innovations .innovation-slider .innovation-thumb .thumb-item.slick-current h4:before {
  opacity: 1;
}
.our-innovations .innovation-slider .innovation-main-carousel .content-wrap {
  padding-right: 2.5rem;
}
@media (max-width: 991px) {
  .our-innovations .innovation-slider .innovation-main-carousel .content-wrap {
    padding-right: 0;
  }
}
.our-innovations .innovation-slider .innovation-main-carousel .content-wrap h4 {
  margin-bottom: 1.38rem;
}
@media (max-width: 991px) {
  .our-innovations .innovation-slider .innovation-main-carousel .content-wrap h4 {
    font-size: 1.38rem;
  }
}
.our-innovations .innovation-slider .innovation-main-carousel .content-wrap .title-para {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .our-innovations .innovation-slider .innovation-main-carousel .content-wrap .title-para {
    font-size: 1.13rem;
  }
}
.our-innovations .innovation-slider .innovation-main-carousel .content-wrap .sub-title {
  font-size: 1.13rem;
  margin-bottom: 0.88rem;
}
.our-innovations .innovation-slider .innovation-main-carousel .content-wrap p {
  line-height: 1.875;
}
.our-innovations .innovation-slider .innovation-main-carousel .content-wrap a.btn {
  padding: 0.57rem 3.13rem 0.57rem 0.88rem;
  font-size: 1.13rem;
}
.our-innovations .innovation-slider .innovation-main-carousel .content-wrap a.btn:after {
  content: "";
  background: url(../images/border-arrow.svg);
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  right: 13px;
  background-color: #fff;
  border-radius: 50%;
  background-size: cover;
}
.our-innovations .innovation-slider .innovation-main-carousel .carousel-video {
  padding-left: 0;
  padding-top: 0.44rem;
}
@media (max-width: 767px) {
  .our-innovations .innovation-slider .innovation-main-carousel .carousel-video {
    padding-left: 0.94rem;
    padding-top: 2.5rem;
  }
}
.our-innovations .innovation-slider .innovation-main-carousel .carousel-video .video-image {
  border-radius: 5px;
  overflow: hidden;
}
.our-innovations .innovation-slider .innovation-main-carousel .carousel-video .video-image img {
  width: 100%;
}
.our-innovations .innovation-slider .innovation-main-carousel .carousel-video-wrap {
  position: relative;
}
.our-innovations .innovation-slider .innovation-main-carousel .carousel-video-wrap .icon-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  font-size: 3.82rem;
}
.our-innovations .innovation-slider .innovation-main-carousel .carousel-video-wrap .vimeo-video {
  position: relative;
  padding-bottom: 57%;
  aspect-ratio: 16/9;
  width: 100%;
}
.our-innovations .innovation-slider .innovation-main-carousel .carousel-video-wrap .vimeo-video iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.our-innovations .innovation-slider .innovation-main-carousel .carousel-video-wrap .video-player {
  width: 100%;
}
.our-innovations .innovation-slider .innovation-main-carousel .carousel-video.image .owner-video {
  pointer-events: none;
  display: none;
}
.our-innovations .innovation-slider .innovation-main-carousel .carousel-video.image .owner-video .icon-play-icon {
  display: none;
}
.our-innovations .innovation-slider .innovation-main-carousel .carousel-video.video .only-img {
  display: none;
}

.our-mission-section {
  padding: 4.19rem 0 3.38rem;
  position: relative;
}
.our-mission-wrap {
  max-width: 48.13rem;
  margin: auto;
}
.our-mission-wrap h6 {
  color: #ffffff;
  letter-spacing: 3.6px;
  padding-bottom: 2rem;
  margin-bottom: 1.75rem;
  position: relative;
  font-size: 1.13rem;
  line-height: 1.66;
}
.our-mission-wrap h6:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 76px;
  height: 5px;
  background: #ffffff;
}
.our-mission-wrap h2 {
  color: #ffffff;
  font-weight: 300;
  line-height: 1.4;
}
.our-mission-wrap .logo-img {
  margin-top: 1.07rem;
}

.our-mission-v2-section {
  padding: 4.19rem 0 3.38rem;
  position: relative;
}
.our-mission-v2-wrap .heading-wrap {
  max-width: 48.13rem;
  margin: 0 auto 1.25rem;
}
.our-mission-v2-wrap h6 {
  color: #ffffff;
  letter-spacing: 3.6px;
  padding-bottom: 2rem;
  margin-bottom: 1.75rem;
  position: relative;
  font-size: 1.13rem;
  line-height: 1.66;
}
.our-mission-v2-wrap h6:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 76px;
  height: 5px;
  background: #ffffff;
}
.our-mission-v2-wrap h2 {
  color: #ffffff;
  font-weight: 300;
  line-height: 1.4;
}

.our-culture {
  padding: 3.13rem 0 3.63rem;
  position: relative;
}
.our-culture .section-heading {
  padding-bottom: 1.88rem;
  margin-bottom: 2.07rem;
  border-color: #BCBCBC;
  flex-wrap: nowrap;
}
@media (max-width: 767px) {
  .our-culture .section-heading {
    flex-wrap: wrap;
  }
}
.our-culture .section-heading .headings {
  width: 100%;
}
.our-culture .section-heading .btn-block {
  max-width: 232px;
  width: 100%;
}
@media (max-width: 767px) {
  .our-culture .section-heading .btn-block {
    max-width: 100%;
  }
}
.our-culture-wrap .content {
  padding-left: calc((100% - 1090px) / 2);
}
@media (max-width: 1100px) {
  .our-culture-wrap .content {
    padding-left: 1.88rem;
  }
}
@media (max-width: 991px) {
  .our-culture-wrap .content {
    padding: 0 1.25rem;
  }
}
.our-culture-wrap .content h4 {
  line-height: 1.25;
}
.our-culture-wrap .content p {
  font-size: 1.25rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .our-culture-wrap .content p {
    font-size: 1.13rem;
  }
}
.our-culture-wrap .content h2 {
  font-weight: 300;
}
.our-culture-wrap .image-col {
  padding-right: 0;
}
@media (max-width: 991px) {
  .our-culture-wrap .image-col {
    margin-top: 1.88rem;
    padding: 0 1.25rem;
  }
}
.our-culture-wrap .image-col-wrap {
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  height: 100%;
  position: relative;
}
.our-culture-wrap .image-col img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .our-culture-wrap .image-col img {
    position: relative;
  }
}

.page-id-783 .how-it-works + .our-culture {
  background: #ffffff;
}

.our-value {
  background: #0A1940;
  padding: 2.63rem 0 1.57rem;
}
.our-value .section-heading {
  margin-bottom: 1.44rem;
}
.our-value-wrap p {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #ffffff;
  font-weight: 400;
}
@media (max-width: 991px) {
  .our-value-wrap p {
    font-size: 1.38rem;
  }
}
.our-value-wrap .value-blocks {
  margin-top: 2.19rem;
}
.our-value-wrap .value-blocks ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0 -0.68rem;
  list-style: none;
}
.our-value-wrap .value-blocks ul li {
  padding: 0 0.69rem;
  width: 16.66%;
  margin-bottom: 1.25rem;
}
@media (max-width: 991px) {
  .our-value-wrap .value-blocks ul li {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .our-value-wrap .value-blocks ul li {
    width: 33.33%;
  }
}
@media (max-width: 575px) {
  .our-value-wrap .value-blocks ul li {
    width: 50%;
  }
}
.our-value-wrap .value-blocks ul li span {
  color: #ffffff;
  font-size: 1.13rem;
  line-height: 2;
  font-weight: 700;
  width: 100%;
  height: 100%;
  border: 5px solid #000;
  border-radius: 50%;
  aspect-ratio: 1/1;
}
.our-value-wrap .value-blocks ul li:nth-child(6n+1) span {
  border-color: #AD53F0;
}
.our-value-wrap .value-blocks ul li:nth-child(6n+2) span {
  border-color: #65D193;
}
.our-value-wrap .value-blocks ul li:nth-child(6n+3) span {
  border-color: #EB6272;
}
.our-value-wrap .value-blocks ul li:nth-child(6n+4) span {
  border-color: #09BDC9;
}
.our-value-wrap .value-blocks ul li:nth-child(6n+5) span {
  border-color: #E88064;
}
.our-value-wrap .value-blocks ul li:nth-child(6n+6) span {
  border-color: #F2CC63;
}

.capability-section {
  padding: 3.13rem 0 1.13rem;
  position: relative;
}
.capability-section .section-heading {
  padding-bottom: 1.25rem;
  border-color: #BCBCBC;
}
.capability-section.no-bg .bg-image {
  display: none;
}
.capability-section.bg-dark .section-heading {
  border-color: rgba(255, 255, 255, 0.16);
}
.capability-section.bg-dark .section-heading h6, .capability-section.bg-dark .section-heading h2 {
  color: #ffffff;
}
.capability-section.bg-dark .capability-blocks h4 {
  color: #ffffff;
}
.capability-section.bg-dark .capability-blocks .single-block h6, .capability-section.bg-dark .capability-blocks .single-block p {
  color: #ffffff;
}
.capability-blocks .title-btn {
  margin-bottom: 2.88rem;
}
.capability-blocks .row {
  margin-top: 2.82rem;
}
.capability-blocks .single-block {
  margin-bottom: 2.82rem;
}
@media (max-width: 767px) {
  .capability-blocks .single-block {
    margin-bottom: 3.13rem;
  }
}
.capability-blocks .single-block-wrap {
  padding: 0 0 0 1.25rem;
  border-left: 1px solid #BCBCBC;
  height: 100%;
  margin: 0;
}
.capability-blocks .single-block-wrap .block-image {
  margin-bottom: 1.25rem;
  min-height: 68px;
  display: flex;
  align-items: center;
}
.capability-blocks .single-block-wrap h6 {
  color: #0A1940;
}
.capability-blocks .single-block-wrap h6:after {
  background: #BCBCBC;
}
.capability-blocks .single-block-wrap p a {
  color: #09BDC9;
  text-decoration: none;
}
.capability-blocks .single-block-wrap p a:hover {
  color: #0A1940;
}
.capability-blocks .single-block-wrap a.btn {
  margin-bottom: 1.25rem;
}
.capability-blocks .single-block-wrap ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.capability-blocks .single-block-wrap ul li {
  padding: 0 0 0 1.25rem;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
}
.capability-blocks .single-block-wrap ul li:before {
  content: "";
  position: absolute;
  left: 0;
  width: 12px;
  height: 12px;
  top: 6px;
  background: url("../images/tick-icon.svg") no-repeat center center;
  background-size: cover;
}

.security-failer-section {
  position: relative;
  padding: 2.69rem 0 0.94rem;
}
.security-failer-section .mid-text {
  max-width: 46.88rem;
  margin: 1.25rem 0.19rem 2.57rem;
}
.security-failer-section .mid-text p {
  font-size: 1.5rem;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .security-failer-section .mid-text p {
    font-size: 1.38rem;
  }
}
.security-failer-section .failer-blocks {
  padding: 2.13rem 0;
}
.security-failer-section .failer-blocks h6 {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3.7px;
  padding-bottom: 0.94rem;
  border-bottom: 5px solid rgba(255, 255, 255, 0.16);
  margin-bottom: 2.5rem;
  font-size: 1.13rem;
}
.security-failer-section .failer-blocks .row {
  margin: 0 -1.56rem;
}
@media (max-width: 991px) {
  .security-failer-section .failer-blocks .row {
    margin: 0 -0.93rem;
  }
}
.security-failer-section .failer-blocks .left-col {
  padding: 0 1.57rem;
}
@media (max-width: 991px) {
  .security-failer-section .failer-blocks .left-col {
    padding: 0 0.94rem;
  }
}
.security-failer-section .failer-blocks .left-col ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.security-failer-section .failer-blocks .left-col ul li {
  line-height: 1.57rem;
  padding: 0 0 0 2.07rem;
  font-weight: 700;
  margin-bottom: 1.19rem;
  position: relative;
}
.security-failer-section .failer-blocks .left-col ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.57rem;
  height: 1.57rem;
  background: url("../images/failer-icon.svg") no-repeat center center;
  background-size: cover;
}
.security-failer-section .failer-blocks .left-col .alert-blk {
  background: #F2CC63;
  margin: 1.88rem 0.69rem 0 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 1.38rem 1.19rem;
  position: relative;
}
.security-failer-section .failer-blocks .left-col .alert-blk:after {
  content: "";
  position: absolute;
  left: 0.75rem;
  left: 100%;
  width: 0;
  height: 0;
  border-left: 13px solid #f2cc63;
  border-right: 13px solid transparent;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}
.security-failer-section .failer-blocks .left-col .alert-blk img {
  margin-right: 0.63rem;
  margin-top: -0.31rem;
}
.security-failer-section .failer-blocks .left-col .alert-blk p {
  color: #0A1940;
}
.security-failer-section .failer-blocks .right-col {
  padding: 0 1.57rem;
}
@media (max-width: 991px) {
  .security-failer-section .failer-blocks .right-col {
    padding: 0 0.94rem;
  }
}
@media (max-width: 767px) {
  .security-failer-section .failer-blocks .right-col {
    margin-top: 3.13rem;
  }
}
.security-failer-section .failer-blocks .right-col .block-image {
  margin: -0.25rem -0.37rem;
}

.blindspot-section {
  padding: 3.13rem 0 0;
  position: relative;
}
.blindspot-section > .bg-image img {
  height: auto;
}
.blindspot-section .heading-part {
  margin-bottom: 3.32rem;
}
.blindspot-section .heading-part .section-heading {
  border-color: #BCBCBC;
}
.blindspot-section .heading-part .title-btn h4 {
  max-width: 39.69rem;
}
.blindspot-wrap .blindspot-title h6 {
  letter-spacing: 0.23rem;
  border-bottom: 0.32rem solid #BCBCBC;
  padding-bottom: 0.94rem;
  margin-bottom: 1.75rem;
}
.blindspot-wrap .blindspot-security {
  position: relative;
}
.blindspot-wrap .blindspot-security .bg-image img {
  object-position: 50% 100px;
}
.blindspot-wrap .blindspot-security-wrap {
  padding-bottom: 2.69rem;
}
.blindspot-wrap .blindspot-security-wrap .circle-block {
  margin: 0 -0.5rem;
}
.blindspot-wrap .blindspot-security-wrap .circle-block .single-circle {
  padding: 0 0.5rem;
}
@media (max-width: 767px) {
  .blindspot-wrap .blindspot-security-wrap .circle-block .single-circle {
    margin-bottom: 1.25rem;
  }
}
.blindspot-wrap .blindspot-security-wrap .circle-block .single-circle-wrap {
  aspect-ratio: 1/1;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50%;
  align-content: center;
  padding: 0.94rem;
  border: 5px solid #09BDC9;
  transition: all 0.3s;
}
@media (max-width: 575px) {
  .blindspot-wrap .blindspot-security-wrap .circle-block .single-circle-wrap {
    max-width: 15.63rem;
    margin: auto;
  }
}
.blindspot-wrap .blindspot-security-wrap .circle-block .single-circle-wrap .circle-icon {
  margin-bottom: 1.25rem;
  width: 100%;
  position: relative;
}
@media (max-width: 1100px) {
  .blindspot-wrap .blindspot-security-wrap .circle-block .single-circle-wrap .circle-icon {
    max-width: 5rem;
  }
}
@media (max-width: 991px) {
  .blindspot-wrap .blindspot-security-wrap .circle-block .single-circle-wrap .circle-icon {
    max-width: 3.75rem;
    margin-bottom: 0.63rem;
  }
}
.blindspot-wrap .blindspot-security-wrap .circle-block .single-circle-wrap .circle-icon img {
  transition: all 0.3s;
}
.blindspot-wrap .blindspot-security-wrap .circle-block .single-circle-wrap .circle-icon .hover {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}
.blindspot-wrap .blindspot-security-wrap .circle-block .single-circle-wrap h6 {
  line-height: 2;
  margin: 0;
  transition: all 0.3s;
  width: 100%;
}
@media (max-width: 991px) {
  .blindspot-wrap .blindspot-security-wrap .circle-block .single-circle-wrap h6 {
    font-size: 0.82rem;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .blindspot-wrap .blindspot-security-wrap .circle-block .single-circle-wrap h6 {
    font-size: 1.13rem;
    line-height: 1.5;
  }
}
.blindspot-wrap .blindspot-security-wrap .circle-block .single-circle:first-child, .blindspot-wrap .blindspot-security-wrap .circle-block .single-circle:last-child {
  margin-top: 2.69rem;
}
@media (max-width: 767px) {
  .blindspot-wrap .blindspot-security-wrap .circle-block .single-circle:first-child, .blindspot-wrap .blindspot-security-wrap .circle-block .single-circle:last-child {
    margin-top: 0;
  }
}
.blindspot-wrap .blindspot-security-wrap .circle-block .single-circle:hover .single-circle-wrap, .blindspot-wrap .blindspot-security-wrap .circle-block .single-circle.active .single-circle-wrap {
  background: #09BDC9;
  box-shadow: 0 0 20px #09BDC9;
}
.blindspot-wrap .blindspot-security-wrap .circle-block .single-circle:hover .single-circle-wrap .circle-icon .hover, .blindspot-wrap .blindspot-security-wrap .circle-block .single-circle.active .single-circle-wrap .circle-icon .hover {
  opacity: 1;
}
.blindspot-wrap .blindspot-security-wrap .circle-block .single-circle:hover .single-circle-wrap .circle-icon svg path, .blindspot-wrap .blindspot-security-wrap .circle-block .single-circle.active .single-circle-wrap .circle-icon svg path {
  fill: #ffffff;
}
.blindspot-wrap .blindspot-security-wrap .circle-block .single-circle:hover .single-circle-wrap h6, .blindspot-wrap .blindspot-security-wrap .circle-block .single-circle.active .single-circle-wrap h6 {
  color: #ffffff;
}
.blindspot-wrap .blindspot-security-wrap .circle-content-block {
  position: relative;
}
.blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 16.38rem;
  width: 100%;
}
@media (max-width: 991px) {
  .blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-logo {
    max-width: 15.32rem;
  }
}
@media (max-width: 767px) {
  .blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-logo {
    margin: 0 auto 1.25rem;
    position: static;
    transform: inherit;
  }
}
.blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-logo img {
  width: 100%;
}
.blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap {
  max-width: 50.63rem;
  min-height: 30.88rem;
  margin: auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (max-width: 767px) {
  .blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap {
    flex-direction: unset;
    min-height: inherit;
    margin: 0 -0.62rem;
  }
}
.blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap .circle-content {
  max-width: 15.07rem;
  background: #fff;
  padding: 1.13rem 1.44rem 0.69rem 0.94rem;
  counter-increment: circle-counter;
  border: 2px solid #09BDC9;
  border-radius: 0.63rem;
  margin: 0 auto;
  transition: all 0.3s;
  position: relative;
}
@media (max-width: 991px) {
  .blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap .circle-content {
    max-width: 13.13rem;
    padding: 1.13rem 0.63rem 0.69rem 0.63rem;
  }
}
@media (max-width: 767px) {
  .blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap .circle-content {
    max-width: 46.4%;
    width: 100%;
    margin: 0 0.63rem 1.25rem;
  }
}
@media (max-width: 575px) {
  .blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap .circle-content {
    max-width: 100%;
  }
}
.blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap .circle-content .arrow-image {
  position: absolute;
  top: 60px;
  right: -86px;
}
@media (max-width: 767px) {
  .blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap .circle-content .arrow-image {
    display: none;
  }
}
.blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap .circle-content .circle-block-wrap {
  padding-top: 4.69rem;
  position: relative;
  padding-left: 1rem;
}
@media (max-width: 991px) {
  .blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap .circle-content .circle-block-wrap {
    padding-top: 4.07rem;
  }
}
.blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap .circle-content .circle-block-wrap:before {
  content: "0" counter(circle-counter);
  position: absolute;
  left: 16px;
  top: 0;
  font-size: 4.5rem;
  font-weight: 100;
  line-height: 0.89;
}
@media (max-width: 991px) {
  .blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap .circle-content .circle-block-wrap:before {
    font-size: 4.07rem;
  }
}
.blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap .circle-content .circle-block-wrap:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: calc(100% - 10px);
  background: #09BDC9;
}
.blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap .circle-content .circle-block-wrap h6 {
  line-height: 2;
  margin: 0;
}
@media (max-width: 991px) {
  .blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap .circle-content .circle-block-wrap h6 {
    font-size: 1rem;
  }
}
.blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap .circle-content:nth-child(2) .arrow-image {
  position: absolute;
  left: -12px;
  transform: rotate(90deg);
  bottom: -84px;
  right: unset;
  top: unset;
}
.blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap .circle-content:nth-child(2), .blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap .circle-content:nth-child(4) {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap .circle-content:nth-child(2), .blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap .circle-content:nth-child(4) {
    position: static;
    transform: inherit;
  }
}
.blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap .circle-content:nth-child(3) {
  margin-top: auto;
}
@media (max-width: 767px) {
  .blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap .circle-content:nth-child(3) {
    margin-top: 0;
  }
}
.blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap .circle-content:nth-child(3) .arrow-image {
  top: inherit;
  bottom: 54px;
  right: inherit;
  left: -84px;
  transform: rotate(180deg);
}
.blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap .circle-content:nth-child(4) {
  right: inherit;
  left: 0;
}
.blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap .circle-content:nth-child(4) .arrow-image {
  right: -12px;
  top: -79px;
  transform: rotate(-90deg);
}
.blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap .circle-content.active {
  background: #09BDC9;
  box-shadow: 0 0 20px #09BDC9;
}
.blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap .circle-content.active .circle-block-wrap:before {
  color: #ffffff;
}
.blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap .circle-content.active .circle-block-wrap:after {
  background: #ffffff;
}
.blindspot-wrap .blindspot-security-wrap .circle-content-block .circle-content-wrap .circle-content.active .circle-block-wrap h6 {
  color: #ffffff;
}
.blindspot-wrap .blindspot-security .use-cases {
  padding-bottom: 3rem;
}
.blindspot-wrap .blindspot-security .use-cases .section-heading {
  border: none;
  padding-bottom: 1.88rem;
}
.blindspot-wrap .blindspot-security .use-cases .cases-wrap {
  margin: 0 -0.43rem;
}
.blindspot-wrap .blindspot-security .use-cases .cases-wrap .case-accordion {
  padding: 0 0.44rem;
}
@media (max-width: 991px) {
  .blindspot-wrap .blindspot-security .use-cases .cases-wrap .case-accordion {
    margin-bottom: 1.88rem;
  }
}
.blindspot-wrap .blindspot-security .use-cases .cases-wrap .case-accordion .accordion-wrap {
  border: 2px solid #000;
  border-radius: 10px;
  padding-bottom: 2.5rem;
  overflow: hidden;
  position: relative;
  background: #ffffff;
  transition: all 0.3s;
}
.blindspot-wrap .blindspot-security .use-cases .cases-wrap .case-accordion .accordion-wrap .accordion-title {
  padding: 1.13rem 1.57rem 1.63rem 1rem;
}
.blindspot-wrap .blindspot-security .use-cases .cases-wrap .case-accordion .accordion-wrap .accordion-title h3 {
  font-size: 1.88rem;
  font-weight: 400;
  margin: 0;
}
.blindspot-wrap .blindspot-security .use-cases .cases-wrap .case-accordion .accordion-wrap .accordion-title .arrow {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  text-align: right;
  padding: 0.63rem 0.94rem 0.38rem;
  background: #0A1940;
}
.blindspot-wrap .blindspot-security .use-cases .cases-wrap .case-accordion .accordion-wrap .accordion-title .arrow span {
  display: inline-block;
  transform: rotate(90deg);
  font-size: 1.07rem;
  transition: all 0.5s;
  cursor: pointer;
}
.blindspot-wrap .blindspot-security .use-cases .cases-wrap .case-accordion .accordion-wrap .accordion-content {
  padding: 0 0.94rem 1rem 1.13rem;
  margin-top: -0.68rem;
}
.blindspot-wrap .blindspot-security .use-cases .cases-wrap .case-accordion .accordion-wrap .accordion-content p {
  font-size: 1.13rem;
  line-height: 1.66;
  font-weight: 400;
  margin-bottom: 1.13rem;
  color: #ffffff;
}
.blindspot-wrap .blindspot-security .use-cases .cases-wrap .case-accordion .accordion-wrap .accordion-content a.btn {
  font-size: 1.13rem;
  padding: 0.57rem 3.07rem 0.57rem 0.88rem;
}
.blindspot-wrap .blindspot-security .use-cases .cases-wrap .case-accordion .accordion-wrap .accordion-content a.btn:after {
  font-size: 0.75rem;
  right: 15px;
}
.blindspot-wrap .blindspot-security .use-cases .cases-wrap .case-accordion:first-child .accordion-wrap {
  border-color: #EB6272;
}
.blindspot-wrap .blindspot-security .use-cases .cases-wrap .case-accordion:first-child .accordion-title .arrow {
  background: #EB6272;
}
.blindspot-wrap .blindspot-security .use-cases .cases-wrap .case-accordion:nth-child(2) .accordion-wrap {
  border-color: #AD53F0;
}
.blindspot-wrap .blindspot-security .use-cases .cases-wrap .case-accordion:nth-child(2) .accordion-title .arrow {
  background: #AD53F0;
}
.blindspot-wrap .blindspot-security .use-cases .cases-wrap .case-accordion:nth-child(3) .accordion-wrap {
  border-color: #E88064;
}
.blindspot-wrap .blindspot-security .use-cases .cases-wrap .case-accordion:nth-child(3) .accordion-title .arrow {
  background: #E88064;
}
.blindspot-wrap .blindspot-security .use-cases .cases-wrap .case-accordion:nth-child(4) .accordion-wrap {
  border-color: #F2CC63;
}
.blindspot-wrap .blindspot-security .use-cases .cases-wrap .case-accordion:nth-child(4) .accordion-title .arrow {
  background: #F2CC63;
}
.blindspot-wrap .blindspot-security .use-cases .cases-wrap .case-accordion.active .accordion-wrap {
  padding-bottom: 0;
}
.blindspot-wrap .blindspot-security .use-cases .cases-wrap .case-accordion.active .accordion-wrap .accordion-title h3 {
  color: #ffffff;
}
.blindspot-wrap .blindspot-security .use-cases .cases-wrap .case-accordion.active .accordion-wrap .accordion-title .arrow span {
  transform: rotate(-90deg);
}
.blindspot-wrap .blindspot-security .use-cases .cases-wrap .case-accordion.active:first-child .accordion-wrap {
  background: #EB6272;
}
.blindspot-wrap .blindspot-security .use-cases .cases-wrap .case-accordion.active:nth-child(2) .accordion-wrap {
  background: #AD53F0;
}
.blindspot-wrap .blindspot-security .use-cases .cases-wrap .case-accordion.active:nth-child(3) .accordion-wrap {
  background: #E88064;
}
.blindspot-wrap .blindspot-security .use-cases .cases-wrap .case-accordion.active:nth-child(4) .accordion-wrap {
  background: #F2CC63;
}

.blind-spot-partner {
  padding: 2.19rem 0 3.19rem;
  position: relative;
  background: #0A1940;
}
.blind-spot-partner .section-heading {
  border-color: #BCBCBC;
  padding-bottom: 1.88rem;
}
.blind-spot-partner .section-heading h2 {
  margin-top: 0.88rem;
}
.blind-spot-partner .single-block h6 {
  color: #0A1940;
}
.blind-spot-partner .partner-blocks .title-btn {
  margin-bottom: 2.88rem;
}
.blind-spot-partner .partner-blocks .title-btn h4 {
  color: #ffffff;
}
.blind-spot-partner .partner-blocks .row {
  margin: 0 -0.43rem;
  justify-content: center;
}
.blind-spot-partner .partner-blocks .single-block {
  padding: 0 0.44rem;
  height: auto;
}
@media (max-width: 991px) {
  .blind-spot-partner .partner-blocks .single-block {
    width: 50%;
    margin-bottom: 1.88rem;
  }
}
@media (max-width: 575px) {
  .blind-spot-partner .partner-blocks .single-block {
    width: 100%;
  }
}
.blind-spot-partner .partner-blocks .single-block .sb-wrapper {
  display: block;
  height: 100%;
  text-decoration: none;
}
.blind-spot-partner .partner-blocks .single-block .single-block-wrap {
  border: 3px solid #000;
  border-radius: 0.57rem;
  padding: 0.88rem 0.82rem 0.69rem;
  height: 100%;
  transition: all 0.3s;
  background: #ffffff;
}
.blind-spot-partner .partner-blocks .single-block .single-block-wrap .block-image {
  position: relative;
  margin-bottom: 0.82rem;
  display: inline-flex;
  height: 2.88rem;
}
.blind-spot-partner .partner-blocks .single-block .single-block-wrap .block-image svg {
  width: 100%;
  height: 100%;
}
.blind-spot-partner .partner-blocks .single-block .single-block-wrap .block-image .hover {
  position: absolute;
  top: 0;
  left: 0;
  max-height: 46px;
  opacity: 0;
}
.blind-spot-partner .partner-blocks .single-block .single-block-wrap h6 {
  font-size: 1rem;
  padding-bottom: 1.13rem;
  margin-bottom: 1.07rem;
  transition: all 0.3s;
}
.blind-spot-partner .partner-blocks .single-block .single-block-wrap h6:after {
  width: 26px;
  height: 3px;
  background: #000;
  transition: all 0.3s;
}
.blind-spot-partner .partner-blocks .single-block .single-block-wrap p {
  font-size: 0.88rem;
  line-height: 1.71;
  transition: all 0.3s;
}
.blind-spot-partner .partner-blocks .single-block .single-block-wrap .btn {
  margin-bottom: 0.63rem;
}
.blind-spot-partner .partner-blocks .single-block .single-block-wrap:hover {
  background: #09BDC9;
}
.blind-spot-partner .partner-blocks .single-block .single-block-wrap:hover .block-image {
  position: relative;
}
.blind-spot-partner .partner-blocks .single-block .single-block-wrap:hover .block-image .hover {
  opacity: 1;
  z-index: 1;
}
.blind-spot-partner .partner-blocks .single-block .single-block-wrap:hover .block-image svg path {
  fill: #ffffff;
}
.blind-spot-partner .partner-blocks .single-block .single-block-wrap:hover h6 {
  color: #ffffff;
}
.blind-spot-partner .partner-blocks .single-block .single-block-wrap:hover h6:after {
  background: #ffffff;
}
.blind-spot-partner .partner-blocks .single-block .single-block-wrap:hover p {
  color: #ffffff;
}
.blind-spot-partner .partner-blocks .single-block:nth-child(4n+1) .single-block-wrap {
  border-color: #09BDC9;
}
.blind-spot-partner .partner-blocks .single-block:nth-child(4n+1) .single-block-wrap .block-image svg path {
  fill: #09BDC9;
}
.blind-spot-partner .partner-blocks .single-block:nth-child(4n+1) .single-block-wrap h6:after {
  background: #09BDC9;
}
.blind-spot-partner .partner-blocks .single-block:nth-child(4n+1) .single-block-wrap:hover {
  background: #09BDC9;
}
.blind-spot-partner .partner-blocks .single-block:nth-child(4n+1) .single-block-wrap:hover .block-image svg path {
  fill: #ffffff;
}
.blind-spot-partner .partner-blocks .single-block:nth-child(4n+1) .single-block-wrap:hover h6:after {
  background: #ffffff;
}
.blind-spot-partner .partner-blocks .single-block:nth-child(4n+2) .single-block-wrap {
  border-color: #EB6272;
}
.blind-spot-partner .partner-blocks .single-block:nth-child(4n+2) .single-block-wrap .block-image svg path {
  fill: #EB6272;
}
.blind-spot-partner .partner-blocks .single-block:nth-child(4n+2) .single-block-wrap h6:after {
  background: #EB6272;
}
.blind-spot-partner .partner-blocks .single-block:nth-child(4n+2) .single-block-wrap:hover {
  background: #EB6272;
}
.blind-spot-partner .partner-blocks .single-block:nth-child(4n+2) .single-block-wrap:hover .block-image svg path {
  fill: #ffffff;
}
.blind-spot-partner .partner-blocks .single-block:nth-child(4n+2) .single-block-wrap:hover h6:after {
  background: #ffffff;
}
.blind-spot-partner .partner-blocks .single-block:nth-child(4n+3) .single-block-wrap {
  border-color: #AD53F0;
}
.blind-spot-partner .partner-blocks .single-block:nth-child(4n+3) .single-block-wrap .block-image svg path {
  fill: #AD53F0;
}
.blind-spot-partner .partner-blocks .single-block:nth-child(4n+3) .single-block-wrap h6:after {
  background: #AD53F0;
}
.blind-spot-partner .partner-blocks .single-block:nth-child(4n+3) .single-block-wrap:hover {
  background: #AD53F0;
}
.blind-spot-partner .partner-blocks .single-block:nth-child(4n+3) .single-block-wrap:hover .block-image svg path {
  fill: #ffffff;
}
.blind-spot-partner .partner-blocks .single-block:nth-child(4n+3) .single-block-wrap:hover h6:after {
  background: #ffffff;
}
.blind-spot-partner .partner-blocks .single-block:nth-child(4n+4) .single-block-wrap {
  border-color: #E88064;
}
.blind-spot-partner .partner-blocks .single-block:nth-child(4n+4) .single-block-wrap .block-image svg path {
  fill: #E88064;
}
.blind-spot-partner .partner-blocks .single-block:nth-child(4n+4) .single-block-wrap h6:after {
  background: #E88064;
}
.blind-spot-partner .partner-blocks .single-block:nth-child(4n+4) .single-block-wrap:hover {
  background: #E88064;
}
.blind-spot-partner .partner-blocks .single-block:nth-child(4n+4) .single-block-wrap:hover .block-image svg path {
  fill: #ffffff;
}
.blind-spot-partner .partner-blocks .single-block:nth-child(4n+4) .single-block-wrap:hover h6:after {
  background: #ffffff;
}

.blindspot-integration {
  padding: 4.07rem 0;
}
.blindspot-integration .hero-content-wrap {
  padding-right: 2.19rem;
}
@media (max-width: 1100px) {
  .blindspot-integration .hero-content-wrap {
    padding-right: 0;
  }
}
.blindspot-integration .hero-content-wrap h1 {
  padding-bottom: 1.25rem;
}
@media (min-width: 1100px) {
  .blindspot-integration .hero-content-wrap h1 {
    font-size: 4.5rem;
    line-height: 1.25;
  }
}
.blindspot-integration .hero-content-wrap h6 {
  color: #ffffff;
  letter-spacing: 3.6px;
  text-transform: uppercase;
}
.blindspot-integration .hero-content-wrap p {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1100px) {
  .blindspot-integration .hero-content-wrap p {
    padding-right: 0.94rem;
  }
}
.blindspot-integration .hero-content-wrap a.btn {
  text-align: left;
  line-height: 1.5;
  font-weight: 500;
  border-radius: 10px;
}
@media (min-width: 1100px) {
  .blindspot-integration .hero-content-wrap a.btn {
    padding-right: 5.13rem;
    padding-left: 1.25rem;
    margin-right: 1.57rem;
  }
}
.blindspot-integration .hero-links-wrap ul li:first-child {
  top: 41px;
  left: 42px;
}
.blindspot-integration .hero-links-wrap ul li:nth-child(2) {
  top: -23px;
  right: 22%;
}
@media (max-width: 767px) {
  .blindspot-integration .hero-links-wrap ul li:nth-child(2) {
    top: 0;
  }
}
.blindspot-integration .hero-links-wrap ul li:nth-child(3) {
  top: 27.3%;
  left: 28.2%;
}
.blindspot-integration .hero-links-wrap ul li:nth-child(4) {
  top: 36.7%;
  right: 64px;
  left: inherit;
}
.blindspot-integration .hero-links-wrap ul li:nth-child(5) {
  left: 36px;
  bottom: 116px;
  top: inherit;
}
.blindspot-integration .hero-links-wrap ul li:nth-child(6) {
  bottom: 3.8%;
  left: 41%;
}

.anchor-section {
  padding: 2.25rem 0;
  background: #0A1940;
}
.anchor-wrap h4 {
  margin-bottom: 1.5rem;
  color: #ffffff;
}
@media (max-width: 767px) {
  .anchor-wrap h4 {
    font-size: 1.25rem;
  }
}
.anchor-wrap h6 {
  text-transform: uppercase;
  letter-spacing: 0.23rem;
  color: #ffffff;
  font-size: 1.13rem;
}
.anchor-wrap .anchor-btns {
  margin: 1.88rem -0.75rem 0.25rem;
}
@media (max-width: 991px) {
  .anchor-wrap .anchor-btns {
    margin: 1.88rem -0.31rem 0.25rem;
  }
}
@media (max-width: 575px) {
  .anchor-wrap .anchor-btns {
    justify-content: flex-start;
  }
}
.anchor-wrap .anchor-btns .btn {
  margin: 0 0.75rem;
  padding: 0.82rem 3.94rem 1.07rem 1.63rem;
}
@media (max-width: 1100px) {
  .anchor-wrap .anchor-btns .btn {
    font-size: 1.38rem;
  }
}
@media (max-width: 991px) {
  .anchor-wrap .anchor-btns .btn {
    font-size: 1.13rem;
    padding: 0.63rem 3.13rem 0.63rem 0.94rem;
    margin: 0 0.32rem;
  }
}
@media (max-width: 767px) {
  .anchor-wrap .anchor-btns .btn {
    margin-bottom: 0.63rem;
  }
}
@media (max-width: 575px) {
  .anchor-wrap .anchor-btns .btn {
    width: 100%;
    text-align: left;
  }
}
.anchor-wrap .anchor-btns .btn:after {
  transform: translateY(-50%) rotate(90deg);
}

.anchor-heading {
  padding: 1.94rem 0 2.07rem;
}
.anchor-heading h2 {
  font-size: 3.68rem;
  line-height: 1.17;
  font-weight: 300;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .anchor-heading h2 {
    font-size: 3.13rem;
  }
}
@media (max-width: 767px) {
  .anchor-heading h2 {
    font-size: 2.5rem;
  }
}

.partner-tab .tabs-nav {
  background: #09BDC9;
  padding: 0.88rem 0;
}
.partner-tab .tabs-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -7px;
  padding: 0;
  list-style: none;
}
@media (max-width: 767px) {
  .partner-tab .tabs-nav ul {
    flex-wrap: wrap;
  }
}
.partner-tab .tabs-nav ul li {
  padding: 0 7px;
}
@media (max-width: 767px) {
  .partner-tab .tabs-nav ul li {
    margin-bottom: 0.94rem;
  }
}
@media (max-width: 575px) {
  .partner-tab .tabs-nav ul li {
    width: 100%;
  }
}
.partner-tab .tabs-nav ul li .btn {
  font-size: 1.13rem;
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-weight: 500;
  padding: 0.5rem 2.5rem 0.5rem 1.13rem;
}
@media (max-width: 575px) {
  .partner-tab .tabs-nav ul li .btn {
    width: 100%;
    text-align: left;
  }
}
.partner-tab .tabs-nav ul li .btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 9px;
  width: 17px;
  height: 17px;
  background: url("../images/tab-arrow.svg") no-repeat center center;
  background-size: cover;
  transition: all 0.3s;
}
.partner-tab .tabs-nav ul li .btn:hover {
  background: #ffffff;
  color: #09BDC9;
}
.partner-tab .tabs-nav ul li.current .btn {
  background: #ffffff;
  color: #09BDC9;
}
.partner-tab .tabs-nav ul li.current .btn:after {
  transform: translateY(-50%) rotate(90deg);
}
.partner-tab .tabs-main-content .tab-content {
  display: none;
}
.partner-tab .tabs-main-content .tab-content .tab-content-top {
  padding-bottom: 1.38rem;
  padding-top: 2.82rem;
  position: relative;
}
.partner-tab .tabs-main-content .tab-content .section-heading {
  padding-bottom: 1.38rem;
  border-color: #BCBCBC;
}
.partner-tab .tabs-main-content .tab-content .video-content {
  margin: 1.63rem 0;
}
.partner-tab .tabs-main-content .tab-content .video-content .content-column {
  padding-right: 3.13rem;
}
@media (max-width: 991px) {
  .partner-tab .tabs-main-content .tab-content .video-content .content-column {
    padding-right: 0.94rem;
  }
}
.partner-tab .tabs-main-content .tab-content .video-content .content-column h2 {
  font-weight: 300;
  line-height: 1.4;
}
.partner-tab .tabs-main-content .tab-content .video-content .video-column {
  padding-top: 0.38rem;
}
.partner-tab .tabs-main-content .tab-content .video-content .video-column-wrap {
  position: relative;
}
.partner-tab .tabs-main-content .tab-content .video-content .video-column-wrap .icon-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.69rem;
  color: #ffffff;
}
.partner-tab .tabs-main-content .tab-content .video-content.image .video-column-wrap .owner-video {
  pointer-events: none;
  display: none;
}
.partner-tab .tabs-main-content .tab-content .video-content.image .video-column-wrap .owner-video .icon-play-icon {
  display: none;
}
.partner-tab .tabs-main-content .tab-content .video-content.video .image-block {
  display: none;
}
.partner-tab .tabs-main-content .tab-content .green-bg-content {
  background: #65D193;
  padding: 1.5rem 1.25rem 1.5rem 4.38rem;
  border-radius: 10px;
  position: relative;
  margin-bottom: 2.5rem;
}
.partner-tab .tabs-main-content .tab-content .green-bg-content:before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: url("../images/green-tick.svg");
  background-size: cover;
}
.partner-tab .tabs-main-content .tab-content .cta-block {
  background: #0A1940;
  padding: 2.5rem 0 3rem;
}
.partner-tab .tabs-main-content .tab-content .cta-block-wrap h6 {
  font-size: 1.13rem;
  line-height: 2;
  max-width: 35.63rem;
  width: calc(100% - 232px);
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .partner-tab .tabs-main-content .tab-content .cta-block-wrap h6 {
    width: 100%;
    margin-bottom: 1.25rem;
  }
}
.partner-tab .tabs-main-content .tab-content .cta-block-wrap h6 a {
  display: inline-block;
  color: #09BDC9;
  text-decoration: underline;
}
.partner-tab .tabs-main-content .tab-content .cta-block-wrap h6 a:hover {
  color: #ffffff;
}
.partner-tab .tabs-main-content .tab-content .cta-block-wrap a.btn {
  margin-left: 0.94rem;
}
@media (max-width: 767px) {
  .partner-tab .tabs-main-content .tab-content .cta-block-wrap a.btn {
    margin-left: 0;
  }
}

.anchor-content .image-title-block {
  margin: 1.63rem 0 2.19rem;
}
.anchor-content .image-title-block .block-title {
  padding-bottom: 0.94rem !important;
  margin-bottom: 2.5rem;
  border-bottom: 5px solid #BCBCBC;
}
.anchor-content .image-title-block .row {
  margin: 0 -13px;
}
.anchor-content .image-title-block .row .single-block-title {
  padding: 0 13px;
}
@media (max-width: 991px) {
  .anchor-content .image-title-block .row .single-block-title:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}
.anchor-content .image-title-block .row .single-block-title .single-block-wrap {
  padding-left: 0.75rem;
  border-left: 1px solid rgba(188, 188, 188, 0.4);
  height: 100%;
}
.anchor-content .image-title-block .row .single-block-title .single-block-wrap .block-image {
  height: 64px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 0.94rem;
}
.anchor-content .image-title-block .row .single-block-title .single-block-wrap h6 {
  font-size: 1.13rem;
  line-height: 2;
  margin-bottom: 0;
}

.engagement-section .section-heading {
  padding-bottom: 1.38rem;
  border-color: #BCBCBC;
  margin-bottom: 2rem;
}
.engagement-blocks {
  padding-bottom: 1.07rem;
}
.engagement-blocks .single-block {
  margin-bottom: 2.5rem;
}
.engagement-blocks .single-block-wrap {
  border-left: 1px solid rgba(188, 188, 188, 0.4);
  padding-left: 0.75rem;
  height: 100%;
}
.engagement-blocks .single-block-wrap h6 {
  color: #0A1940;
}
.engagement-blocks .single-block-wrap h6:after {
  background: rgba(188, 188, 188, 0.4);
}
.engagement-blocks .single-block-wrap p {
  max-width: 14.38rem;
}
@media (max-width: 991px) {
  .engagement-blocks .single-block-wrap p {
    max-width: 100%;
  }
}
.engagement-option {
  padding: 3.44rem 0 1rem;
  background: #0A1940;
}
.engagement-option-block .row {
  margin: 0 -1.06rem;
}
.engagement-option-block .option-block {
  padding: 0 1.07rem;
  margin-bottom: 2.5rem;
  counter-increment: option-counter;
}
.engagement-option-block .option-block-wrap {
  height: 100%;
  padding-bottom: 2.25rem;
  position: relative;
}
.engagement-option-block .option-block-wrap .option-heading {
  padding-bottom: 0.19rem;
  border-bottom: 5px solid #fff;
  margin-bottom: 1.13rem;
}
.engagement-option-block .option-block-wrap .option-heading h3 {
  color: #ffffff;
  margin-bottom: 0.38rem;
}
.engagement-option-block .option-block-wrap .option-heading h5 {
  color: #ffffff;
  font-size: 1.25rem;
}
@media (max-width: 991px) {
  .engagement-option-block .option-block-wrap .option-heading h5 {
    font-size: 1.13rem;
  }
}
.engagement-option-block .option-block-wrap .option-desc {
  padding-left: 6.13rem;
  padding-bottom: 0.94rem;
  position: relative;
}
@media (max-width: 991px) {
  .engagement-option-block .option-block-wrap .option-desc {
    padding-left: 3.75rem;
  }
}
.engagement-option-block .option-block-wrap .option-desc:before {
  content: "0" counter(option-counter);
  color: #ffffff;
  font-weight: bold;
  position: absolute;
  left: 16px;
  top: 0;
  font-size: 3.68rem;
  font-weight: 300;
  line-height: 1.16;
}
@media (max-width: 991px) {
  .engagement-option-block .option-block-wrap .option-desc:before {
    font-size: 2.82rem;
    left: 0;
  }
}
.engagement-option-block .option-block-wrap .option-desc p {
  color: #ffffff;
  font-size: 1.13rem;
  line-height: 1.67;
}
@media (max-width: 767px) {
  .engagement-option-block .option-block-wrap .option-desc p {
    min-height: 53px;
  }
}
.engagement-option-block .option-block-wrap .btn-block {
  position: absolute;
  bottom: 0;
  left: 0;
}
.engagement-option-block .option-block-wrap .btn-block a {
  padding: 0.57rem 2.63rem 0.57rem 1.07rem;
  font-size: 0.82rem;
  font-weight: 500;
}
.engagement-option-block .option-block-wrap .btn-block a:after {
  content: "";
  background: #fff url(../images/border-arrow.svg);
  width: 0.88rem;
  height: 0.88rem;
  background-repeat: no-repeat;
  right: 9px;
  border-radius: 50%;
  background-size: cover;
}
.engagement-option-block .option-block:nth-child(3n+1) .option-block-wrap .option-heading {
  border-color: #AD53F0;
}
.engagement-option-block .option-block:nth-child(3n+2) .option-block-wrap .option-heading {
  border-color: #EB6272;
}
.engagement-option-block .option-block:nth-child(3n+3) .option-block-wrap .option-heading {
  border-color: #F2CC63;
}

.partner-support .anchor-heading {
  padding-bottom: 1.25rem;
  border-bottom: 5px solid rgba(188, 188, 188, 0.4);
  margin-bottom: 2.44rem;
}
.partner-support .anchor-heading h2 {
  margin-bottom: 0.82rem;
}
.partner-support .anchor-heading p {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.partner-support .our-world {
  padding-top: 2.13rem;
}
.partner-support .our-world .section-heading {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
}
.partner-support .our-world .section-heading .headings {
  width: calc(100% - 232px);
}
@media (max-width: 767px) {
  .partner-support .our-world .section-heading .headings {
    width: 100%;
  }
}
.partner-support .our-world .section-heading .btn-block {
  width: 232px;
}
@media (max-width: 767px) {
  .partner-support .our-world .section-heading .btn-block {
    width: 100%;
  }
}
.partner-support .our-world .world-content .tab-content .two-column-content {
  max-width: 0 -18px;
}
@media (max-width: 991px) {
  .partner-support .our-world .world-content .tab-content .two-column-content {
    max-width: 0 -15px;
  }
}
.partner-support .our-world .world-content .tab-content .two-column-content .image {
  padding: 0 18px;
  width: 52.4%;
}
@media (max-width: 991px) {
  .partner-support .our-world .world-content .tab-content .two-column-content .image {
    width: 100%;
    padding: 0 15px;
  }
}
.partner-support .our-world .world-content .tab-content .two-column-content .image img {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
}
.partner-support .our-world .world-content .tab-content .two-column-content .tab-text {
  width: 47.6%;
  padding: 0 18px;
}
@media (max-width: 991px) {
  .partner-support .our-world .world-content .tab-content .two-column-content .tab-text {
    width: 100%;
    padding: 0 15px;
  }
}
.partner-support .our-world .world-content .tab-content .two-column-content .tab-text h4 {
  margin-bottom: 1.57rem;
}
.partner-support .our-world .world-content .tab-content .two-column-content .tab-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
}
.partner-support .our-world .world-content .tab-content .two-column-content .tab-text ul li {
  font-size: 1rem;
  line-height: 1.875;
  font-weight: 600;
  padding: 0 0 0 2rem;
  margin-bottom: 0.88rem;
  position: relative;
}
.partner-support .our-world .world-content .tab-content .two-column-content .tab-text ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  background: url("../images/tick-icon.svg") no-repeat center center;
}

.partner-commitment {
  padding: 3.13rem 0 0.32rem;
  position: relative;
}
.partner-commitment .section-heading {
  border-color: #BCBCBC;
  margin-bottom: 2.94rem;
}
.partner-commitment-wrap .single-block {
  margin-bottom: 3.13rem;
}
.partner-commitment-wrap .single-block-wrap {
  padding-left: 0.75rem;
  border-left: 1px solid #BCBCBC;
  height: 100%;
  padding-bottom: 0.63rem;
}
.partner-commitment-wrap .single-block-wrap h6 {
  color: #0A1940;
  padding-left: 2rem;
}
.partner-commitment-wrap .single-block-wrap h6:before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 22px;
  height: 22px;
  background: url("../images/tick-icon.svg") no-repeat;
  background-size: cover;
}
.partner-commitment-wrap .single-block-wrap h6:after {
  background: rgba(188, 188, 188, 0.4);
}

.join-team {
  background: #0A1940;
  padding: 2.82rem 0 2.82rem;
}
.join-team .section-heading {
  border: none;
  padding-bottom: 0;
}
.join-team .section-heading .left-heading {
  width: calc(100% - 267px);
}
@media (max-width: 991px) {
  .join-team .section-heading .left-heading {
    width: calc(100% - 235px);
  }
}
@media (max-width: 767px) {
  .join-team .section-heading .left-heading {
    width: 100%;
  }
}
.join-team .section-heading .left-heading .headings {
  width: 45%;
}
@media (max-width: 1100px) {
  .join-team .section-heading .left-heading .headings {
    width: 45%;
  }
}
@media (max-width: 991px) {
  .join-team .section-heading .left-heading .headings {
    width: 50%;
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  .join-team .section-heading .left-heading .headings {
    width: 100%;
    padding-bottom: 1.25rem;
  }
}
.join-team .section-heading .left-heading .heading-para {
  width: 55%;
  max-width: 20rem;
  padding-left: 0.94rem;
  border-left: 5px solid rgba(255, 255, 255, 0.4);
}
@media (max-width: 991px) {
  .join-team .section-heading .left-heading .heading-para {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .join-team .section-heading .left-heading .heading-para {
    width: 100%;
    max-width: 100%;
  }
}
.join-team .section-heading .left-heading .heading-para p {
  font-size: 1.13rem;
  font-weight: 700;
  line-height: 1.66;
}

.timeline-section {
  background: #0A1940;
  padding: 4.13rem 0 2.82rem;
}
.timeline-section .section-heading {
  padding-bottom: 1.38rem;
  margin-bottom: 1.44rem;
  border-color: #BCBCBC;
}
@media (max-width: 767px) {
  .timeline-wrap .journey-wrap {
    flex-direction: column-reverse;
  }
}
.timeline-wrap .journey-wrap .left-col {
  width: 217px;
  padding-top: 0.44rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-content: flex-end;
}
@media (max-width: 767px) {
  .timeline-wrap .journey-wrap .left-col {
    width: 151px;
    padding-top: 1.88rem;
  }
}
.timeline-wrap .journey-wrap .left-col span {
  display: inline-block;
  padding: 0.88rem 1.75rem;
  background: #ffffff;
  color: #0A1940;
  font-weight: 700;
  font-size: 1.13rem;
  letter-spacing: 3.6px;
  border-radius: 0.63rem;
  position: relative;
  margin-bottom: 2.32rem;
}
@media (max-width: 767px) {
  .timeline-wrap .journey-wrap .left-col span {
    font-size: 0.88rem;
    letter-spacing: 2.3px;
    padding: 0.63rem 0.94rem;
  }
}
.timeline-wrap .journey-wrap .left-col span:after {
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  top: 100%;
  border-left: 19px solid transparent;
  border-right: 19px solid transparent;
  border-top: 19px solid #ffffff;
  border-bottom: 19px solid transparent;
  left: 50%;
  transform: translateX(-50%);
}
.timeline-wrap .journey-wrap .left-col .green-circle {
  width: 34px;
  height: 34px;
  background: #09BDC9;
  border-radius: 50%;
  margin: auto auto 0.44rem auto;
  position: relative;
  background: url("../images/greem-dot.png") no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .timeline-wrap .journey-wrap .left-col .green-circle {
    width: 25px;
    height: 25px;
  }
}
.timeline-wrap .journey-wrap .right-content {
  width: calc(100% - 217px);
  padding-left: 3.13rem;
}
@media (max-width: 991px) {
  .timeline-wrap .journey-wrap .right-content {
    padding-left: 1.88rem;
  }
}
@media (max-width: 767px) {
  .timeline-wrap .journey-wrap .right-content {
    padding-left: 0;
    width: 100%;
  }
}
.timeline-wrap .journey-wrap .right-content p {
  font-size: 1.5rem;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .timeline-wrap .journey-wrap .right-content p {
    font-size: 1.25rem;
  }
}
.timeline-yearly {
  padding-top: 1.07rem;
}
.timeline-yearly ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.timeline-yearly ul li {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0.38rem;
}
@media (max-width: 767px) {
  .timeline-yearly ul li {
    margin-bottom: 0.63rem;
  }
}
.timeline-yearly ul li .years {
  text-align: center;
  width: 127px;
  padding-right: 2.13rem;
  position: relative;
}
@media (max-width: 767px) {
  .timeline-yearly ul li .years {
    width: 90px;
    text-align: left;
    padding-right: 1.57rem;
  }
}
.timeline-yearly ul li .years::before {
  content: "";
  position: absolute;
  top: -0.56rem;
  right: 0.13rem;
  width: 34px;
  height: 34px;
  background: url("../images/purple-cirlce.png") no-repeat center center;
  background-size: cover;
  border-radius: 50%;
  z-index: 1;
}
@media (max-width: 767px) {
  .timeline-yearly ul li .years::before {
    width: 25px;
    height: 25px;
    right: 5px;
    top: -6px;
  }
}
.timeline-yearly ul li .years:after {
  content: "";
  position: absolute;
  right: 17px;
  width: 2px;
  height: 100%;
  background-image: linear-gradient(to bottom, #fff 2px, rgba(255, 255, 255, 0) 20%);
  top: 0;
  background-repeat: repeat-y;
  background-size: 2px 6px;
}
.timeline-yearly ul li .years h6 {
  letter-spacing: 3.6px;
  text-transform: uppercase;
}
.timeline-yearly ul li .year-content {
  width: calc(100% - 127px);
  padding: 0.5rem 0 0 2.25rem;
}
@media (max-width: 767px) {
  .timeline-yearly ul li .year-content {
    width: calc(100% - 90px);
    padding: 0.5rem 0 0 1.57rem;
  }
}
.timeline-yearly ul li .year-content-wrap {
  padding: 1.19rem 1.25rem;
  background: rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  position: relative;
  border-top-left-radius: 0;
}
@media (max-width: 767px) {
  .timeline-yearly ul li .year-content-wrap {
    padding: 1rem;
  }
}
.timeline-yearly ul li .year-content-wrap:before {
  content: "";
  border-left: 16px solid transparent;
  border-right: 16px solid rgba(255, 255, 255, 0.11);
  border-top: 16px solid rgba(255, 255, 255, 0.11);
  border-bottom: 16px solid transparent;
  position: absolute;
  right: 100%;
  top: 0;
}
@media (max-width: 767px) {
  .timeline-yearly ul li .year-content-wrap:before {
    border-width: 10px;
  }
}
.timeline-yearly ul li .year-content-wrap h6 {
  margin-bottom: 0.82rem;
}
.timeline-yearly ul li h6 {
  color: #ffffff;
}
@media (max-width: 767px) {
  .timeline-yearly ul li h6 {
    font-size: 1rem;
  }
}
.timeline-yearly ul li:last-child .years:after {
  width: 42px;
  height: 47px;
  background-image: url("../images/timeline-arrow.png");
  background-size: cover;
  bottom: 5px;
  right: -2px;
  top: inherit;
}

.global-partner {
  position: relative;
}
@media (max-width: 767px) {
  .global-partner {
    min-height: 21.88rem;
  }
}
@media (max-width: 767px) {
  .global-partner .global-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-position: bottom;
  }
}
.global-partner .global-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.global-partner .map-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 1.69rem 0;
}
@media (max-width: 767px) {
  .global-partner .map-content {
    position: relative;
  }
}
.global-partner .map-content h2 {
  padding-bottom: 1.57rem;
  border-bottom: 5px solid #ffffff;
  color: #ffffff;
}

.become-partner {
  padding: 2.82rem 0 4.07rem;
}
.become-partner .section-heading {
  border-color: #BCBCBC;
  padding-bottom: 1.88rem;
  margin-bottom: 1.88rem;
}
.become-partner .bottom-para p {
  font-size: 1.5rem;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .become-partner .bottom-para p {
    font-size: 1.38rem;
  }
}

.leadership-section {
  background: #0A1940;
  padding: 2.63rem 0;
}
.leadership-wrap .section-heading {
  border-color: #BCBCBC;
  margin-bottom: 2.69rem;
}
.leadership-blocks .row {
  margin: 0 -11px;
}
.leadership-single {
  padding: 0 11px;
  width: 25%;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .leadership-single {
    width: 25%;
  }
  .leadership-single:not(:last-child) {
    margin-bottom: 1.88rem;
  }
}
@media (max-width: 767px) {
  .leadership-single {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .leadership-single {
    width: 100%;
  }
}
.leadership-single .leadership-image {
  margin-bottom: 1rem;
  position: relative;
}
@media (max-width: 767px) {
  .leadership-single .leadership-image {
    margin-bottom: 1.25rem;
    max-width: 270px;
    margin: 0 auto 1rem auto;
  }
}
.leadership-single .leadership-image figure {
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  padding-bottom: 100%;
}
.leadership-single .leadership-image figure img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
}
.leadership-single .leadership-image figure img.hover-img {
  opacity: 0;
  transition: all 0.3s;
}
.leadership-single .leadership-image .plus-icon {
  width: 24px;
  height: 24px;
  background: #ffffff;
  border-radius: 50%;
  border: 2px solid #09BDC9;
  font-size: 0.63rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 25px;
  right: 23px;
  cursor: pointer;
}
@media (max-width: 991px) {
  .leadership-single .leadership-image .plus-icon {
    bottom: 13px;
    right: 10px;
  }
}
@media (max-width: 767px) {
  .leadership-single .leadership-image .plus-icon {
    display: none;
  }
}
.leadership-single .leadership-image .plus-icon .icon-plus {
  color: #09BDC9;
}
.leadership-single .leadership-image:hover .hover-img {
  opacity: 1;
}
.leadership-single .leadership-content {
  position: relative;
}
.leadership-single .leadership-content h6 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.leadership-single .leadership-content .designation {
  font-size: 0.88rem;
  display: block;
  color: #ffffff;
}
.leadership-single .leadership-content .hover-content {
  position: absolute;
  top: -4px;
  left: 50px;
  width: 404px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 0.69rem 2.38rem 0.82rem 1rem;
  text-align: left;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  border: 1px solid #707070;
}
@media (max-width: 1100px) {
  .leadership-single .leadership-content .hover-content {
    left: 20px;
  }
}
@media (max-width: 991px) {
  .leadership-single .leadership-content .hover-content {
    width: 340px;
    left: 0;
  }
}
@media (max-width: 767px) {
  .leadership-single .leadership-content .hover-content {
    width: 100%;
    position: relative !important;
    background: transparent;
    color: #ffffff;
    padding: 2.5rem 0 0 0;
    opacity: 1;
    visibility: visible;
    text-align: center;
    border: none;
  }
}
.leadership-single .leadership-content .hover-content .icon-quote-icon {
  position: absolute;
  top: 16px;
  right: 15px;
  font-size: 1.13rem;
  color: #707070;
}
@media (max-width: 767px) {
  .leadership-single .leadership-content .hover-content .icon-quote-icon {
    top: 10px;
    right: 0;
  }
}
.leadership-single .leadership-content .hover-content p {
  margin-bottom: 10px;
}
.leadership-single .leadership-content .hover-content h6 {
  color: #0A1940;
}
@media (max-width: 767px) {
  .leadership-single .leadership-content .hover-content h6 {
    color: #ffffff;
    display: none;
  }
}
.leadership-single .leadership-content .hover-content:after, .leadership-single .leadership-content .hover-content:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 13px solid transparent;
  position: absolute;
  bottom: 100%;
  border-bottom: 13px solid rgba(255, 255, 255, 0.9);
  left: 42%;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .leadership-single .leadership-content .hover-content:after, .leadership-single .leadership-content .hover-content:before {
    left: 142px;
  }
}
@media (max-width: 767px) {
  .leadership-single .leadership-content .hover-content:after, .leadership-single .leadership-content .hover-content:before {
    display: none;
  }
}
.leadership-single .leadership-content .hover-content:before {
  border-bottom: 15px solid #707070;
  border-width: 15px;
}
@media (max-width: 991px) {
  .leadership-single .leadership-content .hover-content:before {
    left: 142px;
  }
}
.leadership-single.active .leadership-content .hover-content {
  opacity: 1;
  visibility: visible;
}
.leadership-single:nth-child(4n) .leadership-content .hover-content {
  left: unset;
  right: -10px;
}
.leadership-single:nth-child(4n) .leadership-content .hover-content:after {
  left: unset;
  right: 18px;
}
.leadership-single:nth-child(4n) .leadership-content .hover-content:before {
  right: 14px;
  left: unset;
}

.how-it-works {
  padding: 3.25rem 0 0.75rem;
  position: relative;
}
@media (max-width: 991px) {
  .how-it-works {
    padding: 3.25rem 0 1.88rem;
  }
}
.how-it-works .row {
  margin-left: -10px;
  margin-right: -10px;
  justify-content: center;
}
.how-it-works .hiw-cell {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 3rem;
  min-height: 9.82rem;
}
@media (max-width: 991px) {
  .how-it-works .hiw-cell {
    margin-bottom: 1.88rem;
  }
}
@media (max-width: 374px) {
  .how-it-works .hiw-cell {
    width: 100%;
  }
}
.how-it-works .hiw-block {
  position: relative;
  padding: 1.88rem 0.75rem 1.88rem 0.75rem;
  border: 5px solid transparent;
  border-radius: 0.63rem;
  height: 100%;
  transition: 0.3s;
}
@media (max-width: 575px) {
  .how-it-works .hiw-block {
    padding: 2rem 0.75rem 2.19rem 0.75rem;
  }
}
.how-it-works .hiw-block h6, .how-it-works .hiw-block .h6 {
  margin-bottom: 0;
  line-height: 1.33;
}
.how-it-works .hiw-block.opened {
  padding: 0.82rem 0.75rem 1.25rem 0.75rem;
  height: auto;
  z-index: 1;
}
.how-it-works .hiw-block.opened h6 {
  color: #ffffff;
}
.how-it-works .hiw-block.opened .hiw-plus-minus::before {
  opacity: 0;
}
.how-it-works .hiw-block.opened .hiw-excerpt {
  opacity: 1;
  color: #ffffff;
}
.how-it-works .hiw-block.-purple .hiw-plus-minus {
  border-color: #AD53F0;
}
.how-it-works .hiw-block.-purple .hiw-plus-minus::before, .how-it-works .hiw-block.-purple .hiw-plus-minus:after {
  background-color: #AD53F0;
}
.how-it-works .hiw-block.-purple.opened {
  background-color: #AD53F0;
}
.how-it-works .hiw-block.-green .hiw-plus-minus {
  border-color: #65D193;
}
.how-it-works .hiw-block.-green .hiw-plus-minus::before, .how-it-works .hiw-block.-green .hiw-plus-minus:after {
  background-color: #65D193;
}
.how-it-works .hiw-block.-green.opened {
  background-color: #65D193;
}
.how-it-works .hiw-block.-red .hiw-plus-minus {
  border-color: #EB6272;
}
.how-it-works .hiw-block.-red .hiw-plus-minus::before, .how-it-works .hiw-block.-red .hiw-plus-minus:after {
  background-color: #EB6272;
}
.how-it-works .hiw-block.-red.opened {
  background-color: #EB6272;
}
.how-it-works .hiw-block.-light-blue .hiw-plus-minus {
  border-color: #09BDC9;
}
.how-it-works .hiw-block.-light-blue .hiw-plus-minus::before, .how-it-works .hiw-block.-light-blue .hiw-plus-minus:after {
  background-color: #09BDC9;
}
.how-it-works .hiw-block.-light-blue.opened {
  background-color: #09BDC9;
}
.how-it-works .hiw-block.-orange .hiw-plus-minus {
  border-color: #E88064;
}
.how-it-works .hiw-block.-orange .hiw-plus-minus::before, .how-it-works .hiw-block.-orange .hiw-plus-minus:after {
  background-color: #E88064;
}
.how-it-works .hiw-block.-orange.opened {
  background-color: #E88064;
}
.how-it-works .hiw-block.-yellow .hiw-plus-minus {
  border-color: #F2CC63;
}
.how-it-works .hiw-block.-yellow .hiw-plus-minus::before, .how-it-works .hiw-block.-yellow .hiw-plus-minus:after {
  background-color: #F2CC63;
}
.how-it-works .hiw-block.-yellow.opened {
  background-color: #F2CC63;
}
.how-it-works .hiw-excerpt {
  display: none;
  opacity: 0;
  padding-top: 0.75rem;
}
.how-it-works .hiw-excerpt p {
  font-size: 0.75rem;
}
.how-it-works .hiw-plus-minus {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.87rem;
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 6.25rem;
  border: 3px solid transparent;
  background-color: #ffffff;
  cursor: pointer;
}
.how-it-works .hiw-plus-minus::before, .how-it-works .hiw-plus-minus:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: transparent;
  transition: 0.3s;
}
.how-it-works .hiw-plus-minus::before {
  height: 10px;
  width: 3px;
}
.how-it-works .hiw-plus-minus::after {
  width: 10px;
  height: 3px;
}
.how-it-works.col-5-blocks {
  padding: 3.25rem 0 1.88rem;
}
.how-it-works.col-5-blocks .section-heading {
  border-color: #BCBCBC;
}
.how-it-works.col-5-blocks .title-btn {
  padding-top: 0;
  margin-bottom: 42px;
}
.how-it-works.col-5-blocks .hiw-cell {
  margin-bottom: 1.44rem;
}
.how-it-works.col-5-blocks .hiw-cell .hiw-block {
  padding: 1.88rem 0.75rem;
}
.how-it-works.col-5-blocks .hiw-cell .hiw-block.opened {
  padding-top: 1rem;
}
@media (min-width: 992px) {
  .how-it-works.col-5-blocks .hiw-cell {
    width: 20%;
    margin-bottom: 1.44rem;
  }
  .how-it-works.col-5-blocks .hiw-cell .hiw-block {
    padding: 1.88rem 0.75rem;
  }
  .how-it-works.col-5-blocks .hiw-cell .hiw-block.opened {
    padding-top: 1rem;
  }
}

.join-revolution {
  padding: 2.5rem 0;
}
.join-revolution .section-heading {
  border-color: #BCBCBC;
}
.join-revolution .jr-content [class*=cell-] {
  flex: 1 1 auto;
}
.join-revolution .jr-content p {
  font-size: 1.5rem;
}
@media (max-width: 991px) {
  .join-revolution .jr-content p {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .join-revolution .jr-content .btn {
    margin-top: 0.94rem;
  }
}

.we-want-you {
  padding: 3.13rem 0 1.88rem;
}
.we-want-you .section-heading {
  border-color: #BCBCBC;
}
.we-want-you .clr-boxes {
  padding-top: 3px;
}
.we-want-you .wwy-cell {
  margin-bottom: 1.88rem;
}
.we-want-you .wwy-left p {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .we-want-you .wwy-left p {
    font-size: 1.25rem;
  }
}
.we-want-you .wwy-block {
  padding: 0.94rem;
  border: 5px solid transparent;
  border-radius: 0.63rem;
  min-height: 5rem;
  height: 100%;
}
.we-want-you .wwy-block h6, .we-want-you .wwy-block .h6 {
  margin-bottom: 0;
}

.work-with-us {
  padding: 3.13rem 0;
  overflow-x: hidden;
}
.work-with-us .section-heading {
  border-color: #BCBCBC;
}
@media (max-width: 575px) {
  .work-with-us .upload-field {
    flex-direction: column;
  }
}
.work-with-us .upload-field .btn {
  margin-right: 0.94rem;
}
.work-with-us .upload-field p {
  font-size: 0.88rem;
  color: rgb(140.25, 140.25, 140.25);
  margin-bottom: 0.94rem;
}
.work-with-us .upload-field input[type=file] {
  display: none;
}
.work-with-us .upload-field label {
  background-color: transparent;
  border: 2px solid #09BDC9;
  font-size: 1.13rem;
  color: #09BDC9;
  font-weight: 500;
  padding: 0.5rem 1.13rem;
  margin-bottom: 0.82rem;
  margin-right: 1.25rem;
}
@media (max-width: 575px) {
  .work-with-us .upload-field label {
    margin-right: 0;
  }
}
.work-with-us .upload-field label:hover, .work-with-us .upload-field label:focus {
  border-color: #0A1940;
}
.work-with-us .submit-field .btn {
  margin-bottom: 0.75rem;
}

.content-video-blocks {
  padding: 2.5rem 0 0;
  position: relative;
}
.content-video-blocks .section-heading {
  padding-bottom: 1.38rem;
  margin-bottom: 1.57rem;
  border-color: #BCBCBC;
}
.content-video-blocks .video-content {
  margin: 1.57rem 0 3.13rem;
}
.content-video-blocks .video-content .content-column {
  padding-right: 1.88rem;
}
@media (max-width: 991px) {
  .content-video-blocks .video-content .content-column {
    padding-right: 0.94rem;
  }
}
.content-video-blocks .video-content .content-column h2 {
  font-weight: 300;
  line-height: 1.4;
}
.content-video-blocks .video-content .video-column {
  padding-top: 0.38rem;
}
.content-video-blocks .video-content .video-column-wrap {
  position: relative;
}
.content-video-blocks .video-content .video-column-wrap .icon-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.69rem;
  color: #ffffff;
}
.content-video-blocks .video-content.image .owner-video {
  display: none;
}
.content-video-blocks .video-content.video .image-block {
  display: none;
}
.content-video-blocks .capability-blocks .single-block-wrap ul li {
  padding-left: 10px;
}
.content-video-blocks .capability-blocks .single-block-wrap ul li:before {
  background: #0A1940;
  width: 4px;
  height: 4px;
  top: 9px;
  border-radius: 50%;
}

.mssp-operation {
  padding: 3.38rem 0;
}
.mssp-operation .section-heading {
  margin-bottom: 1.44rem;
}
.mssp-operation .description {
  margin-bottom: 3rem;
}
.mssp-operation .description h4 {
  font-weight: 400;
  line-height: 1.5;
}
.mssp-operation .mssp-compare {
  margin-top: 3rem;
}
.mssp-operation .mssp-compare .mssp-cell .compare-title {
  padding-bottom: 2.5rem;
  position: relative;
}
.mssp-operation .mssp-compare .mssp-cell .compare-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.31rem;
  right: -30px;
  height: 5px;
  background: rgba(255, 255, 255, 0.16);
}
@media (max-width: 767px) {
  .mssp-operation .mssp-compare .mssp-cell .compare-title:after {
    right: 0;
  }
}
.mssp-operation .mssp-compare .mssp-cell .compare-title span {
  display: inline-block;
  font-size: 1.13rem;
  font-weight: bold;
  letter-spacing: 0.23rem;
  padding: 0.38rem 1.25rem;
  background: #EB6272;
  border-radius: 1.94rem;
  margin-right: 1.13rem;
}
@media (max-width: 991px) {
  .mssp-operation .mssp-compare .mssp-cell .compare-title span {
    margin-bottom: 15px;
  }
}
@media (max-width: 991px) {
  .mssp-operation .mssp-compare .mssp-cell .compare-title .mssp-logo {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .mssp-operation .mssp-compare .mssp-cell .compare-title .mssp-logo {
    width: 100%;
  }
}
.mssp-operation .mssp-compare .mssp-cell .timeline-yearly {
  padding-top: 2.19rem;
  margin-bottom: 2.5rem;
}
.mssp-operation .mssp-compare .mssp-cell .timeline-yearly ul li .year-content {
  padding-left: 3.63rem;
  padding-right: 0.75rem;
  width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .mssp-operation .mssp-compare .mssp-cell .timeline-yearly ul li .year-content {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .mssp-operation .mssp-compare .mssp-cell .timeline-yearly ul li .year-content {
    padding-left: 2.82rem;
  }
}
.mssp-operation .mssp-compare .mssp-cell .timeline-yearly ul li .year-content::before {
  content: "";
  position: absolute;
  top: -9px;
  left: -15px;
  width: 34px;
  height: 34px;
  background: url("../images/red-circle.png") no-repeat center center;
  background-size: cover;
  border-radius: 50%;
  z-index: 1;
}
@media (max-width: 767px) {
  .mssp-operation .mssp-compare .mssp-cell .timeline-yearly ul li .year-content::before {
    width: 25px;
    height: 25px;
    left: -11px;
  }
}
.mssp-operation .mssp-compare .mssp-cell .timeline-yearly ul li .year-content:after {
  content: "";
  position: absolute;
  left: 0;
  width: 2px;
  height: 100%;
  background-image: linear-gradient(to bottom, #fff 2px, rgba(255, 255, 255, 0) 20%);
  top: 0;
  background-repeat: repeat-y;
  background-size: 2px 6px;
}
.mssp-operation .mssp-compare .mssp-cell .timeline-yearly ul li:last-child:after {
  content: "";
  position: absolute;
  width: 42px;
  height: 47px;
  background-image: url("../images/red-arrow.png");
  background-size: cover;
  bottom: -1.43rem;
  left: -1.25rem;
}
.mssp-operation .mssp-compare .mssp-cell .respond-wrap {
  margin-top: 2.5rem;
  padding-right: 0.75rem;
}
@media (max-width: 991px) {
  .mssp-operation .mssp-compare .mssp-cell .respond-wrap {
    padding-right: 0;
  }
}
.mssp-operation .mssp-compare .mssp-cell .respond-wrap .title-wrap {
  margin-bottom: 1.44rem;
}
.mssp-operation .mssp-compare .mssp-cell .respond-wrap .title-wrap .time-icon {
  margin-right: 1.32rem;
}
@media (max-width: 991px) {
  .mssp-operation .mssp-compare .mssp-cell .respond-wrap .title-wrap .time-icon {
    max-width: 5rem;
  }
}
.mssp-operation .mssp-compare .mssp-cell .respond-wrap .title-wrap .respond-title {
  padding-bottom: 0.63rem;
}
.mssp-operation .mssp-compare .mssp-cell .respond-wrap .title-wrap .respond-title h2 {
  font-weight: 300;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .mssp-operation .mssp-compare .mssp-cell .respond-wrap .title-wrap .respond-title h2 {
    font-size: 1.88rem;
  }
}
.mssp-operation .mssp-compare .mssp-cell .respond-wrap .title-wrap .respond-title h6 {
  letter-spacing: 0.23rem;
  margin: 0.75rem 0 0 0.19rem;
  color: #ffffff;
}
.mssp-operation .mssp-compare .mssp-cell .respond-wrap-block ul {
  margin: 0;
  padding: 0 0 0.44rem;
  list-style: none;
  border-bottom: 5px solid rgba(255, 255, 255, 0.16);
}
.mssp-operation .mssp-compare .mssp-cell .respond-wrap-block ul .single-respond {
  padding: 0;
  margin-bottom: 0.88rem;
}
.mssp-operation .mssp-compare .mssp-cell .respond-wrap-block ul .single-respond .respond-range {
  margin-bottom: 0.94rem;
}
.mssp-operation .mssp-compare .mssp-cell .respond-wrap-block ul .single-respond .respond-range span {
  display: block;
  border-radius: 15px;
  width: 100%;
}
.mssp-operation .mssp-compare .mssp-cell .respond-wrap-block ul .single-respond .respond-range span.white-line {
  height: 1.25rem;
  display: flex;
  align-items: center;
  padding: 5px;
  background: #ffffff;
}
.mssp-operation .mssp-compare .mssp-cell .respond-wrap-block ul .single-respond .respond-range span.clr-line {
  width: 100%;
  height: 9px;
  background: #EB6272;
  min-width: 9px;
}
.mssp-operation .mssp-compare .mssp-cell .respond-wrap-block ul .single-respond .respond-text h6 {
  margin-bottom: 0.38rem;
}
.mssp-operation .mssp-compare .mssp-cell .respond-wrap-block .note-desc {
  padding: 0.94rem 0 0 0;
}
@media (max-width: 767px) {
  .mssp-operation .mssp-compare .mssp-cell:nth-child(2) {
    margin-top: 50px;
  }
}
.mssp-operation .mssp-compare .mssp-cell:nth-child(2) .compare-title span {
  background: #65D193;
}
.mssp-operation .mssp-compare .mssp-cell:nth-child(2) .compare-title:after {
  right: 0;
}
.mssp-operation .mssp-compare .mssp-cell:nth-child(2) .timeline-yearly ul li .year-content {
  padding-right: 0;
}
.mssp-operation .mssp-compare .mssp-cell:nth-child(2) .timeline-yearly ul li .year-content::before {
  background: url("../images/gerrn-circle.png") no-repeat center/cover;
}
.mssp-operation .mssp-compare .mssp-cell:nth-child(2) .timeline-yearly ul li:last-child:after {
  background-image: url("../images/green-arrow.png");
}
.mssp-operation .mssp-compare .mssp-cell:nth-child(2) .respond-wrap-block ul .single-respond .respond-range span.clr-line {
  background: #65D193;
}

.team-time {
  position: relative;
  padding: 2.82rem 0 3.75rem;
}
.team-time .section-heading {
  border-color: #BCBCBC;
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
}
.team-time .mssp-team-wrap .team-col .team-title span {
  display: inline-block;
  font-size: 1.13rem;
  font-weight: bold;
  letter-spacing: 0.23rem;
  padding: 0.38rem 1.25rem;
  background: #EB6272;
  border-radius: 1.94rem;
  margin-right: 1.13rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .team-time .mssp-team-wrap .team-col .team-title span {
    margin-bottom: 15px;
  }
}
@media (max-width: 991px) {
  .team-time .mssp-team-wrap .team-col .team-title .mssp-logo {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .team-time .mssp-team-wrap .team-col .team-title .mssp-logo {
    width: 100%;
  }
}
.team-time .mssp-team-wrap .team-col .mssp-team-info {
  margin-top: 1.69rem;
}
.team-time .mssp-team-wrap .team-col .mssp-team-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.team-time .mssp-team-wrap .team-col .mssp-team-info ul li {
  margin-bottom: 0.13rem;
}
.team-time .mssp-team-wrap .team-col .mssp-team-info ul li .circle-time {
  width: 6.63rem;
  height: 6.63rem;
  border: 5px solid #EB6272;
  border-radius: 50%;
  text-align: center;
}
.team-time .mssp-team-wrap .team-col .mssp-team-info ul li .circle-time h2 {
  font-weight: 300;
  margin-bottom: 0;
  line-height: 1;
}
.team-time .mssp-team-wrap .team-col .mssp-team-info ul li .circle-time span {
  font-size: 0.63rem;
  width: 100%;
  font-weight: 700;
  letter-spacing: 0.13rem;
}
.team-time .mssp-team-wrap .team-col .mssp-team-info ul li .circle-info {
  max-width: calc(100% - 6.63rem);
  padding-left: 1.07rem;
}
.team-time .mssp-team-wrap .team-col .mssp-team-info ul li .circle-info p {
  font-weight: 700;
}
@media (max-width: 991px) {
  .team-time .mssp-team-wrap .team-col .mssp-team-info ul li .circle-info p br {
    display: none;
  }
}
.team-time .mssp-team-wrap .team-col .mssp-team-info .mssp-team-card {
  margin-top: 3.25rem;
  background: #EB6272;
  padding: 1.44rem 1.75rem;
  border-radius: 5px;
  position: relative;
}
@media (max-width: 991px) {
  .team-time .mssp-team-wrap .team-col .mssp-team-info .mssp-team-card {
    padding: 1.25rem 0.94rem;
  }
}
.team-time .mssp-team-wrap .team-col .mssp-team-info .mssp-team-card:before {
  content: "";
  position: absolute;
  left: 2.32rem;
  bottom: 100%;
  width: 0;
  height: 0;
  border-left: 19px solid transparent;
  border-right: 19px solid transparent;
  border-top: 19px solid transparent;
  border-bottom: 19px solid #EB6272;
}
.team-time .mssp-team-wrap .team-col .mssp-team-info .mssp-team-card .card-icon {
  max-width: 102px;
}
.team-time .mssp-team-wrap .team-col .mssp-team-info .mssp-team-card .card-content {
  max-width: calc(100% - 102px);
  padding-left: 1.32rem;
}
@media (max-width: 991px) {
  .team-time .mssp-team-wrap .team-col .mssp-team-info .mssp-team-card .card-content {
    max-width: 100%;
    padding-left: 0;
    margin-top: 0.94rem;
  }
}
.team-time .mssp-team-wrap .team-col .mssp-team-info .mssp-team-card .card-content h2 {
  font-weight: 300;
  border-bottom: 5px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .team-time .mssp-team-wrap .team-col:nth-child(2) {
    margin-top: 3.13rem;
  }
}
.team-time .mssp-team-wrap .team-col:nth-child(2) .team-title span {
  background: #65D193;
}
.team-time .mssp-team-wrap .team-col:nth-child(2) .mssp-team-info ul li .circle-time {
  border-color: #65D193;
}
.team-time .mssp-team-wrap .team-col:nth-child(2) .mssp-team-info .mssp-team-card {
  background: #65D193;
}
.team-time .mssp-team-wrap .team-col:nth-child(2) .mssp-team-info .mssp-team-card:before {
  border-bottom-color: #65D193;
}

.together-grow {
  padding: 2.82rem 0;
}
.together-grow .section-heading {
  border-color: #BCBCBC;
}
.together-grow-wrap {
  margin-top: 2.94rem;
}
@media (max-width: 767px) {
  .together-grow-wrap .together-column {
    margin-bottom: 2.5rem;
  }
}
.together-grow-wrap .together-column-wrap {
  padding-left: 1.13rem;
  border-left: 1px solid #BCBCBC;
  height: 100%;
}
.together-grow-wrap .together-column-wrap h6 {
  padding-bottom: 1.44rem;
  margin-bottom: 1.13rem;
  position: relative;
}
.together-grow-wrap .together-column-wrap h6:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.5rem;
  height: 5px;
  background: #BCBCBC;
}
.together-grow-wrap .together-column-wrap ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.together-grow-wrap .together-column-wrap ul li:before {
  background: url("../images/green-tick-icon.svg") no-repeat center/cover;
}
.together-grow-wrap .together-column.links ul li {
  position: relative;
  padding: 0 0 0 2rem;
  font-weight: 700;
  line-height: 1.875rem;
  margin-bottom: 0.63rem;
}
.together-grow-wrap .together-column.links ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 1.38rem;
  height: 1.38rem;
  background: url("../images/link-list-icon.svg") no-repeat center center;
  background-size: 100%;
}
.together-grow-wrap .together-column.links ul li a {
  text-decoration: none;
  color: #09BDC9;
}
.together-grow-wrap .together-column.links ul li a:hover {
  color: #0A1940;
}
.together-grow-wrap .together-column.links ul ul {
  margin: 0.13rem 0 0px;
}
.together-grow-wrap .together-column.links ul ul li {
  padding-left: 10px;
  font-size: 0.75rem;
  margin-bottom: 0.38rem;
  line-height: 1.5;
}
.together-grow-wrap .together-column.links ul ul li:before {
  display: none;
}

.partner_promis {
  padding: 3.25rem 0 1.57rem;
}
.partner_promis_wrap {
  margin-top: 2.32rem;
  border: none;
}
.partner_promis_wrap .partner_block {
  margin-bottom: 2.32rem;
}
.partner_promis_wrap .partner_block_wrap {
  display: flex;
  overflow: hidden;
  height: 100%;
}
@media (max-width: 767px) {
  .partner_promis_wrap .partner_block_wrap {
    flex-wrap: wrap;
    border: 5px solid;
    border-radius: 10px;
    padding: 20px;
  }
}
.partner_promis_wrap .partner_block_wrap .block_title {
  max-width: 100%;
  flex: 0 0 100%;
  min-height: 7rem;
  padding: 10px;
  border: 5px solid;
  border-radius: 10px;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .partner_promis_wrap .partner_block_wrap .block_title {
    border: none;
    padding: 0;
    min-height: auto;
    justify-content: flex-start;
    padding-bottom: 15px;
    margin-bottom: 20px;
    position: relative;
  }
  .partner_promis_wrap .partner_block_wrap .block_title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 5px;
    background: #BCBCBC;
  }
}
.partner_promis_wrap .partner_block_wrap .block_title h6 {
  margin: 0;
  color: #ffffff;
}
.partner_promis_wrap .partner_block_wrap .block_content {
  width: 0;
  flex: 0 0 calc(100% - 10.25rem);
  padding-left: 1.25rem;
}
@media (max-width: 767px) {
  .partner_promis_wrap .partner_block_wrap .block_content {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
  }
}
.partner_promis_wrap .partner_block_wrap .block_content p {
  border-top: 1px solid #fff;
  padding-top: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .partner_promis_wrap .partner_block_wrap .block_content p {
    border-top: 0;
    padding-top: 0;
  }
}
.partner_promis_wrap .partner_block_wrap:hover .block_title {
  flex: 0 0 10.25rem;
  max-width: 10.25rem;
}
@media (max-width: 767px) {
  .partner_promis_wrap .partner_block_wrap:hover .block_title {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.defined-by-success {
  padding: 3.19rem 0;
}
.defined-by-success .section-heading {
  margin-bottom: 2.82rem;
}
.defined-by-success .tick-list h6 {
  font-size: 1rem;
}
.defined-by-success .tick-list li::before {
  top: -0.06rem;
  background: url(../images/green-tick-icon.svg) no-repeat center/cover;
}
.defined-by-success .tick-list p {
  font-weight: 500;
  font-size: 0.88rem;
  line-height: 1.4;
}
.defined-by-success.bg-dark h6 {
  color: #ffffff;
}

@media (min-width: 576px) {
  .dbs-inner-row {
    margin-left: 0.63rem;
  }
}
@media (max-width: 991px) {
  .dbs-inner-row {
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 575px) {
  .dbs-inner-row {
    margin-left: 0;
    margin-right: 0;
  }
}
.dbs-inner-cell {
  border-left: 1px solid rgba(188, 188, 188, 0.4);
  margin-bottom: 1.88rem;
}
@media (min-width: 768px) {
  .dbs-inner-cell {
    padding-left: 1.13rem;
    padding-right: 1.13rem;
  }
}
@media (max-width: 575px) {
  .dbs-inner-cell {
    padding-bottom: 1.25rem;
    border-left: none;
    border-bottom: 1px solid rgba(188, 188, 188, 0.4);
  }
}
.dbs-box {
  max-width: 13.13rem;
  margin-left: auto;
  margin-right: auto;
}
.dbs-box h6 {
  line-height: 1.5;
  margin-bottom: 0;
}
.dbs-icon {
  position: relative;
  padding-top: 95.2380952381%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.57rem;
  border: 5px solid transparent;
  border-radius: 31.25rem;
}
@media (max-width: 575px) {
  .dbs-icon {
    margin-bottom: 1.13rem;
  }
}
.dbs-icon img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 5rem;
  height: 5rem;
  object-fit: contain;
}
.dbs-content {
  padding: 0 0.94rem;
}

.services {
  overflow: hidden;
  margin: 1.88rem 0;
}
.services .section-heading {
  padding-bottom: 1.88rem;
  margin-bottom: 1.88rem;
  border-bottom: 5px solid #BCBCBC;
}
.services > .row {
  margin: 0;
  justify-content: center;
}
.services .service-col-wrapper {
  width: 50%;
}
@media (max-width: 991px) {
  .services .service-col-wrapper {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .services .service-row {
    flex-direction: column;
  }
}
.services .service-column {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .services .service-column {
    order: unset !important;
  }
}
.services .service-column .accordion-title {
  padding: 0.94rem;
  border: 5px solid;
  border-radius: 0.63rem;
  position: relative;
  transition: 0.4s;
}
.services .service-column .accordion-title h6 {
  margin-bottom: 5px;
}
.services .service-column .accordion-title p {
  margin: 0;
}
.services .service-column .accordion-title .plus-minus-icon {
  position: absolute;
  top: 50%;
  right: 0;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #AD53F0;
  transform: translateY(-50%);
  transition: 0.4s;
}
.services .service-column .accordion-title .plus-minus-icon:before, .services .service-column .accordion-title .plus-minus-icon:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 7px;
  width: 3px;
  height: 11px;
  background: #AD53F0;
  margin: auto;
  transition: 0.4s;
}
.services .service-column .accordion-title .plus-minus-icon:after {
  top: 48%;
  width: 11px;
  height: 3px;
  top: 7px;
  left: 3px;
}
.services .service-column .accordion-title.opened {
  border-color: #BCBCBC !important;
}
.services .service-column .accordion-title.opened .plus-minus-icon {
  border-color: #BCBCBC !important;
}
.services .service-column .accordion-title.opened .plus-minus-icon:before {
  opacity: 0;
}
.services .service-column .accordion-title.opened .plus-minus-icon::after {
  background-color: #BCBCBC !important;
}
.services .service-column .accordion-title.-yellow .plus-minus-icon {
  border-color: #F2CC63;
}
.services .service-column .accordion-title.-yellow .plus-minus-icon:before, .services .service-column .accordion-title.-yellow .plus-minus-icon:after {
  background: #F2CC63;
}
.services .service-column .accordion-title.-light-blue .plus-minus-icon {
  border-color: #09BDC9;
}
.services .service-column .accordion-title.-light-blue .plus-minus-icon:before, .services .service-column .accordion-title.-light-blue .plus-minus-icon:after {
  background: #09BDC9;
}
.services .service-column .accordion-title.-orange .plus-minus-icon {
  border-color: #E88064;
}
.services .service-column .accordion-title.-orange .plus-minus-icon:before, .services .service-column .accordion-title.-orange .plus-minus-icon:after {
  background: #E88064;
}
.services .service-column .accordion-title.-red .plus-minus-icon {
  border-color: #EB6272;
}
.services .service-column .accordion-title.-red .plus-minus-icon:before, .services .service-column .accordion-title.-red .plus-minus-icon:after {
  background: #EB6272;
}
.services .service-column .accordion-title.-green .plus-minus-icon {
  border-color: #65D193;
}
.services .service-column .accordion-title.-green .plus-minus-icon:before, .services .service-column .accordion-title.-green .plus-minus-icon:after {
  background: #65D193;
}
.services .service-column .accordion-title .accordion-title-inner {
  position: relative;
  padding-right: 1.57rem;
  cursor: pointer;
}
.services .service-column:nth-last-child(2) {
  padding-left: 15px;
}
.services .service-column:nth-last-child(2) .accordion-title {
  max-width: 530px;
  margin: auto;
}
@media (max-width: 991px) {
  .services .service-column:nth-last-child(2) .accordion-title {
    max-width: 100%;
  }
}
.services .service-inner-img {
  position: relative;
  padding-top: 36.8098159509%;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 1.13rem;
  margin-top: 0.94rem;
}
.services .service-inner-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services .service-content-wrapper {
  display: none;
}
.services .service-content-wrapper .btn {
  margin-top: 1.13rem;
  margin-bottom: 0.63rem;
  font-size: 18px;
  font-weight: 500;
  padding: 0.63rem 0.94rem;
}
.services .service-content-wrapper .btn::after {
  display: none;
}
.services .service-content-wrapper .btn:hover {
  background-color: #0A1940;
  color: #ffffff;
}
.services .service-content {
  display: none;
  width: 100%;
}
@media (max-width: 991px) {
  .services .service-content {
    order: unset !important;
  }
}
.services .service-content .service-tab .tabs-nav {
  position: relative;
}
.services .service-content .service-tab .tabs-main-content {
  padding: 36px 0;
}
.services .service-content .service-tab .tabs-main-content .section-heading {
  margin-bottom: 56px;
}
.services .service-content .service-tab .tabs-main-content .tab-columns .content-column .top-description {
  margin-bottom: 30px;
}
.services .service-content .service-tab .tabs-main-content .tab-columns .content-column .service-list li {
  font-weight: normal;
  margin-bottom: 22px;
}
.services .service-content .service-tab .tabs-main-content .tab-columns .content-column .service-list li:before {
  top: 0;
}

.services ~ .our-culture {
  background: #fff;
}

.secure-future-form {
  padding: 3.13rem 0;
}
.secure-future-form .section-heading {
  border-color: #BCBCBC;
}
@media (min-width: 768px) and (max-width: 991px) {
  .secure-future-form .wpcf7 .btn {
    margin-right: 0.63rem;
  }
}
.secure-future-form .main-drop-down-inner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  margin-bottom: 2.5rem;
}
.secure-future-form .main-drop-down-inner h2 {
  color: #ffffff;
}
.secure-future-form .main-drop-down-inner .main-drop-down {
  width: calc(100% - 11.44rem);
  padding-left: 24px;
}
@media (max-width: 767px) {
  .secure-future-form .main-drop-down-inner .main-drop-down {
    width: 100%;
    padding-left: 0;
  }
}
.secure-future-form .main-drop-down-inner .main-drop-down select {
  color: #0a1940;
  font-size: 2.5rem;
  height: 5rem;
  background-color: #ffffff;
  font-weight: 500;
  background-size: 1.25rem;
}
@media (max-width: 991px) {
  .secure-future-form .main-drop-down-inner .main-drop-down select {
    font-size: 2.19rem;
    height: 4.07rem;
  }
}
@media (max-width: 767px) {
  .secure-future-form .main-drop-down-inner .main-drop-down select {
    font-size: 1.57rem;
  }
}
.secure-future-form .main-drop-down-inner .main-drop-down select option {
  font-size: 1.25rem;
}

.secure-future-form .sff-wrap .form-sf .zcwf_col_fld,
.secure-future-form .sff-wrap .form-sf .zcwf_lblLeft {
  padding: 0 !important;
}
.secure-future-form .sff-wrap .form-sf select,
.secure-future-form .sff-wrap .form-sf input[type=text] {
  border-radius: 0.32rem;
  height: 3.38rem;
  padding: 0 0.94rem;
  font-size: 1rem;
  font-weight: 500;
}
.secure-future-form .sff-wrap .form-sf .zcwf_button {
  padding: 10px 26px;
  font-size: 0.88rem;
  background: #09BDC9;
  border-radius: 1.25rem;
  color: #ffffff;
  text-align: center;
  border-width: 2px;
}
.secure-future-form .sff-wrap .form-sf .zcwf_button:hover {
  background: #0A1940;
}
.secure-future-form .sff-wrap .form-sf .zcwf_button {
  margin-left: 0.94rem;
}
.secure-future-form .sff-wrap .form-sf .zcwf_button.formsubmit {
  margin-left: 0;
}
.secure-future-form .sff-wrap .form-sf input[type=text]::placeholder {
  font-weight: 500;
}
.secure-future-form .sff-wrap .form-sf .zcwf_title {
  padding-left: 0.94rem;
}
.secure-future-form .sff-wrap .form-sf .zcwf_col_lab {
  padding: 0;
}
.secure-future-form .sff-wrap .form-sf .zcwf_title,
.secure-future-form .sff-wrap .form-sf .zcwf_col_lab label {
  color: #ffffff !important;
  margin-bottom: 0;
  font-weight: 600;
}
.secure-future-form .sff-wrap .form-sf .zcwf_lblLeft {
  background-color: transparent !important;
}
.secure-future-form .sff-wrap .form-sf form {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.93rem;
}
.secure-future-form .sff-wrap .form-sf .zcwf_lblLeft {
  max-width: 100% !important;
}
.secure-future-form .sff-wrap .form-sf .zcwf_row {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding-left: 0.94rem;
  padding-right: 0.94rem;
}
@media (max-width: 767px) {
  .secure-future-form .sff-wrap .form-sf .zcwf_row {
    width: 100%;
  }
}
.secure-future-form .sff-wrap .form-sf .zcwf_row.has-checkbox {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.secure-future-form .sff-wrap .form-sf .zcwf_row.has-checkbox .zcwf_col_lab {
  width: auto;
}
.secure-future-form .sff-wrap .form-sf .zcwf_col_fld,
.secure-future-form .sff-wrap .form-sf .zcwf_col_fld_slt,
.secure-future-form .sff-wrap .form-sf input[type=text],
.secure-future-form .sff-wrap .form-sf .zcwf_title,
.secure-future-form .sff-wrap .form-sf textarea,
.secure-future-form .sff-wrap .form-sf .zcwf_col_lab {
  width: 100%;
}
.secure-future-form .sff-wrap .form-sf .zcwf_col_fld {
  width: auto;
}

.multiSelect_dropdown {
  font-size: 14px;
  min-height: 54px;
  line-height: 35px;
  border-radius: 4px;
  box-shadow: none;
  outline: none;
  background-color: #fff;
  color: #444f5b;
  border: 1px solid #d9dbde;
  font-weight: 400;
  padding: 0.5px 13px;
  margin: 0;
  transition: 0.1s border-color ease-in-out;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.multiSelect_dropdown.-hasValue {
  padding: 5px 30px 5px 5px;
  cursor: default;
}

.multiSelect_dropdown.-open {
  box-shadow: none;
  outline: none;
  padding: 4.5px 29.5px 4.5px 4.5px;
  border: 1.5px solid #4073FF;
}

.multiSelect_list {
  margin: 0;
  margin-bottom: 25px;
  padding: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  max-height: 310px;
  top: 28px;
  left: 0;
  z-index: 9999;
  right: 0;
  background: #fff;
  border-radius: 4px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  transition: opacity 0.1s ease, visibility 0.1s ease, -webkit-transform 0.15s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  transition: opacity 0.1s ease, visibility 0.1s ease, transform 0.15s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  transition: opacity 0.1s ease, visibility 0.1s ease, transform 0.15s cubic-bezier(0.4, 0.6, 0.5, 1.32), -webkit-transform 0.15s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  -webkit-transform: scale(0.8) translate(0, 4px);
  transform: scale(0.8) translate(0, 4px);
  border: 1px solid #d9dbde;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.12);
}

.multiSelect_option {
  margin: 0;
  padding: 0;
  opacity: 0;
  -webkit-transform: translate(6px, 0);
  transform: translate(6px, 0);
  transition: all 0.15s ease;
}

.multiSelect_option.-selected {
  display: none;
}

.multiSelect_option:hover .multiSelect_text {
  color: #fff;
  background: #4d84fe;
}

.multiSelect_text {
  cursor: pointer;
  display: block;
  padding: 5px 13px;
  color: #525c67;
  font-size: 14px;
  text-decoration: none;
  outline: none;
  position: relative;
  transition: all 0.15s ease;
}

.multiSelect_list.-open {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1) translate(0, 12px);
  transform: scale(1) translate(0, 12px);
  transition: opacity 0.15s ease, visibility 0.15s ease, -webkit-transform 0.15s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s cubic-bezier(0.4, 0.6, 0.5, 1.32), -webkit-transform 0.15s cubic-bezier(0.4, 0.6, 0.5, 1.32);
}

.multiSelect_list.-open + .multiSelect_arrow::before {
  -webkit-transform: rotate(-130deg);
  transform: rotate(-130deg);
}

.multiSelect_list.-open + .multiSelect_arrow::after {
  -webkit-transform: rotate(130deg);
  transform: rotate(130deg);
}

.multiSelect_list.-open .multiSelect_option {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.multiSelect_choice {
  background: rgba(77, 132, 254, 0.1);
  color: #444f5b;
  padding: 4px 8px;
  line-height: 17px;
  margin: 5px;
  display: inline-block;
  font-size: 13px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
}

.multiSelect_dropdown.-hasValue + .multiSelect_placeholder {
  top: -11px;
  left: 17px;
  color: #6e7277;
  font-size: 13px;
}

.multiSelect_deselect {
  display: none;
}

.headquarters-map {
  position: relative;
  padding-top: 1.88rem;
  padding-bottom: 2.82rem;
}
@media (max-width: 767px) {
  .headquarters-map {
    padding-top: 0;
  }
}
.headquarters-map .section-heading {
  border-color: #BCBCBC;
  padding-bottom: 1.25rem;
}
.headquarters-map .hm-image, .headquarters-map .hm-iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .headquarters-map .hm-image, .headquarters-map .hm-iframe {
    position: relative;
    height: 31.25rem;
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 575px) {
  .headquarters-map .hm-image, .headquarters-map .hm-iframe {
    height: 21.88rem;
  }
}
.headquarters-map .hm-image iframe, .headquarters-map .hm-iframe iframe {
  height: 100%;
  width: 100%;
}
.headquarters-map .hm-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .headquarters-map .hm-image img {
    object-position: 25% center;
  }
}
.headquarters-map .hm-wrap {
  position: relative;
  padding: 2.5rem 2.19rem;
  max-width: 26.94rem;
  margin-left: auto;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0.32rem;
}
@media (max-width: 1199px) {
  .headquarters-map .hm-wrap {
    margin-right: 1.38rem;
  }
}
@media (max-width: 991px) {
  .headquarters-map .hm-wrap {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .headquarters-map .hm-wrap {
    max-width: 100%;
    margin-right: 0;
    padding: 2.5rem 1.38rem;
  }
}
.headquarters-map .hm-wrap address {
  font-style: normal;
  font-size: 1.13rem;
  line-height: 1.8;
}
.headquarters-map .hm-wrap i {
  margin-right: 0.94rem;
  min-width: 1.57rem;
}
@media (max-width: 767px) {
  .headquarters-map .hm-wrap i {
    margin-right: 0.63rem;
  }
}
.headquarters-map .hm-wrap i::before {
  color: #09BDC9;
}
.headquarters-map .hm-wrap i.icon-phone-icon {
  font-size: 1.13rem;
}
.headquarters-map .hm-list {
  padding-bottom: 1.57rem;
  margin-bottom: 1.57rem;
  border-bottom: 1px solid #BCBCBC;
}
@media (max-width: 991px) {
  .headquarters-map .hm-list {
    padding-bottom: 0.94rem;
    margin-bottom: 0.94rem;
  }
}
.headquarters-map .hm-list a {
  text-decoration: none;
  font-size: 1.13rem;
}
.headquarters-map .hm-list a:hover, .headquarters-map .hm-list a:focus {
  text-decoration: underline;
}
.headquarters-map .hm-email a {
  color: #09BDC9;
}
.headquarters-map .hm-social ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
}
.headquarters-map .hm-social li {
  list-style: none;
  margin: 0 0.5rem 0 0;
  padding: 0;
}
.headquarters-map .hm-social a {
  display: inline-block;
  color: #09BDC9;
  font-size: 1.38rem;
  text-decoration: none;
}
.headquarters-map .hm-social a:hover, .headquarters-map .hm-social a:focus {
  color: #0A1940;
}

.lp-hero-section {
  /*contactform 7 */
  /* Form script design*/
}
.lp-hero-section .lp-brand {
  width: 13.19rem;
  height: 4.5rem;
  margin-bottom: 5.69rem;
}
@media (max-width: 991px) {
  .lp-hero-section .lp-brand {
    margin-bottom: 1.88rem;
  }
}
.lp-hero-section .lp-wrapper {
  padding: 2.5rem 0;
  display: flex;
  flex-wrap: wrap;
}
.lp-hero-section .lp-hero-content {
  width: 60%;
  padding-bottom: 0.94rem;
}
@media (max-width: 991px) {
  .lp-hero-section .lp-hero-content {
    width: 100%;
  }
}
.lp-hero-section .lp-hero-content-wrap .banner-logo {
  margin-bottom: 1.25rem;
}
.lp-hero-section .lp-hero-content-wrap h4 {
  margin-bottom: 2.13rem;
  color: #09BDC9;
  text-transform: uppercase;
  letter-spacing: 6px;
}
@media (max-width: 991px) {
  .lp-hero-section .lp-hero-content-wrap h4 {
    font-size: 1.13rem;
    margin-bottom: 1.25rem;
  }
}
.lp-hero-section .lp-hero-content-wrap h4:after {
  display: none;
}
.lp-hero-section .lp-hero-content-wrap h4 + h1 {
  padding-top: 1.75rem;
  position: relative;
}
@media (max-width: 991px) {
  .lp-hero-section .lp-hero-content-wrap h4 + h1 {
    font-size: 2.5rem;
  }
}
.lp-hero-section .lp-hero-content-wrap h4 + h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 68px;
  height: 5px;
  background: #ffffff;
}
.lp-hero-section .lp-hero-content-wrap h1 {
  line-height: 1;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1.17;
  font-weight: 300;
}
.lp-hero-section .lp-form-section {
  width: 40%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .lp-hero-section .lp-form-section {
    width: 100%;
  }
}
.lp-hero-section .lp-form-wrapper {
  max-width: 23.57rem;
  background: #0A1940;
  border-radius: 0.63rem;
  box-shadow: 0px 0px 24px rgba(255, 255, 255, 0.47);
  padding: 24px 20px 31px 20px;
}
@media (max-width: 991px) {
  .lp-hero-section .lp-form-wrapper {
    max-width: 31.25rem;
    margin: auto;
  }
}
.lp-hero-section .lp-form-wrap h4 {
  position: relative;
  color: #ffffff;
  padding-bottom: 1.88rem;
  text-transform: uppercase;
  letter-spacing: 3.83px;
  text-align: center;
  font-size: 18px;
  margin-bottom: 0;
}
.lp-hero-section .lp-form-wrap h4::after {
  content: "";
  position: absolute;
  left: 38%;
  bottom: 0;
  width: 68px;
  height: 5px;
  background: #ffffff;
}
.lp-hero-section .lp-form {
  padding-top: 2rem;
}
.lp-hero-section .lp-form input {
  height: 2.82rem;
}
.lp-hero-section .lp-form .btn {
  width: 100%;
  text-align: left;
  margin-top: 19px;
}
.lp-hero-section .lp-form .btn input {
  font-weight: 500;
  padding: 0 0 0 1.5rem;
}
.lp-hero-section .lp-form .form-group {
  margin-bottom: 10px;
}
.lp-hero-section .hero-image .banner-image {
  padding-left: 2.25rem;
  box-shadow: 0 3px 6px rgba(51, 51, 51, 0.45);
  overflow: hidden;
}
@media (max-width: 991px) {
  .lp-hero-section .hero-image .banner-image {
    margin-right: 0;
    padding-left: 0;
  }
}
.lp-hero-section .hero-image .banner-image img {
  width: 100%;
  border-radius: 5px;
}
.lp-hero-section .wpcf7-not-valid-tip {
  font-size: 0.88rem;
}
.lp-hero-section .wpcf7-response-output {
  font-size: 0.88rem;
  color: #dc3232;
  border: 2px solid #dc3232 !important;
  margin-top: 1.25rem;
}
.lp-hero-section .wpcf7-form.sent .wpcf7-response-output {
  color: #09BDC9;
  border: 2px solid #09BDC9 !important;
}
@media (max-width: 767px) {
  .lp-hero-section .submit-field {
    margin-top: 0;
  }
}
.lp-hero-section .zcwf_title {
  display: none;
}
.lp-hero-section .zcwf_lblLeft .zcwf_row {
  position: relative;
  margin-top: 0 !important;
  margin-bottom: 16px !important;
}
.lp-hero-section .zcwf_row .zcwf_col_fld {
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
.lp-hero-section .zcwf_col_fld input[type=text] {
  width: 100% !important;
  height: 45px !important;
  border: 1px solid #D0D0D0 !important;
  border-radius: 5px !important;
}
.lp-hero-section .zcwf_row.has-label .zcwf_col_lab {
  position: absolute;
  opacity: 0;
}
.lp-hero-section .zcwf_col_lab span {
  color: rgba(0, 0, 0, 0.5) !important;
}
.lp-hero-section #crmWebToEntityForm.zcwf_lblLeft {
  width: 332px !important;
  background-color: transparent !important;
  padding: 0;
}
.lp-hero-section .zcwf_button {
  color: #ffffff !important;
  background-color: #09BDC9 !important;
  font-size: 1.13rem !important;
  font-weight: 500 !important;
  border-radius: 1.94rem !important;
  text-align: center;
  border: none !important;
  transition: all 0.6s;
}
.lp-hero-section .zcwf_button:hover {
  color: #09BDC9 !important;
  background-color: #ffffff !important;
}
.lp-hero-section .zcwf_row:not(.has-label) .zcwf_col_lab label {
  color: #BCBCBC !important;
  position: absolute;
  left: 24px;
  top: 21px;
}
.lp-hero-section .zcwf_row:not(.has-label) {
  margin-top: -16px !important;
}

.lp-two-column {
  position: relative;
  padding: 3.5rem 0;
  z-index: 1;
}
@media (max-width: 991px) {
  .lp-two-column {
    padding: 1.88rem 0;
  }
}
.lp-two-column::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/two-column-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
@media (max-width: 767px) {
  .lp-two-column .ltc-heading .h2 {
    font-size: 1.88rem;
  }
}
.lp-two-column .ltc-left .h2 {
  padding-bottom: 1.88rem;
  border-bottom: 5px solid #BCBCBC;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .lp-two-column .ltc-left .h2 {
    padding-bottom: 1.25rem;
  }
}
.lp-two-column .ltc-left p {
  padding-top: 2.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .lp-two-column .ltc-left p {
    padding-top: 1.25rem;
    font-size: 1.13rem;
  }
}
@media (max-width: 991px) {
  .lp-two-column .ltc-right {
    margin-top: 1.25rem;
  }
}
.lp-two-column .ltc-icon {
  width: 2.82rem;
}
.lp-two-column .ltc-error-block {
  margin-top: 2.32rem;
}
@media (max-width: 991px) {
  .lp-two-column .ltc-error-block {
    margin-top: 1.25rem;
  }
}
.lp-two-column .ltc-error-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: #EB6272;
  padding: 1.25rem 0.63rem;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .lp-two-column .ltc-error-wrapper {
    padding: 1.25rem 0.63rem;
  }
}
.lp-two-column .ltc-text {
  font-size: 1.5rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .lp-two-column .ltc-text {
    font-size: 1rem;
  }
}
.lp-two-column .icon-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.69rem;
  color: #ffffff;
}
.lp-two-column .lightbox-video {
  position: relative;
}
@media (max-width: 991px) {
  .lp-two-column .video-block {
    max-width: 31.25rem;
    margin: auto;
  }
}
.lp-two-column .video-image {
  display: block;
}
.lp-two-column .video-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-two-column .owner-video {
  display: block;
}

.lp-three-column {
  position: relative;
  padding: 2.25rem 0;
}
.lp-three-column .section-heading {
  padding-bottom: 1.5rem;
}
.lp-three-column .section-heading .headings {
  width: auto;
}
.lp-three-column .section-heading h2 {
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .lp-three-column .section-heading h2 {
    font-size: 2.44rem;
  }
}
@media (max-width: 991px) {
  .lp-three-column .section-heading h2 {
    font-size: 1.88rem;
  }
}
.lp-three-column .bg-image img {
  object-position: bottom;
}
@media (max-width: 991px) {
  .lp-three-column .btn-block {
    padding: 1.25rem 0 0;
  }
}
.lp-three-column .ltc-description {
  font-size: 1.25rem;
  color: #ffffff;
  line-height: 1.5;
  text-align: center;
  padding: 0 20px;
}
.lp-three-column .ltc-image-block {
  position: relative;
  margin-bottom: 2rem;
  padding-top: 69.9324324324%;
  border-radius: 6px;
  overflow: hidden;
}
.lp-three-column .ltc-image-block img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-three-column .ltc-block-wrapper {
  margin-top: 7.13rem;
}
@media (max-width: 767px) {
  .lp-three-column .ltc-block-wrapper {
    margin-top: 5.19rem;
  }
}
.lp-three-column .ltc-block {
  position: relative;
}
@media (max-width: 991px) {
  .lp-three-column .ltc-block:not(:last-child) {
    margin-bottom: 5.63rem;
  }
}
@media (max-width: 991px) {
  .lp-three-column .ltc-row {
    justify-content: center;
  }
}
.lp-three-column .ltc-hexgone {
  position: absolute;
  width: 6.32rem;
  height: 5.69rem;
  background-image: url("../images/hexgone.svg");
  background-size: cover;
  top: -19%;
  left: 50%;
  transform: translate(-51%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .lp-three-column .ltc-hexgone {
    top: -16%;
  }
}
@media (max-width: 767px) {
  .lp-three-column .ltc-hexgone {
    top: -13%;
  }
}
.lp-three-column .ltc-hexgone span {
  font-size: 2.5rem;
  font-weight: 500;
  color: #ffffff;
}

.lp-three-column-steps {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 0;
}
@media (max-width: 991px) {
  .lp-three-column-steps {
    padding: 1.25rem 0;
  }
}
.lp-three-column-steps .section-heading {
  border-bottom: 5px solid rgba(0, 0, 0, 0.16);
  padding-bottom: 24px;
}
.lp-three-column-steps .section-heading .headings {
  width: auto;
}
.lp-three-column-steps .section-heading h2 {
  margin-bottom: 0;
  color: #0A1940;
}
@media (max-width: 1199px) {
  .lp-three-column-steps .section-heading h2 {
    font-size: 2.44rem;
  }
}
@media (max-width: 991px) {
  .lp-three-column-steps .section-heading h2 {
    font-size: 1.88rem;
  }
}
@media (max-width: 991px) {
  .lp-three-column-steps .section-heading .btn-block {
    padding: 20px 0 0;
  }
}
.lp-three-column-steps .lcs-description {
  font-size: 1.25rem;
  color: #0A1940;
  line-height: 1.5;
  text-align: center;
  padding: 0 20px;
}
.lp-three-column-steps .lcs-image-block {
  position: relative;
  margin-bottom: 33px;
  padding-top: 69.9324324324%;
  border-radius: 6px;
  overflow: hidden;
}
.lp-three-column-steps .lcs-image-block img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .lp-three-column-steps .lcs-image-block {
    margin-bottom: 20px;
  }
}
.lp-three-column-steps .lcs-block-wrapper {
  margin-top: 4.82rem;
}
@media (max-width: 991px) {
  .lp-three-column-steps .lcs-block-wrapper {
    margin-top: 1.88rem;
  }
}
.lp-three-column-steps .lcs-block {
  position: relative;
}
@media (max-width: 991px) {
  .lp-three-column-steps .lcs-block {
    margin-bottom: 20px;
  }
}
.lp-three-column-steps .lcs-block::after {
  content: "";
  position: absolute;
  top: 23%;
  left: 97%;
  width: 100%;
  height: 100%;
  background-image: url("../images/step-arrow.svg");
  background-repeat: no-repeat;
  pointer-events: none;
}
@media (max-width: 991px) {
  .lp-three-column-steps .lcs-block::after {
    top: 30%;
    left: 98%;
  }
}
.lp-three-column-steps .lcs-block:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .lp-three-column-steps .lcs-block:nth-child(2)::after {
    display: none;
  }
}
.lp-three-column-steps .lcs-row {
  margin-left: -24.5px;
  margin-right: -24.5px;
}
@media (max-width: 991px) {
  .lp-three-column-steps .lcs-row {
    justify-content: center;
  }
}
.lp-three-column-steps .lcs-row [class*=cell-] {
  padding-left: 24.5px;
  padding-right: 24.5px;
}
.lp-three-column-steps .lcs-hexgone {
  position: absolute;
  width: 101px;
  height: 91px;
  background-image: url("../images/hexgone.svg");
  background-size: cover;
  top: -19%;
  left: 50%;
  transform: translate(-51%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .lp-three-column-steps .lcs-hexgone {
    top: -16%;
  }
}
@media (max-width: 767px) {
  .lp-three-column-steps .lcs-hexgone {
    top: -13%;
  }
}
.lp-three-column-steps .lcs-hexgone span {
  font-size: 2.5rem;
  font-weight: 500;
  color: #ffffff;
}
.lp-three-column-steps .lcs-error-block {
  margin-top: 1.5rem;
}
@media (max-width: 991px) {
  .lp-three-column-steps .lcs-error-block {
    margin-top: 1.25rem;
  }
}
.lp-three-column-steps .lcs-error-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: #EB6272;
  padding: 1.25rem 0.63rem;
  border-radius: 5px;
}
.lp-three-column-steps .lcs-text {
  font-size: 1.5rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .lp-three-column-steps .lcs-text {
    font-size: 1rem;
  }
}

.lp_fifty_fifty {
  position: relative;
  padding: 2.25rem 0;
}
@media (max-width: 991px) {
  .lp_fifty_fifty .section-heading {
    padding-bottom: 1.25rem;
  }
}
.lp_fifty_fifty .section-heading .headings {
  width: auto;
}
.lp_fifty_fifty .section-heading h2 {
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .lp_fifty_fifty .section-heading h2 {
    font-size: 2.44rem;
  }
}
@media (max-width: 991px) {
  .lp_fifty_fifty .section-heading h2 {
    font-size: 1.88rem;
  }
}
@media (max-width: 991px) {
  .lp_fifty_fifty .btn-block {
    padding: 1.25rem 0 0;
  }
}
.lp_fifty_fifty .lff-description {
  font-size: 1.25rem;
  color: #ffffff;
  line-height: 1.5;
  max-width: 28.75rem;
}
@media (max-width: 991px) {
  .lp_fifty_fifty .lff-description {
    max-width: 100%;
  }
}
.lp_fifty_fifty .lff-image-block {
  position: relative;
  max-width: 499px;
  width: 100%;
  height: 100%;
  margin: auto;
}
.lp_fifty_fifty .lff-block-wrapper {
  margin-top: 3.88rem;
}
@media (max-width: 991px) {
  .lp_fifty_fifty .lff-block-wrapper {
    margin-top: 1.25rem;
  }
}
.lp_fifty_fifty .lff-block {
  position: relative;
}
@media (max-width: 991px) {
  .lp_fifty_fifty .lff-block:not(:last-child) {
    margin-bottom: 1.88rem;
  }
}
@media (max-width: 991px) {
  .lp_fifty_fifty .lff-row {
    justify-content: center;
  }
}
.lp_fifty_fifty .lff-hexgone {
  position: absolute;
  width: 101px;
  height: 91px;
  background-image: url("../images/hexgone.svg");
  background-size: cover;
  top: -19%;
  left: 50%;
  transform: translate(-51%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .lp_fifty_fifty .lff-hexgone {
    top: -16%;
  }
}
@media (max-width: 767px) {
  .lp_fifty_fifty .lff-hexgone {
    top: -13%;
  }
}
.lp_fifty_fifty .lff-hexgone span {
  font-size: 2.5rem;
  font-weight: 500;
  color: #ffffff;
}

.lp-offer-section {
  position: relative;
  overflow: hidden;
  padding: 2.82rem 0;
}
@media (max-width: 991px) {
  .lp-offer-section {
    padding: 1.25rem 0;
  }
}
.lp-offer-section .section-heading {
  border-bottom: 5px solid rgba(0, 0, 0, 0.16);
  padding-bottom: 1.5rem;
}
.lp-offer-section .section-heading .headings {
  width: auto;
}
.lp-offer-section .section-heading h2 {
  margin-bottom: 0;
  color: #0A1940;
}
@media (max-width: 1199px) {
  .lp-offer-section .section-heading h2 {
    font-size: 2.44rem;
  }
}
@media (max-width: 991px) {
  .lp-offer-section .section-heading h2 {
    font-size: 1.88rem;
  }
}
@media (max-width: 991px) {
  .lp-offer-section .section-heading .btn-block {
    padding: 1.25rem 0 0;
  }
}
.lp-offer-section .tick-list {
  margin: 0;
}
.lp-offer-section .os-left-block {
  padding-left: calc((100% - 70.01rem) / 2);
}
.lp-offer-section .os-left-block > div {
  padding-left: 1.88rem;
}
@media (max-width: 767px) {
  .lp-offer-section .os-left-block > div {
    padding-left: 1.25rem;
  }
}
.lp-offer-section .os-left-block > div {
  padding-left: 0;
}
.lp-offer-section .os-right-block {
  padding-left: 2.25rem;
}
@media (max-width: 991px) {
  .lp-offer-section .os-right-block {
    margin-top: 20px;
    padding-left: 0;
  }
}
.lp-offer-section .os-wrapper {
  margin-top: 3.13rem;
}
@media (max-width: 991px) {
  .lp-offer-section .os-wrapper {
    margin-top: 1.25rem;
  }
}
.lp-offer-section .os-left ul, .lp-offer-section .os-right ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
  row-gap: 18px;
}
.lp-offer-section .os-left ul li, .lp-offer-section .os-right ul li {
  width: 50%;
  font-weight: 700;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .lp-offer-section .os-left ul li, .lp-offer-section .os-right ul li {
    width: 100%;
  }
}
.lp-offer-section .os-left ul li::before, .lp-offer-section .os-right ul li::before {
  background-image: url("../images/green-tick-icon.svg");
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .lp-offer-section .os-left ul li::before, .lp-offer-section .os-right ul li::before {
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .lp-offer-section .os-content-block {
    padding: 0 10px;
  }
}
.lp-offer-section .os-img-block {
  position: absolute;
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .lp-offer-section .os-img-block {
    position: relative;
  }
}
.lp-offer-section .os-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-client-section {
  position: relative;
  padding: 2.25rem 0;
}
@media (max-width: 991px) {
  .lp-client-section {
    padding: 1.25rem 0;
  }
}
.lp-client-section .section-heading {
  padding-bottom: 1.5rem;
}
@media (max-width: 991px) {
  .lp-client-section .section-heading {
    padding-bottom: 1.25rem;
  }
}
.lp-client-section .section-heading .headings {
  width: auto;
}
.lp-client-section .section-heading h2 {
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .lp-client-section .section-heading h2 {
    font-size: 2.44rem;
  }
}
@media (max-width: 991px) {
  .lp-client-section .section-heading h2 {
    font-size: 1.88rem;
  }
}
@media (max-width: 991px) {
  .lp-client-section .btn-block {
    padding: 1.25rem 0 0;
  }
}
.lp-client-section .lp-wrapper {
  margin-top: 3.13rem;
}
@media (max-width: 991px) {
  .lp-client-section .lp-wrapper {
    margin-top: 1.25rem;
    row-gap: 1.88rem;
  }
}
.lp-client-section .lp-review {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #ffffff;
}
@media (max-width: 991px) {
  .lp-client-section .lp-review {
    font-size: 1.13rem;
  }
}
.lp-client-section .lp-designation {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1.88rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .lp-client-section .lp-designation {
    margin-top: 1.07rem;
    font-size: 1.13rem;
  }
}

.blog-banner {
  background-position: center !important;
}
@media (min-width: 768px) {
  .blog-banner {
    padding: 4.63rem 0;
  }
}
.blog-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .blog-banner .container {
    display: block;
  }
}
@media (min-width: 768px) {
  .blog-banner .container .breadcum {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .blog-banner .container .breadcum ul {
    margin-bottom: 0;
  }
}
.blog-banner .hero-content {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .blog-banner .hero-content .hero-content-wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .blog-banner .hero-content .hero-content-wrap h1 + h6 {
    padding: 0 0 0 2.25rem !important;
    margin-left: 2.25rem;
  }
}
@media (min-width: 768px) {
  .blog-banner .hero-content .hero-content-wrap h1 + h6:before {
    width: 5px !important;
    height: 50px !important;
    top: 50%;
    transform: translateY(-50%);
  }
}
.blog-posts.latest-post {
  padding: 3.13rem 0 4.38rem;
  background: #0A1940;
}
.blog-posts.latest-post .single-post {
  color: #ffffff;
}
.blog-posts.latest-post .single-post .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .blog-posts.latest-post .single-post .row .post-image {
    margin-bottom: 1.88rem;
  }
}
.blog-posts.latest-post .single-post .row .post-image figure {
  height: 100%;
}
.blog-posts.latest-post .single-post .row .post-image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-posts.latest-post .single-post .row .post-content h6 {
  color: #ffffff;
  text-transform: uppercase;
  padding-bottom: 1.25rem;
  letter-spacing: 0.2em;
  border-bottom: 5px solid rgba(255, 255, 255, 0.16);
}
.blog-posts.latest-post .single-post .row .post-content h2 {
  margin-bottom: 0.63rem;
  color: #ffffff;
}
.blog-posts.latest-post .single-post .row .post-content .date {
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  position: relative;
}
.blog-posts.latest-post .single-post .row .post-content .date:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3rem;
  height: 5px;
  background: rgba(255, 255, 255, 0.16);
}
.blog-posts.latest-post .single-post .row .post-info {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 0.63rem;
  margin-bottom: 1.38rem;
}
.blog-posts.latest-post .single-post .row .post-info p {
  font-size: 1.5rem;
}
@media (max-width: 991px) {
  .blog-posts.latest-post .single-post .row .post-info p {
    font-size: 1.25rem;
  }
}
.blog-posts.list-blog {
  padding: 2.82rem 0 3.13rem;
}
.blog-posts.list-blog .blog-wrap {
  margin: 0 -0.75rem;
}
.blog-posts.list-blog .blog-wrap .single-post {
  padding: 0 0.75rem;
  margin-bottom: 2.5rem;
}
.blog-posts.list-blog .blog-wrap .single-post-inner {
  height: 100%;
  position: relative;
  padding-bottom: 3.94rem;
  border-bottom: 1px solid #707070;
}
.blog-posts.list-blog .blog-wrap .single-post .post-image figure {
  position: relative;
  padding-bottom: 58%;
}
.blog-posts.list-blog .blog-wrap .single-post .post-image figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-posts.list-blog .blog-wrap .single-post .post-content {
  padding: 1.13em 0 0;
}
.blog-posts.list-blog .blog-wrap .single-post .post-content .categories {
  margin-bottom: 1.19rem;
}
.blog-posts.list-blog .blog-wrap .single-post .post-content .categories span {
  font-size: 0.75rem;
  border-radius: 0.32rem;
  background: #000000;
  color: #ffffff;
  padding: 0.32rem 1.07rem;
  display: inline-block;
  margin-right: 0.44rem;
}
.blog-posts.list-blog .blog-wrap .single-post .post-content .categories span a {
  color: #ffffff;
  text-decoration: none;
}
.blog-posts.list-blog .blog-wrap .single-post .post-content .categories span.security, .blog-posts.list-blog .blog-wrap .single-post .post-content .categories span.press, .blog-posts.list-blog .blog-wrap .single-post .post-content .categories span.purple {
  background-color: #AD53F0;
}
.blog-posts.list-blog .blog-wrap .single-post .post-content .categories span.enterprise, .blog-posts.list-blog .blog-wrap .single-post .post-content .categories span.orange {
  background-color: #E88064;
}
.blog-posts.list-blog .blog-wrap .single-post .post-content .categories span.international, .blog-posts.list-blog .blog-wrap .single-post .post-content .categories span.green {
  background-color: #65D193;
}
.blog-posts.list-blog .blog-wrap .single-post .post-content .categories span.alerts, .blog-posts.list-blog .blog-wrap .single-post .post-content .categories span.pink {
  background-color: #EB6272;
}
.blog-posts.list-blog .blog-wrap .single-post .post-content .categories span.updates, .blog-posts.list-blog .blog-wrap .single-post .post-content .categories span.yellow {
  background-color: #F2CC63;
}
.blog-posts.list-blog .blog-wrap .single-post .post-content .categories span.cyan {
  background-color: #09BDC9;
}
.blog-posts.list-blog .blog-wrap .single-post .post-content h6 {
  line-height: 1.5rem;
}
.blog-posts.list-blog .blog-wrap .single-post .post-content .date {
  padding-bottom: 0.94rem;
  position: relative;
  margin-bottom: 0.63rem;
}
.blog-posts.list-blog .blog-wrap .single-post .post-content .date:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.5rem;
  height: 0.32rem;
  background: #BCBCBC;
}
.blog-posts.list-blog .blog-wrap .single-post .post-content .date span {
  font-size: 0.75rem;
  line-height: 1.5rem;
  display: block;
}
.blog-posts.list-blog .blog-wrap .single-post .post-content a.btn {
  font-size: 1.13rem;
  padding: 0.63rem 4rem 0.63rem 0.94rem;
  position: absolute;
  bottom: 1.25rem;
  left: 0;
}

.loader {
  font-size: 1.57rem;
}
.loader .loading-img {
  width: 90px;
  height: 90px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.loader .loading-img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../images/loader-circle.png") no-repeat;
  animation: rotate 15s infinite linear;
}
.loader h3 {
  margin-top: 18px;
  font-weight: 300;
  color: #BCBCBC;
  margin-bottom: 0;
}

.blog-detail-wrap {
  border-bottom: 1px solid #707070;
  padding: 33px 0 5px;
}
.blog-detail-wrap .blog-detail-info {
  padding-bottom: 20px;
  border-bottom: 5px solid #BCBCBC;
  margin-bottom: 1.25rem;
  max-width: 46.88rem;
  margin: auto;
}
.blog-detail-wrap .blog-detail-info h2 {
  margin-bottom: 0.44rem;
}
.blog-detail-wrap .blog-detail-info .date {
  margin-bottom: 0.63rem;
}
.blog-detail-wrap .blog-detail-info .categories span {
  font-size: 0.75rem;
  border-radius: 0.32rem;
  background: #000000;
  color: #ffffff;
  padding: 0.32rem 1.07rem;
  display: inline-block;
  margin-right: 0.44rem;
  margin-bottom: 5px;
}
.blog-detail-wrap .blog-detail-info .categories span.security, .blog-detail-wrap .blog-detail-info .categories span.press, .blog-detail-wrap .blog-detail-info .categories span.purple {
  background-color: #AD53F0;
}
.blog-detail-wrap .blog-detail-info .categories span.enterprise, .blog-detail-wrap .blog-detail-info .categories span.orange {
  background-color: #E88064;
}
.blog-detail-wrap .blog-detail-info .categories span.international, .blog-detail-wrap .blog-detail-info .categories span.green {
  background-color: #65D193;
}
.blog-detail-wrap .blog-detail-info .categories span.alerts, .blog-detail-wrap .blog-detail-info .categories span.pink {
  background-color: #EB6272;
}
.blog-detail-wrap .blog-detail-info .categories span.updates, .blog-detail-wrap .blog-detail-info .categories span.yellow {
  background-color: #F2CC63;
}
.blog-detail-wrap .detail-content {
  max-width: 46.88rem;
  margin: auto;
  padding-top: 20px;
}
.blog-detail-wrap .detail-content .post-image {
  margin-bottom: 2.19rem;
}
.blog-detail-wrap .detail-content h4 {
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 36px;
}
.blog-detail-wrap .detail-content p {
  line-height: 30px;
  margin-bottom: 25px;
}
.blog-detail-wrap .detail-content p img {
  margin-bottom: 35px;
  width: 100%;
}
.blog-detail-wrap .detail-content blockquote {
  font-style: normal;
  background: transparent;
  padding: 0 0 0 30px;
  border-color: #BCBCBC;
  margin-bottom: 3.13rem;
}
.blog-detail-wrap .detail-content blockquote h4 {
  margin: 0;
}
.blog-detail-wrap .detail-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.blog-detail-wrap .detail-content ul li {
  padding-left: 32px;
  position: relative;
  padding: 6px 0 6px 32px;
  font-weight: 600;
}
.blog-detail-wrap .detail-content ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 22px;
  height: 22px;
  background: url(../images/tick-icon.svg) no-repeat;
  background-size: cover;
}

.detail-form {
  background: #0A1940;
  padding: 2.82rem 0 3.25rem;
}

.related-post {
  padding: 25px 0 0 !important;
}
.related-post .heading-wrap {
  padding-bottom: 25px;
  border-bottom: 5px solid #BCBCBC;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .related-post .heading-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.related-post .heading-wrap h6 {
  letter-spacing: 0.2em;
  margin: 0;
}
.related-post .heading-wrap a.btn {
  font-size: 18px;
  padding: 10px 48px 10px 16px;
}
.related-post .heading-wrap a.btn:after {
  font-size: 16px;
  right: 14px;
}
.related-post .blog-wrap .single-post-inner {
  border-bottom: none !important;
}

.single-post .main-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  flex-direction: column;
}
.single-post .main-container .components-block {
  order: 99;
}

.service-pains-section {
  padding: 2.82rem 0;
}

.sp-left h2 {
  font-size: 3rem;
  line-height: 1.16;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 991px) {
  .sp-left h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .sp-left h2 {
    font-size: 2.19rem;
  }
}
@media (max-width: 991px) {
  .sp-left {
    margin-bottom: 1.88rem;
  }
}
.sp-right-wrap {
  border: 1px solid #D0D0D0;
  padding: 1.69rem 2.19rem;
  border-radius: 0.63rem;
}
.sp-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.56rem;
}
@media (max-width: 1199px) {
  .sp-list {
    margin: 0 -0.93rem;
  }
}
.sp-list .sp-single {
  padding: 0 1.57rem;
  text-align: center;
}
@media (max-width: 1199px) {
  .sp-list .sp-single {
    padding: 0 0.94rem;
  }
}
@media (max-width: 767px) {
  .sp-list .sp-single:not(:last-child) {
    margin-bottom: 1.88rem;
  }
}
.sp-list .sp-single .icon-block {
  max-width: 11.38rem;
  background: #EB6272;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  margin: auto;
  margin-bottom: 1.75rem;
  aspect-ratio: 1;
}
@media (max-width: 767px) {
  .sp-list .sp-single .icon-block {
    margin-bottom: 0.94rem;
  }
}
@media (max-width: 1199px) {
  .sp-list .sp-single .icon-block img {
    max-width: 85%;
  }
}

.pain-blocks-section .pb-heading {
  padding: 1.57rem 1.25rem;
  background: #09BDC9;
  border-radius: 10px;
}
.pain-blocks-section .pb-heading h3 {
  margin: 0;
  font-weight: 300;
  color: #ffffff;
}
.pain-blocks-section .pb-block {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #BCBCBC;
  padding-top: 2.5rem;
}
.pain-blocks-section .pb-block .block_title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.pain-blocks-section .pb-block .block_title .block-number {
  width: 100%;
  background: #EB6272;
  text-align: center;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
  padding: 0.63rem 0;
  border-radius: 10px;
  flex: 0 0 100px;
}
@media (max-width: 767px) {
  .pain-blocks-section .pb-block .block_title .block-number {
    padding: 0.94rem 0 0.63rem;
  }
}
.pain-blocks-section .pb-block .block_title .block-number h4 {
  width: 100%;
  color: #ffffff;
  margin: 0;
}
.pain-blocks-section .pb-block .block_title .block-number h2 {
  color: #ffffff;
  margin: 0;
}
.pain-blocks-section .pb-block .block_title h3 {
  width: calc(100% - 100px);
  padding-left: 1.5rem;
  font-size: 1.88rem;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 767px) {
  .pain-blocks-section .pb-block .block_title h3 {
    width: 100%;
    padding-left: 0;
    padding-top: 0.94rem;
  }
}
.pain-blocks-section .pb-block .image-block {
  margin-top: 1.25rem;
}
.pain-blocks-section .pb-block .circle-list {
  margin-top: 1.75rem;
}
.pain-blocks-section .pb-block .circle-list .circle-block {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.pain-blocks-section .pb-block .circle-list .circle-block .cb-left {
  width: 110px;
  height: 110px;
  border: 10px solid #AD53F0;
  border-radius: 50%;
}
.pain-blocks-section .pb-block .circle-list .circle-block .cb-left h3 {
  font-size: 1.88rem;
  font-weight: 300;
  margin-bottom: 0;
}
.pain-blocks-section .pb-block .circle-list .circle-block .cb-left p {
  font-weight: bold;
}
.pain-blocks-section .pb-block .circle-list .circle-block .cb-right {
  width: calc(100% - 110px);
  padding-left: 0.88rem;
  padding-top: 1.57rem;
}
@media (max-width: 767px) {
  .pain-blocks-section .pb-block .circle-list .circle-block .cb-right {
    width: 100%;
    padding-left: 0;
    padding-top: 0.94rem;
  }
}
.pain-blocks-section .pb-block .circle-list .circle-block .cb-right h6 {
  margin-bottom: 0.63rem;
}
.pain-blocks-section .pb-block .circle-list .circle-block .cb-right .sm-label {
  font-size: 0.57rem;
  font-weight: 300;
}
.pain-blocks-section .pb-block .circle-list .circle-block .cb-right .sm-label a {
  color: #09BDC9;
  text-decoration: none;
}
.pain-blocks-section .pb-block .circle-list .circle-block .cb-right .sm-label a:hover {
  color: #0A1940;
}
.pain-blocks-section .pb-block.block2 .circle-list {
  margin-top: 3.75rem;
}
@media (max-width: 991px) {
  .pain-blocks-section .pb-block.block2 .circle-list {
    margin-top: 1.88rem;
  }
}
.pain-blocks-section .pb-block.block2 .circle-list .circle-block {
  align-items: center;
}
.pain-blocks-section .pb-block.block2 .circle-list .circle-block .cb-left {
  width: 40%;
  aspect-ratio: 1;
  height: auto;
}
@media (max-width: 767px) {
  .pain-blocks-section .pb-block.block2 .circle-list .circle-block .cb-left {
    max-width: 160px;
  }
}
.pain-blocks-section .pb-block.block2 .circle-list .circle-block .cb-left h2 {
  font-size: 3.75rem;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 767px) {
  .pain-blocks-section .pb-block.block2 .circle-list .circle-block .cb-left h2 {
    font-size: 2.5rem;
  }
}
.pain-blocks-section .pb-block.block2 .circle-list .circle-block .cb-right {
  width: 60%;
  padding-left: 1.88rem;
  padding-top: 0;
}
@media (max-width: 767px) {
  .pain-blocks-section .pb-block.block2 .circle-list .circle-block .cb-right {
    width: 100%;
    padding-left: 0;
    padding-top: 0.94rem;
  }
}
.pain-blocks-section .pb-block.block2 .circle-list .circle-block .cb-right h4 {
  font-size: 1.88rem;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 767px) {
  .pain-blocks-section .pb-block.block2 .circle-list .circle-block .cb-right h4 {
    font-size: 1.63rem;
  }
}
.pain-blocks-section .pb-block.block5 {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 15px;
  margin-top: -1px;
  background: #fff;
  border-bottom: none;
}
@media (max-width: 767px) {
  .pain-blocks-section .pb-block.block5 {
    padding: 40px 15px;
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .pain-blocks-section .pb-block.block5 .block_title {
    width: 76%;
    flex-wrap: nowrap;
    padding: 35px 60px 35px 0;
    border: 1px solid #BCBCBC;
    border-left: 0;
    border-right: 0;
  }
}
@media (min-width: 992px) {
  .pain-blocks-section .pb-block.block5 .block_title h3 {
    width: 100%;
    max-width: 325px;
  }
}
@media (min-width: 992px) {
  .pain-blocks-section .pb-block.block5 .block_title p {
    margin-left: 40px;
  }
}
@media (max-width: 991px) {
  .pain-blocks-section .pb-block.block5 .block_title p {
    padding-top: 20px;
  }
}
.pain-blocks-section .pb-block.block5 .image-block {
  background: #fff;
}
@media (min-width: 992px) {
  .pain-blocks-section .pb-block.block5 .image-block {
    width: 24%;
    margin-top: -52px;
    margin-bottom: -52px;
  }
}

.pain-service {
  padding: 1.38rem 0 0.75rem;
}
.pain-service .ps-heading {
  padding: 1.57rem 1.25rem;
  background: #09BDC9;
  border-radius: 10px;
  margin-bottom: 22px;
}
.pain-service .ps-heading h3 {
  margin: 0;
  font-weight: 300;
  color: #ffffff;
}
.pain-service .ps-item {
  margin-bottom: 1.75rem;
}
@media (max-width: 991px) {
  .pain-service .ps-item {
    margin-bottom: 40px;
  }
}
.pain-service .ps-item .item-heading-wrap {
  background: #65D193;
  padding: 20px 26px 20px 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 10px;
}
@media (max-width: 1199px) {
  .pain-service .ps-item .item-heading-wrap {
    padding: 20px 15px;
  }
}
.pain-service .ps-item .block-number {
  width: 95px;
  text-align: center;
}
.pain-service .ps-item .block-number h4 {
  margin: 0;
  color: #ffffff;
}
.pain-service .ps-item .block-number p {
  color: #ffffff;
}
.pain-service .ps-item .block-desc {
  width: calc(100% - 95px);
  padding-left: 15px;
}
.pain-service .ps-item .block-desc p {
  color: #ffffff;
}
.pain-service .ps-item .item-list {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .pain-service .ps-item .item-list {
    margin-top: 1.25rem;
  }
}
@media (max-width: 767px) {
  .pain-service .ps-item .item-list {
    margin-top: 0.63rem;
  }
}
.pain-service .ps-item .item-list .single-item {
  width: 33.33%;
  text-align: center;
  padding: 0 40px;
  font-weight: 300;
  border-right: 1px solid #BCBCBC;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .pain-service .ps-item .item-list .single-item:first-child {
    border-left: 1px solid #BCBCBC;
  }
}
@media (max-width: 767px) {
  .pain-service .ps-item .item-list .single-item {
    width: 100%;
    border: none;
    border-bottom: 1px solid #BCBCBC;
    padding: 10px;
  }
}

.full-width-cta-section {
  padding: 2.82rem 0;
  background: #0A1940;
}
.full-width-cta-section .fwc-desc {
  font-size: 1.13rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .full-width-cta-section .fwc-desc {
    font-size: 1rem;
  }
}
.full-width-cta-section .fwc-desc a {
  color: #09BDC9;
}
.full-width-cta-section .fwc-desc a:hover {
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 767px) {
  .full-width-cta-section .fwc-right {
    margin-top: 1.25rem;
  }
}

.defenses-step-section {
  position: relative;
  padding: 3.13rem 0;
  overflow: hidden;
}
.defenses-step-section .section-heading {
  border-color: #BCBCBC;
}
@media (max-width: 767px) {
  .defenses-step-section .section-heading {
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.defenses-step-section .section-heading-wrap {
  margin-bottom: 1.88rem;
}
.defenses-step-section .section-heading h2 {
  max-width: 39.38rem;
}
.defenses-step-section .sec-content p {
  font-size: 1.5rem;
}
@media (max-width: 991px) {
  .defenses-step-section .sec-content p {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .defenses-step-section .sec-content a {
    margin-top: 0.94rem;
  }
}
@media (min-width: 768px) {
  .defenses-step-section .ds-wrap {
    margin: 0 -1.56rem;
  }
}
@media (min-width: 992px) {
  .defenses-step-section .ds-wrap {
    margin: 0 -2.87rem;
  }
}
@media (min-width: 768px) {
  .defenses-step-section .ds-block {
    padding: 0 1.57rem;
  }
}
@media (min-width: 992px) {
  .defenses-step-section .ds-block {
    padding: 0 2.88rem;
  }
}
.defenses-step-section .ds-block:not(:last-child) {
  margin-bottom: 2.19rem;
}
@media (max-width: 767px) {
  .defenses-step-section .ds-block:not(:last-child) {
    margin-bottom: 3.75rem;
  }
}
.defenses-step-section .ds-block:not(:last-child)::before {
  content: "";
  position: absolute;
  top: calc(50% - 5.32rem);
  right: -1.25rem;
  width: 2.82rem;
  height: 2.82rem;
  background-image: url("../images/right-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .defenses-step-section .ds-block:not(:last-child)::before {
    right: -0.93rem;
    width: 2.19rem;
    height: 2.19rem;
  }
}
@media (max-width: 767px) {
  .defenses-step-section .ds-block:not(:last-child)::before {
    top: inherit;
    right: inherit;
    bottom: -2.81rem;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}
@media (max-width: 767px) {
  .defenses-step-section .ds-block-wrap {
    max-width: 21.88rem;
    margin: 0 auto;
  }
}
.defenses-step-section .ds-img {
  position: relative;
  border-radius: 0.63rem;
  padding-top: 70.3333333333%;
  overflow: hidden;
}
.defenses-step-section .ds-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.defenses-step-section .ds-content {
  margin-top: 1.57rem;
}
.defenses-step-section .ds-content h4 {
  margin-bottom: 0.63rem;
  font-weight: 500;
}
.defenses-step-section .ds-content p {
  line-height: 1.8;
}
.defenses-step-section .ds-alert-text {
  padding: 0.94rem 0.88rem;
  display: flex;
  align-items: center;
  border-radius: 0.63rem;
  background-color: #EB6272;
  overflow: hidden;
  text-align: center;
}
@media (max-width: 767px) {
  .defenses-step-section .ds-alert-text {
    margin-top: 1.88rem;
  }
}
@media (max-width: 575px) {
  .defenses-step-section .ds-alert-text {
    flex-direction: column;
  }
}
.defenses-step-section .ds-alert-text .icon {
  display: flex;
  margin-right: 0.94rem;
  width: 2.82rem;
}
@media (max-width: 575px) {
  .defenses-step-section .ds-alert-text .icon {
    margin-right: 0;
    margin-bottom: 0.94rem;
  }
}
.defenses-step-section .ds-alert-text h4 {
  margin: 0;
  color: #ffffff;
  font-size: 1.44rem;
  flex: 1;
  line-height: 1.3;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .defenses-step-section .ds-alert-text h4 {
    font-size: 1.25rem;
  }
}

.wysiwyg-section {
  padding: 2.5rem 0;
  overflow: hidden;
}

.security_investments {
  position: relative;
  overflow: hidden;
}
.security_investments .bg-image {
  z-index: 1;
}
.security_investments .si-wrap {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0;
}
.security_investments .si-wrap h3 {
  margin: 0;
}

.defenses-step-v2 {
  margin: 3.13rem 0;
  overflow: hidden;
  position: relative;
}
.defenses-step-v2 .section-heading {
  border-color: #BCBCBC;
  padding-bottom: 1.5rem;
}
.defenses-step-v2 .section-desc {
  font-size: 1.5rem;
  line-height: 1.5;
  margin: 1.88rem 0;
}
@media (max-width: 1199px) {
  .defenses-step-v2 .section-desc {
    font-size: 1.13rem;
  }
}
.defenses-step-v2 .bg-image {
  top: 3.75rem;
}
.defenses-step-v2 .dsv2-block-wrap {
  margin-bottom: 1.88rem;
}
.defenses-step-v2 .dsv2-block-wrap .h4 {
  padding: 0.94rem;
  background: #09BDC9;
  border-radius: 0.63rem;
  color: #ffffff;
  text-align: center;
  font-weight: 500;
}
.defenses-step-v2 .dsv2-card-sub-desc {
  text-align: center;
  font-size: 0.88rem;
  margin: 1.25rem 0;
}
.defenses-step-v2 .dsv2-card-img {
  position: relative;
  padding-top: 50%;
}
.defenses-step-v2 .dsv2-card-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.defenses-step-v2 .dsv2-card-desc {
  margin-top: 1.25rem;
  padding: 0.94rem 1.25rem;
  border-radius: 0.63rem;
  color: #ffffff;
  background: url("../images/gradient.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.defenses-step-v2 .dsv2-card-desc * {
  color: #ffffff;
}
.defenses-step-v2 .dsv2-card-desc h6 {
  font-weight: 400;
  line-height: 1.33;
}
.defenses-step-v2 .dsv2-card-desc .dsv2-subdesc {
  font-size: 0.75rem;
  line-height: 1.5;
  font-style: italic;
}
.defenses-step-v2 .dsv2-cta-wrap {
  background: #09BDC9;
  padding: 0.94rem 1.88rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 0.63rem;
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 500;
  cursor: pointer;
}
@media (max-width: 1199px) {
  .defenses-step-v2 .dsv2-cta-wrap {
    font-size: 1.13rem;
  }
}
@media (min-width: 1200px) {
  .defenses-step-v2 .dsv2-cta-wrap {
    margin-top: 1.88rem;
  }
}
.defenses-step-v2 .dsv2-cta-wrap svg {
  width: 1.75rem;
  height: 1.75rem;
}
.defenses-step-v2 .dsv2-cta-wrap:hover {
  background: #0A1940;
}
.defenses-step-v2 .dsv2-pop-up-box {
  padding: 1.88rem 2.5rem;
  background: #ffffff;
  border-radius: 0.63rem;
  display: none;
}

.dsv2-pop-up-box {
  border-radius: 0.63rem;
  max-width: 73.13rem;
}
.dsv2-pop-up-box .popup-topbar h2 {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 5px solid #BCBCBC;
}
.dsv2-pop-up-box .carousel__button.is-close {
  background: #EB6272;
  font-size: 0.63rem;
  top: -1.25rem !important;
  right: 1.25rem !important;
}

.promo-icon {
  margin: 2.82rem 0;
  overflow: hidden;
  position: relative;
}
.promo-icon .section-heading {
  border-color: #BCBCBC;
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
}
.promo-icon .ip-row {
  row-gap: 1.88rem;
}
.promo-icon .ip-block-wrap {
  padding: 1.63rem;
  border: 5px solid #AD53F0;
  border-radius: 0.63rem;
  height: 100%;
}
@media (max-width: 767px) {
  .promo-icon .ip-block-wrap {
    padding: 0.94rem;
  }
}
.promo-icon .ip-card-img {
  width: 100%;
  height: 100%;
  max-width: 6.57rem;
  max-height: 6.25rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  position: relative;
}
.promo-icon .ip-card-img::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 5px;
  background-color: #BCBCBC;
}
.promo-icon .ip-card-img img {
  object-fit: contain;
}
.promo-icon .ip-card-desc {
  font-size: 0.88rem;
  line-height: 2.14;
}

.find-out {
  padding: 2.19rem 0;
  color: #ffffff;
  background-color: #0A1940;
}
.find-out * {
  color: #ffffff;
}
.find-out.gradient-bg {
  background: url("../images/gradient.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.find-out .section-heading {
  border-bottom: 5px solid #ffffff;
  padding-bottom: 1.5rem;
}
.find-out .section-heading h2 {
  color: #ffffff;
}
.find-out .section-desc {
  font-size: 1.5rem;
  line-height: 1.5;
  margin: 1.25rem 0;
}
@media (max-width: 1199px) {
  .find-out .section-desc {
    font-size: 1.13rem;
  }
}

.security-validation {
  margin: 3.13rem 0;
  overflow: hidden;
  position: relative;
}
.security-validation .section-heading {
  border-color: #BCBCBC;
  padding-bottom: 1.5rem;
}
.security-validation .section-desc {
  font-size: 1.5rem;
  line-height: 1.5;
  margin: 1.25rem 0;
}
@media (max-width: 1199px) {
  .security-validation .section-desc {
    font-size: 1.13rem;
  }
}
.security-validation .sv-cardwrap {
  margin-bottom: 1.5rem;
}
.security-validation .sv-cardwrap .h4 {
  background: #09BDC9;
  font-size: 1.5rem;
  line-height: 2;
  color: #ffffff;
  font-weight: 500;
  padding: 0.44rem 1.25rem;
  display: inline-block;
  border-radius: 0.63rem;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  .security-validation .sv-cardwrap .h4 {
    font-size: 1.13rem;
  }
}
.security-validation .sv-cardwrap:last-child {
  margin-bottom: 0;
}

.arrow-list li {
  position: relative;
  padding-left: 0.63rem;
  list-style: none;
  font-size: 1.13rem;
  line-height: 1.66;
}
@media (max-width: 1199px) {
  .arrow-list li {
    font-size: 1rem;
    padding-left: 0.32rem;
  }
}
.arrow-list li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 10px;
  width: 22px;
  height: 22px;
  background: url("../images/arrow-shape.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 1199px) {
  .arrow-list li::before {
    width: 16px;
    height: 16px;
  }
}

.security-fifty-fifty {
  margin: 3.13rem 0;
  overflow: hidden;
  position: relative;
}
.security-fifty-fifty .section-heading {
  border-color: #BCBCBC;
  padding-bottom: 1.5rem;
}
.security-fifty-fifty .section-desc {
  font-size: 1.5rem;
  line-height: 1.5;
  margin: 1.25rem 0;
}
@media (max-width: 1199px) {
  .security-fifty-fifty .section-desc {
    font-size: 1.13rem;
  }
}
.security-fifty-fifty .sff-cardwrap {
  margin-top: 1.88rem;
}
.security-fifty-fifty .sff-cardwrap .top-title {
  background: #09BDC9;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #ffffff;
  font-weight: 500;
  padding: 0.82rem 1.25rem;
  display: inline-block;
  border-radius: 0.63rem;
  text-transform: uppercase;
  margin-left: 1rem;
  margin-right: 1rem;
}
@media (max-width: 1199px) {
  .security-fifty-fifty .sff-cardwrap .top-title {
    font-size: 1.13rem;
  }
}
.security-fifty-fifty .sff-innercard {
  padding: 4.38rem 2.13rem 3.75rem 2.5rem;
  border-radius: 0.63rem;
  background: #ffffff;
  border: 1px solid #BCBCBC;
  box-shadow: inset 0 0px 20px rgba(0, 0, 0, 0.29);
  margin-top: -1.87rem;
}
@media (max-width: 767px) {
  .security-fifty-fifty .sff-innercard {
    padding: 3.13rem 1.25rem 1.25rem;
  }
}
@media (max-width: 767px) {
  .security-fifty-fifty .sff-cardrow {
    flex-direction: column-reverse;
  }
  .security-fifty-fifty .sff-cardrow .sff-detailwrap {
    margin-top: 1.88rem;
  }
}
.security-fifty-fifty .sff-goalwrap {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .security-fifty-fifty .sff-goalwrap {
    align-items: flex-start;
    flex-direction: column;
  }
}
.security-fifty-fifty .sff-goalwrap .h4 {
  font-weight: 500;
  padding-right: 1.25rem;
  margin-right: 1.88rem;
  min-width: fit-content;
  margin-bottom: 0;
  position: relative;
}
@media (max-width: 1199px) {
  .security-fifty-fifty .sff-goalwrap .h4 {
    margin-right: 1.25rem;
  }
}
@media (max-width: 767px) {
  .security-fifty-fifty .sff-goalwrap .h4 {
    padding-right: 0;
    margin-right: 0;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.security-fifty-fifty .sff-goalwrap .h4::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 45px;
  background-color: #09BDC9;
}
@media (max-width: 767px) {
  .security-fifty-fifty .sff-goalwrap .h4::after {
    width: 100%;
    height: 5px;
    right: unset;
    left: 0;
    top: unset;
    bottom: 0;
    transform: unset;
  }
}
.security-fifty-fifty .sff-goalwrap .sff-carddesc {
  font-size: 1.13rem;
  line-height: 2;
  font-weight: 400;
  color: #0A1940;
  max-width: 39.07rem;
}
@media (max-width: 1199px) {
  .security-fifty-fifty .sff-goalwrap .sff-carddesc {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .security-fifty-fifty .sff-goalwrap .sff-carddesc {
    max-width: 100%;
  }
}
.security-fifty-fifty .sff-cardheading {
  margin-top: 1.88rem;
  color: #09BDC9;
  padding-bottom: 0.94rem;
  border-bottom: 5px solid #BCBCBC;
  max-width: 50%;
}
@media (max-width: 767px) {
  .security-fifty-fifty .sff-cardheading {
    max-width: 100%;
  }
}
.security-fifty-fifty .sff-imgwrap {
  position: relative;
  padding-top: 50%;
}
.security-fifty-fifty .sff-imgwrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.security-fifty-fifty .sff-imgwrap img {
  object-fit: contain;
}
@media (max-width: 767px) {
  .security-fifty-fifty .sff-imgwrap img {
    object-position: left;
  }
}
.security-fifty-fifty .sff-detailwrap p {
  font-size: 1.13rem;
}
@media (max-width: 1199px) {
  .security-fifty-fifty .sff-detailwrap p {
    font-size: 1rem;
  }
}

.inline-promo {
  background: #0A1940;
  padding: 2.82rem 0;
}
.inline-promo a.ip-leftwrap:hover {
  opacity: 0.5;
}
.inline-promo .ip-mainwrap {
  background: url("../images/gradient.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1.25rem;
  border-radius: 0.63rem;
}
.inline-promo .ip-row {
  max-width: 54.19rem;
  margin: auto;
}
.inline-promo .ip-row * {
  color: #ffffff;
}
.inline-promo .ip-leftwrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
  min-width: 8.25rem;
  transition: 0.3s;
  text-decoration: none;
}
@media (max-width: 767px) {
  .inline-promo .ip-leftwrap {
    margin-right: auto;
  }
}
.inline-promo .ip-img-wrap {
  width: 7.69rem;
  height: 5.94rem;
}
.inline-promo .ip-img-wrap img {
  object-fit: contain;
}
.inline-promo .ip-row {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
@media (max-width: 767px) {
  .inline-promo .ip-row {
    flex-direction: column;
    gap: 1.25rem;
  }
}
.inline-promo .ip-content-wrap h2 {
  padding-bottom: 1.5rem;
  border-bottom: 5px solid #ffffff;
}
.inline-promo .ip-content-wrap .ip-description {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-top: 1.5rem;
}
@media (max-width: 1199px) {
  .inline-promo .ip-content-wrap .ip-description {
    font-size: 1rem;
  }
}

.two-column-detail {
  background-color: #0A1940;
  padding: 2.82rem 0;
  overflow: hidden;
}
.two-column-detail * {
  color: #ffffff;
}
.two-column-detail .section-heading {
  padding-bottom: 1.5rem;
  border-color: #ffffff;
  margin-bottom: 1.88rem;
}
@media (min-width: 1200px) {
  .two-column-detail .section-heading {
    max-width: 50%;
  }
}
.two-column-detail .section-heading h2 {
  line-height: 1.2;
  margin: 0;
}
.two-column-detail .tcd-leftdetail {
  display: flex;
  row-gap: 2.19rem;
  flex-direction: column;
}
.two-column-detail .tcd-leftdetail .h6 {
  font-weight: 400;
  font-style: italic;
  line-height: 1.333;
  margin: 0;
}
.two-column-detail .tcd-leftdetail .h3 {
  color: #09BDC9;
  font-weight: 400;
  line-height: 1.333;
  margin: 0;
}
.two-column-detail .tcd-rightdetail {
  border-left: 5px solid #09BDC9;
  padding-left: 0.94rem;
}
@media (max-width: 767px) {
  .two-column-detail .tcd-rightdetail {
    margin-top: 2.19rem;
  }
}
.two-column-detail .tcd-rightdetail .blockquote {
  font-size: 1.5rem;
  line-height: 1.5;
  display: inline-block;
  font-style: italic;
}
@media (max-width: 1199px) {
  .two-column-detail .tcd-rightdetail .blockquote {
    font-size: 1.13rem;
  }
}
.two-column-detail .tcd-rightdetail .blockquote-author {
  font-size: 1.5rem;
  line-height: 1.5;
  display: inline-block;
  color: #09BDC9 !important;
  font-weight: 400;
  font-style: unset !important;
  margin-top: 0.63rem;
}
.two-column-detail .tcd-rightdetail .blockquote-author span {
  margin-right: 0.32rem;
}
@media (max-width: 1199px) {
  .two-column-detail .tcd-rightdetail .blockquote-author {
    font-size: 1.13rem;
  }
}

.integration-module .im-bg {
  padding: 3.13rem 0;
}
.integration-module .im-bg .im-content-wrap {
  padding-right: 2.19rem;
}
@media (max-width: 1100px) {
  .integration-module .im-bg .im-content-wrap {
    padding-right: 0;
  }
}
.integration-module .im-bg .im-content-wrap h2 {
  font-size: 3rem;
  color: #ffffff;
  line-height: 1.25;
  position: relative;
  padding-bottom: 1.25rem;
  margin-bottom: 1.88rem;
  font-weight: 300;
}
.integration-module .im-bg .im-content-wrap h2:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 68px;
  height: 5px;
  background: #ffffff;
}
.integration-module .im-bg .im-content-wrap p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.integration-module .im-bg .im-content-wrap li {
  position: relative;
  padding-left: 0.63rem;
  list-style: none;
  font-size: 1.13rem;
  font-weight: 700;
  line-height: 1.66;
}
.integration-module .im-bg .im-content-wrap li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 10px;
  width: 22px;
  height: 22px;
  background: url(../images/tick-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.integration-module .im-bg .image-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 45px;
  align-items: center;
}
@media (max-width: 991px) {
  .integration-module .im-bg .image-wrap {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
}
.integration-module .im-bg .image-wrap .im-brand-logo {
  width: 470px;
  height: 110px;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .integration-module .im-bg .image-wrap .im-brand-logo {
    width: 270px;
    height: 80px;
  }
}
.integration-module .im-bg .image-wrap .im-brand-logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.im-cta {
  padding: 40px 0;
}
.im-cta .cta-title-btn {
  gap: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .im-cta .cta-title-btn {
    flex-wrap: wrap;
  }
}
.im-cta p {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  padding-right: 0.94rem;
  line-height: 1.5;
  font-weight: 400;
  width: 75%;
}
@media (max-width: 991px) {
  .im-cta p {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .im-cta p {
    width: 100%;
  }
}
.im-cta p a {
  text-decoration: underline;
  display: inline-block;
  color: #ffffff !important;
}
.im-cta p a.btn {
  min-width: fit-content;
  max-width: 25%;
}
.im-cta p a:hover {
  text-decoration: none;
}

.faq-module {
  padding: 3.13rem 0;
}
.faq-module .section-heading {
  border-color: #BCBCBC;
}
.faq-module.bg-dark {
  background-color: #0A1940;
}
.faq-module.bg-dark * {
  color: #ffffff;
}
.faq-module.bg-dark * a {
  color: #09BDC9;
}
.faq-module.bg-dark * a:hover {
  color: #000000;
}
.faq-module.bg-dark .fm-colwrap {
  background: rgba(255, 255, 255, 0.1);
}
.faq-module .plus-minus-icon {
  position: absolute;
  top: 1.69rem;
  left: 0.88rem;
  width: 1.44rem;
  height: 1.44rem;
  border-radius: 50%;
  background: #ffffff;
  border: 0.19rem solid #09BDC9;
  transition: 0.4s;
}
@media (max-width: 991px) {
  .faq-module .plus-minus-icon {
    top: 1.63rem;
  }
}
.faq-module .plus-minus-icon:before, .faq-module .plus-minus-icon:after {
  content: "";
  position: absolute;
  top: 0.19rem;
  left: 0.44rem;
  width: 0.19rem;
  height: 0.69rem;
  background: #09BDC9;
  margin: auto;
  transition: 0.4s;
}
.faq-module .plus-minus-icon:after {
  top: 48%;
  width: 0.69rem;
  height: 0.19rem;
  top: 0.44rem;
  left: 0.19rem;
}
.faq-module .fm-description {
  margin: 1.88rem 0;
  font-weight: 400;
}
.faq-module .fm-colwrap {
  background: rgba(10, 25, 64, 0.05);
  border-radius: 0.63rem;
}
.faq-module .fm-colwrap .h4 {
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .faq-module .fm-colwrap .h4 {
    font-size: 1.25rem;
  }
}
.faq-module .fm-colwrap.has-desc {
  cursor: pointer;
}
.faq-module .fm-colwrap.active .fm-title::before {
  opacity: 1;
}
.faq-module .fm-colwrap.active .plus-minus-icon:before {
  opacity: 0;
}
.faq-module .fm-title {
  position: relative;
  padding: 1.38rem 1.44rem 1rem 3.38rem;
}
.faq-module .fm-title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 90%;
  height: 0.07rem;
  background-color: #BCBCBC;
  opacity: 0;
  transition: 0.5s;
}
@media (max-width: 991px) {
  .faq-module .fm-title::before {
    width: 100%;
  }
}
.faq-module .fm-card {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
}
.faq-module .fm-desc {
  display: none;
  padding: 2.13rem 1.44rem 2.13rem 3.38rem;
}
@media (max-width: 991px) {
  .faq-module .fm-desc {
    padding: 1.13rem 1.44rem 1.13rem 1.38rem;
  }
}
.faq-module .fm-innerwrap a {
  color: #09BDC9;
}
.faq-module .fm-innerwrap a:hover {
  color: #000000;
}

.glossary-page {
  margin: 1.25rem 0 3.13rem;
}
.glossary-page .gp-innerwrap {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
}
.glossary-page .gp-alphabet-top {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(9, 189, 201, 0.2);
  color: #ffffff;
  border-radius: 0.63rem;
  min-height: 2.5rem;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-top: 2px;
}
@media (max-width: 1199px) {
  .glossary-page .gp-alphabet-top {
    font-size: 80%;
    height: 2.5rem;
    min-height: unset;
    min-width: unset;
    border-radius: 0.32rem;
  }
}
@media (max-width: 575px) {
  .glossary-page .gp-alphabet-top {
    height: 1.88rem;
  }
}
.glossary-page .gp-alphabet-top.active {
  background: rgba(9, 189, 201, 0.2);
  color: #09BDC9;
  transition: 0.3s;
}
.glossary-page .gp-alphabet-top.active.selected, .glossary-page .gp-alphabet-top.active:hover {
  background: #09BDC9;
  color: #ffffff;
}
.glossary-page .gp-alphabet-top.deactive {
  background: rgba(9, 189, 201, 0.2);
  cursor: none;
  pointer-events: none;
  color: rgba(9, 189, 201, 0.3);
}
.glossary-page .gp-static-alphabet {
  gap: 0.32rem;
  display: grid;
  grid-template-columns: repeat(26, 1fr);
  position: sticky;
  top: var(--headerHeight);
  background: #ffffff;
  z-index: 2;
  padding: 0.63rem 0;
}
@media (max-width: 1199px) {
  .glossary-page .gp-static-alphabet {
    display: grid;
    gap: 0.32rem;
    flex-wrap: wrap;
    justify-content: space-evenly;
    position: sticky;
    top: var(--headerHeight);
    background: #ffffff;
    z-index: 2;
    padding: 0.63rem 0;
    grid-template-columns: repeat(13, 1fr);
  }
}
.glossary-page .gp-item {
  display: flex;
  flex-direction: column;
  row-gap: 1.88rem;
  margin-top: 1.88rem;
}
.glossary-page .gp-alphabet .h2 {
  font-size: 3.75rem;
  line-height: 1.5;
  text-transform: uppercase;
  border-bottom: 0.07rem solid #BCBCBC;
  margin-bottom: 1.75rem;
}
@media (max-width: 991px) {
  .glossary-page .gp-alphabet .h2 {
    font-size: 2.5rem;
    margin-bottom: 0.94rem;
    line-height: 1.2;
  }
}
.glossary-page .gp-cta {
  color: #09BDC9;
  font-size: 1.13rem;
  line-height: 1.33;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  text-transform: capitalize;
}
.glossary-page .gp-btnwrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.5s;
}
.glossary-page .gp-btnwrap svg {
  width: 0.75rem;
  height: 0.75rem;
}
.glossary-page .gp-btnwrap:hover {
  gap: 0.88rem;
}
.glossary-page .gp-colwrap {
  display: flex;
  flex-direction: column;
  row-gap: 0.94rem;
}
/*# sourceMappingURL=style.min.css.map */
