﻿.threeStatsWrap {
    padding: 50px 0;
    margin: 50px 0;
    background-repeat: no-repeat;
    background-size: cover;
}

    .threeStatsWrap .statsWrap {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        justify-content: space-between;
    }

        .threeStatsWrap .statsWrap .statItem {
            padding: 0 30px;
            text-align: center;
            width: 33.333%;
            max-width: 315px;
        }

            .threeStatsWrap .statsWrap .statItem .num {
                font-size: 100px;
                line-height: 1em;
                font-weight: 800;
                color: #ffffff;
                margin-bottom: 0;
            }

            .threeStatsWrap .statsWrap .statItem .copy {
                color: #ffffff;
                font-size: 40px;
                font-weight: 500;
                font-style:italic;
                line-height: 1.1em;
            }

@media screen and (max-width: 1000px) {
    .threeStatsWrap .statsWrap {
        flex-wrap: wrap;
        justify-content: center;
    }
    .threeStatsWrap .statsWrap .statItem {
        width: 50%;
        max-width: unset;
        margin: 20px 0;
    }
}
@media screen and (max-width: 650px) {
        .threeStatsWrap .statsWrap .statItem {
            width: 100%;
            max-width: 400px;

        }
}