
  .circles {
    width: 80px;
    height: 80px;
  }
  .circles > div {
    position: relative;
    width: 80px;
    height: 80px;
  }
  .circles .circle {
    position: absolute;
    border-radius: 50%;
  }
  .circles .circle-1 {
    top: 15px;
    left: 0;
    width: 16px;
    height: 16px;
  }
  .circles .circle-2 {
    top: 0;
    left: 30px;
    width: 26px;
    height: 26px;
  }
  .circles .circle-3 {
    top: 35px;
    left: 10px;
    width: 50px;
    height: 50px;
  }

  .green-circles {
    z-index: 0;
  }
  .green-circles .circle {
    background: -o-linear-gradient(45deg, #1a8c84 0%, #7cd2f5 100%);
    background: linear-gradient(45deg, #1a8c84 0%, #7cd2f5 100%);
  }

  .white-circles .circle {
    background-color: white;
  }

  .big-graph {
    width: 100%;
  }
  .big-graph .circle-1 {
    top: 35px;
    left: 7px;
    width: 22px;
    height: 22px;
  }
  .big-graph .circle-2 {
    top: 0;
    left: 50px;
    width: 46px;
    height: 46px;
  }
  .big-graph .circle-3 {
    top: 50px;
    left: 10px;
    width: 100px;
    height: 100px;
  }
  .interval .bottom-graph {
    top: 540px;
    right: -60px;
  }

  .page .graph {
    z-index: -1;
    opacity: 0.6;
  }

  .owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
            animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
  }
