#circularG{
    position:relative;
    width:70px;
    height:70px;
    margin-top:10%;
    margin-bottom: 10%;
    margin-left: auto;
    margin-right: auto;
}

.circularG{
    position:absolute;
    background-color:#bf0411;
    width:16px;
    height:16px;
    -moz-border-radius:11px;
    -moz-animation-name:bounce_circularG;
    -moz-animation-duration:0.8s;
    -moz-animation-iteration-count:infinite;
    -moz-animation-direction:linear;
    -webkit-border-radius:11px;
    -webkit-animation-name:bounce_circularG;
    -webkit-animation-duration:0.8s;
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-direction:linear;
    -ms-border-radius:11px;
    -ms-animation-name:bounce_circularG;
    -ms-animation-duration:0.8s;
    -ms-animation-iteration-count:infinite;
    -ms-animation-direction:linear;
    -o-border-radius:11px;
    -o-animation-name:bounce_circularG;
    -o-animation-duration:0.8s;
    -o-animation-iteration-count:infinite;
    -o-animation-direction:linear;
    border-radius:11px;
    animation-name:bounce_circularG;
    animation-duration:0.8s;
    animation-iteration-count:infinite;
    animation-direction:linear;
}

#circularG_1{
    left:0;
    top:28px;
    -moz-animation-delay:0.3s;
    -webkit-animation-delay:0.3s;
    -ms-animation-delay:0.3s;
    -o-animation-delay:0.3s;
    animation-delay:0.3s;
}

#circularG_2{
    left:7px;
    top:7px;
    -moz-animation-delay:0.4s;
    -webkit-animation-delay:0.4s;
    -ms-animation-delay:0.4s;
    -o-animation-delay:0.4s;
    animation-delay:0.4s;
}

#circularG_3{
    top:0;
    left:28px;
    -moz-animation-delay:0.5s;
    -webkit-animation-delay:0.5s;
    -ms-animation-delay:0.5s;
    -o-animation-delay:0.5s;
    animation-delay:0.5s;
}

#circularG_4{
    right:7px;
    top:7px;
    -moz-animation-delay:0.6s;
    -webkit-animation-delay:0.6s;
    -ms-animation-delay:0.6s;
    -o-animation-delay:0.6s;
    animation-delay:0.6s;
}

#circularG_5{
    right:0;
    top:28px;
    -moz-animation-delay:0.7s;
    -webkit-animation-delay:0.7s;
    -ms-animation-delay:0.7s;
    -o-animation-delay:0.7s;
    animation-delay:0.7s;
}

#circularG_6{
    right:7px;
    bottom:7px;
    -moz-animation-delay:0.8s;
    -webkit-animation-delay:0.8s;
    -ms-animation-delay:0.8s;
    -o-animation-delay:0.8s;
    animation-delay:0.8s;
}

#circularG_7{
    left:28px;
    bottom:0;
    -moz-animation-delay:0.9s;
    -webkit-animation-delay:0.9s;
    -ms-animation-delay:0.9s;
    -o-animation-delay:0.9s;
    animation-delay:0.9s;
}

#circularG_8{
    left:7px;
    bottom:7px;
    -moz-animation-delay:1s;
    -webkit-animation-delay:1s;
    -ms-animation-delay:1s;
    -o-animation-delay:1s;
    animation-delay:1s;
}

@-moz-keyframes bounce_circularG{
    0%{
    -moz-transform:scale(1)}

100%{
    -moz-transform:scale(.3)}

}

@-webkit-keyframes bounce_circularG{
    0%{
    -webkit-transform:scale(1)}

100%{
    -webkit-transform:scale(.3)}

}

@-ms-keyframes bounce_circularG{
    0%{
    -ms-transform:scale(1)}

100%{
    -ms-transform:scale(.3)}

}

@-o-keyframes bounce_circularG{
    0%{
    -o-transform:scale(1)}

100%{
    -o-transform:scale(.3)}

}

@keyframes bounce_circularG{
    0%{
    transform:scale(1)}

100%{
    transform:scale(.3)}

} 