.wdstat{
    display:inline-block;
    vertical-align:top;
    width:100%;
    position:relative;
    overflow:hidden;
    z-index:1;
}
.wdstat img{
    width:100%;
    height:100%;
    object-fit:cover;
    position:absolute;
    top:0;
    left:0;
    z-index:-2;
    opacity:0;
}
.wdstat_bgimg{
    background-repeat:no-repeat;
    background-position:center;
    background-size:cover;
}
.wdstat_overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-1;
}
.wdstat_content{
    position:relative;
    z-index:1;
}
.wdstat_title{
    margin:0;
    padding:0;
    text-align: center;
}
.wdstat_desc{
    text-align:center;
}
.wdstat_item{
    display:inline-block;
    vertical-align:top;
    position:relative;
    text-decoration:none!important;
    width:50%;
    float:left;
    overflow:hidden;
    transition:all ease .15s;
}
a.wdstat_item:hover{
    filter: brightness(115%);
}
.wdstat_count{
    height:100%;
    position:absolute;
    left:0;
    top:0;
    background:rgba(0,0,0,.3);
    padding:10px 0;
    text-align:center;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.wdstat_number_block{
    width:calc(100% - 20px);
    margin:0 10px;
}
.wdstat_number{
    width:100%;
    height:60px;
    line-height:60px;
    font-size:60px;
    white-space:nowrap;
    display:inline-block;
    vertical-align:middle;
}
.wdstat_counter{
    font-size:14px;
    padding:0 10px;
}
.wdstat_ctype{
    padding:10px 15px;
    height:calc(100% - 20px);
    overflow:hidden;
    display:inline-block;
    vertical-align:top;
}
.wdstat_item > .wdstat_notdesc{
    height:100%;
    display:flex;
    align-items:center;
    justify-content: center;
    text-align: center;
}
.wdstat_item > .wdstat_notdesc .wdstat_notdesc{
    margin-bottom:0!important;
}
.simpleParallax {
    position:absolute;
    top:0;
    z-index:-2;
    width:100%;
    height:100%;
    left:0;
    overflow:hidden;
}
.simpleParallax img {
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:1;
    animation:img_show ease-out .8s 1;
}
@keyframes img_show{
    from{opacity:0;}
    to{opacity:1;}
}