r

/*--- Start progress bar --- */
.process-wrapper {
    margin: auto;
    max-width: 1080px;
    height: 80vh;
    padding: 20px 0;
    position: relative;
}

#progress-bar-container {
    position: relative;
    width: 90%;
    margin: auto;
    height: 100px;
    margin-top: 65px;
}

div.discovery {
    left: 3%;
}


div.strategy {
    width: 300px;
    left: 22%;

}

div.creative {

    left: 42%;

}

div.production {
    left: 62%;
}

div.analysis {
    left: 82%;
}

@media screen and (max-width:1200px) {
    div.discovery {
        left: -8%;
    }


    div.strategy {
        width: 300px;
        left: 14%;

    }

    div.creative {

        left: 34%;

    }

    div.production {
        left: 54%;
    }

    div.analysis {
        left: 71%;
    }
}

div.discovery,
div.strategy,
div.creative,
div.production,
div.analysis {
    position: relative;
    width: 250px;
    background-color: #f3f3f3;
}

#progress-bar-container ul {
    padding: 0;
    margin: 0;
    padding-top: 15px;
    z-index: 10;
    position: absolute;
    width: 100%;
    margin-top: -40px
}

#progress-bar-container li:before {
    content: " ";
    display: block;
    margin: auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: solid 2px #aaa;
    transition: all ease 0.3s;
}

#progress-bar-container li.active:before,
#progress-bar-container li:hover:before {
    border: solid 2px #444;
}

#progress-bar-container li {
    list-style: none;
    float: left;
    width: 20%;
    text-align: center;
    color: #aaa;
    text-transform: uppercase;
    font-size: 11px;
    cursor: pointer;
    font-weight: 700;
    transition: all ease 0.2s;
    vertical-align: bottom;
    height: 60px;
    position: relative;
}

#progress-bar-container li .step-inner {
    position: absolute;
    width: 100%;
    bottom: 0;
}

#progress-bar-container li.active,
#progress-bar-container li:hover {
    color: #444;
}

#progress-bar-container li:after {
    content: " ";
    display: block;
    width: 20px !important;
    height: 20px !important;
    background: #777;
    margin: auto;
    border: solid 7px #fff;
    border-radius: 50%;
    margin-top: 40px;
    box-shadow: 0 2px 13px -1px rgba(0, 0, 0, 0.3);
    transition: all ease 0.2s;
}

#progress-bar-container li:hover:after {
    background: #555;
}

#progress-bar-container li.active:after {
    background: #e9a073;
}

#progress-bar-container #line {
    width: 80%;
    margin: auto;
    background: #eee;
    height: 6px;
    position: absolute;
    left: 10%;
    top: 57px;
    z-index: 1;
    border-radius: 50px;
    transition: all ease 0.9s;
}

#progress-bar-container #line-progress {
    content: " ";
    width: 3%;
    height: 100%;
    background: #e9a073;
    background: -moz-linear-gradient(left, #e9a073 0%, #e9a073 100%);
    background: -webkit-linear-gradient(left, #e9a073 0%, #e9a073 100%);
    background: linear-gradient(to right, #e9a073 0%, #e9a073 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#207893', endColorstr='#2ea3b7', GradientType=1);
    position: absolute;
    z-index: 2;
    border-radius: 50px;
    transition: all ease 0.9s;
}

#progress-content-section {
    width: 90%;
    height: 50%;
    margin: auto;
    /* background: #f3f3f3; */
    border-radius: 4px;
}

@media screen and (max-width:480px) {
    #progress-content-section {
        height: 0 !important;
    }
}

#progress-content-section .section-content {
    padding: 30px 40px;
    text-align: center;
}

#progress-content-section .section-content h2 {
    font-size: 17px;
    text-transform: uppercase;
    color: #333;
    letter-spacing: 1px;
}

#progress-content-section .section-content p {
    font-size: 15px;
    line-height: 1.8em;
    color: #777;
}

#progress-content-section .section-content {
    display: none;
    animation: FadeInUp 700ms ease 1;
    animation-fill-mode: forwards;
    transform: translateY(15px);
    opacity: 0;
}

#progress-content-section .section-content.active {
    display: block;
}

@keyframes FadeInUp {
    0% {
        transform: translateY(15px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}