/* utility */
html.sr .load-hidden {
  visibility: hidden;
}

.debugger * {
  border: 1px solid red;
}

/* extension */
html.sr .widget {
  visibility: hidden;
}

::-moz-selection {
  background: #4b4860;
  color: white;
}

.card {
  opacity: 0;
  position: absolute;
  animation: animate 15s ease-out infinite;
  animation-delay: calc(3s * var(--delay));
}

.card:last-child {
  animation-delay: calc(-3s * var(--delay));
}

@keyframes animate {
  0% {
    opacity: 0;
    transform: translateY(100%);
    width: 50%;
  }

  5% {
    transform: translateY(100%);
    width: 80%;
  }

  20% {
    opacity: 1;
    transform: translateY(100%);
    width: 80%;
  }

  25%,
  40% {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0%);
    width: 100%;
  }

  45%,
  60% {
    opacity: 1;
    transform: translateY(-100%);
    width: 85%;
  }

  61% {
    opacity: 0;
  }

  65%,
  100% {
    opacity: 0;
    transform: translateY(-100%);
    width: 50%;
  }
}

::selection {
  background: #4b4860;
  color: white;
}

.hamburger {
  gap: 3.6px;
}

.hamburger .line {
  width: 18px;
  height: 2.25px;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  background: white;
}

.hamburger.isactive .line:nth-child(2) {
  opacity: 0;
}

.hamburger.isactive .line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.isactive .line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@keyframes fade {
  from {
    transform: translateX(-200px);
    opacity: 0;
  }

  to {
    transform: translateX(0px);
    opacity: 1;
  }
}

.br-sm,
.br-md,
.br-lg,
.br-xl,
.br-2xl {
  display: none;
}

.primary-button-home {
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  height: 44px;
  color: #ffffff;
  position: relative;
  white-space: nowrap;
  background: linear-gradient(270deg, #6b4eff 0%, #5533ff 100%);
}

.primary-button-nav {
  padding: 7px 18px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  transition:
    border 120ms ease 0s,
    background-color,
    color,
    box-shadow,
    opacity;
}

.primary-button {
  transition:
    border 120ms ease 0s,
    background-color,
    color,
    box-shadow,
    opacity;
}

.primary-button,
.secondary-button {
  padding: 14px 19px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition:
    border 120ms ease 0s,
    background-color,
    color,
    box-shadow,
    opacity;
}

.secondary-button:hover {
  box-shadow: rgba(80, 63, 205, 0.5) 0px 1px 40px;
}

.primary-button:hover,
.primary-button-nav:hover,
.primary-button-home:hover {
  box-shadow: 0px 4px 40px 0px rgba(107, 78, 255, 0.6);
}

#testimonials-parent:hover div {
  animation-play-state: paused;
}

@keyframes right-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 400px) {
  .br-sm {
    display: block;
  }
}

@media (min-width: 768px) {
  .br-md {
    display: block;
  }
}

@media (min-width: 1024px) {
  .br-lg {
    display: block;
  }
}

@media (min-width: 1280px) {
  .br-xl {
    display: block;
  }
}

@media (min-width: 1536px) {
  .br-2xl {
    display: block;
  }
}

#nav-icon {
  width: 20px;
  height: 20px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -o-transform-origin: right center;
  transform-origin: right center;
}

#nav-icon span:nth-child(2) {
  top: 6px;
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -o-transform-origin: right center;
  transform-origin: right center;
}

#nav-icon span:nth-child(3) {
  top: 12px;
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -o-transform-origin: right center;
  transform-origin: right center;
}

#nav-icon.open span:nth-child(1) {
  top: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-icon.open span:nth-child(3) {
  top: 12px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#header-wrapper {
  background: rgba(255, 255, 255, 0.7);
}

/* if backdrop support: very transparent and blurred */
@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  #header {
    border: 1px 1px 0 1px solid;
    border-color:
      radial-gradient(
        69.43% 69.43% at 50% 50%,
        #ffffff 0%,
        rgba(255, 255, 255, 0) 100%
      ),
      radial-gradient(
        54.8% 53% at 50% 50%,
        #181818 0%,
        rgba(24, 24, 24, 0) 100%
      );
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
  }

  #header-wrapper {
    background: rgba(255, 255, 255, 0.4);
  }
}

.nav-gradient {
  background: #040018;
}

.nav-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  padding-bottom: 1px;
  background: radial-gradient(
    166.44% 296.42% at 0% -14.35%,
    rgba(4, 0, 24, 0.201563) 0%,
    rgba(107, 78, 255, 0.24) 41.67%,
    rgba(107, 78, 255, 0) 66.15%,
    rgba(4, 0, 24, 0.090625) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.gradient-box-outer {
  background: radial-gradient(
    101.78% 190.99% at 37.06% -14.58%,
    rgba(255, 255, 255, 0.11) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(21px);
}

.gradient-box-outer::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;

  background:
    radial-gradient(
        106.37% 282.8% at -3.82% -3.12%,
        rgba(21, 21, 21, 0.6) 0%,
        rgba(21, 21, 21, 0) 100%
      )
      /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */,
    radial-gradient(
        131.07% 260.49% at 0% 0%,
        #6b4eff 0%,
        rgba(107, 78, 255, 0) 100%
      )
      /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */,
    radial-gradient(
        98.54% 262.92% at 1.46% 0%,
        #ffffff 0%,
        rgba(255, 255, 255, 0) 100%
      )
      /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.filter-container::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(
    164.98deg,
    #373445 -10.78%,
    rgba(55, 52, 69, 0) 130.84%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.group:focus .group-focus\:max-h-40 {
  max-height: 10rem;
}

.testimonial-slider {
  max-width: 100%;
  /* Set your desired width */
  /* margin: 0 auto; */
}

.slider-row {
  transition: transform 0.3s;
}

.testimonial-card-left {
  transition: transform 0.3s;
}

.testimonial-card-right {
  transition: transform 0.3s;
}

/* V2 SPecific Design (NEW) */

.new-primary-button {
  padding: 14px 19px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition:
    border 120ms ease 0s,
    background-color,
    color,
    box-shadow,
    opacity;
}

.new-primary-button:hover,
.new-primary-button-nav:hover {
  box-shadow: 0px 4px 40px 0px rgba(107, 78, 255, 0.6);
}

.new-secondary-button {
  padding: 14px 19px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition:
    border 120ms ease 0s,
    background-color,
    color,
    box-shadow,
    opacity;
}

.new-secondary-button:hover {
  box-shadow: rgba(80, 63, 205, 0.5) 0px 1px 40px;
}

.section-heading,
.section-card-heading,
.secondary-section-heading,
.review-section-heading {
  background: linear-gradient(
    181.83deg,
    #ffffff 1.55%,
    rgba(255, 255, 255, 0.75) 98.45%
  );
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 3.125rem;
  text-align: center;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.white-text-gradient {
  background: linear-gradient(
    181.83deg,
    #ffffff 1.55%,
    rgba(255, 255, 255, 0.75) 98.45%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.violet-text-gradient {
  background: linear-gradient(90deg, #8972ff 37.44%, #d1c8ff 61.42%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.reverse-violet-text-gradient {
  background: linear-gradient(269.93deg, #8972ff 9.59%, #d1c8ff 45.33%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.section-card-heading {
  font-size: 1.5rem;
  line-height: 2.25rem;
  text-align: left;
}

.card-gradient-primary {
  background: radial-gradient(
    100% 266.55% at 0% 1.97%,
    rgba(255, 255, 255, 0.084) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  position: relative;
}

.card-gradient-primary::before {
  content: '';
  position: absolute;
  width: 100%;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background:
    radial-gradient(
      98.54% 262.92% at 0% 0%,
      #151515 0%,
      rgba(21, 21, 21, 0) 100%
    ),
    radial-gradient(
      115% 266.82% at 0% 2.79%,
      #6b4eff 0%,
      rgba(107, 78, 255, 0) 100%
    ),
    radial-gradient(
      98.54% 262.92% at 1.46% 0%,
      #ffffff 0%,
      rgba(255, 255, 255, 0) 100%
    );
  backdrop-filter: blur(21px);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.light-purple-gradient {
  position: relative;
  background: linear-gradient(
    14.78deg,
    rgba(55, 52, 69, 0.17) 3.84%,
    rgba(55, 52, 69, 0.46) 103.86%
  );
}

.light-purple-gradient-without-border {
  background: linear-gradient(
    14.78deg,
    rgba(55, 52, 69, 0.17) 3.84%,
    rgba(55, 52, 69, 0.46) 103.86%
  );
}

.purple-gradient-border {
  position: relative;
}

.light-purple-gradient::before,
.purple-gradient-border::before {
  content: '';
  position: absolute;
  width: 100%;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(
    164.98deg,
    #373445 -10.78%,
    rgba(55, 52, 69, 0) 130.84%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.dark-purple-gradient-without-border {
  background: linear-gradient(
    14.78deg,
    rgba(55, 52, 69, 0.0612) 3.84%,
    rgba(55, 52, 69, 0.1656) 103.86%
  );
}

.dark-purple-gradient {
  position: relative;
  background: linear-gradient(
    14.78deg,
    rgba(55, 52, 69, 0.0612) 3.84%,
    rgba(55, 52, 69, 0.1656) 103.86%
  );
}

.dark-purple-gradient::before {
  content: '';
  position: absolute;
  width: 100%;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(
    164.98deg,
    #373445 -10.78%,
    rgba(55, 52, 69, 0) 130.84%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.accordion .accordion-item[aria-expanded='true'] .accordion-content {
  max-height: 100vh;
}

.accordion .accordion-item[aria-expanded='false'] .accordion-content {
  max-height: 0;
}

.accordion .accordion-item[aria-expanded='true'] .accordion-icon {
  transform: rotate(45deg);
  color: white;
}

.accordion .accordion-item[aria-expanded='true'] .accordion-content {
  transition: all 3000ms cubic-bezier(0.33, 0.76, 0.59, 1);
}

.accordion .accordion-item[aria-expanded='false'] .accordion-content {
  transition: all 400ms cubic-bezier(0.33, 0.76, 0.59, 1);
}

.animate-slide-3 {
  /* animation: slide-3 10s cubic-bezier(0.98, 0, 0.13, 1) infinite; */
  animation: slide-3 8s cubic-bezier(0.83, 0, 0.17, 1) infinite;
}

.product-research-gradient {
  background: linear-gradient(
    200.5deg,
    rgba(55, 52, 69, 0.085) 40.38%,
    rgba(55, 52, 69, 0.23) 108.62%
  );

  position: relative;
  border-radius: 12px 12px 0 0;
}

.product-research-gradient::before {
  content: '';
  position: absolute;
  width: 100%;
  inset: 0;
  padding: 1px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(
    164.98deg,
    #373445 -10.78%,
    rgba(55, 52, 69, 0) 130.84%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

@media screen and (min-width: 640px) {
  .section-heading {
    font-size: 3rem;
    line-height: 4rem;
  }

  .secondary-section-heading {
    font-size: 3rem;
    line-height: 4rem;
  }

  .section-card-heading {
    font-size: 1.5rem;
    line-height: 28px;
  }

  .review-section-heading {
    font-size: 2.75rem;
    line-height: 3.125rem;
  }
}

@media screen and (min-width: 1024px) {
  .review-section-heading {
    font-size: 3rem;
    line-height: 3.375rem;
  }
}

@media screen and (min-width: 1280px) {
  .section-heading {
    font-size: 3.5rem;
    line-height: 4.5rem;
  }

  .section-card-heading {
    font-size: 1.75rem;
    line-height: 2.25rem;
  }
}

@keyframes slide-3 {
  0%,
  24% {
    transform: translateY(0);
  }
  /* 10 */
  34%,
  58% {
    transform: translateY(-25%);
  }
  /* 10 */
  68%,
  92% {
    transform: translateY(-50%);
  }
  /* 10 */
  100% {
    transform: translateY(-75%);
  }
}

/* ************************ */

/* V2 specific design */

.dark-gradient-button,
.dark-lighter-button {
  background: linear-gradient(
    285.94deg,
    #040018 -21.19%,
    rgba(55, 52, 69, 0.99) 83.77%
  );
  position: relative;
  width: 100%;
  height: 1.5rem;
  font-weight: 500;
  font-size: 12px;
  line-height: 12px;
  color: #b8b4c5;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  border-radius: 4px;
}

.dark-lighter-button {
  background: linear-gradient(
    14.78deg,
    rgba(55, 52, 69, 0.45) 3.84%,
    #373445 103.86%
  );
}

.dark-lighter-button::before {
  content: '';
  position: absolute;
  width: 100%;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(
    164.98deg,
    #373445 -10.78%,
    rgba(55, 52, 69, 0.01) 130.84%
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.dark-gradient-button::before {
  content: '';
  position: absolute;
  width: 100%;
  inset: 0;
  padding: 1px;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(
    176.14deg,
    rgba(101, 98, 112, 0.37) 43.09%,
    rgba(101, 98, 112, 0.33) 97.81%
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.case-study-bg {
  background: radial-gradient(
    143.4% 348.31% at -2.08% 0%,
    rgba(255, 255, 255, 0.084) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.research-analysis-border,
.research-analysis-border-l,
.research-analysis-border-r {
  position: relative;
}

.research-analysis-border::before,
.research-analysis-border-l::before,
.research-analysis-border-r::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  z-index: -1;

  background:
    radial-gradient(
        106.37% 282.8% at -3.82% -3.12%,
        rgba(21, 21, 21, 0.71) 0%,
        rgba(21, 21, 21, 0) 100%
      )
      /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */,
    radial-gradient(
        131.07% 260.49% at 0% 0%,
        #6b4eff 0%,
        rgba(107, 78, 255, 0) 100%
      )
      /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */,
    radial-gradient(
        98.54% 262.92% at 1.46% 0%,
        #ffffff 0%,
        rgba(255, 255, 255, 0) 100%
      )
      /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.research-analysis-border-l::before {
  padding: 0;
  padding-bottom: 1px;
}

.research-analysis-border-r::before {
  padding: 0;
  padding-bottom: 1px;
}

@media screen and (min-width: 1024px) {
  .research-analysis-border-l::before {
    padding: 0px;
    padding-left: 1px;
  }

  .research-analysis-border-r::before {
    padding: 0px;
    padding-right: 1px;
  }
}

.research-analysis-primary-bg {
  background: radial-gradient(
    89.36% 183.33% at 37.06% -14.58%,
    rgba(255, 255, 255, 0.112) 0%,
    rgba(255, 255, 255, 0.024) 100%
  );
}

.related-company {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 640px) {
  .related-company {
    height: 36px;
  }
}

.related-companies-overlap {
  position: absolute;
  top: 50%;
  z-index: 1;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 144px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    90deg,
    rgba(4, 0, 24, 0.77) 3.4%,
    #040018 22.14%,
    #040018 47.81%,
    #040018 76.02%,
    rgba(4, 0, 24, 0.77) 100%
  );
}

.generate-study-wrapper {
  border-radius: 12px;
}

#research-workflow .success {
  border-radius: 8px;
}

.generate-study-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(
    164.98deg,
    #373445 -10.78%,
    rgba(55, 52, 69, 0) 130.84%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.research-workflow-li,
.authentication-point {
  background: linear-gradient(
    182.26deg,
    #ffffff 32.82%,
    rgba(255, 255, 255, 0.66) 110.13%
  );
  background-clip: text !important;
  -webkit-background-clip: text !important;
  color: transparent !important;
}

.research-workflow-li {
  cursor: pointer !important;
}

.active-research-workflow-li,
.active-authentication-point {
  background: linear-gradient(90deg, #8972ff 2.78%, #b2a3ff 35.76%);
}

.track-line {
  background: linear-gradient(
    108.13deg,
    rgba(4, 0, 24, 0.89) 13.19%,
    rgba(107, 78, 255, 0.6) 61.46%,
    #6b4eff 100%
  );
}

@media screen and (min-width: 640px) {
  .related-companies-overlap {
    max-width: 422px;
    height: 121px;
  }
}

@media screen and (min-width: 768px) {
  .related-companies-overlap {
    max-width: 518px;
    height: 121px;
  }
}

@media screen and (min-width: 1024px) {
  .related-companies-overlap {
    max-width: 709px;
    height: 100px;
  }
}

.animate-research-svg {
  stroke-dasharray: 200;
  stroke-dashoffset: 0;
  animation: animate-wire 4000ms linear 1000ms infinite;
}

.animate-real-insight-svg {
  stroke-dasharray: 1700;
  stroke-dashoffset: 0;
  animation: animate-real-insight 6000ms linear 1000ms infinite;
}

.animate-research-svg-reverse {
  stroke-dasharray: 200;
  stroke-dashoffset: 0;
  animation: animate-wire-reverse 4000ms linear 1000ms infinite;
}

.animate-research-wire-svg {
  stroke-dasharray: 10;
  stroke-dashoffset: 0;
  animation: animate-wire-two 6s linear infinite;
}

.get-more-done-card-outer {
  position: relative;
  width: 100%;
  max-width: 998px;
  background: radial-gradient(
    89.36% 183.33% at 37.06% -14.58%,
    rgba(255, 255, 255, 0.0504) 0%,
    rgba(255, 255, 255, 0.0108) 100%
  );
}

.get-more-done-card-outer::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background:
    radial-gradient(
      98.54% 262.92% at 0% 0%,
      #151515 0%,
      rgba(21, 21, 21, 0) 100%
    ),
    radial-gradient(
      115% 266.82% at 0% 2.79%,
      #6b4eff 0%,
      rgba(107, 78, 255, 0) 100%
    ),
    radial-gradient(
      98.54% 262.92% at 1.46% 0%,
      #ffffff 0%,
      rgba(255, 255, 255, 0) 100%
    );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.get-more-done-card-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  border-radius: inherit;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  background:
    radial-gradient(
      98.54% 262.92% at 0% 0%,
      #151515 0%,
      rgba(21, 21, 21, 0) 100%
    ),
    radial-gradient(
      115% 266.82% at 0% 2.79%,
      #6b4eff 0%,
      rgba(107, 78, 255, 0) 100%
    ),
    radial-gradient(
      98.54% 262.92% at 1.46% 0%,
      #ffffff 0%,
      rgba(255, 255, 255, 0) 100%
    );
}

.get-more-done-tabs-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  border-radius: inherit;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  background: linear-gradient(
    176.14deg,
    rgba(101, 98, 112, 0.59) 43.09%,
    rgba(101, 98, 112, 0.47) 97.81%
  );
}

.text-area-gradient {
  background: linear-gradient(
    14.78deg,
    rgba(55, 52, 69, 0.102) 3.84%,
    rgba(55, 52, 69, 0.276) 103.86%
  );
}

.text-area-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(
    164.98deg,
    #373445 -10.78%,
    rgba(55, 52, 69, 0) 130.84%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.get-more-done-selector,
.faq-section-selector {
  background: radial-gradient(
    108.62% 296.06% at 0% 1.97%,
    rgba(255, 255, 255, 0.084) 0%,
    rgba(255, 255, 255, 0.048) 100%
  );
}

.get-more-done-selector::before,
.faq-section-selector::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background:
    radial-gradient(
      98.54% 262.92% at 0% 0%,
      #151515 0%,
      rgba(21, 21, 21, 0) 100%
    ),
    radial-gradient(
      100% 266.82% at 0% 2.79%,
      #6b4eff 0%,
      rgba(107, 78, 255, 0) 100%
    ),
    radial-gradient(
      98.54% 262.92% at 1.46% 0%,
      #ffffff 0%,
      rgba(255, 255, 255, 0) 100%
    );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.faq-action-icon {
  background: radial-gradient(
    108.62% 296.06% at 0% 1.97%,
    rgba(255, 255, 255, 0.1218) 0%,
    rgba(255, 255, 255, 0.0696) 100%
  );
  position: relative;
}

.faq-action-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background:
    radial-gradient(
        100% 266.82% at 0% 2.79%,
        #6b4eff 0%,
        rgba(107, 78, 255, 0) 100%
      )
      /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */,
    radial-gradient(
        98.54% 262.92% at 0% 0%,
        #151515 0%,
        rgba(21, 21, 21, 0) 100%
      )
      /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.ai-generated-button {
  background: transparent;
  position: relative;
}

.pill-button {
  background: radial-gradient(
    89.36% 183.33% at 37.06% -14.58%,
    rgba(255, 255, 255, 0.084) 0%,
    rgba(255, 255, 255, 0.018) 100%
  );
  position: relative;
}

.fraud-detection-connector {
  background:
    linear-gradient(to bottom right, #6b4eff 0%, rgba(107, 78, 255, 0) 100%),
    linear-gradient(to bottom right, #151515 0%, rgba(21, 21, 21, 0) 100%);
  background-size: 200% 200%;
  transform: rotate(180deg);
}

/* background: radial-gradient(108.62% 296.06% at 0% 1.97%, rgba(255, 255, 255, 0.084) 0%, rgba(255, 255, 255, 0.048) 100%) */

.pill-button::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background:
    radial-gradient(
      106.37% 282.8% at -3.82% -3.12%,
      rgba(21, 21, 21, 0.6) 0%,
      rgba(21, 21, 21, 0) 100%
    ),
    radial-gradient(
      131.07% 260.49% at 0% 0%,
      #6b4eff 0%,
      rgba(107, 78, 255, 0) 100%
    ),
    radial-gradient(
      98.54% 262.92% at 1.46% 0%,
      #ffffff 0%,
      rgba(255, 255, 255, 0) 100%
    );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.ai-generated-button::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;

  /* background: radial-gradient(
      131.07% 260.49% at 0% 0%,
      #6b4eff 0%,
      rgba(107, 78, 255, 0) 100%
    ),
    radial-gradient(
      106.37% 282.8% at -3.82% -3.12%,
      rgba(21, 21, 21, 0.6) 0%,
      rgba(21, 21, 21, 0) 100%
    ); */
  background:
    radial-gradient(
      106.37% 282.8% at -3.82% -3.12%,
      rgba(21, 21, 21, 0.6) 0%,
      rgba(21, 21, 21, 0) 100%
    ),
    radial-gradient(
      131.07% 260.49% at 0% 0%,
      #6b4eff 0%,
      rgba(107, 78, 255, 0) 100%
    ),
    radial-gradient(
      98.54% 262.92% at 1.46% 0%,
      #ffffff 0%,
      rgba(255, 255, 255, 0) 100%
    );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

@keyframes animate-wire {
  0% {
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dashoffset: -200;
  }

  100% {
    stroke-dashoffset: -400;
  }
}
@keyframes animate-real-insight {
  0% {
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dashoffset: -850;
  }

  100% {
    stroke-dashoffset: -1700;
  }
}

@keyframes animate-wire-reverse {
  100%,
  75% {
    stroke-dashoffset: 0;
  }

  40% {
    stroke-dashoffset: -200;
  }

  0% {
    stroke-dashoffset: -400;
  }
}

@keyframes animate-wire-two {
  0% {
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dashoffset: -40;
  }

  100% {
    stroke-dashoffset: -80;
  }
}

.sliding-card {
  --x-value: 32px;
  --y-value: 26px;
}

@media screen and (min-width: 640px) {
  .sliding-card {
    --x-value: 32px;
    --y-value: 58px;
  }
}

@media screen and (min-width: 1024px) {
  .sliding-card {
    --x-value: 78px;
    --y-value: 67px;
  }
}

.sliding-card:nth-child(1) {
  opacity: 1;
  transform: translateX(calc(var(--x-value))) translateY(calc(var(--y-value)));
  z-index: 2;
}

.sliding-card:nth-child(2) {
  opacity: 0;
  transform: translateX(calc(var(--x-value) * 2))
    translateY(calc(var(--y-value) * 2));
}

.sliding-card:nth-child(3) {
  opacity: 0;
}

.sliding-card:nth-child(4) {
  opacity: 0;
}

.sliding-card:nth-child(5) {
  opacity: 1;
  transform: translateX(0) translateY(0);
  z-index: 1;
}
/* 
@keyframes slide-cards {
  0% {
    opacity: 0;
    transform: translateX(calc(var(--x-value) * 2))
      translateY(calc(var(--y-value) * 2));
  }

  5% {
    opacity: 1;
    transform: translateX(var(--x-value)) translateY(var(--y-value));
    z-index: 2;
  }

  20% {
    opacity: 1;
    transform: translateX(var(--x-value)) translateY(var(--y-value));
    z-index: 2;
  }

  25%,
  40% {
    opacity: 1;
    transform: translateX(0) translateY(0);
    z-index: 1;
  }

  45%,
  60% {
    opacity: 0;
    transform: translateX(calc(var(--x-value) * -1))
      translateY(calc(var(--y-value) * -1));
    z-index: 1;
  }

  61% {
    opacity: 0;
    z-index: 1;
    transform: translateX(calc(var(--x-value) * -1))
      translateY(calc(var(--y-value) * -1));
  }

  65%,
  100% {
    opacity: 0;
    transform: translateX(calc(var(--x-value) * -1))
      translateY(calc(var(--y-value) * -1));
    z-index: 1;
  }
} */

.dropdown-gradient {
  background: linear-gradient(
    24deg,
    rgba(55, 52, 69, 0.28) 13.95%,
    rgba(55, 52, 69, 0.28) 85.18%
  );
}

.dropdown-selector-gradient {
  background: linear-gradient(
    14.78deg,
    rgba(55, 52, 69, 0.6) 3.84%,
    rgba(55, 52, 69, 0.5) 103.86%
  );
}

.case-study-card {
  margin-left: 16px;
}

.case-study-card:first-child {
  margin-left: 0px;
}

#case-study-slider {
  transition: transform 0.75s ease;
}

.get-more-done-tabs-mobile {
  position: relative;
  background: radial-gradient(
    108.62% 296.06% at 0% 1.97%,
    rgba(255, 255, 255, 0.084) 0%,
    rgba(255, 255, 255, 0.048) 100%
  );
}

.get-more-done-tabs-mobile::before {
  content: '';
  position: absolute;
  inset: 0;
  padding-bottom: 1px;
  border-radius: inherit;
  background:
    radial-gradient(
      98.54% 262.92% at 0% 0%,
      #151515 0%,
      rgba(21, 21, 21, 0) 100%
    ),
    radial-gradient(
      98.54% 262.92% at 1.46% 0%,
      #ffffff 0%,
      rgba(255, 255, 255, 0) 100%
    );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.selected-get-more-done-mobile {
  color: #8972ff !important;
  background: radial-gradient(
    108.62% 296.06% at 0% 1.97%,
    rgba(255, 255, 255, 0.084) 0%,
    rgba(255, 255, 255, 0.048) 100%
  ) !important;
}

.selected-get-more-done-mobile::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background:
    radial-gradient(
      98.54% 262.92% at 0% 0%,
      #151515 0%,
      rgba(21, 21, 21, 0) 100%
    ),
    radial-gradient(
      100% 266.82% at 0% 2.79%,
      #6b4eff 0%,
      rgba(107, 78, 255, 0) 100%
    ),
    radial-gradient(
      98.54% 262.92% at 1.46% 0%,
      #ffffff 0%,
      rgba(255, 255, 255, 0) 100%
    ) !important;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.review-card {
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  background: radial-gradient(
    89.36% 183.33% at 37.06% -14.58%,
    rgba(255, 255, 255, 0.0714) 0%,
    rgba(255, 255, 255, 0.0153) 100%
  );
}

.testimonial-card {
  position: relative;
  background: radial-gradient(
    100% 266.55% at 0% 1.97%,
    rgba(255, 255, 255, 0.084) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;

  background:
    radial-gradient(
      98.54% 262.92% at 0% 0%,
      #151515 0%,
      rgba(21, 21, 21, 0) 100%
    ),
    radial-gradient(
      100% 266.82% at 0% 2.79%,
      #6b4eff 0%,
      rgba(107, 78, 255, 0) 100%
    ),
    radial-gradient(
      98.54% 262.92% at 1.46% 0%,
      #ffffff 0%,
      rgba(255, 255, 255, 0) 100%
    );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.review-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  /* background: radial-gradient(
      106.37% 282.8% at -3.82% -3.12%,
      rgba(21, 21, 21, 0.71) 0%,
      rgba(21, 21, 21, 0) 100%
    ),
    radial-gradient(
      131.07% 260.49% at 0% 0%,
      #6b4eff 0%,
      rgba(107, 78, 255, 0) 100%
    ),
    radial-gradient(
      98.54% 262.92% at 1.46% 0%,
      #ffffff 0%,
      rgba(255, 255, 255, 0) 100%
    ); */
  background:
    radial-gradient(
      98.54% 262.92% at 0% 0%,
      #151515 0%,
      rgba(21, 21, 21, 0) 100%
    ),
    radial-gradient(
      115% 266.82% at 0% 2.79%,
      #6b4eff 0%,
      rgba(107, 78, 255, 0) 100%
    ),
    radial-gradient(
      98.54% 262.92% at 1.46% 0%,
      #ffffff 0%,
      rgba(255, 255, 255, 0) 100%
    );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

#right-left-cards {
  animation: right-left 180s infinite linear;
}

@keyframes right-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-66.67%);
  }
}

.testimonial-gradient {
  background: linear-gradient(
    351deg,
    rgba(55, 52, 69, 0.06) 0%,
    rgba(55, 52, 69, 0.17) 100%
  );

  backdrop-filter: blur(21px);
}

.testimonial-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  background:
    linear-gradient(
      14.78deg,
      rgba(55, 52, 69, 0.0612) 3.84%,
      rgba(55, 52, 69, 0.1656) 103.86%
    ),
    linear-gradient(164.98deg, #373445 -10.78%, rgba(55, 52, 69, 0) 130.84%);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.square-case-study-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rectangle-case-study-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .square-case-study-icon-wrapper {
    width: 4rem;
    height: 4rem;
  }
  .rectangle-case-study-icon-wrapper {
    height: 2.625rem;
    margin-top: 0px;
  }
}

@media (min-width: 768px) {
  .square-case-study-icon-wrapper {
    width: 4.5rem;
    height: 4.5rem;
  }
  .rectangle-case-study-icon-wrapper {
    height: 3rem;
    margin-top: 0px;
  }
}

.pinterest-svg-icon {
  height: 44px;
  width: 44px;
}

.neom-svg-icon {
  height: 56px;
  width: 56px;
}

.att-svg-icon {
  height: 34px;
  width: auto;
}

.meta-svg-icon {
  height: 19px;
  width: auto;
}

.metagenics-svg-icon {
  height: 20px;
  width: auto;
}

.disney-svg-icon {
  height: 34px;
  width: auto;
}

.get360inc-svg-icon {
  height: 36px;
  width: auto;
}

.fetch-svg-icon {
  height: 24px;
  width: auto;
}

.kpmg-svg-icon {
  height: 30px;
  width: auto;
}

@media screen and (min-width: 640px) {
  .pinterest-svg-icon {
    height: 50px;
    width: 50px;
  }

  .neom-svg-icon {
    height: 64px;
    width: 64px;
  }

  .att-svg-icon {
    height: 36px;
    width: auto;
  }

  .metagenics-svg-icon {
    height: 18px;
    width: auto;
  }

  .get360inc-svg-icon {
    height: 36px;
    width: auto;
  }
}

@media screen and (min-width: 768px) {
  .pinterest-svg-icon {
    height: 56px;
    width: 56px;
  }
  .neom-svg-icon {
    height: 72px;
    width: 72px;
  }
  .att-svg-icon {
    height: 40px;
    width: auto;
  }
  .meta-svg-icon {
    height: 22px;
    width: auto;
  }
  .metagenics-svg-icon {
    height: 22px;
    width: auto;
  }
  .disney-svg-icon {
    height: 40px;
    width: auto;
  }
  .get360inc-svg-icon {
    height: 40px;
    width: auto;
  }
  .fetch-svg-icon {
    height: 27px;
    width: auto;
  }
  .kpmg-svg-icon {
    height: 34px;
    width: auto;
  }
}

@media screen and (min-width: 1024px) {
  .case-study-card:hover .case-study-bg {
    background: transparent;
  }

  .case-study-card:hover .case-study-card-btn {
    color: #f3f3f6 !important;
  }
}

.purple-heading-gradient {
  background: linear-gradient(90deg, #8972ff 16.02%, #d1c8ff 114.06%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animated Dots for Fetching Audience */
@keyframes dot1 {
  0%,
  80%,
  100% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
}
@keyframes dot2 {
  0%,
  20%,
  100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
@keyframes dot3 {
  0%,
  40%,
  100% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
}
.dot-animate {
  display: inline-block;
  width: 0.5em;
  background-color: #b8b4c5;
  text-align: center;
  opacity: 0;
}
.dot1 {
  animation: dot1 1.4s infinite;
}
.dot2 {
  animation: dot2 1.4s infinite;
}
.dot3 {
  animation: dot3 1.4s infinite;
}

/* Testimonial Slide Animations */
.testimonial-slide {
  transition:
    opacity 0.5s,
    z-index 0s 0.5s;
  z-index: 0;
}

.testimonial-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
  transition:
    opacity 0.5s,
    z-index 0s;
}

.testimonial-slide.animate-in {
  animation:
    slide-in-from-right 0.5s forwards,
    fade-in 0.5s forwards;
  z-index: 2;
}
.testimonial-slide.animate-out {
  animation:
    slide-out-to-left 0.5s forwards,
    fade-out 0.5s forwards;
  z-index: 1;
}

@keyframes slide-in-from-right {
  from {
    transform: translateX(120px);
    opacity: 0.5;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-out-to-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-120px);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.animate-research-method-path,
.animate-research-method-path-reverse {
  stroke-dasharray: 200;
}

.animate-research-method-path-straight {
  stroke-dasharray: 100;
}

.light-pill-border {
  position: relative;
}

.light-pill-border::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;

  background:
    radial-gradient(
        106.37% 282.8% at -3.82% -3.12%,
        rgba(21, 21, 21, 0.6) 0%,
        rgba(21, 21, 21, 0) 100%
      )
      /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */,
    radial-gradient(
        131.07% 260.49% at 0% 0%,
        rgba(107, 78, 255, 0.5) 0%,
        rgba(107, 78, 255, 0) 100%
      )
      /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */,
    radial-gradient(
      98.54% 262.92% at 1.46% 0%,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0) 100%
    ) !important
      /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.backdrop-blur-base {
  -webkit-backdrop-filter: blur(1rem);
  -moz-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
}
