.icon__gears__rotate path {
    /*animation*/
    animation-name: rotate;
    -webkit-animation-name: rotate;
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    transform-box: fill-box;
    transform-origin: center;
}

.icon__gears__rotate path:nth-child(1) {
    animation-direction: reverse;
}