/** Animation */
.animation-container-2 {position: relative;}

.animation-container-2 .circle{ 
    width: 100px;
    height:100px;
    border-radius:  50px;
    border: 2px dashed #FFF; 

}

.animation-container-2 .circle#circle-0 {
    z-index: 1; 
    width: 400px;
    height: 400px;
    border-radius:200px;
    position: absolute; 
    top: 20%;
    left: 40px;
    border: 0;
    background-color: #eb7c85;
}

.animation-container-2 .circle#circle-1 {
    z-index: 1; 
    position: absolute; 
    bottom: -50px; 
    right:5%;
}

.animation-container-2 .circle#circle-2 {
    z-index: 1; 
    position: absolute; 
    top: -20px; 
    left:10%;
    background-color: #a4daf1;
    border: 0;
}

.animation-container-2 .circle#circle-3 {
    z-index: 1; 
    position: absolute; 
    top: -10px; 
    left:50%;
}

.animation-container-2 .container {
    position: relative;
    z-index: 100;

} 



@media (max-width: 991px){
    .animation-container-2 .circle#circle-0 {
        width: 150px;
        height: 150px;
    }
}