.header {
    width: 100%;
    height: 148px;
    display: flex;
    justify-content: space-between;
}

h1 {
    padding: 50px;
}

.progres {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.progres__text__wrapper{
    display: flex;
    justify-content: space-between;
}

.progres__bar, .progres__bar__active {
    background: #E6E9ED;
    width: 235px;
    height: 5px;
    border-radius: 4px;
    transition: 0.8s ease;
}

.progres__bar__active {
    transition: 0.8s ease;
    background: #5051F9;
}