/* Add this to your CSS file */
@media (max-width: 768px) {
    .kt-adv-heading974_a663c0-c4 {
        font-size: 24px; /* Adjust font size for mobile */
        text-align: center; /* Center the text */
        padding: 10px; /* Add padding for better spacing */
        line-height: 1.2; /* Adjust line height for readability */
    }

.blinking{

    animation:blinkingText 0.9s infinite;

}

@keyframes blinkingText{

    0%{     color: #f95e68;    }

    49%{    color: #000000; }

    60%{    color: #f95e68; }

    99%{    color:#f95e68;  }

    100%{   color: #000000;    }

}

