img {
    pointer-events: none !important;
}

@keyframes stroke {
	0%   {
		stroke-dashoffset: 10%;
		stroke-dasharray: 0 50%;
	}
	100% {
		stroke-dashoffset: -10%;
		stroke-dasharray: 50% 0;
	}
}

@keyframes shining {
    0% {
        background-position:80% 20%;
    }
    
    100% {
        background-position: 20% 80%;
    }
}

.animatedHeading.draw.animationActive svg{
    animation: 2s stroke linear;
    animation-timing-function: ease-out;
    animation-fill-mode:forwards;
}

.animatedHeading.shine.animationActive :is(h1,h2,h3,h4,h5,h6) {
    animation: 3s shining;
    transition-timing-function: cubic-bezier(0.100, 0.555, 0.100, 0.955); /* custom */
    animation-direction: alternate;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
}

.animatedHeading.shine :is(h1,h2,h3,h4,h5,h6) {
    background: linear-gradient(45deg, var(--e-global-color-primary),var(--e-global-color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: cover;
  background-position: 80% 20%;
  display: inline-block;
  font-weight: 900;
}

html, body {
    overflow-x: hidden !important;
}

::-moz-selection { /* Code for Firefox */
  color: white;
  fill: white;
  stroke: white;
  background: var(--e-global-color-primary);
}

::selection {
  color: white;
  stroke: white;
  fill:white;
  background: var(--e-global-color-primary);
}

.uael-offcanvas-menu-item[href="#"], .uael-offcanvas-sub-menu-item[href="#"] {
    pointer-events: none;
}

.menu-item {
    cursor: pointer !important;
}

@media (max-width: 767px) {
    .asw-menu-btn {
        bottom: 50px !important;
    }
}