/*
    Created on : Sep 4, 2020, 12:10:34 PM
    Author     : Andrew Molchanov: andymolchanov@gmail.com
*/
#flightsStatistic{
    max-width: 1328px;
    margin: auto;
    text-align: center;
    padding: 140px 0;
    color: #26383F;
}
#flightsStatisticContent{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 80px 0 0;
}
#flightsStatisticHead p{
    font-family: OpenSansHebrew-Bold;

}

#flightsStatisticHead p:first-child{
    font-size: 44px;
}
#flightsStatisticHead p:last-child{
    font-size: 32px;
    color: #EF0028;
}

.flightsStatisticItem p:first-child{
    font-family: BebasNeue-Regular;
    font-size: 70px;
    font-weight: bold;
    color: #EF0028;
}
.flightsStatisticItem p:nth-child(2){
    font-size: 22px;
    font-weight: bold;
}
.flightsStatisticItem p:last-child{
    padding-top: 25px;
}
.flightsStatisticItem p span{
    font-size: 60px;
}
@media(max-width: 728px){
    .flightsStatisticItem{
        flex: 0 1 100%;
    }
    .flightsStatisticItem:not(:last-child):after{
        content: '';
        width: 90%;
        height: 2px;
        background-color:#BED1D8;
        display: block;
        margin: 50px auto;
    }
    #flightsStatisticHead{
        padding: 0 20px;
    }
}