/* ==========================================================================
   Site utilities
   ========================================================================== */

:root {
}

body {
  overflow-x: hidden !important;
  width: 100%;
}


html {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-x: hidden !important;
  width: 100%;
}

p,
li {
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
  transition: none !important;
}

body.elementor-editor-active .reveal-on-scroll {
  opacity: 1 !important;
  transform: none !important;
}

/* ==========================================================================
   Reviews
   ========================================================================== */

.reviews-stage {
  position: relative;
  overflow: visible;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.reviews-viewport {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-left: max(48px, calc((100vw - 1400px) / 2));
  padding-right: max(48px, calc((100vw - 1400px) / 2));
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-viewport::-webkit-scrollbar {
  display: none;
}

.reviews-stage::before,
.reviews-stage::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 5;
}

.reviews-stage::before {
  left: 0;
  width: clamp(48px, 48px, 120px);
  background: linear-gradient(
    to right,
    #FFFBED 0%,
    rgba(255, 251, 237, 0.9) 20%,
    rgba(255, 251, 237, 0) 100%
  );
}

.reviews-stage::after {
  right: 0;
  width: clamp(48px, 48px, 120px);
  background: linear-gradient(
    to left,
    #FFFBED 0%,
    rgba(255, 251, 237, 0.9) 20%,
    rgba(255, 251, 237, 0) 100%
  );
}

.reviews-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 24px;
  width: max-content !important;
  padding-right: max(48px, calc((100vw - 1400px) / 2));
}

.reviews-track::after {
  content: "";
  flex: 0 0 max(48px, calc((100vw - 1400px) / 2));
}

.reviews-track > .review-card {
  flex: 0 0 25vw !important;
  width: 25vw !important;
  min-width: 240px;
}

@media (max-width: 1023px) {
  .reviews-viewport {
    padding-left: 32px;
    padding-right: 32px;
  }
  .reviews-track > .review-card {
  flex: 0 0 40vw !important;
  width: 40vw !important;
  min-width: 420px;
  }
}

@media (max-width: 767px) {
  .reviews-viewport {
    padding-left: 16px;
    padding-right: 16px;
  }
  .reviews-track > .review-card {
  flex: 0 0 60vw !important;
  width: 60vw !important;
  min-width: 280px;
  }
  .reviews-track {
  gap: 16px;
  }
  .reviews-stage::before {
  left: 0;
  width: 16px;
  background: linear-gradient(
    to right,
    #FFFBED 0%,
    rgba(255, 251, 237, 0.9) 20%,
    rgba(255, 251, 237, 0) 100%
  );
  }
.reviews-stage::after {
  right: 0;
  width: 32px;
  background: linear-gradient(
    to left,
    #FFFBED 0%,
    rgba(255, 251, 237, 0.9) 20%,
    rgba(255, 251, 237, 0) 100%
  );
  }
}


/* ==========================================================================
   Form Styling
   ========================================================================== */

.elementor-form .e-form__buttons {
    margin-top: 32px !important;
}

/* ==========================================================================
   USP styling
   ========================================================================== */

.elementor-icon-list-items.elementor-inline-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0px;
}

/* ==========================================================================
   Card hover
   ========================================================================== */

.hover-blue,
.hover-blue .elementor-heading-title,
.hover-blue .elementor-widget-text-editor,
.hover-blue .elementor-button,
.hover-blue .elementor-button-text {
  transition: color 0.05s ease, background-color 0.25s ease, border-color 0.05s ease;
}

.hover-blue:hover {
  background-color: #121E33 !important;
}

.hover-blue:hover .elementor-heading-title,
.hover-blue:hover .elementor-widget-text-editor,
.hover-blue:hover p {
  color: #ffffff !important;
}

.hover-blue:hover .elementor-button,
.hover-blue:hover .elementor-button:link,
.hover-blue:hover .elementor-button:visited,
.hover-blue:hover .elementor-button:hover,
.hover-blue:hover .elementor-button:focus {
  background-color: #ffffff !important;
  color: #121E33 !important;
  border-color: #ffffff !important;
}

.hover-blue:hover .elementor-button-text {
  color: #121E33 !important;
}

.hover-blue:hover .elementor-button:hover {
  background-color: #9EB6DD !important;
  border-color: #9EB6DD !important;
  color: #ffffff !important;
}

.hover-blue .elementor-icon svg path {
  transition: fill 0.25s ease;
}

.hover-blue:hover .elementor-icon svg path {
  fill: #9EB6DD;
}

.hover-blue:hover > .e-con > .elementor-widget-heading .elementor-heading-title {
  color: #9EB6DD !important;
}