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

}
.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;
    }
}

.countdown-item{
    -webkit-flex: 0 0 21%;
    -ms-flex: 0 0 21%;
    flex: 0 0 21%;
    max-width: 21%;
    padding: 10px 0 0;
    position: relative;
  }
  .countdown-item:after{
    content: "";
    width: 16px;
    height: 16px;
    right: -31px;
    top: 34px;
    position: absolute;
    border-radius: 50%
  }
  .countdown-item:before{
    content: "";
    width: 16px;
    height: 16px;
    right: -31px;
    bottom: 44px;
    position: absolute;
    border-radius: 50%;

  }
  .countdown-item:last-of-type:before,
  .countdown-item:last-of-type:after{
    display: none
  }

  .countdown-item-digit{
    color: #f27755;
    background: none;
    font-size: 42px;
    line-height: 42px;
    font-weight: 600;
    font-family: "bebas_neue",sans-serif;
    display: block;
    margin: 0;
    padding: 0

  }
  .countdown-item-digit span{
    font-size: 12px;
    line-height: 1em;
    display: block;
    font-weight: normal;
    position: relative;
    z-index: 2;
    font-family: "Montserrat", sans-serif;
  }