/* fs-team {} */

.accordion--item{
    color:#fff;
    transition: all .4s ease-in-out;

    svg{

        transition: all .4s ease-in-out;

        path{
            transition: all .4s ease-in-out;
        }
    }
    .line{
        transition: all .4s ease-in-out;
    }
    .icon{
        transition: all .4s ease-in-out;
    }
}

@media screen and (min-width:1024px){
    .accordion--item.active{
    
        color:#97E0AF;
    
        .icon{
            transform:rotate(45deg);
        }
    
        svg {
    
            path{
                fill:#97E0AF;
            }
    
        }
    
        .line{
            background-color:#97E0AF;
        }
    }
    
}