/* statistics */
.statistics-container{
    overflow: hidden;
    /* background-color: #f7f7f7; */
    position: relative;
}

.statistics-image{
    position: absolute;
    bottom: 0;
    z-index: 1;
    opacity: 0.15;
    /*filter: invert(47%) sepia(36%) saturate(1755%) hue-rotate(344deg) brightness(99%) contrast(92%);*/
}

.statistics-sub-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
}

.statistics-heading-container{
    margin: 0;
}

.statistics-heading{
    font-weight: 700;
    font-size: 44px;
    border: none;
    width: 524px;
}

.statistics-sub-heading{
    font-size: 20px;
    padding-top: 15px;
    /* margin-left: 33px; */
    color:#096CFF;
}

.statistics-content-container{
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 100px;
    margin: 0 0 0 auto;
}

.statistics-body{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    max-width: 300px;
    gap: 15px;
}

.statistics-number{
    font-size: 72px;
    font-weight: 700;
    line-height: 56px;
    margin-bottom: 0;
    color:#096CFF;
}

.statistics-text{
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 700;
    line-height: 19px;
}

@media (max-device-width: 1500px) {
     .statistics-content-container{
        flex-direction: column;
        gap: 30px;
        justify-content: center;
        align-items: end;
    }
    .statistics-body{
        justify-content: flex-end;
        align-items: center;
    }     

}

@media (max-device-width: 992px) {
    .statistics-sub-container{
        flex-direction: column;
        justify-content: flex-start;
    }
    .statistics-heading,
    .statistics-sub-heading{
        text-align: center;
        width: 100%;
        font-size: 32px;
    }
    .statistics-number{
        font-size: 48px;
        line-height: 42px;
    }
    .statistics-sub-heading{
        font-size: 20px;
    }
    .statistics-content-container {
        flex-direction: row;
        margin: 40px auto 0;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 40px 70px;
    }
    .statistics-body{
        width: fit-content;
        justify-content: center;
        align-items: center;
    }
}
@media (max-device-width: 576px) {
    .statistics-heading{
        font-size: 1.8rem;
        font-weight: 700;
        text-align: center;
        padding: 20px 0;
    }
    .statistics-sub-heading{
        color:#096CFF;
        font-size: 20px;
    }
    .statistics-number{
        font-size: 36px;
        font-weight: 800;
    }
    .statistics-text{
        font-size: 18px;
    }
}