/*!**********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/figen-testimonials/style.scss ***!
  \**********************************************************************************************************************************************************************************************************************************************************/
.figen-testimonials-wrapper {
  --ft-accent: #2563EB;
  --ft-bg-card: #f3f3f3;
  --ft-text-main: #111827;
  --ft-text-desc: #4B5563;
  --ft-card-width: 400px;
  --ft-container-width: 100%;
  --ft-speed: 40s;
  padding: 100px 0;
  background-color: #fff;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  overflow: hidden;
}
.figen-testimonials-wrapper .ft-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.figen-testimonials-wrapper .ft-header .ft-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.figen-testimonials-wrapper .ft-header .ft-rating-badge .ft-star-circle {
  width: 24px;
  height: 24px;
  background: var(--ft-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.figen-testimonials-wrapper .ft-header .ft-rating-badge .ft-rating-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.2px;
}
.figen-testimonials-wrapper .ft-header .ft-main-title {
  font-family: "Raleway", sans-serif;
  font-size: 1.8em;
  font-weight: 800;
  line-height: 1.1;
  color: var(--ft-text-main);
  letter-spacing: -1px;
}
.figen-testimonials-wrapper .ft-marquee-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--ft-card-gap, 24px);
  padding: 20px 0;
  width: var(--ft-container-width);
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.figen-testimonials-wrapper.has-fade-effect .ft-marquee-container::before, .figen-testimonials-wrapper.has-fade-effect .ft-marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  pointer-events: none;
  z-index: 2;
}
.figen-testimonials-wrapper.has-fade-effect .ft-marquee-container::before {
  left: 0;
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
.figen-testimonials-wrapper.has-fade-effect .ft-marquee-container::after {
  right: 0;
  background: linear-gradient(to left, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
.figen-testimonials-wrapper .ft-marquee-row {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
.figen-testimonials-wrapper .ft-marquee-row.is-direction-left .ft-marquee-content {
  animation: marquee-left var(--ft-speed) linear infinite;
}
.figen-testimonials-wrapper .ft-marquee-row.is-direction-right .ft-marquee-content {
  animation: marquee-right var(--ft-speed) linear infinite;
}
.figen-testimonials-wrapper .ft-marquee-row.ft-row-bottom .ft-marquee-content {
  animation-duration: calc(var(--ft-speed) * 1.1);
}
.figen-testimonials-wrapper .ft-marquee-row .ft-marquee-content:hover {
  animation-play-state: paused;
}
.figen-testimonials-wrapper .ft-marquee-content {
  display: flex;
  gap: var(--ft-card-gap, 24px);
  padding-right: var(--ft-card-gap, 24px);
}
.figen-testimonials-wrapper .ft-testimonial-card {
  background-color: var(--ft-bg-card);
  border-radius: 20px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
  width: var(--ft-card-width);
  flex-shrink: 0;
}
.figen-testimonials-wrapper .ft-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  border: 1px solid #eee;
}
.figen-testimonials-wrapper .ft-testimonial-card .ft-quote-icon {
  color: var(--ft-accent);
  margin-bottom: 20px;
  opacity: 0.8;
}
.figen-testimonials-wrapper .ft-testimonial-card .ft-testimonial-quote {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ft-text-main);
  font-weight: 500;
  margin-bottom: 30px;
  flex-grow: 1;
}
.figen-testimonials-wrapper .ft-testimonial-card .ft-author-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.figen-testimonials-wrapper .ft-testimonial-card .ft-author-box .ft-avatar-wrap {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #e5e7eb;
}
.figen-testimonials-wrapper .ft-testimonial-card .ft-author-box .ft-avatar-wrap .ft-avatar-img {
  width: 48px !important;
  height: 48px !important;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.figen-testimonials-wrapper .ft-testimonial-card .ft-author-box .ft-avatar-wrap .ft-avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ddd 0%, #eee 100%);
}
.figen-testimonials-wrapper .ft-testimonial-card .ft-author-box .ft-author-info .ft-author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ft-text-main);
  margin: 0;
  line-height: 1.2;
}
.figen-testimonials-wrapper .ft-testimonial-card .ft-author-box .ft-author-info .ft-author-desc {
  font-size: 12px;
  color: var(--ft-text-desc);
  margin: 4px 0 0 0;
  font-weight: 500;
}
.figen-testimonials-wrapper {
  /* Responsive Sizing for Testimonial Cards */
}
@media (max-width: 1024px) {
  .figen-testimonials-wrapper {
    --ft-card-width: var(--ft-card-width-tablet, 320px);
    --ft-container-width: var(--ft-container-width-tablet, 100%);
  }
  .figen-testimonials-wrapper .ft-testimonial-card {
    padding: 30px 20px;
  }
  .figen-testimonials-wrapper .ft-testimonial-card .ft-testimonial-quote {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .figen-testimonials-wrapper .ft-testimonial-card .ft-author-box .ft-avatar-wrap {
    width: 40px;
    height: 40px;
  }
  .figen-testimonials-wrapper .ft-testimonial-card .ft-author-box .ft-author-info .ft-author-name {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .figen-testimonials-wrapper {
    --ft-card-width: var(--ft-card-width-mobile, 280px);
    --ft-container-width: var(--ft-container-width-mobile, 100%);
  }
  .figen-testimonials-wrapper .ft-avatar-img {
    width: 24px !important;
    height: 24px !important;
  }
  .figen-testimonials-wrapper .ft-header .ft-main-title {
    font-size: 32px;
  }
  .figen-testimonials-wrapper .ft-testimonial-card {
    padding: 24px 16px;
  }
  .figen-testimonials-wrapper .ft-testimonial-card .ft-testimonial-quote {
    font-size: 11px;
    margin-bottom: 16px;
  }
  .figen-testimonials-wrapper .ft-testimonial-card .ft-quote-icon {
    margin-bottom: 15px;
  }
  .figen-testimonials-wrapper .ft-testimonial-card .ft-quote-icon svg {
    width: 20px;
    height: 20px;
  }
  .figen-testimonials-wrapper .ft-testimonial-card .ft-author-box .ft-avatar-wrap {
    width: 36px;
    height: 36px;
  }
  .figen-testimonials-wrapper .ft-testimonial-card .ft-author-box .ft-author-info .ft-author-name {
    font-size: 11px;
  }
  .figen-testimonials-wrapper .ft-testimonial-card .ft-author-box .ft-author-info .ft-author-desc {
    font-size: 9px;
  }
  .figen-testimonials-wrapper .ft-marquee-container {
    width: var(--ft-container-width);
  }
  .figen-testimonials-wrapper.has-fade-effect .ft-marquee-container::before, .figen-testimonials-wrapper.has-fade-effect .ft-marquee-container::after {
    width: 80px;
  }
}
@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/*# sourceMappingURL=style-index.css.map*/