#contenido {
    width: 100%;
    height: 450px;
    padding-top: 50px;
    background-image: url(/img/content/cover_02.svg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
}
#contenidocover {
    width: 100%;
    height: 450px;
    padding-top: 50px;
    background-image: url(/img/content/cover_02.svg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

.cogs { 
  width: 100%;  
  background-image: url(/img/content/bici-1.gif);    
  margin: auto;
  height: 400px;
  display: inline-block;
  position: absolute; 
  left: -300px;
  bottom: 30%;
  transform: rotate(6deg)
}
/* RUEDAS */

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

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

.cog * {
  -webkit-animation: rotate 2.2s infinite;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation-timing-function: linear;
}

.cog-opp * {
  -webkit-animation: rotate-opp 2s infinite;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation-timing-function: linear;
}


/* Pre-animation cycle */

progress {
  width: 0;
  display: none;
}

.cogs {
  margin-top: -80px;
  opacity: 0;
}


.cogs {
  /* Some layout code… */
  animation: xAxis 15s infinite ease-in;
}

.cogs::after {
  /* Render dot */
  animation: yAxis 6s infinite ease-out;
}

@keyframes xAxis {
  100% {
    animation-timing-function: ease-in;
    transform: translateX(1500px);
  }
}