.header {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: sticky;
    top: 0;
    background-color: white;
    height: 100px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 999
}

.logo-bg {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding: 0 24px;
    z-index: 999999
}

.logo-bg > svg,
.logo-bg > img {
    height: 70px;
    width: auto;
    display: block
}

.steps {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    position: absolute;
    left: 50%;
    gap: 16px;
    transform: translateX(-50%)
}

.step {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 10px 10px 5px;
    height: 40px
}

.step.active {
    border: 1px solid var(--brand-accent-dark);
    border-radius: 40px
}

.step-label {
    padding: 0;
    margin: 0
}

.step-id {
    background-color: var(--brand-accent-dark);
    aspect-ratio: 1/1;
    color: #fff;
    border-radius: 50px;
    height: 30px;
    width: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold
}

.step.active > .step-id, .step.completed > .step-id {
    background-color: #000;
    color: #fff
}

.step.completed {
    background-color: var(--brand-accent-dark);
    border-radius: 40px;
    color: #fff
}

.step.completed > .step-id {
    background-color: white;
    color: black
}

.step.active > .step-id {
    background-color: var(--brand-accent-dark)
}

.divider {
    height: 2px;
    background-color: #d6d6d6;
    width: 40px;
    border-radius: 10px
}

.divider.completed {
    background-color: var(--brand-accent-dark)
}


a{
    cursor: pointer;
}



@media (max-width: 768px) {
    .logo-bg{
        padding: 0;
    }


    .logo-bg > svg,
    .logo-bg > img {
        height: 50px;
        width: auto;
    }
}