section.numbered-steps{
    
}

section.numbered-steps h2.title{
    margin-bottom:30px;
}

section.numbered-steps .how-image {
    mix-blend-mode: multiply;
}

section.numbered-steps .how-image img {
    width: 100%;
    height: auto;
    border-radius: 30px 30px 200px 30px;
}

section.numbered-steps .steps{
    display: flex;
    flex-direction: column;
    gap: 20px;
    position:relative;
}

section.numbered-steps .step{
    width:100%;
    position:relative;
    display:flex;
}

section.numbered-steps .step .counter {
    position: absolute;
    color: #fff;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 0 8px var(--body-color);
    border-radius: 50%;
}

section.numbered-steps .step .counter span {
    width: 40px;
    height: 40px;
    position: relative;
    background: var(--main-color);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--body-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.5rem;
    outline: 2px dashed var(--main-color);
    outline-offset: 2px;
}

section.numbered-steps .step .image{
    flex:0 0 40px;
    position:relative;
}

section.numbered-steps .step .image:after {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    height: 100%;
    width: 2px;
    background: repeating-linear-gradient( to bottom, var(--main-color) 0, var(--main-color) 6px, transparent 6px, transparent 12px );
    transform: translate(-50%, 3px);
}

section.numbered-steps .step:last-of-type .image:after{
    display:none;
}

section.numbered-steps .step .description {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position:relative;
}



section.numbered-steps .step .description h3 {
    margin: .375rem 0 0 0;
    color: var(--main-color);
    mix-blend-mode: multiply;
}

section.numbered-steps .step .description p {
    max-width: 480px;
    text-wrap: balance;
}


@media screen and (max-width:990px){
    section.numbered-steps .lhs{
        display:none;
    }
}
