

/*** 
=============================================
    Fact Counter Area style
=============================================
***/
.fact-counter-area {
    position: relative;
    display: block;
    margin-bottom: -145px;
    z-index: 10;
}
.fact-counter-area:before{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: #f3f3f4;
    content: "";
}
.fact-counter-area:after{
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 50%;
    background: transparent;
    content: "";
}

.fact-counter_box{
    position: relative;
    display: flex;
    padding-bottom: 10px;
    border-radius: 5px;
    z-index: 10;
}
.fact-counter_box::before{
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 5px;
    background: #fddb05;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    content: "";
}
.single-fact-counter {
    position: relative;
    display: block;
    max-width: 25%;
    width: 100%;
    padding: 60px 0px 0px;
    text-align: center;
    margin-bottom: 47px;
    z-index: 10;
}
.single-fact-counter .icon {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 60px;
    line-height: 60px;
}
.single-fact-counter .count-box {
    position: relative;
    display: inline-block;
    margin-top: 20px;
}
.single-fact-counter .count-box h2 {
    position: relative;
    font-size: 48px;
    line-height: 44px;
    font-weight: 700;
}
.single-fact-counter .count-box h2 span {
    color: #ffffff;
}

.single-fact-counter .sub-title {
    position: relative;
    display: block;
    padding-top: 19px;
}
.single-fact-counter .sub-title h5 {
    color:#ffffff;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    text-transform: uppercase;
}





.fact-counter-area.mar0{
    margin: 0;
}