/*Css for animating svg in loop*/

.animated-svg {
  display: flex;
  justify-content: center;
}

#employees-01 {
  animation: 5s show infinite;
  animation-delay: 0s
}

#employees-02 {
  animation: 5s show infinite;
  animation-delay: 0.125s;
}

#employees-03 {
  animation: 5s show infinite;
  animation-delay: 0.25s;
}

#employees-04 {
  animation: 5s show infinite;
  animation-delay: 0.375s;
}

#employees-05 {
  animation-delay: 0.5s;
  animation: 5s showone linear infinite;
  transform-origin: 50% 50%;
}

#fundssupported-01 {
  animation: 5s show infinite;
  animation-delay: 0s
}

#fundssupported-02 {
  animation: 5s show infinite;
  animation-delay: 0.125s;
}

#fundssupported-03 {
  animation: 5s show infinite;
  animation-delay: 0.25s;
}

#fundssupported-04 {
  animation: 5s show infinite;
  animation-delay: 0.375s;
}

#fundssupported-05 {
  animation: 5s show infinite;
  animation-delay: 0.5s;
}

#fundssupported-06 {
  animation-delay: 0.625s;
  animation: 5s showone linear infinite;
  transform-origin: 50% 50%;
}

#whitelabels-01 {
  animation: 5s show infinite;
  animation-delay: 0s
}

#whitelabels-02 {
  animation: 5s show infinite;
  animation-delay: 0.125s;
}

#whitelabels-03 {
  animation: 5s show infinite;
  animation-delay: 0.25s;
}

#whitelabels-04 {
  animation: 5s show infinite;
  animation-delay: 0.375s;
}

#whitelabels-05 {
  animation: 5s show infinite;
  animation-delay: 0.5s;
}

#whitelabels-06 {
  animation: 5s show infinite;
  animation-delay: 0.625s;
}

#whitelabels-07 {
  animation-delay: 0.75s;
  animation: 5s showone linear infinite;
  transform-origin: 50% 50%;
}

#networkmembers-01 {
  animation: 5s show infinite;
  animation-delay: 0s
}

#networkmembers-02 {
  animation: 5s show infinite;
  animation-delay: 0.125s;
}

#networkmembers-03 {
  animation: 5s show infinite;
  animation-delay: 0.25s;
}

#networkmembers-04 {
  animation: 5s show infinite;
  animation-delay: 0.375s;
}

#networkmembers-05 {
  animation: 5s show infinite;
  animation-delay: 0.5s;
}

#networkmembers-06 {
  animation: 5s show infinite;
  animation-delay: 0.625s;
}

#networkmembers-07 {
  animation-delay: 0.75s;
  animation: 5s showone linear infinite;
  transform-origin: 50% 50%;
}


#platformassets-01 {
  animation: 5s show infinite;
  animation-delay: 0s
}

#platformassets-02 {
  animation: 5s show infinite;
  animation-delay: 0.125s;
}

#platformassets-03 {
  animation: 5s show infinite;
  animation-delay: 0.25s;
}

#platformassets-04 {
  animation: 5s show infinite;
  animation-delay: 0.375s;
}

#platformassets-05 {
  animation: 5s show infinite;
  animation-delay: 0.5s;
}

#platformassets-06 {
  animation: 5s show infinite;
  animation-delay: 0.625s;
}

#platformassets-07 {
  animation-delay: 0.75s;
  animation: 5s showone linear infinite;
  transform-origin: 50% 50%;
}


@keyframes show {
  0% { opacity: .5 }
  4% { opacity: .8}
  8% { opacity: 1}
  13% { opacity: 1}
  17% { opacity: 0}
  100% {opacity: 0}
}

@keyframes showone{
  0% { opacity: 0}
  21% { opacity: 0}
  26% { opacity: .5}
  30% { opacity: .6}
  34% { opacity: .8;}
  50%, 70% { opacity: 1;}
  70.33%, 100% { opacity: 1}
}
