.custom_steps {
    width: 70%;
    margin: 0 auto;
}
.custom_steps_content {
    display: flex;
    justify-content: space-between;
    padding: 50px 30px;
}
.custom_step {
    width: 30%;
}
.custom_step_h3 {
    font-size: 22px;
    color: #5F5F5F;
    font-weight: 700;
    width: 60%;
    padding-bottom: 20px;
    border-bottom: 2px solid #5F5F5F;
}
.custom_step_h3 span {
    font-size: 50px;
    padding-left: 10px;
}
.custom_step_h4 {
    font-size: 24px;
}
.custom_step_h4 span{
    color: #1BB76D;
}
.custom_steps_text {
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
}
.custom_steps_text span{
    color: #1BB76D;
}
.custom_steps_contact {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
}

@media (max-width: 850px) {
    .custom_steps_content {
        flex-direction: column;
    }
    .custom_step {
        width: 100%;
    }
}
@media (max-width: 600px) {
    .custom_steps_contact {
        flex-direction: column;
    }
    .custom_steps_contact a {
        margin-left: 0;
        text-align: center;
    }
}