/***
=============================================
Sliding Text One
=============================================
***/
.sliding-text-one {
    position: relative;
    display: block;
    padding: 106px 0 102px;
    z-index: 4;
}

.sliding-text-one__wrap {
    position: relative;
    display: block;
}

.sliding-text-one__list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-wrap: nowrap;
    width: fit-content;
}

.sliding-text-one__list li {
    position: relative;
    display: block;
    float: left;
    margin-right: 15px;
}

.sliding-text-one__title {
    /* Restored the original hollow text-stroke outline effect (the
       solid-fill swap removed the animated character entirely, which
       was the wrong fix -- flattening the effect instead of fixing
       the actual letterform glitch). The glitch itself was Montserrat
       -- a geometric sans -- rendering oddly on rounded closed
       letterforms (d/o/p) at this stroke width. Switched this one
       element to Playfair Display Italic instead of Montserrat: the
       brand guide already specifies Playfair for exactly this kind of
       decorative/tagline display text, not Montserrat, and its more
       traditional serif curves should behave better with text-stroke
       than a geometric sans does. */
    position: relative;
    display: flex;
    align-items: center;
    color: transparent;
    -webkit-text-stroke: 2px rgba(var(--donatix-base-rgb), 1.0);
    font-size: 84px;
    line-height: 94px;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    font-style: italic;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sliding-text-one__list li:hover .sliding-text-one__title {
    -webkit-text-stroke: 2px var(--donatix-base);
}

.sliding-text-one__title:before {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    color: var(--donatix-base);
    white-space: nowrap;
    content: attr(data-hover);
    transition: all 0.5s cubic-bezier(0.17, 0.67, 0.32, 0.87);
}

.sliding-text-one__list li:hover .sliding-text-one__title:before {
    width: 100%;
    color: var(--donatix-base);
}

.sliding-text-one__title.style2 {
    color: var(--donatix-black);
    -webkit-text-stroke: 2px rgba(var(--donatix-black-rgb), 1.0);
}

.sliding-text-one__title.style2:before {
    color: var(--donatix-black);
}

.sliding-text-one__title img {
    margin-left: 15px;
    position: relative;
    width: auto;
    animation: textRotate 10s linear 0s forwards infinite alternate;
}

@keyframes textRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/***
=============================================
Sliding Text Two
=============================================
***/
.sliding-text-one--two {
    position: relative;
    display: block;
    padding-top: 0px;
}