:root {
  font-size: 62.5%;
}

.backend a {
  pointer-events: none !important;
}

.block-animation-home svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
@media screen and (max-width: 781px) {
  .block-animation-home svg {
    max-width: 250px;
    margin: 50px auto;
  }
}
.block-animation-home svg > .background {
  transform-origin: center;
  animation: rotate-ccw 30s linear infinite;
}
.block-animation-home svg > .inner-square {
  transform-origin: center;
  animation: rotate-ccw 40s linear infinite;
}
.block-animation-home svg > .diamond {
  transform-origin: center;
  animation: rotate-cw 35s linear infinite;
}

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