@keyframes bg-position {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

a, ul, li, div, input, button, select, h1, h2, h3, h4, h5, img, ::after, ::before {
    transition: all 0.3s ease 0s !important;
    text-decoration: none;
    color: inherit;
}

.animate-background-position {
    animation: bg-position 5s ease infinite !important;
}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

