

.dk-section-steps {
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

.dk-container-steps {
    max-width: 1228px;      
    margin-left: auto;       
    margin-right: auto;
    margin-top: 32px;
    position: relative;
}

.dk-steps-scroll-x {
    overflow-x: auto;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    .dk-steps-scroll-x {
        overflow: visible;
    }
}

.dk-grid-steps {
    min-width: 800px;

    display: grid;
    grid-template-columns: 12% auto;
    /*gap: 12px;*/

    margin-top: 40px;

    border: 2px solid #006A5C;
    border-radius: 16px;
    padding: 28px 28px;
}

.dk-grid-steps > :nth-child(even) {
    position: relative;
    border-left: 1px solid #C4C4C4;
}

.dk-grid-steps > :nth-child(even)::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: #006A5C; /* fm-green */
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
}

.dk-grid-cell-steps {
    display: flex;
    align-items: center;
    flex-direction: column;
    /*justify-content: center;*/

    padding: 28px 16px;
}

.dk-tab-text-bl-steps {
    align-self: flex-start;
    text-align: left;
    font-size: 16px;
    margin-bottom: 0;
    line-height: 22px;
    color: black;
    font-weight: 600;
}


.dk-tab-title-steps {
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 0;
    line-height: 22px;
    color: #000;
}

.dk-tab-text-steps {
    align-self: flex-start;
    text-align: left;
    font-size: 16px;
    margin-bottom: 0;
    line-height: 22px;
    color: #5C5C5C;
    font-weight: 300;
    padding-left: 24px;
}

