/* [project]/@core/styles/components.css [app-client] (css) */
.font-outfit {
  font-family: var(--font-outfit), sans-serif;
}

.font-dafoe {
  font-family: var(--font-dafoe), cursive;
}

.fill-opacity-10 {
  fill-opacity: .1;
}

.card-shadow {
  box-shadow: 0 1px #00000005, 0 2px 6px #0000000d;
}

.animated-border {
  z-index: 1;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}

.animated-border:before {
  content: "";
  border-radius: inherit;
  background: linear-gradient(90deg, var(--secondary), #fff, var(--secondary));
  -webkit-mask-composite: xor;
  background-size: 300% 300%;
  padding: 2px;
  animation: 6s linear infinite borderFlow;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-mask-source-type: auto, auto;
  mask-mode: match-source, match-source;
}

.animated-border:hover:before {
  animation-duration: 4s;
}

.animated-bg {
  background: linear-gradient(135deg, var(--secondary), #ffb347, var(--secondary));
}

.demo-btn {
  background: radial-gradient(circle, #fb910014 0%, #fb910008 40%, #fff 80%);
  border-radius: 999px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.demo-btn:hover {
  background: radial-gradient(circle, #fb91001f 0%, #fb91000d 40%, #fff 80%);
  transform: translateY(-1px);
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-header {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  display: flex;
}

.faq-left {
  align-items: flex-start;
  gap: 10px;
  display: flex;
}

.faq-number {
  color: #000;
  padding-top: 2px;
  font-size: 16px;
  font-weight: 700;
}

.faq-question {
  color: #111827;
  font-size: 20px;
  font-weight: 600;
}

.faq-toggle {
  color: #000;
  background: #f9f9f9;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 18px;
  font-weight: 600;
  transition: all .3s;
  display: flex;
}

.faq-toggle:before {
  content: "+";
}

.faq-item.active .faq-toggle {
  color: #fb9100;
  background: #fff4e5;
}

.faq-item.active .faq-toggle:before {
  content: "−";
}

.faq-answer {
  max-height: 0;
  transition: max-height .35s;
  overflow: hidden;
}

.faq-answer-inner {
  color: #4b5563;
  padding-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
}

/* [project]/@core/styles/components.height.css [app-client] (css) */
@layer utilities {
  @media (min-width: 1710px) {
    .blog-card-on-1710-img {
      height: 18rem;
    }

    .blog-details-on-1710-img {
      height: 35rem;
    }
  }

  @media (min-width: 1440px) {
    .h-1440-img-serviceResult, .h-1440-img {
      height: 28rem;
    }

    .blog-card-on-1440-img {
      height: 15rem;
    }

    .blog-details-on-1440-img {
      height: 32rem;
    }
  }

  @media (min-width: 1600px) {
    .h-1600-img {
      height: 10rem;
    }

    .h-1720-img {
      height: 35rem;
    }
  }

  @media (min-width: 1710px) {
    .blog-card-on-1710-img {
      height: 18rem;
    }

    .blog-details-on-1710-img {
      height: 35rem;
    }
  }
}

/*# sourceMappingURL=%40core_styles_72503bd0._.css.map*/