/*proven performance*/
section.proven-performance-area {
    position: relative;
    padding: 86px 0 103px;
    background: #000;
    margin-top: 114px;
}
    
    .pp-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

        .pp-bg canvas {
            display: block;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: .4;
            background-attachment: fixed;
        }

            .pp-holder {
                position: relative;
                z-index: 5;
                max-width: 1440px;
                margin: 0 auto;
            }

                .pp-list-holder {
                    display: flex;
                    justify-content: space-between;
                    margin: 47px 0 0;
                }

                    .pp-list {
                        text-align: center;
                        position: relative;
                        padding: 15px 15px 20px;
                        width: 25%;
                    }

                        .pp-list::after {
                            content: '';
                            position: absolute;
                            top: 0;
                            right: 0;
                            width: 1px;
                            height: 100%;
                            background: #f5f8fd;
                            opacity: .27;
                        }

                    .pp-list:last-child::after{
                        display: none;
                    }

                .pp-stats-number {
                    font-size: 75px;
                    font-weight: 400;
                    font-family: 'Graun';
                    text-transform: uppercase;
                    margin-bottom: 13px;
                    color: #fff;
                    position: relative;
                    letter-spacing: 2px;
                    z-index: 2;
                }

                    .pp-text {
                        font-size: 22px;
                        font-weight: 400;
                        font-family: var(--font-family-default);
                        letter-spacing: 1.5px;
                        line-height: 1.1;
                        text-transform: uppercase;
                        color: #fff;
                        position: relative;
                        z-index: 2;
                    }


@media only screen and (max-width: 991px) {
    section.proven-performance-area {
        padding: 50px 0;
        margin-top: 50px;
    }
    .pp-list {
        width: 100%;
    }

    .pp-list-holder {
        flex-wrap: wrap;
    }

    .pp-list::after {
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto;
        width: 50%;
        height: 1px;
    }
}