

.careers__img-area .outer {
    animation: rotation-cw 25s infinite linear;
}

.careers__img-area .outer .person-icon{
    animation: rotation-countercw  25s infinite linear;
}


.careers__img-area .inner {
    animation: rotation-countercw 25s infinite linear;
}

.careers__img-area .inner .person-icon-inner{
    animation: rotation-cw  25s infinite linear;
}

img.powering__img{
    animation: rotation-cw 25s infinite linear;
}


@keyframes rotation-cw {
    from {
        transform: rotate(0deg) ;
    }
    to {
        transform: rotate(359deg);
    }
}

@keyframes rotation-countercw {
    from {
        transform: rotate(0deg) ;
    }
    to {
        transform: rotate(-359deg);
    }
}

/*AOS Animations
======================================*/
[data-aos=example-anim1] {
    transform: skewX(45deg);
    opacity: 0;
    transition-property: transform, opacity;
  }
  [data-aos=example-anim1].aos-animate {
    transform: skewX(0);
    opacity: 1;
  }
/* Home Page-------------*/

/*herogradientblock*/
  [data-aos=herogradientblock] {
    top: 18px;
    transition-property: top;
  }
  [data-aos=herogradientblock].aos-animate {
    top: -30px;
  }

