.progress {
    height: 20px;
    position: relative;
    overflow: inherit;
    border: 1px solid;
}

.progress span {
    width: 100%;
    position: absolute;
    top: -25px;
    left: 0;
    display: flex;
    justify-content: space-between;
}

.progress .progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--bg-color);
    height: 18px;
    border-radius: 5px;
}

[data-aos="fillBar"] {
    width: 0px;
    -webkit-transition-property: -webkit-transform, width;
    -moz-transition-property: -moz-transform, width;
    transition-property: transform, width;
    transition-duration: 2.3s !important;
    -moz-transition-duration: 2.3s !important;
}

[data-aos="fillBar"].aos-animate {
    width: var(--width-fire);
}