#countdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    padding: 0;
    margin: 0 auto;
    margin-bottom: 17px !important;
    border-top: 1px solid white;
        border-bottom: 1px solid white;
    width: 100%;
    margin-top: 2em;
    overflow: hidden;
    font-weight: bold;
}
ul#countdown li {
  margin: 30px 15px 0px 14px;
  padding: 0;
  display: inline-block;
  font-size: 5em;
  text-align: center;
  font-weight: 400;
  color: white;
  font-family: 'Chivo';
}
ul#countdown li .label {
  color: #a1d683;
      font-size: 18px;
      text-transform: uppercase;
      display: block !important;
      padding-bottom: 1em;
          margin-top: 20px;
}

@media screen and (max-width: 700px){
   ul#countdown li {
       width: 23%;
   font-size: 10vw !important;

   }
   ul#countdown li .label {

       font-size: 3.5vw;

   }
}
