.circular-gradient {
  background: radial-gradient(
    80.07% 132.7% at 50.15% 130.68%,
    rgba(60, 60, 60, 0.12) 30.84%,
    rgba(191, 191, 191, 0.1425) 49.04%,
    rgba(60, 60, 60, 0) 80.07%
  );
  opacity: 0.6;
  position: relative;
}

@media screen and (min-width: 640px) {
  .circular-gradient {
    background: radial-gradient(
      55.34% 104% at 50.29% 97.75%,
      rgba(60, 60, 60, 0.12) 30.84%,
      rgba(191, 191, 191, 0.1425) 49.04%,
      rgba(60, 60, 60, 0) 80.07%
    );

    opacity: 0.6;
    position: relative;
  }
}

@media screen and (min-width: 1280px) {
  .circular-gradient {
    background: radial-gradient(
      35.98% 104% at 50.29% 97.75%,
      rgba(60, 60, 60, 0.12) 30.84%,
      rgba(191, 191, 191, 0.1425) 49.04%,
      rgba(60, 60, 60, 0) 80.07%
    );
    opacity: 0.6;
    position: relative;
  }
}

.circular-gradient-bottom-line {
  margin: 0 auto;
  height: 1px;
  background: radial-gradient(
    166.44% 296.42% at 0% -14.35%,
    rgba(7, 7, 7, 0.201563) 0%,
    rgba(255, 255, 255, 0.132) 41.67%,
    rgba(255, 255, 255, 0.132) 66.15%,
    rgba(7, 7, 7, 0.090625) 100%
  );
}

/* 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;
  }
}

.shadow-overlap {
  background: linear-gradient(180deg, rgba(7, 7, 7, 0) -8.04%, #070707 112.5%);
}

@media screen and (min-width: 1024px) and (min-height: 1050px) {
  #why-cleverx-section {
    height: calc((100dvh - 68px) * 4);
  }

  #why-cleverx-section-inner {
    height: calc(100dvh - 68px);
  }

  #why-cleverx-section-cards-wrapper {
    height: fit-content;
    padding-top: 68px;
  }
}

@media screen and (min-width: 1024px) and (min-height: 800px) and (max-height: 1049px) {
  #why-cleverx-section-cards-wrapper {
    height: calc((100dvh - 68px) * 4);
  }

  #why-cleverx-section-cards {
    min-height: calc(100dvh - 68px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 68px;
  }
}

@media screen and (min-width: 1024px) and (min-height: 800px) {
  /* why-cleverx-card first card should have margin-top of 64px. rest all cards should have position absolute and opacity 0 */
  .why-cleverx-card:not(:first-child) {
    position: absolute;
    opacity: 0;
  }
}

@media screen and (min-width: 1024px) and (max-height: 799px) {
  .why-cleverx-card:first-child {
    margin-top: 64px;
  }
}
