.hero-chart .ct-area {
    stroke: none;
    fill-opacity: .1;
}

.hero-chart .ct-series-a {
    opacity: 1;
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
}

.ct-series-a .ct-line {
    stroke: #2C99FF;
    opacity: .25;
    stroke-width: 4px;
    fill: none;
    -webkit-animation: dash 60s linear forwards;
    animation: dash 60s linear forwards;
}

.ct-series-a .ct-circle {
    stroke-width: 3px;
    stroke-miterlimit: 10;
    stroke: #2C99FF;
    stroke-opacity: .25;
    fill: #E0F0FF;
}

.ct-series-b .ct-circle {
    stroke-width: 3px;
    stroke-miterlimit: 10;
    stroke: #20C997;
    stroke-opacity: .25;
    fill: #DEF7F0;
}

.ct-series-a .ct-area,
.ct-series-a .ct-slice-donut-solid,
.ct-series-a .ct-slice-pie {
    fill: #2C99FF;
    fill-opacity: .1;
}

.ct-series-b .ct-line{
    stroke: #20C997;
    opacity: .25;
    stroke-width: 4px;
    fill: none;
    stroke-dashoffset: 1000;
    stroke-dasharray: 10;
    -webkit-animation: dash 60s linear forwards;
    animation: dash 60s linear forwards;
}

.ct-series-b .ct-area,
.ct-series-b .ct-slice-donut-solid,
.ct-series-b .ct-slice-pie {
    fill: #20C997;
    fill-opacity: .1;
}

.ct-series-b .ct-area {
    opacity: .3;
}


/* here edit */
.hero-chart {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    opacity: 1;
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
}

@-webkit-keyframes dash{to{stroke-dashoffset:0}}@keyframes dash{to{stroke-dashoffset:0}}