.elementor-9979 .elementor-element.elementor-element-b81f2c8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-9979 .elementor-element.elementor-element-29e24b4{--display:flex;}.elementor-9979 .elementor-element.elementor-element-aceaebe > .jet-listing-grid > .jet-listing-grid__items{--columns:1;}.elementor-9979 .elementor-element.elementor-element-e3b66b6{--display:flex;}.elementor-9979 .elementor-element.elementor-element-c13a5c0 > .jet-listing-grid > .jet-listing-grid__items{--columns:1;}/* Start custom CSS for container, class: .elementor-element-b81f2c8 *//* OUTER WRAPPER */
.testimonial-ticker {
  --gap: 24px;
  --speed: 42s;

  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0;

  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

/* THIS WILL BE THE MOVING RAIL AFTER JS WRAPS/CLONES IT */
.testimonial-ticker__track {
  display: flex;
  width: max-content;
  animation: testimonial-scroll var(--speed) linear infinite;
  will-change: transform;
}

.testimonial-ticker:hover .testimonial-ticker__track {
  animation-play-state: paused;
}

.testimonial-ticker.reverse .testimonial-ticker__track {
  animation-direction: reverse;
}

/* EACH DUPLICATED SET */
.testimonial-ticker__set {
  display: flex;
  align-items: stretch;
  gap: var(--gap);
  flex: 0 0 auto;
  padding-right: var(--gap);
}

/* MAKE JETENGINE'S LISTING OUTPUT SIT HORIZONTALLY */
.testimonial-ticker__set .jet-listing-grid__items,
.testimonial-ticker__set .jet-listing-grid__items .jet-listing-grid__item,
.testimonial-ticker__track-source .jet-listing-grid__items {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch;
  gap: var(--gap);
}

/* CARD */
.testimonial-card {
  width: 360px;
  min-height: 220px;
  box-sizing: border-box;
  padding: 24px;
  border-radius: 20px;
  background: #ffffff;
  color: #000;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.testimonial-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.testimonial-card__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.testimonial-card__location {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: #8cc8ff;
}

.testimonial-card__recovery {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
  color: #000;
}

.testimonial-card__quote {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #000;
}

@keyframes testimonial-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - (var(--gap) / 2)));
  }
}

@media (max-width: 767px) {
  .testimonial-ticker {
    --gap: 16px;
    --speed: 30s;
  }

  .testimonial-card {
    width: 280px;
    min-height: 200px;
    padding: 18px;
    border-radius: 16px;
  }

  .testimonial-card__name {
    font-size: 15px;
  }

  .testimonial-card__location {
    font-size: 13px;
  }

  .testimonial-card__recovery {
    font-size: 16px;
  }

  .testimonial-card__quote {
    font-size: 14px;
    line-height: 1.55;
  }
}/* End custom CSS */