@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.digitalAgency {
  animation: rotate 5s linear infinite;
}

.cases_blur > div{
    background-color: rgba(255, 255, 255, 0.42)!important;
}



