.countdown{
    width: 100%;
        display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}
.countdown_wrapper{
    width: 100%;

}
.countdown-item{
    -webkit-flex: 0 0 23%;
        -ms-flex: 0 0 23%;
        flex: 0 0 23%;
        max-width: 23%;
    background: #fff;
    margin: 0 1%;
    color: #2a354c;
    border: 1px solid #999;
}
.countdown-item-digit{
    padding: 24px 10px 21px;
    font-size: 32px;
    color: #2a354c;
    font-weight: 500;
}
.countdown-item-digit span{
	font-size: 16px;
	display: block;
	margin-top: 5px;
	color: #999;
    font-family: 'Monrserrat', sans-serif;
}

@media screen and (min-width: 1120px){
    .countdown_wrapper{
        width: 460px;
    }
}