#solutions_explain {
}
#solutions_explain_container {
}
#solutions_explain_content {
    flex-direction: column;
}
#solutions_explain_title span {
    padding: 7px 24px;
    color: var(--black);
    border-radius: 64px;
    background: var(--primary-background);
}
#solutions_explain_text p {
	color: var(--our-grey-color);
}
#steps_container {
    max-width: 318px; /* Ajusta según tu diseño */
    margin: 30px auto;
    position: relative;
    /*border: solid 1px red;*/
}
#steps_container a {
    text-decoration: none;
}

.step {
    position: relative;
    padding-left: 50px; /* Espacio para el círculo */
    margin-bottom: 40px;
}

.step_circle {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: bold;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    /* Para ubicar la flecha SVG dentro */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Flecha SVG */
.step_arrow {
    position: absolute;
    bottom: -64px; /* Ajusta la distancia bajo el círculo */
    left: 50%;
    transform: translateX(-50%);
    width: 19px;  /* Ajusta el tamaño de la flecha */
    height: auto;
}

/* Línea vertical que conecta los pasos */
.step::before {
    content: '';
    position: absolute;
    left: 14px;  /* Centra la línea con el círculo */
    top: 30px;   /* Empieza justo debajo del círculo */
    width: 2px;
    height: calc(100% - 30px);
    z-index: -1;
}
.step p {
    height: 80px;
    /*border: solid 1px red;*/
}

/* Último paso (Extra) sin línea vertical si lo deseas */
.step.extra::before {
    content: none;
}


@media all and (min-width: 600px) {

    #steps_container {
        max-width: 600px;
    }
}
@media all and (min-width: 900px) {
}
@media all and (min-width: 1300px) {
}
@media all and (min-width: 1650px) {
}
