

.fade-mask {
    mask-image: none;
    -webkit-mask-image: none;
}

@media (min-width: 768px) {
    .fade-mask {
         mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0));
         -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0));
    }
}

@keyframes slide-progress {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.animate-slide-progress {
    animation: slide-progress 5s linear forwards;
}

.justify-fix {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    word-break: break-word;
    overflow-wrap: break-word;
    letter-spacing: -0.015em;
    word-spacing: -0.05em;
}