.c-white {
  color: #000000;
}

 #clock {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  position: relative;
  top: 50%;
  right: -15%;
  transform: translate(-50% , -50%);
  text-align: center;
  color: #020202;
}
#clock .days,
#clock .hours,
#clock .minutes,
#clock .seconds{
  min-width: 46px;
  padding: 12px 6px 4px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  position: relative;
}
#clock .days::after,
#clock .hours::after,
#clock .minutes::after{
  content: ':';
  color: var(--white);
  font-size: 1.2rem;
  position: absolute;
  right: -7px;
  top: 30%;
}

 #clock .days .day,
 #clock .hours .hour,
 #clock .minutes .minute,
 #clock .seconds .second {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: var(--f4);
  gap: 10px;
  font-size: 20px;
  line-height: 22px;
  color: var(--blue);
  font-weight: bold;
}

 #clock p {
  font-size: 9px;
  background: transparent;
  color: white;
}

@media only screen and (min-width: 768px) {

  #clock {
    position: relative;
    top: 50%;
    right: 4%;
    transform: translate(-50% , -50%);
    gap: 10px;
    -webkit-transform: translate(-50% , -50%);
    -moz-transform: translate(-50% , -50%);
    -ms-transform: translate(-50% , -50%);
    -o-transform: translate(-50% , -50%);
}

   #clock .days .day,
   #clock .hours .hour,
   #clock .minutes .minute,
   #clock .seconds .second {
    font-size: 36px;
    line-height: 36px;
  }

   #clock p {
    font-size: 11px;
    background: transparent;
  }
}

@media only screen and (min-width: 1250px) {
  #clock {
    position: relative;
    right: 18%;
    gap: 10px;
  }
}

