/**
* This is a valid CSS file.
**/
.animated-gradient-text {
	background: linear-gradient(
        to right,
    	#5272ff 20%,
    	#7953cd 30%,
    	#0190cd 70%,
    	#5272ff 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;
}
@media (min-width: 1280px) {
    .xl\:max-w-3xl {
        max-width: 46rem !important;
    }
}
.bg-orange-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(82 114 255) !important;
}
.text-orange-900 {
    --tw-text-opacity: 1;
    color: rgb(82 114 255) !important;
}
.hover\:text-white:hover {
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
}
.bg-orange-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(124 193 255) !important;
}
.hover\:text-orange-900:hover {
    --tw-text-opacity: 1;
    color: rgb(12 66 255) !important;
}