@font-face {
  font-family: "AlibabaPuHuiTi";
  src: url("../fonts/Alibaba-Regular.woff2")  format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AlibabaPuHuiTi";
  src: url("../fonts/Alibaba-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AlibabaPuHuiTi";
  src: url("../fonts/Alibaba-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AlibabaPuHuiTi";
  src: url("../fonts/Alibaba-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AlibabaPuHuiTi";
  src: url("../fonts/Alibaba-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #F8F8F8;
  --bg-2: #0d1319;
  --text: #666666;
  --muted: #57606a;
  --white: #ffffff;
  --black: #000000;
  --primary: #00dfff;
  --primary-2: #11a0ff;
  --border: #e6e8eb;
  --container: min(1120px, calc(100vw - 48px));
  --font-primary: "AlibabaPuHuiTi", -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;
}
.btn.w-btn.btn-sm {
  padding: 13px 20px;
}
.btn.btn-primary {
  background: var(--primary);
  color: var(--black);
}
.btn.btn-secondary {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--black);
}
.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 > section {
  padding: 120px 20px;
}

.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: 800;
  font-size: 56px;
  line-height: 56px;
  letter-spacing: 0px;
  text-align: center;
  color: var(--black);
}


.wf-main h2 {
  font-weight: 800;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  color: var(--black);
}

.wf-main p.desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0px;
  text-align: center;
  color: var(--text);
  max-width: 986px;
}

.main-hero {
  position: relative;
  background: #000;
  width: 100vw;
  padding: 190px 0 110px;
  display: flex;
  background-color: var(--bg);
  align-items: center;
  justify-content: center;
}

.main-hero h1 {
  font-weight: 800;
  font-size: 56px;
  line-height: 56px;
  letter-spacing: 0px;
  color: var(--black);
  text-align: left;
  margin-bottom: 20px;
}

.main-hero p {
  max-width: 960px;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0px;
  text-align: center;
  color: var(--text);
  margin-bottom: 60px;
  text-align: left;
}

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

.main-hero .hero-content {
  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: 630px;
  height: auto;
}


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

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

.faq-content {
  position: relative;
  padding-bottom: 200px;
}

.faq-content .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}

.faq-content .faq-list {
  width: 960px;
  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(--black);
  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-button.collapsed.last {
  /* border-bottom: 1px solid var(--black); */
}

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

.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;
}


@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 (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1200px !important;
  }
}

@media screen and (max-width: 1024px) {
  .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: 768px) {
  .wf-main h2 {
    font-size: 36px;
  }
}


@media screen and (max-width: 680px) {
  .wf-main > section {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@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);
  }
}
