/* utility */
html.sr .load-hidden {
  visibility: hidden;
}
/* 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));
}
.pcard {
  opacity: 0;
  animation: cardAnimation 15s ease-out infinite;
  animation-delay: calc(1s * var(--delay));
}
@keyframes cardAnimation {
  0%,
  20% {
    opacity: 1;
  }
  21%,
  100% {
    opacity: 0;
  }
}
@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-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;
}
@media (min-width: 1024px) {
  .primary-button-nav {
    padding: 8px 19px;
    font-size: 16px;
  }
  .primary-button,
  .secondary-button {
    padding: 15px 23px;
    font-size: 18px;
  }
}
.secondary-button:hover {
  box-shadow: rgba(80, 63, 205, 0.5) 0px 1px 40px;
}
.primary-button:hover,
.primary-button-nav:hover {
  box-shadow: 0px 4px 40px 0px rgba(107, 78, 255, 0.6);
}
#right-left-cards {
  animation: right-left 120s infinite;
  animation-timing-function: linear;
}
#left-right-cards {
  animation: left-right 120s infinite;
  animation-timing-function: linear;
}
#testimonials-parent:hover div {
  animation-play-state: paused;
}
@keyframes right-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

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

#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;

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

.gradient-video-outer {
  background: radial-gradient(
    283.91% 140.04% at 0% 1.97%,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  backdrop-filter: blur(21px);
}

.gradient-video-outer::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  background:
    radial-gradient(
        98.54% 262.92% at 0% 0%,
        rgba(21, 21, 21, 0.2) 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(
        100% 266.82% at 0% 2.79%,
        rgba(107, 78, 255, 0.05) 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.2) 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;
}

.integration-gradient::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;
}

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

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

  backdrop-filter: blur(21px);
}

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

.country-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 12px;
  background: linear-gradient(
    295.36deg,
    rgba(55, 52, 69, 0.7) -44.34%,
    rgba(55, 52, 69, 0.693) 82.97%
  );
  color: #b8b4c5;
}

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

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

.checkmark-check {
  stroke-dasharray: 80px 80px;
  stroke-dashoffset: -80px;
  /* -webkit-animation: checkAnimate 1s forwards
    cubic-bezier(0.895, 0.03, 0.685, 0.22);
  animation: checkAnimate 1s forwards cubic-bezier(0.895, 0.03, 0.685, 0.22); */
}

.testimonial-heading {
  display: none !important;
}

@keyframes checkAnimate {
  0% {
    stroke-dashoffset: -80px;
  }
  100% {
    stroke-dashoffset: 0px;
  }
}

/* #opportunity-list-container:nth-child(3) {
  display: flex;
} */

.opportunity-item {
  width: auto;
}

@media (min-width: 1024px) {
  .opportunity-item {
    width: 19rem;
  }
}

@media (min-width: 1280px) {
  .opportunity-item {
    width: 24rem;
    padding: 38px 44px;
  }
}

@media (min-width: 1024px) {
  #opportunity-list-container > div:last-child {
    display: none;
  }
}

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

@media screen and (min-width: 640px) {
  .professional-testimonial-heading {
    font-size: 2.75rem;
    line-height: 3.125rem;
  }
}

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

@media screen and (min-width: 1024px) {
  .professional-testimonial-heading {
    font-size: 3.5rem;
    line-height: 4.5rem;
    max-width: 896px;
  }
}
