.countdown-timer {
    animation: fadeIn 2s ease-in-out;
    align-items: center;
    background-color: transparent;
    border-radius: 0px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 8px;
    text-align: left;
    text-transform: uppercase;
    width: 100%;
  }

  .countdown-timer .countainer-ul {
    display: flex;
    justify-content: center;
    column-gap: 10px;
  }

  @media only screen and(max-width: 1200px){

    .countdown-timer {
        animation: fadeIn 2s ease-in-out;
        align-items: center;
        background-color: red!important;
        border-radius: 0px;
        color: #fff;
        font-size: 15px;
        font-weight: 600;
        padding: 8px;
        text-transform: uppercase;
        width: 100%;
    }

   .countdown-timer .countainer-ul {
        justify-content: center !important;
    }
  }


  .countdown-timer-ul {
    border-radius: 25px;
    color: #000;
    margin: auto auto 15px auto;
    position: relative;
    text-align: center;
    transition: opacity 0.7s ease-in-out;
    position: relative;
    width: 40%;
  }
  .countdown-timer-ul .deadline-label {
    color: #fff;
    font-size: 12px;
    margin-bottom: 5px;
    margin-right: 10%;
    text-align: right;
    text-transform: uppercase;
  }
  .countdown-timer .date-item {
    background-color: rgb(9, 9, 36);
    border-radius: 5px;
    color: #fff;
    text-align: center;
    font-size: 1.2rem;
    width: 100px;
  }
  .countdown-timer ul {
    margin-bottom: 0px;
    padding: 0px;
  }
  .countdown-timer ul li span {
    display: block;
    font-size: 3rem;
  }
  li {
    display: inline-block;
    font-size: 1em;
    list-style-type: none;
    padding: 0.5em;
    text-transform: uppercase;
  }
  @keyframes fadeIn {
      0% {opacity: 0;}
      100% {opacity: 1;}
  }