.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 {
    background-image: url('../assets/logo_bg_kta_new 1.png');
    height: 191px;
    width: 234px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 234/191;
    z-index: 999999
}

.logo-bg > svg {
    margin-top: 50px
}

.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 #6D0063;
    border-radius: 40px
}

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

.step-id {
    background-color: #6D0063;
    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: #6D0063;
    border-radius: 40px;
    color: #fff
}

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

.step.active > .step-id {
    background-color: #6D0063
}

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

.divider.completed {
    background-color: #6D0063
}


a{
    cursor: pointer;
}



@media (max-width: 768px) {
    .logo-bg{
       background-image: unset;
        aspect-ratio: unset;
        height: unset;
        width: unset;
    }


    .logo-bg > svg {
        margin-top: unset;
        height: 75px;
        width: fit-content;

    }
}