    /* Start Progress */
     #progresses{
            width: 50px;
            height: 50px;
            background-color: steelblue;
            border-radius: 50%;
            box-shadow: 0 0  5px rgba(0,0,0,0.2);

            position: fixed;
            left: 20px;
            bottom: 20px;
            display: grid;
            place-items: center;
            z-index: 10;
        }

        #progressvalues{
            width: calc(100% - 10px);
            height: calc(100% - 10px);
            background-color: #fff;
            border-radius: 50%;
            font-weight: bold;
            display: grid;
            place-items: center;
        } 


        .hero-section:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, .15);
            z-index: 1;
        }
            .hero-section {
                /* margin-top: 6rem; */
                position: relative;       
                background-image: url(../images/banner.png);
                background-size: cover;
                background-position: 50%;
                height: 40vh;
                color: #fff;
                display: flex;
                align-items: center;
                justify-content: center;        
            }
        
            .hero-section h1 {
            position: relative;
            z-index: 2;
            text-shadow: 5px 5px skyblue;
            font-size: 4rem;
            margin-bottom: 1rem;
            }