.circular {
    display: grid;
    grid-auto-flow: column;
    font-family: Roboto;
    grid-gap: 5vw;
    justify-content: center;
    margin-top: 5vmin;
}

.circular .circular-chart {
    display: block;
    margin: auto;
    width: 20vmin;
    max-width: 150px;
}

.circular .single-chart {
    display: grid;
    position: relative;
}

.circular .circle-bg {
    fill: none;
    stroke-width: 3.8;
}

.circular .circle {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke-dasharray: 0, 100;
    transition: 2.5s all;
}

.active #circle1{
    stroke-dasharray: 90, 100;  
}
.active #circle2{
    stroke-dasharray: 85, 100;  
}
.active #circle3{
    stroke-dasharray: 80, 100;  
}
.active #circle4{
    stroke-dasharray: 85, 100;  
}


.circular .circular-chart .circle {
    stroke: rgba(85, 152, 181, 0.68);
}

.circular h1 {
    position: absolute;
    left: 0;
    bottom: -25px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    opacity: 0;
    transition: .4s all;
    pointer-events: none;
}

.circular .single-chart:hover h1 {
    opacity: 1;
}

.circular h2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    text-transform: uppercase;
    font-size: 13px;
    transition: .4s all;
    pointer-events: none;
}