@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter.ttf")  format('truetype');
  font-style: normal;
  font-display: swap;
}


:root {
  --bg: #F8F8F8;
  --bg-2: #0d1319;
  --text: #666666;
  --muted: #57606a;
  --white: #ffffff;
  --black: #000000;
  --border: #EEEEEE;
  --primary: #00C7D2;
  --primary-2: #040405;
  /* --border: #e6e8eb; */
  --container: min(1120px, calc(100vw - 48px));
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Microsoft YaHei", sans-serif;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--font-primary);
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.container {
  width: var(--container);
  margin: 0 auto;
}
a {
  color: inherit;
  text-decoration: none;
}

.btn.w-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 15px 20px;
  border-radius: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  border: none;
}
.btn.w-btn.btn-sm {
  padding: 13px 20px;
}
.btn.w-btn.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn.w-btn.btn-primary:hover {
  background: #00B1BB;
}

.btn.w-btn.btn-primary:active {
  background: #00B1BB;
}
.btn.btn-secondary {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--border);
}
.btn-outline {
  border: 1px solid var(--border);
  color: #111;
  padding: 10px 14px;
  border-radius: 10px;
}


.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: saturate(150%) blur(8px);
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.site-header .nav {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 12px;
  height: 64px;
}
.brand {
  font-weight: 800;
  letter-spacing: 0.2px;
}


.menu {
  display: flex;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu a {
  padding: 8px 10px;
  border-radius: 8px;
  color: #111;
}
.menu a:hover {
  background: rgba(0, 0, 0, 0.05);
}
.hamburger {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  display: none;
}

.mb-20 {
  margin-bottom: 20px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-60 {
  margin-bottom: 60px;
}

.wf-main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 72px;
}

.wf-main > section {
  /* padding: 120px 20px; */
  max-width: 1280px;
  width: 100%;
}

.wf-main > section.has-bg {
  background-color: var(--bg);
}

.wf-main .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.wf-main h1 {
  font-weight: 700;
  font-size: 42px;
  line-height: 100%;
  letter-spacing: 0px;
  color: var(--black);
}


.wf-main h2 {
  font-weight: 700;
  font-style: Bold;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0;
  color: var(--black);
}

.wf-main p.desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--text);
}

.wf-main .main-hero {
  position: relative;
  max-width: 1280px;
  padding: 80px 40px 0;
  width: 100%;
  height: 560px;
  border: 1px solid var(--border);
  border-top: none;
  display: flex;
  background-color: var(--white);
  align-items: center;
  justify-content: space-between;
}

.main-hero h1 {
  line-height: 51px;
  text-align: left;
  margin-bottom: 20px;
}

.main-hero p {
  max-width: 960px;
  color: var(--text);
  margin-bottom: 40px;
  text-align: left;
}

.main-hero .hero-left {
  max-width: 680px;
}

.main-hero .hero-content {
  max-width: 600px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  position: relative;
  text-align: center;
}

.main-hero .actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.main-hero .banner-img {
  width: 580px;
  height: auto;
}


@keyframes ping {
  75%, 100% {
    opacity: 0;
  }
}

/* Potential Section Images */
.potential-img {
  position: relative;
  width: 100%;
  height: 100%;
}

.faq-content {
  padding: 120px 40px 60px;
  border: 1px solid var(--border);
  border-top: none;
  border-bottom: none;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.faq-content h2 {
  margin-bottom: 10px;
}

.faq-content p.desc {
  margin-bottom: 40px;
}

.faq-content .faq-list {
  width: 1040px;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 40px;
}

.faq-content .faqAccordion .accordion-button {
  background-color: transparent;
  box-shadow: none;
  /* border-top: 1px solid var(--border); */
  padding: 20px 20px 10px;
  font-weight: 800;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0px;
  color: var(--black);
}

.faq-content .faqAccordion .accordion-button.first {
  border-top: none;
}

.faq-content .accordion-button.collapsed {
  padding: 20px;
}

.faq-content .accordion-flush>.accordion-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-content .accordion-body {
  padding: 0 20px 20px;
}

.faq-content .accordion-body p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  color: var(--text);
}

.faqAccordion .accordion-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faqAccordion .accordion-button::after {
  display: none !important;
  content: none;
}

.faqAccordion .accordion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  margin-left: 12px;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faqAccordion .accordion-button:not(.collapsed) .accordion-icon {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-banner {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 1440px;
  height: 240px;
  background-color: #00DFFF;
  border-radius: 16px;
  padding: 54px 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 200px;
  background-image: url('../images/agent/action-bg.png');
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.faq-banner .banner-left {
  max-width: 560px;
  font-weight: 800;
  font-size: 42px;
  line-height: 62px;
  letter-spacing: 0px;
  color: var(--black);
}

.faq-banner .banner-right .actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.faq-banner .banner-right .actions .btn {
  width: 180px;
}

.faq-banner .banner-right .actions .btn-secondary {
  border: none;
}


/* start post */
.post-content .post-item {
  border-radius: 8px;
  border: 1px solid #D8D8D8;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.post-content .post-item-top {
  width: 100%;
  height: 210px;
  overflow: hidden;
}
.post-content .post-item-top img { 
  width: 100%;
  height: 100%;
  max-height: 210px;
  object-fit: cover;
}
.post-content .post-item-bottom { 
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.post-content .post-item-bottom .post-title {
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: var(--black);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.post-content .post-item-bottom .post-item-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.post-content .post-item-info .info-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-content .post-item-info .info-content img {
  width: 32px;
  height: 32px;
  border-radius: 100%;
}
.post-content .post-item-info .info-content .info-detail {
  display: flex;
  flex-direction: column;
}
.post-content .post-item-info .info-content .info-detail .info-name { 
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0%;
  color: var(--black);
}
.post-content .post-item-info .info-content .info-detail .info-time {
  font-weight: 500;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0%;
  color: var(--text);
}

.post-content .post-item-info .info-tag {
  border-radius: 4px;
  background-color: #00DFFF1A;
  font-weight: 500;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  color: #00DFFF;
  padding: 0 4px;
}

/* end post */



.featureCarousel .carousel-indicators {
  bottom: -24px;
  width: 100%;
  margin: 0;
  padding: 0;
  gap: 24px;
}
.featureCarousel .carousel-indicators [data-bs-target] {
  width: 100%;
  background-color: #0000001a;
  border-radius: 4px;
}

.featureCarousel .carousel-indicators [data-bs-target].active {
  background-color: #00DFFF;
}

.wf-main .features {
  display: flex;
  flex-direction: column;
}

.wf-main .features .features-container {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px 40px;
  border: 1px solid var(--border);
  border-top: none;
}


.wf-main .features .features-container .feature-item {
  flex: 1;
}

.wf-main .features .features-container .feature-item h2 {
  margin-bottom: 10px;
}

.wf-main .features .features-container .feature-item p.desc {
  margin-bottom: 40px;
}

.wf-main .features .features-container .feature-item .detail {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item .detail-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.feature-item .detail-item .detail-title {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 10px;
}

.feature-item .detail-item .detail-title img {
  width: 16px;
  height: 16px;
}

.feature-item .detail-item .detail-title h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--black);
  margin: 0;
}

.feature-item .detail-item p {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0;
  color: var(--text);
  margin: 0;
}

.wf-main .features .features-container .feature-img {
  max-width: 580px;
  width: 100%;
}

.wf-main .features .features-container .feature-img img {
  width: 100%;
  height: auto;
}

.wf-main .bottom-banner {
  padding: 60px 0 120px;
  border: 1px solid var(--border);
  border-top: none;
}

.wf-main .bottom-banner .bottom-banner-content {
  padding: 80px 50px;
  background-color: var(--black);
  background-image: url("../images/home/faq-banner-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wf-main .bottom-banner .bottom-banner-content h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  letter-spacing: 0;
  max-width: 680px;
  color: var(--white);
}

.wf-main .policy-content {
  justify-content: start;
  text-align: left;
  gap: 20px;
  align-items: flex-start;
  padding: 60px 0;
}

.wf-main .policy-content {
  color: var(--black);
}

.wf-main .policy-content a {
  color: var(--primary);
}


@media screen and (max-width: 1440px) {
  .faq-banner {
    max-width: calc(100% - 48px);
    gap: 80px;
    padding: 54px 80px;
  }
  .faq-banner .banner-right {
    flex-shrink: 0;
  }
}

@media screen and (max-width: 1280px) {
  .wf-main .main-hero {
    padding: 80px 24px;
    gap: 24px;
  }
  .wf-main .main-hero .banner-img {
    max-width: 500px;
    width: 80%;
  }
}

@media screen and (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1200px !important;
  }
}

@media screen and (max-width: 1140px) {
  .wf-main .main-hero.product-hero {
    margin-top: 65px;
  }
}

@media screen and (max-width: 1024px) {
  .wf-main .main-hero {
    height: auto;
    flex-direction: column;
    gap: 60px;
  }
  .wf-main .main-hero h1,
  .wf-main .main-hero p {
    text-align: center;
  }
  .wf-main .main-hero .hero-content,
  .wf-main .main-hero .actions {
    justify-content: center;
    align-items: center;
  }
  .wf-main .main-hero .banner-img {
    max-width: 580px;
    width: 100%;
  }
  .wf-main .features .features-container {
    flex-direction: column;
    gap: 40px;
    border-left: none;
    border-right: none;
  }
  .wf-main .features .features-container.feat-t {
    flex-direction: column-reverse;
  }
  .wf-main .features .features-container .feature-item h2,
  .wf-main .features .features-container .feature-item p.desc  {
    text-align: center;
  }

  /* .wf-main .features .features-container .feature-item p.desc {
    text-align: center;
  } */

  .faq-content .container {
    max-width: 100%;
  }
  .faq-content .faq-list {
    max-width: 100%;
  }
  .faq-banner {
    gap: 20px;
    padding: 54px 30px;
    position: relative;
    bottom: auto;
    max-width: 100%;
  }
  .faq-banner .banner-left {
    line-height: 120%;
  }
  .faq-banner .banner-right .actions {
    flex-direction: column;
    gap: 20px;
  }
}


@media screen and (max-width: 990px) {
  .wf-main .main-hero.product-hero {
    margin-top: 80px;
  }
  .wf-main .bottom-banner .bottom-banner-content {
    padding: 80px 20px;
  }
  .wf-main .bottom-banner .bottom-banner-content .btn.w-btn.btn-primary {
    white-space: nowrap;
    flex-shrink: 0;
  }
  .wf-main .faq-content {
    padding: 60px 20px 60px;
  }
}

@media screen and (max-width: 768px) {
  .wf-main .faq-content {
    padding: 60px 0;
  }
  .faq-content p.desc{
    padding: 0 15px;
    text-align: center;
  }
}


@media screen and (max-width: 680px) {
  .wf-main .main-hero.product-hero {
    padding: 60px 15px;
    height: auto;
  }
  .wf-main .features .features-container {
    padding: 60px 15px;
  }
  .wf-main .bottom-banner .bottom-banner-content {
    padding: 60px 15px;
    flex-direction: column;
    gap: 40px;
  }
  .wf-main .bottom-banner .bottom-banner-content h3 {
    text-align: center;
  }
  .wf-main > section {
    /* padding-left: 15px; */
    /* padding-right: 15px; */
  }
  .faq-content .faqAccordion .accordion-button {
    padding: 20px 15px 10px;
  }
  .faq-content .accordion-button.collapsed {
    padding: 20px 15px;
  }
  .faq-content .accordion-body {
    padding: 0 15px 10px;
  }
}

@media screen and (max-width: 640px) {
  .faq-banner {
    width: 100%;
    height: auto;
    flex-direction: column;
    padding: 46px 15px;
  }
  .faq-banner p {
    font-weight: 800;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: center;
  }
  .faq-banner .banner-right {
    width: 100%;
    max-width: 100%;
  }
  .faq-banner .banner-right .actions{
    width: 100%;
    max-width: 100%;
    flex-direction: row;
  }
  .faq-banner .banner-right .actions .btn {
    width: calc(50% - 10px);
  }
}
