.counterdowns .timer_section .autob{
  text-align: right;

  display: flex;
    justify-content: end;
    align-items: center;
}

.counterdowns .timer_section .autob .cdowns{
  text-align: center;
}






/* ===== 6. Countdown Area CSS ===== */
.dt_countdown_area {
  background-position: center center;
  background-size: cover;
  padding: 60px 0 60px 0;
  position: relative;

  display: flex;
    align-items: center;
}
.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: 120px;
  height: 120px;
  background: var(--color-primary);
  display: inline-block;
  margin: 0 10px;
  position: relative;
  line-height: 1;
  padding-top: 20px;
  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){
      .cdowns {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    display: inline-block;
    margin: 0px 10px;
    position: relative;
    line-height: 1;
    padding-top: 0px;
    border-color: var(--color-primary);
    /* margin-bottom: 30px; */
}

.time-counts {
    font-size: 20px;
    font-weight: 700;
    display: inline-block;
}

.counterdowns p {
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0px 0px 0px;
}

.dt_countdown_area {

    padding: 0px 0 0px 0;
 
}
}

@media screen and (max-width: 767px){
    .cdowns::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 30px;
    right: -10px;
    top: 40%;
    transform: translateY(-50%);
}

.cdowns::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 30px;
    right: -10px;
    top: 60%;
    transform: translateY(-50%);
}

    .time-counts {
        font-size: 13px;
    }

    .counterdowns p {
        font-size: 10px;
    }

    .cdowns {
        width: 30px;
        height: 60px;
        background: var(--color-primary);
        display: inline-block;
        margin: 0px 5px;
        position: relative;
        line-height: 1;
        padding-top: 0px;
        border-color: var(--color-primary);
        /* margin-bottom: 30px; */
    }

}

