@media screen and (min-width: 1024px) {

    /**** TextColorAndUnderline ****/
    .hoverTextColorAndUnderline {
        position: relative;
    }
    .hoverTextColorAndUnderline {
        display: inline-block;
    }
    .hoverTextColorAndUnderline {
        background-image: linear-gradient( to right, var(--color__2), var(--color__2) 50%, #fff 50% );
        background-size: 200% 100%;
        background-position: -100%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        padding: 5px 0;
    }
    .hoverTextColorAndUnderline {
        transition: all 0.3s ease-in-out;
    }
    .hoverTextColorAndUnderline:before {
        content: '';
        display: block;
    }
    .hoverTextColorAndUnderline:before {
        position: absolute;
        bottom: -3px;
        left: 0;
    }
    .hoverTextColorAndUnderline:before {
        width: 0;
        height: 3px;
    }
    .hoverTextColorAndUnderline:before {
        background: var(--color__2);
    }
    .hoverTextColorAndUnderline:before {
        transition: all 0.3s ease-in-out;
    }
    .hoverTextColorAndUnderline:hover {
        background-position: 0;
    }
    .hoverTextColorAndUnderline:hover::before {
        width:100%;
    }

    /**** Underline ****/
    .hoverUnderline {
        width: fit-content;
    }
    .hoverUnderline:before {
        content: '';
        display: block;
    }
    .hoverUnderline:before {
        position: absolute;
        bottom: -6px;
        left: 0;
    }
    .hoverUnderline:before {
        width: 0;
        height: 2px;
    }
    .hoverUnderline:before {
        background: var(--color__2);
    }
    .hoverUnderline:before {
        transition: all 0.3s ease-in-out;
    }
    .hoverUnderline:hover {
        background-position: 0;
    }
    .hoverUnderline:hover::before {
        width: 100%;
    }

    /**** Spin ****/
    .hoverSpin:hover {
        animation: Spin 1s;
    }

    @keyframes Spin {
        0% {
            rotate: 0;
            scale: 1;
        } 50% {
            scale: 1.08;
        } to {
            rotate: 360deg;
            scale: 1;
        }
    }


}