.hero-logo {
    -webkit-filter: drop-shadow(0px 0px 5px #0000005e);
    filter: drop-shadow(0px 0px 5px #0000005e)
}

.hero-bottom-image{
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.animate-pricing{
    scale: 1.5;
    animation: rotate 1.5s infinite linear;
}

.hero-hashtag{
    -webkit-text-fill-color: white;
    -webkit-text-stroke: 0.1px #fff;
    font-weight: 900;
    color: white;
}

.hero-bottom-hashtag{
    animation: rotateLine 16s infinite linear;
}

.hero-bottom-hashtag-back{
    animation: rotateLine 16s infinite linear;
}

@keyframes rotateLine{
    0%{
        transform: translate(0);
    }
    100%{
        transform: translate(-100%);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}