@charset "utf-8";
/* CSS Document */

/*====================================
=      TITULO PREGUNTAS FRECUENTES    =
====================================*/

.help-title-section{

    padding:60px 0 30px;

}

.help-title{

    color:#0d4da3;
    font-size:1.7rem;
    font-weight:700;
    margin-bottom:10px;

}

.help-line{

    width:70px;
    height:4px;
    background:#1aa36f;
    border-radius:5px;
    margin-bottom:20px;

}

.help-description{

    color:#666;
    font-size:1.0rem;
    line-height:normal;
    max-width:700px;
    margin-bottom:0;

}

.help-info{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;

}

.help-icon{

    width:85px;
    height:85px;
    border-radius:50%;
    background:#eaf9f4;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:38px;
    color:#1aa36f;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    flex-shrink:0;

}

.help-text{

    font-size:22px;
    line-height:34px;
    color:#23395d;
    font-weight:500;

}

/*=============================
=         RESPONSIVE          =
=============================*/

@media(max-width:991px){

    .help-title{

        font-size:38px;
        text-align:center;

    }

    .help-line{

        margin:15px auto 25px;

    }

    .help-description{

        text-align:center;
        margin-bottom:40px;

    }

    .help-info{

        justify-content:center;

    }

}

@media(max-width:768px){

    .help-title{

        font-size:32px;

    }

    .help-description{

        font-size:17px;
        line-height:30px;

    }

    .help-icon{

        width:70px;
        height:70px;
        font-size:30px;

    }

    .help-text{

        font-size:18px;
        line-height:28px;

    }

}

@media(max-width:576px){

    .help-info{

        flex-direction:column;
        text-align:center;
        gap:15px;

    }

    .help-title{

        font-size:28px;

    }

}