.bigNumbers {
    float: left;
    width: 100%;
    background-color: #0F1A2A;
    padding: 80px 0 100px 0;
}

.bigNumbers h2 {
    float: left;
    width: 100%;
    color: #fff;
    font-weight: bold;
    margin: 0 0 40px 0;
    font-size: 34px;
    padding: 0 15px;
}

.bigNumbers .boxNumeros {
    float: left;
    width: 100%;
}

.bigNumbers .boxNumeros .numero .boxInterno {
    text-align: center;
    background: linear-gradient(180deg, #1E2A3B 0.52%, rgba(30, 42, 59, 0) 100%);
    border-radius: 8px;
    padding: 40px 10px;
}

.bigNumbers .boxNumeros .numero .boxInterno .numeroInterno {
    float: left;
    width: 100%;
    text-align: center;
    background: linear-gradient(180deg, #C98300 45.31%, #593A00 76.04%, rgba(125, 82, 0, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 80px;
    font-weight: bold;
    line-height: 90px;
}

.bigNumbers .boxNumeros .numero .boxInterno .numero strong {
    font-size: 60px;
    transition: all 0.1s linear 0s;
}

.bigNumbers .boxNumeros .numero .boxInterno .texto {
    float: left;
    width: 100%;
    text-align: center;
    background: linear-gradient(180deg, #C98300 45.31%, #593A00 76.04%, rgba(125, 82, 0, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    font-weight: bold;
}

@media only screen and (max-width: 768px) {

    .bigNumbers {
        padding: 30px 0;
    }

    .bigNumbers h2 {
        margin: 0 0 36px 0;
        font-size: 26px;
        line-height: 36px;
    }

    .bigNumbers .boxNumeros .numero {
        width: 50%;
        max-width: 50%;
        float: left;
        padding: 0 3px;
        margin-bottom: 6px;
    }

    .bigNumbers .boxNumeros .numero .boxInterno {
        float: left;
        width: 100%;
        height: 200px;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .bigNumbers .boxNumeros .numero .boxInterno .numeroInterno {
        font-size: 50px;
    }

}