.chart-card1 {
  padding: 27px 35px 30px;
  border-radius: 20px;

  .text {
    font-size: 16px;
    color: #abf8c3;
    line-height: 1;
  }

  .number {
    margin-top: 14px;
    font-size: 30px;
    font-weight: 500;
    color: var(--white);
    display: flex;
    align-items: center;

    span {
      font-size: 10px;
      font-weight: 700;
      padding: 5px 5px;
      display: inline-block;
      background-color: #21e6f1;
      color: var(--primary);
      border-radius: 20px;
      margin-inline-start: 7px;
    }
  }

  img {
    margin-top: 43px;
  }
}

@media screen and (max-width: 999px) {
  .mobileview {
    display: flex !important;
    flex-direction: column !important;
  }

  .wc-btn-primary1 {
    width: 80vw;
  }
}

.white {
  color: white;
}

.h-full {
  height: 100vh;
}

.rounded-3 {
  border-radius: 20px;
}

.rounded-4 {
  border-radius: 10px;
}

.mt-2 {
  margin-top: 2vh;
}

.mt-5 {
  margin-top: 5vh;
}

.mt-10 {
  margin-top: 10vh;
}

.pb-5 {
  padding-bottom: 5vh;
}

.pb-0 {
  padding-bottom: 0;
}

.pr-2 {
  padding-right: 2vw;
}

.mb-0 {
  margin-bottom: 0;
}

.mr-2 {
  margin-right: 2vw;
}

.mr10 {
  margin-right: 10px;
}

.process-item {
  height: 50vh;
}

@media screen and (max-width: 999px) {
  .process-item {
    height: 60vh;
  }
}

@media screen and (max-width: 999px) {
  .process-items-2 {
    display: flex !important;
    flex-direction: column !important;
  }
}

@media screen and (max-width: 768px) {
  .characters {
    font-size: 15px !important;
  }

  .txt-loading {
    gap: 5px !important;
  }
}

.feature-cards-wrapper {
  display: flex !important;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  align-items: start !important;
}

.feature-card {
  display: flex !important;
  justify-content: center;
  margin-right: 30px;
  align-items: start !important;
  flex-direction: column !important;
}

.card-exclusivly {
  width: 100%;
  /* border-bottom: 2px solid #8f8f8f !important; */
}

.text-exclusivly {
  font-weight: 400 !important;
}

.hero-area-inner-2 {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: center;
  margin-top: 15%;
}

.text-2 {
  color: gainsboro;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-wrap-rap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 5vh;
  gap: 30px;
}

@media (min-width: 1500px) {
  .hero-area-inner {
    margin-top: 10vh !important;
  }
}

@media (max-width: 767px) {
  .btn-wrap-rap {
    flex-direction: column;
    gap: 10px;
  }

  .content-bottom {
    display: none !important;
  }

  .wc-btn {
    width: 100%;
  }

  .hero-area-inner {
    margin-top: 35% !important;
  }
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* overflow: hidden; */
  z-index: 1 !important;
}

.black-bg {
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* overflow: hidden; */
  z-index: 1 !important;
}

.video-bg video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.section-title-wrapper-2 {
  display: flex;
  justify-content: center;
  padding-top: 100px;
}

/* Faq page */
.filter-container {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /* Ensure buttons wrap if necessary */
}

.filter-btn {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 20px 20px;
  margin: 0 10px;
  border-radius: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  font-size: 16px;
  flex-grow: 1;
  /* Spread width equally across all buttons */
  text-align: center;
  /* Center text inside the button */
}

.filter-btn:hover {
  background-color: var(--theme);
  color: #ffffff;
}

.filter-btn.active {
  background-color: var(--theme);
}

.filter-btn:focus {
  outline: none;
}

/* Mobile view: Switch to flex-column for buttons */
@media (max-width: 768px) {
  .filter-container {
    flex-direction: column;
    /* Arrange buttons in a column */
    align-items: center;
    /* Center align the buttons */
  }

  .filter-btn {
    margin: 10px 0;
    /* Vertical spacing for column layout */
    width: 100%;
    /* Make buttons take up full width on mobile */
  }
}

.accordion-item {
  margin-bottom: 15px;
}

.accordion-button {
  background-color: #f8f9fa;
  color: #343a40;
}

.accordion-body {
  font-size: 14px;
  color: #6c757d;
}

.feature-cards-wrapper {
  display: flex !important;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  align-items: start !important;
}
.feature-card {
  display: flex !important;
  justify-content: center;
  align-items: start !important;
  flex-direction: column !important;
}
.card-exclusivly {
  width: 100%;
  /* border-bottom: 2px solid #8f8f8f !important; */
}
.text-exclusivly {
  font-weight: 400 !important;
}

.text-center {
  text-align: center;
}

.hover:hover {
  color: var(--theme);
  cursor: pointer;
  text-decoration: underline;
}

.Tittle11 {
  font-size: 60px !important;
}

@media screen and (max-width: 999px) {
  .Tittle11 {
    font-size: 20px !important;
  }
}

.integration-card1 {
  padding: 50px 60px 42px;
  border: 1px solid #ebedef;
  background-color: var(--white);
  border-radius: 20px;
  text-align: center;
  transition: all 0.5s;

  &:hover {
    border-color: #ff845d;
    i {
      transform: translateX(5px);
    }
  }

  .thumb {
    img {
      max-height: 80px;
    }
  }

  .title {
    font-size: 24px;
    line-height: 1.25;

    span {
      font-weight: 400;
      color: var(--secondary);
      display: block;
    }
  }

  .content {
    margin-top: 40px;
  }

  .text {
    margin-top: 23px;
  }

  .wc-btn-normal {
    margin-top: 66px;
    i {
      transition: 0.4s;
    }
  }
}

.wc-btn-normal1 {
  &:hover {
    color: #ff845d;
  }
}

.color-danger {
  color: #ff845d;
}

.text-justify {
  text-align: justify;
}
