/* Exclusive feature css */
.exclusive__scrolling-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex: 0 0 auto;
  }
  
  .exclusive__scrolling-item.scrolling--animated {
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-duration: var(--duration);
    animation-play-state: running;
    width: -moz-max-content;
    width: max-content;
    will-change: transform, width;
    animation-name: scrolling-left;
  }
  
  .exclusive__scrolling-item.scrolling--left-to--right.scrolling--animated {
    animation-name: scrolling-right;
  }


  .section__popup {
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.section__popup--inner {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
  max-width: 88rem;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 3rem;
  pointer-events: auto;
  border-radius: 4rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (min-width: 1200px) {
  .section__popup--inner {
      max-width: 100rem;
      padding: 6rem 5rem;
  }
}
@media only screen and (max-width: 991px) {
  .section__popup--inner {
      max-width: 95%;
  }
}
.section__popup--title{
  background: linear-gradient(90deg, #82f3aa 0%, #ffa909 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}