.wizard{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.wizard .steps {
    display: flex;
    gap: 0; /* çizgi boşluğu kontrol bizde olacak */
    align-items: center;
    justify-content: center;
}

.wizard .line {
    flex: 1;
    height: 4px;
    width: 70px;
    background-color: var(--main-color);
    margin: 0 .3rem;
    border: 2px solid var(--main-color);
}

.wizard .steps .step{
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--main-color);
    color: var(--main-color);
    background-color: #fff;
    font-size: 30px;
    cursor: pointer;
}
.wizard .steps .step.active{
    background-color: var(--main-color);
    color: #fff;
}

.step-1-container .card{
    min-height: 225px;
    border: 1.5px solid var(--main-color);
    display: flex;
    align-items: end;
    justify-content: end;
    padding: 1rem;
    transition: all ease-in-out .2s;
    border-radius: 15px;
    cursor: pointer;
}
.step-1-container .card .card-title{
    font-size: 1.2rem;
    font-weight: 600;
}
.step-1-container .card:hover{
    background-color: rgba(18, 161, 154, 0.12);
}