/*
Name: 			Examples - Text Background Clip Animation
Written by: 	Okler Themes - (http://www.okler.net)
Theme Version:	13.1.0
*/
.text-bg-clip-animation {
        font-size: 230px;
        line-height: 200px;
        font-weight: bolder;
        color: #000;
        margin: 0;
        text-align: center;
        background-size: 40%;
        background-position: 50% 50%;
        background-clip: text;
        -webkit-background-clip: text;
        color: rgba(0, 0, 0, 0.08);
}

@media (max-width: 1200px) {
        .text-bg-clip-animation {
                /* Sostituito il valore fisso con un font fluido basato sulla larghezza dello schermo (vw) */
                font-size: 42vw;
                line-height: 1.1;
        }
}

.text-bg-clip-animation.appear-animation-visible {
        animation: textBgZoom 10s ease 500ms forwards;
}

@keyframes textBgZoom {
		from {
				background-size: 40%;
		}
		to {
				background-size: 10%;
		}
}
