.stat {
    height: 490px;
    padding-top: 5rem;
    background: #fff url("img/stats_bg.jpg") 50% 100% no-repeat;
}
.stat__heading {
    font-weight: 400;
    color: #eb2429;
    font-size: 5.5rem;
    line-height: 5.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}
.stat__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
}
.stat__list li.stat_list_item {
    width: 324px;
    height: 334px;
    color: #7a919f;
    font-weight: 300;
    font-size: 2.4rem;
    line-height: 2.4rem;
    text-align: center;
    padding: 17rem 1rem 0 1rem;
    transition: all .2s linear;
}
.stat__list li.stat_list_item:hover {
    color: #eb2429;
}
.stat__list li.stat_list_item.n1 {
    background: url("img/stat_one.png") 50% 0 no-repeat;
}
.stat__list li.stat_list_item.n2 {
    background: url("img/stat_two.png") 50% 0 no-repeat;
}
.stat__list li.stat_list_item.n3 {
    background: url("img/stat_three.png") 50% 0 no-repeat;
}
.stat__list li.stat_list_item strong {
    display: block;
    font-weight: 900;
    color: #eb2429;
    font-size: 5.5rem;
    line-height: 5.5rem;
    margin-bottom: 0.2rem;

    transition: all .2s linear;
}
.stat__list li.stat_list_item:hover strong {
    transform: scale(1.3);
}
