.progress-container {
    width: 80%;
    max-width: 37.5rem;
    background-color: #e0e0e0;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 3px 3px -3px #00000070, 0 3px 4px 0px #00000040, 0 1px 8px 0px #00000030;
    margin: 10rem auto 0 auto;
}

.progress-bar {
    height: 1.875rem;
    width: 0;
    background-color: #4caf50;
    text-align: center;
    line-height: 1.875rem;
    color: white;
    border-radius: 25px;
    transition: width 0.2s;
}


@media (max-width: 1440px) {
    .progress-container {
        max-width: 35rem;
        margin-top: 1.125rem;
    }
    .progress-bar {
        height: 1.75rem;
        line-height: 1.75rem;
    }
}

@media (max-width: 1024px) {
    .progress-container {
        width: 85%;
        max-width: 32.5rem;
        margin-top: 1rem;
    }
    .progress-bar {
        height: 1.625rem;
        line-height: 1.625rem;
    }
}

@media (max-width: 768px) {
    .progress-container {
        width: 90%;
        max-width: 30rem;
        margin-top: 0.875rem;
    }
    .progress-bar {
        height: 1.5rem;
        line-height: 1.5rem;
    }
}

@media (max-width: 480px) {
    .progress-container {
        width: 95%;
        max-width: 27.5rem;
        margin-top: 0.75rem;
    }
    .progress-bar {
        height: 1.375rem;
        line-height: 1.375rem;
    }
}

@media (max-width: 375px) {
    .progress-container {
        width: 100%;
        max-width: 25rem;
        margin-top: 0.625rem;
    }
    .progress-bar {
        height: 1.25rem;
        line-height: 1.25rem;
    }
}
