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;
}

section.numbered-steps .step .counter span {
    width: 60px;
    height: 60px;
    position: relative;
    background: var(--main-color-darker);
    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: 32px;
}

section.numbered-steps .step .image:after{
    content:'';
    position:absolute;
    top:60px;
    left:50%;
    height:100%;
    width:3px;
    background:var(--body-color-darker);
    transform:translateX(-50%);
}
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: 18px 0 0 0;
    color: var(--main-color-darker);
    mix-blend-mode: multiply;
}

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

section.numbered-steps .step .image{
    width:60px;
    position:relative;
}