.stats__section{
    background-color: #212327;
    background-image: url(../images/statistics-bg.jpg);
    padding-top: 50px;
    padding-bottom: 50px;
}
.stats__wrapper{
    padding-left: 50px;
    padding-right: 50px;
    max-width: 1100px;
    margin:auto;
}
.stat{
    width: 25%;
    position: relative;
    padding: 57px 20px 57px 20px;
    border: 1px solid #f1f1f1;
    border-left: none;
    text-align: center;
}
.stat:first-child{
    border-left: 1px solid #f1f1f1;
}
.stat-number {
    display: inline-block;
    position: relative;
    /*font-family: 'Rubik', sans-serif;*/
    font-size: 46px;
    color: orangered;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: -2px;
}
.stat-text {
    /*font-family: 'Rubik', sans-serif;*/
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
@media (max-width: 1100px){
    .stats__wrapper{
        padding-left: 0px;
        padding-right: 0px;
        max-width: 768px;
    }
}
@media (max-width: 1023px){
    .stat{
        width: 50%;
        position: relative;
        padding: 57px 20px 57px 20px;
        border: 1px solid #f1f1f1;
        text-align: center;
    }
    .stats__wrapper{
        padding-left: 50px;
        padding-right: 50px;
        max-width: 1280px;
    }
}
@media (max-width: 767px){
    .stat{
        width: 100%;
        border-left: 1px solid #f1f1f1;
    }
    .stats__wrapper{
        max-width: 100%;
    }
}
.d-flex{
    display: flex;
}
.flex-wrap{
    flex-wrap: wrap;
}