/* h1:hover {
    color: #9bc6ba; */
/* animation: animate 0.6s; */
/* } */

/* @keyframes animate {
    25% {
        transform: scale(0.8, 1.3);
    }

    50% {
        transform: scale(1.1, 0.8);
    }

    75% {
        transform: scale(1.1, 0.8);
    }
} */

/* .table-column:hover {
    transform: scale(1.2);
    transition: all 0.3s ease; */
/* box-shadow: #141921; */

/* } */

/* #hero-text h2 {
    position: relative;
    font-family: 'VTF Redzone Classic-Oblique';
    font-size: 50%;
    width: 100%;
    text-align: center;
    line-height: 90%;
    color: white;
    overflow: hidden;
    background: linear-gradient(90deg, #F15A22, #fff, #F15A22);
    background-repeat: no-repeat;
    background-size: 80%;
    animation: animate 4s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

@keyframes animate {
    0% {
        background-position: -300%;
    }

    100% {
        background-position: 300%;
    }
} */

#hero-text p {

    position: relative;
    font-family: 'VTF Redzone Classic-Oblique';
    font-size: 100%;
    width: 100%;
    text-align: center;
    line-height: 90%;
    color: white;
    margin: 0 auto;
    /* text-shadow: 0 0 80px rgba(255, 255, 255, .5); */

    /* Clip Background Image */

    background: url(https://i.ibb.co/RDTnNrT/animated-text-fill.png) repeat-y;
    -webkit-background-clip: text;
    background-clip: text;

    /* Animate Background Image */

    -webkit-text-fill-color: transparent;
    animation: aitf 50s linear infinite;
    -webkit-animation: aitf 50s linear infinite;

    /* Activate hardware acceleration for smoother animations */

    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

}

/* Animate Background Image */
@keyframes aitf {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@-webkit-keyframes aitf {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}


/* .deconstructed {
    position: relative;
    margin: auto;
    height: 0.80em;
    color: transparent;
    font-family: 'VTF Redzone Classic-Oblique';
    font-size: 3vw;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.03em;
}

.deconstructed>div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: white;
    pointer-events: none;
}

.deconstructed>div:nth-child(1) {
    -webkit-mask-image: linear-gradient(black 25%, transparent 25%);
    mask-image: linear-gradient(black 25%, transparent 25%);
    animation: deconstructed1 5s infinite;
}

.deconstructed>div:nth-child(2) {
    -webkit-mask-image: linear-gradient(transparent 25%, black 25%, black 50%, transparent 50%);
    mask-image: linear-gradient(transparent 25%, black 25%, black 50%, transparent 50%);
    animation: deconstructed2 5s infinite;
}

.deconstructed>div:nth-child(3) {
    -webkit-mask-image: linear-gradient(transparent 50%, black 50%, black 75%, transparent 75%);
    mask-image: linear-gradient(transparent 50%, black 50%, black 75%, transparent 75%);
    animation: deconstructed3 5s infinite;
}

.deconstructed>div:nth-child(4) {
    -webkit-mask-image: linear-gradient(transparent 75%, black 75%);
    mask-image: linear-gradient(transparent 75%, black 75%);
    animation: deconstructed4 5s infinite;
}

@keyframes deconstructed1 {
    0% {
        transform: translateX(100%);
    }

    26% {
        transform: translateX(0%);
    }

    83% {
        transform: translateX(-0.1%);
    }

    100% {
        transform: translateX(-120%);
    }
}

@keyframes deconstructed2 {
    0% {
        transform: translateX(100%);
    }

    24% {
        transform: translateX(0.5%);
    }

    82% {
        transform: translateX(-0.2%);
    }

    100% {
        transform: translateX(-125%);
    }
}

@keyframes deconstructed3 {
    0% {
        transform: translateX(100%);
    }

    22% {
        transform: translateX(0%);
    }

    81% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-130%);
    }
}

@keyframes deconstructed4 {
    0% {
        transform: translateX(100%);
    }

    20% {
        transform: translateX(0%);
    }

    80% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-135%);
    }
} */