/* These are just a test styles - you don't need them in your project */


.circles {
  margin-bottom: -10px;
}

.circle {
  width: 100px;
  margin: 6px 6px 20px;
  display: inline-block;
  position: relative;
  text-align: center;
  line-height: 1.2;
}

.circle canvas {
  vertical-align: top;
  transform: rotate(90deg);
}

.circle strong {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 40px;
  font-size: 15px;
  color: #fff;
}


.circle span {
  display: block;
  color: #aaa;
  margin-top: 12px;
}




.circle {
  animation: bounce-in 2s ease infinite;
}
@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale(.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% { transform: scale(.9); }
  100% { transform: scale(1); }
}

@media (max-width: 575.98px) {
.item {
    display: inline-block;
    margin: 5px;
    width: 29.33%;
}
.circle {
    width: 100% !important;
}
.circle canvas {
    height: 100% !important;
    width: 100%  !important;
}
}