.w-fit {
  width: fit-content !important;
}

.text-xs {
  font-size: 0.8rem !important;
}

.text-sm {
  font-size: 0.9rem !important;
}

/** brand slider */
@keyframes slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes spin {
  from {
    transform:rotate(0deg);
  }
  to {
    transform:rotate(360deg);
  }
}
.spin {
  animation-name: spin;
  animation-duration: 1500ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.brands {
  overflow: hidden;
  padding: 30px 0;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.brands:before, .brands:after {
  position: absolute;
  top: 0;
  content: '';
  width: 250px;
  height: 100%;
  z-index: 2;
}

.brands:before {
  left: 0;
  background: linear-gradient(to left, rgba(237, 234, 251, 0), rgb(237, 234, 251));
}

.brands:after {
  right: 0;
  background: linear-gradient(to right, rgba(237, 234, 251, 0), rgb(237, 234, 251));
}

.brands .brand-items .brand-item {
  display: inline-block;
  margin: 0 2rem;
}

.brands .brand-items {
  animation: 35s slides infinite linear;
}

.brands:hover .brand-items {
  animation-play-state: paused;
}

.brand-items brand-item {
  /*height: 100px;*/
}


/* ring animation */
.ring-wrapper:first-of-type {
  /*min-height: 250px;*/
  height: calc(1.4 * var(--buffer));
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.ring-wrapper:last-of-type {
  display: grid;
  gap: 2rem;
}

.ring-wrapper .ring {
  /* 	--character-width: 1ch; */
  --inner-angle: calc((360 / var(--char-count)) * 1deg);
  --character-width: 1;
  font-family: monospace;
  text-transform: uppercase;
  font-size: calc(var(--font-size, 1) * 1rem);
  position: relative;
}

@media (prefers-reduced-motion: no-preference) {
  .ring-wrapper .ring {
    animation: spin 12s infinite linear;
  }

  @keyframes spin {
    to {
      rotate: -360deg;
    }
  }
}

.ring-wrapper .char {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  /* 	line-height: 1; */
  transform: translate(-50%, -50%) rotate(calc(var(--inner-angle) * var(--char-index))) translateY(var(--radius));
}

/** privacy **/
.privacy-policy-nav {
  flex-direction: column;
  position: sticky;
  top: 50px;
}

.privacy-policy-nav .nav-link {
  display: block;
  /*font-size: 14px;*/
  font-weight: 700;
  line-height: 2.57;
  padding: 0;
  color: #000 !important;
}

.legal-content .content div {
  margin-top: 1rem;
}

.check-circle {
  background: var(--bs-indigo);
  color: white;
  padding: 0.26rem 0.4rem;
  border-radius: 50% 50%;
  font-size: 0.8rem;
}
.check-circle::after {
  content: '\2713';
}
.badge-circle {
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.4rem;
}
.list-topic {
  list-style: square;
  color: white;
  padding-left: 2rem;
  padding-top: 1rem;
}
.list-topic li {
  list-style: inherit;
  margin-bottom: 1rem;
}
.list-topic h6 {
  font-size: 1.2rem;
}
.list-topic p {
  margin-top: 0.2rem !important;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #4E2FDA;
  --bs-btn-border-color: #4E2FDA;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #4E2FDA;
  --bs-btn-hover-border-color: #4E2FDA;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #4E2FDA;
  --bs-btn-active-border-color: #4E2FDA;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #4E2FDA;
  --bs-btn-disabled-border-color: #4E2FDA;
}

/* pricing */
body.pricing .price-annually {
  display: block;
}
body.pricing .price-monthly {
  display: none;
}
body.pricing.monthly .price-annually {
  display: none;
}
body.pricing.monthly .price-monthly {
  display: block;
}
/* pricing end */
