.header{
    margin-bottom: 35px;
    display: flex;
    justify-content: center;
}

.header ul{
    display: flex;
}

.header ul li{
    margin-right: 50px;
    position: relative;
}

.header ul li:last-child{
    margin-right: 0;
}

.header ul li:before{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 55px;
    width: 100%;
    height: 2px;
    background: var(--secondary);
}

.header ul li:last-child:before{
    display: none;
}

.header ul li div{
    padding: 5px;
    border-radius: 50%;
}

.header ul li p{
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--white);
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
}

.header ul li p a{
    color: var(--white);
}

.header ul li.active:before{
    background: var(--primary);
}

.header ul li.active p{
    background: var(--primary);
}

.header ul li.active p a{
    color: var(--white);
}

.header ul li.success:before{
    background: var(--success);
}

.header ul li.success p{
    background: var(--success);
}

.header ul li.activeSuccess p a{
    color: var(--white);
}
