section.stats_bar {
    padding: 100px 0 40px;
    background-color: #F4F3F6;
}

section.stats_bar h2 {
    text-align: center;
    margin-bottom: 83px;
    color: #0C1750;
    font-family: "lemonde-courrier", serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 42px;
}

section.stats_bar .stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
section.stats_bar.gradient-purplepink{
    background-attachment: fixed;
}
section.stats_bar .stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    text-align: center;
    margin-bottom: 40px;
    padding: 25px 20px;
    border-left: solid 1px #E50084;
}
section.stats_bar .stats .stat:last-child{
    border-right: solid 1px #E50084;
}
section.stats_bar .stats .stat .number {
    color: #0C1750;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1;
    font-size: 60px;
    font-family: "proxima-nova", sans-serif;
}
section.stats_bar .stats .stat .number > span{
    padding-right: 2px;
}
section.stats_bar .stats .stat .text {
    font-size: 18px;
    line-height: 28px;
    font-family: "proxima-nova", sans-serif;
    font-weight: 500;
    color: #343434;
}

section.stats_bar .btn-holder {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

section.stats_bar .btn-holder .purple-btn {
    height: 49px;
    text-transform: uppercase;
    color: white;
    font-family: "proxima-nova", sans-serif;
    font-weight: bold;
    padding: 0 34px;
    font-size: 14px;
    background: #512873;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.stats_bar .btn-holder .purple-btn:hover {
    background-color: #bd0362;
}

@media (max-width: 1200px) {
    section.stats_bar {
        padding: 85px 0;
    }

    section.stats_bar h2 {
        margin-bottom: 70px;
    }

    section.stats_bar .stats .stat {
        width: 25%;
    }

    section.stats_bar .stats .stat .number {
        font-size: 65px;
    }
}

@media (max-width: 992px) {
    section.stats_bar {
        padding: 70px 0;
    }

    section.stats_bar .stats .stat {
        width: 33.33%;
    }

    section.stats_bar .stats .stat .number {
        font-size: 55px;
    }
}

@media (max-width: 768px) {
    section.stats_bar {
        padding: 60px 0;
    }

    section.stats_bar h2 {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 60px;
    }

    section.stats_bar .stats .stat {
        width: 50%;
    }

    section.stats_bar .stats .stat .number {
        font-size: 45px;
    }
}

@media (max-width: 576px) {
    section.stats_bar {
        padding: 50px 0;
    }

    section.stats_bar h2 {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 50px;
    }

    section.stats_bar .stats .stat {
        width: 100%;
    }

    section.stats_bar .stats .stat .text {
        font-size: 16px;
        line-height: 26px;
    }

    section.stats_bar .btn-holder {
        margin-top: 0;
    }

    section.stats_bar .btn-holder .purple-btn {
        padding: 0 15px;
        height: 40px;
        font-size: 12px;
    }
}