.registration-img img{
  width: 100%;
  border-radius: 25px;
}
.cd-overlay{
  margin-top: -150px;

  color: #fff;
  text-align: center;
  padding: 15px 10px;
}
.cd-time {
  font-size: 50px;
  font-weight: bold;
  letter-spacing: 2px;
}

.cd-labels {
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 4px;
}

.cd-labels span {
 font-weight: 300;
  font-size: 18px;
  text-align: center;
}

.reg-card{
  display: flex;
 align-items: center;
  /* justify-content: center; */
  gap: 20px;
  background-color: var(--card-background-color);
  padding: 20px 20px;
  border-radius: 100px;
  
}
.reg-icon img{
  width: 90px;
  height: 90px;
  object-fit: contain;
}
.reg-content{
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* align-items: center; */
  justify-content: center;
}
.reg-content h4{
  font-size: 22px;
  letter-spacing: 0.5px;
  font-weight: 500;
  color: var(--primary-color);
}
.reg-content p{
 font-weight: 400;
  font-size: 18px;
  color: var(--text-color);
}

/* Responsive Media Query */
@media (max-width: 991px) {
  .reg-card {
  padding: 10px 15px;
    text-align: center;
    border-radius: 30px;
  }

  .reg-icon img {
    width: 50px;
    height: 50px;
  }
.reg-content h4{
  font-size: 20px;
}
.reg-content p{
  font-size: 14px;
}
  .cd-time {
    font-size: 32px;
  }

  .cd-labels {
    font-size: 16px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .registration-img {
    margin-bottom: 60px;
  }
  .reg-content{
    text-align: left!important;
    align-items: flex-start;
  }
}