body {
    margin: 0;
    font-family: Inter, 'sans-serif';
    background: #ffffff;
}

/* CONTENITORE GRIGIO */
.tech-section {
    background: #fff;
    padding: 60px 50px;
    text-align: center;
}

/* TITOLO */
.tech-title {
    font-size: 36px;
    line-height: 42px;
    font-weight: 600;
    padding-bottom: 10px;
    margin-block-start: 0px !important;
    margin-block-end: 0px !important;
    color: #000;
    font-family: Inter, 'sans-serif';
}

/* TESTO DESCRIZIONE */
.tech-desc {
    max-width: 1200px;
    color: #000000;
    font-size: 20px;
    line-height: 26px;
    padding-bottom: 60px;
    font-weight: 400;
    font-family: Inter, 'sans-serif';
    margin-left: auto;
    margin-right: auto;
    margin-block-start: 0px !important;
    margin-block-end: 0px !important;
}

/* CONTAINER */
.steps {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* LINEA CONTINUA */
.steps::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000000;
    z-index: 0;
}

/* STEP */
.step {
    position: relative;
    max-width: 220px;
    text-align: center;
    z-index: 1;
}


/* NUMERO */
.step-number {
    width: 36px;
    height: 36px;
    line-height: 36px;
    margin: 0 auto;
    border-radius: 0;
    background: #fff;
    font-size: 40px;
    font-weight: 600;
    color: #000000;
    padding-bottom: 45px;
    padding-left: 5px;
    padding-right: 5px;
    display: flex;
}

.step-text {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: #000000;
}

.divider {
    width: 200px;
    height: 4px;
    background-color: #000000;
    border: none;
    margin: 40px auto;
    position: relative;
}

/* RESPONSIVE 
@media (max-width: 699px) {
    .steps {
        flex-direction: column;
        gap: 40px;
    }
} */

.form-demo {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 50px;
    text-align: center;
}

/* PADDING */
@media (max-width: 409px) {
    .tech-section {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (min-width: 410px) and (max-width: 699px) {
    .tech-section {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (min-width: 700px) and (max-width: 870px) {
    .tech-section {
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* TITOLO */

@media (max-width: 369px) {
    .tech-title {
        font-size: 26px;
        line-height: 32px;
    }
}

@media (min-width: 370px) and (max-width: 375px) {
    .tech-title {
        font-size: 24px;
        line-height: 30px;
    }
}

@media (min-width: 376px) and (max-width: 409px) {
    .tech-title {
        font-size: 27px;
        line-height: 33px;
    }
}

@media (min-width: 410px) and (max-width: 414px) {
    .tech-title {
        font-size: 28px;
        line-height: 34px;
    }
}

@media (min-width: 415px) and (max-width: 430px) {
    .tech-title {
        font-size: 29px;
        line-height: 35px;
    }
}

@media (min-width: 431px) and (max-width: 791px) {
    .tech-title {
        font-size: 30px;
        line-height: 36px;
    }
}

@media (min-width: 792px) and (max-width: 810px) {
    .tech-title {
        font-size: 31px;
        line-height: 37px;
    }
}

@media (min-width: 811px) and (max-width: 830px) {
    .tech-title {
        font-size: 32px;
        line-height: 38px;
    }
}

@media (min-width: 831px) and (max-width: 849px) {
    .tech-title {
        font-size: 33px;
        line-height: 39px;
    }
}


@media (min-width: 850px) and (max-width: 964px) {
    .tech-title {
        font-size: 35px;
        line-height: 41px;
    }
}

/* SOTTOTITOLO */
@media (max-width: 369px) {
    .tech-desc {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (min-width: 370px) and (max-width: 1200px) {
    .tech-desc {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (min-width: 1199px) and (max-width: 1128px) {
    .tech-desc {
        font-size: 16px;
        line-height: 22px;
    }
}

/* STEP DESCRIZIONE */
@media (max-width: 1128px) {
    .step-text {
        font-size: 16px;
        line-height: 22px;
    }

    .step-text {
        margin-block-start: 0px !important;
        margin-block-end: 0px !important;
    }
}

@media (max-width: 369px) {
    .step-text {
        line-height: 20px;
        font-size: 14px;
    }
}

@media (max-width: 699px) {

    .steps {
        flex-wrap: wrap;
        gap: 30px;
    }

    .steps::before {
        display: none;
    }

    /* primi due = metà riga */
    .step {
        flex: 0 0 50%;
    }

    /* terzo = riga intera */
    .step:last-child {
        flex: 0 0 100%;
        max-width: 100%;
        align-items: flex-start;
    }
}

@media (max-width: 565px) {
    .step {
        flex: 0 0 100%;
        max-width: 100%;
        align-items: flex-start;
    }
}

@media (max-width: 699px) {
    .tech-desc {
        padding-bottom: 30px;
    }
}


.bottone_centrato {
    margin-top: 30px;
}