.how-to-start{
    width: 90%;
    max-width: var(--max-sm-width);
    margin: var(--gutter-section) auto;
}
.how-to-start__headline{
    font-size: var(--fs-large);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}
.how-to-start__subheadline{
    color: var(--light-blue);
    font-size: var(--fs-large);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 3rem;
    text-align: center;
}
.how-to-start__wrapper{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    align-items: center;
    justify-content: center;
}
.how-to-start__step{
    height: 100%;
    display: flex;
    flex-direction: column;
    gap:1rem;
    margin:1rem auto;
    align-items: center;
    justify-content: flex-start;
}
.how-to-start-step__title{
    color: var(--green);
    text-align: center;
    font-family: var(--ff-heading);
    font-weight: 500;
}
.how-to-start-step__icon{
    width: 75px;
    height: 75px;
    padding: 20px;
    background-color: var(--blue);
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
}
.how-to-start-step__icon > *{
    grid-row: 1 / -1;
    grid-column: 1 / -1;
}
.how-to-start-step__connector--bottom{
    position: absolute;
    width: 30%;
    max-width: 340px;
    margin-top: 27px;
    z-index: -1;
}
.how-to-start-step__connector--top{
    position: absolute;
    width: 30%;
    max-width: 340px;
    margin-top: -10px;
    z-index: -1;
}
.how-to-start-step__description{
    color: var(--gray-60);
    text-align: center;
    font-weight: 500;
}