.all-steps{
    width: 90%;
    max-width: var(--max-sm-width);
    display: flex;
    flex-direction: column;
    margin: var(--gutter-section) auto;
}
.all-steps__headline{
    font-size: var(--fs-large);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}
.all-steps__subheadline{
    color: var(--light-blue);
    font-size: var(--fs-large);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 3rem;
    text-align: center;
}
div[class^="all-steps__step"]{
    display: flex;
}
div[class^="all-steps__step"]:nth-child(even){
    flex-direction: row-reverse;
}
.all-steps-card__image{
    display: grid;

}
.all-steps-card__image > *{
    grid-column: 1 / -1;
    grid-row:  1 / -1;
}
.all-steps-card__image > svg{
    height: 80px;
    width: 80px;;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 25px;
    margin-bottom: 3rem;
    margin-top: 3rem;
    z-index: 1;
}
.all-steps-card__information-wrapper{
    display: grid;
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    flex-grow: 1;
}
.all-steps-card__information{
    width: 80%;
    display: grid;
    grid-template-columns: 40px auto;
    margin-bottom: 3rem;
    margin-top: 3rem;
    margin-left: 2rem;
    margin-right: 2rem;
}
.all-steps__step-two .all-steps-card__information,
.all-steps__step-four .all-steps-card__information,
.all-steps__step-six .all-steps-card__information{
    justify-self: flex-end;
    grid-template-columns: auto 40px;
}
.all-steps__step-two .all-steps-card-information__counter,
.all-steps__step-four .all-steps-card-information__counter,
.all-steps__step-six .all-steps-card-information__counter{
    grid-column: 2 / 3;
}
.all-steps__step-two .all-steps-card-information__title,
.all-steps__step-four .all-steps-card-information__title,
.all-steps__step-six .all-steps-card-information__title{
    grid-column: 1 / 2;
    text-align: right;
    padding-right: 1rem;
}
.all-steps-card-information__counter{
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: var(--fs-small);
    font-weight: 600;
    border: 2px solid black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 2rem; */
    grid-column: 1 / 2;
}
.all-steps-card-information__title{
    font-size: var(--fs-small);
    font-weight: 600;   
    padding-left: 1rem;
    align-self: center;
    grid-column: 2 / 3;
}
.all-steps-card-information__description{
    color: rgba(0, 0, 0, 0.80);
    font-weight: 400;
    opacity: 0.5;
    grid-column: 1 / 3;
}
.all-steps__step-two .all-steps-card-information__description,
.all-steps__step-four .all-steps-card-information__description,
.all-steps__step-six .all-steps-card-information__description{
    text-align: right;
}
.all-steps-card__decorator--bottom-right{
    width: 50%;
    height: calc(100% - 3rem - 40px); /* total height minus top margin minus half of svg*/
    align-self: flex-end;
    justify-self: flex-end;
    border-left: 3px solid var(--orange);
    border-bottom: 3px solid var(--orange);
    border-radius: 0 0 0 16px;
    z-index: 0;
    transform: translateY(3px);
}
.all-steps-card__decorator--bottom-left{
    width: 50%;
    height: calc(100% - 3rem - 40px); /* total height minus top margin minus half of svg*/
    align-self: flex-end;
    justify-self: flex-start;
    border-bottom: 3px solid var(--orange);
    border-right: 3px solid var(--orange);
    border-radius: 0 0 16px 0;
    z-index: 0;
    transform: translateY(3px);
}
.all-steps-card__decorator--top-left{
    width: 50%;
    height: 3rem; /* top margin */
    border-radius: 0 16px 0 0;
    border-top: 3px solid var(--orange);
    border-right: 3px solid var(--orange);
    z-index: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.all-steps-card__decorator--top-right{
    width: 50%;
    height: 3rem; /* top margin */
    justify-self: flex-end;
    border-radius: 16px 0 0 0;
    border-top: 3px solid var(--orange);
    border-left: 3px solid var(--orange);
    z-index: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.all-steps-card__decorator--top-left > svg{
    height: 1.5rem;
    width: 1.5rem;
    margin-right: -0.9rem;
}
.all-steps-card__decorator--top-right > svg{
    height: 1.5rem;
    width: 1.5rem;
    margin-left: -0.9rem;
}
.all-steps-card__decorator--top-even{
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    width: calc(100% - 60px);
    justify-self: flex-end;
    height: 3px;
    background: var(--orange);
}
.all-steps-card__decorator--top-odd{
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    width: calc(100% - 60px);
    justify-self: flex-start;
    height: 3px;
    background: var(--orange);
}
.all-steps__cta{
    width: 270px;
    height: 40px;
    border-radius: 10px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color:var(--white);
    margin: 1rem auto;
    text-decoration: none;
}
.all-steps__cta:hover{
    background: var(--blue);
    color:var(--white);
}
