.infograf {
    display: block;
    max-width: 610px;
    width: 100%;
    margin: 40px auto;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #111e73;
}

.infograf p {
    text-align: center;
}

.infograf .infograf-title {
    color: #111e73;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.infograf .infograf-subtitle {
    margin-bottom: 30px;
    font-size: 16px;
}

.progress-bar {
    position: relative;
    width: 100%;
    height: 40px;
    background-color: #d0efff;
    border-radius: 107px;
    border: 1px solid #111e73;
    margin-bottom: 20px;
    overflow: hidden;
}
.progress-bar:last-child {
    margin-bottom: 0px;
}

.progress-bar .progress-bar-inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 0%; /* старт з 0%, можна 10% якщо бажаєте */
    height: 40px;
    background-color: #111e73;
    border-radius: 107px;
    padding-right: 15px;
    text-align: right;
    color: #fff;
    font-size: 17px;
    line-height: 40px;
    font-weight: 600;
}

/* --- 100% --- */
.progress-bar-inner.prog-100 {
    -webkit-animation: progressBar100 2s ease-in-out forwards;
    -moz-animation: progressBar100 2s ease-in-out forwards;
}
@-webkit-keyframes progressBar100 {
    0%   { width: 0%; }
    100% { width: 100%; }
}
@-moz-keyframes progressBar100 {
    0%   { width: 0%; }
    100% { width: 100%; }
}

/* --- 95% --- */
.progress-bar-inner.prog-95 {
    -webkit-animation: progressBar95 2s ease-in-out forwards;
    -moz-animation: progressBar95 2s ease-in-out forwards;
}
@-webkit-keyframes progressBar95 {
    0%   { width: 0%; }
    100% { width: 95%; }
}
@-moz-keyframes progressBar95 {
    0%   { width: 0%; }
    100% { width: 95%; }
}

/* --- 90% --- */
.progress-bar-inner.prog-90 {
    -webkit-animation: progressBar90 2s ease-in-out forwards;
    -moz-animation: progressBar90 2s ease-in-out forwards;
}
@-webkit-keyframes progressBar90 {
    0%   { width: 0%; }
    100% { width: 90%; }
}
@-moz-keyframes progressBar90 {
    0%   { width: 0%; }
    100% { width: 90%; }
}

/* --- 85% --- */
.progress-bar-inner.prog-85 {
    -webkit-animation: progressBar85 2s ease-in-out forwards;
    -moz-animation: progressBar85 2s ease-in-out forwards;
}
@-webkit-keyframes progressBar85 {
    0%   { width: 0%; }
    100% { width: 85%; }
}
@-moz-keyframes progressBar85 {
    0%   { width: 0%; }
    100% { width: 85%; }
}

/* --- 80% --- */
.progress-bar-inner.prog-80 {
    -webkit-animation: progressBar80 2s ease-in-out forwards;
    -moz-animation: progressBar80 2s ease-in-out forwards;
}
@-webkit-keyframes progressBar80 {
    0%   { width: 0%; }
    100% { width: 80%; }
}
@-moz-keyframes progressBar80 {
    0%   { width: 0%; }
    100% { width: 80%; }
}

/* --- 75% --- */
.progress-bar-inner.prog-75 {
    -webkit-animation: progressBar75 2s ease-in-out forwards;
    -moz-animation: progressBar75 2s ease-in-out forwards;
}
@-webkit-keyframes progressBar75 {
    0%   { width: 0%; }
    100% { width: 75%; }
}
@-moz-keyframes progressBar75 {
    0%   { width: 0%; }
    100% { width: 75%; }
}

/* --- 70% --- */
.progress-bar-inner.prog-70 {
    -webkit-animation: progressBar70 2s ease-in-out forwards;
    -moz-animation: progressBar70 2s ease-in-out forwards;
}
@-webkit-keyframes progressBar70 {
    0%   { width: 0%; }
    100% { width: 70%; }
}
@-moz-keyframes progressBar70 {
    0%   { width: 0%; }
    100% { width: 70%; }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .infograf {
        padding: 20px 15px;
        margin: 30px auto;
    }
    .infograf .infograf-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .infograf .infograf-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .infograf p {
        margin-bottom: 10px;
    }
    .progress-bar, .progress-bar .progress-bar-inner {
        height: 30px;
    }
    .progress-bar .progress-bar-inner {
        line-height: 30px;
        font-size: 14px;
    }
}