/* ===== 6. Countdown Area CSS ===== */
.dt_countdown_area {
  background-position: center center;
  background-size: cover;
  padding: 120px 0 60px 0;
  position: relative;
}
.dt_countdown_area::before {
  content: "";
  background-color: #000000;
  opacity: 0.6;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.countdown_area {
  padding: 85px 0 40px;
}
.countdown_area .witr_section_title {
  margin-bottom: 40px;
}
.witr_section_title_inner p {
  width: 100%;
  padding: 0px 0 6px;
  margin-top: 10px;
}
.counterdowns {
  text-align: center;
  margin-bottom: 30px;
}
.cdowns {
  width: 150px;
  height: 150px;
  background: var(--color-primary);
  display: inline-block;
  margin: 0 10px;
  position: relative;
  line-height: 1;
  padding-top: 40px;
  border-color: var(--color-primary);
  margin-bottom: 30px;
}
.time-counts {
  font-size: 35px;
  font-weight: 700;
  display: inline-block;
}
.counterdowns p {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0px 0px 0px;
}
.counterdowns p,
.time-counts {
  color: #fff;
}
.cdowns {
  position: relative;
}
.cdowns::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 30px;
  right: -18px;
  top: 40%;
  transform: translateY(-50%);
}
.cdowns::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 30px;
  right: -18px;
  top: 60%;
  transform: translateY(-50%);
}
.cdowns:last-child::before,
.cdowns:last-child::after {
  display: none;
}


@media screen and (max-width: 992px) {
.dt_countdown_area {padding: 30px 0;}
.cdowns {width: 100px;height: 100px;padding-top: 20px;margin-bottom: 10px;}
.time-counts {font-size: 22px;}
.counterdowns p {font-size: 14px;}
.counterdowns {margin-bottom: 0;}
}