.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  transform: translate(-50%,-50%);
  width: 200px;
}

.anim {
	position: relative;
	margin: 0px;
	width: 23%;
	height: 442px;
}

.globo {
	animation: spin 3s linear infinite;
	animation-delay: 2s;
	transform-origin: 50% 50%;
	width: 433px;
	z-index: 0;
	position: absolute;
}

.mcw {
	animation: toleft 3s ease infinite;
	animation-delay: 2s;
	transform-origin: 50% 50%;
	width: 625px;
	margin-top: 197px;
	margin-left: 186px;
	z-index: 1;
	position: absolute;
}

.solucoes {
	animation: toup 3s ease infinite;
	animation-delay: 2s;
	transform-origin: 50% 50%;
	width: 578px;
	margin-top: 381px;
	margin-left: 168px;
	z-index: 1;
	position: absolute;
}

@keyframes spin{
	0% {
    transform: rotate(0deg);
  }
  70% {
    transform: rotate(-360deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes zoom {
   from {
      width: 100px; 
      background: black;
   }
   to { 
     background: yellow;
      width: 200px;
   }
}

.teste{
	margin-right: 100%;
}

@keyframes toleft {
  0% {
    margin-left: 450px;
  }
  70% {
    margin-left: 186px;
  }
  100% {
    margin-left: 186px;
  }
}

@keyframes toup {
  0% {
    margin-top: 450px;
  }
  70% {
    margin-top: 381px;
  }
  100% {
    margin-top: 381px;
  }
}