@keyframes moveDown {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 0 40px, 0 40px;
    }
}

#industries {
    display: grid;      

    @media only screen and (max-width: 980px) {
        grid-template-columns: 1fr;         
    }  

    .col {
        overflow: hidden;
    }

    .item {
        display: grid;
        align-content: start;
        position: relative;

        .title {
            padding: 64px;
            color: #fff;

            @media only screen and (max-width: 980px) {
                padding: 40px 20px;              
            }               
        }

        .desc {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 10px;
            align-items: center;
            height: fit-content;
            color: #fff;

            i {
                font-size: 70%;
                color: var(--primary);
            }
        }


        .points {
            display: grid;

            .point {
                border-top: 1px solid rgba(255, 255, 255, 0.2);  
                padding: 30px;
                position: relative;
                display: flex;
                align-items: center;
                gap: 10px;
                line-height: 1;
                font-family: var(--font-heading);
                font-weight: var(--site-weight-heading);
                text-transform: uppercase;
                color: #fff;
                letter-spacing: 1px;
                font-size: 46px;
                transition: all 1s;

                span {
                    background-color: var(--primary);
                    color: transparent;
                    background-clip: text;
                }     

                &.is-intersect {

                }              
            }
        }           
    }
}