/**
* This is a valid CSS file.
**/
.animated-gradient-text {
	background: linear-gradient(
        to right,
    	#f27038 20%,
    	#7953cd 30%,
    	#0190cd 70%,
    	#f27038 80%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    background-size: 500% auto;
    animation: textShine 5s ease-in-out infinite alternate;
}

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

.image-shadow {
    filter: brightness(1) invert(1);
}

/* WhatsApp Chatbot */
.whatapp-chatbot {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.whatapp-chatbot-icon {
    margin: 15px;
}