.mask-block-bottom {
    -webkit-mask-image: linear-gradient(
    to bottom,
    hsla(0, 0%, 0%, 0),
    hsl(0, 0%, 0%) 0%,
    hsl(0, 0%, 0%) 100%,
    hsla(0, 0%, 0%, 0)
  );
  mask-image: linear-gradient(
    to bottom,
    hsla(0, 0%, 0%, 0),
    hsl(0, 0%, 0%) 0%,
    hsl(0, 0%, 0%) 70%,
    hsla(0, 0%, 0%, 0)
  );
}
/* fix logo height */
.store-header .logo-light,
.store-header .dark-logo {
  width: auto!important;
  height: 3rem!important;
}
.store-footer .logo-light,
.store-footer .dark-logo {
  width: auto!important;
  height: 6rem!important;
}
.glow-text .angel-typing-container, .glow-text .hero-slider-subtitle span {
   text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  }
  
.xl-text h3{
  font-size: 1.5rem;
  line-height: 2.5rem;
  animation: textGlow 2s ease-in-out infinite;

}
.xl-text .text-wrapper a{
  border-radius: 15px;
}
.xl-text .text-wrapper a span{
  font-size: .8rem}


@keyframes textGlow {
    0%, 100% { 
        text-shadow: 0 0 0 rgba(74, 117, 244, 0.3);
    }
    50% { 
        text-shadow: 0 0 8px rgba(74, 117, 244, 0.6); 
    }
}