/*-------------   Color Variable  --------------*/
.white-bg {
  background: #ffffff;
}

.gray-bg {
  background: #f5f5f5;
}

/*-------------Color include--------------*/
/*-- Background color---*/
.section-bg1 {
  background: #13151b;
}

.gray-bg {
  background: #f7f7fd;
}

.white-bg {
  background: #ffffff;
}

.black-bg {
  background: #16161a;
}

.theme-bg {
  background: #681310;
}

.brand-bg {
  background: #f1f4fa;
}

.testimonial-bg {
  background: #f9fafc;
}

/*--- color------*/
.white-color {
  color: #ffffff;
}

.black-color {
  color: #16161a;
}

.theme-color {
  color: #681310;
}

/*------------------- Responsive --------------------------*/
.boxed-btn {
  background: #fff;
  color: #681310 !important;
  display: inline-block;
  padding: 18px 44px;
  font-family: "Parisienne", cursive;
  font-size: 14px;
  font-weight: 400;
  border: 0;
  border: 1px solid #681310;
  letter-spacing: 3px;
  text-align: center;
  color: #681310;
  text-transform: uppercase;
  cursor: pointer;
}
.boxed-btn:hover {
  background: #681310;
  color: #fff !important;
  border: 1px solid #681310;
}
.boxed-btn:focus {
  outline: none;
}
.boxed-btn.large-width {
  width: 220px;
}

.count-down-area {
  position: relative;
  top: -73px;
}
.count-down-area .count-down-wrapper {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.count-down-area .count-down-wrapper .single-counter {
  padding: 44px 10px 44px 9px;
  margin-bottom: 30px;
}
.count-down-area .count-down-wrapper .single-counter span {
  color: #fff;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Quicksand", sans-serif;
}
.count-down-area .count-down-wrapper .single-counter p {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  margin: 0;
  padding: 0;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Quicksand", sans-serif;
}

.countdown[data-type=styled] {
  font-family: "Hubballi", sans-serif;
}

@media (max-width: 575px) {
  .col-xs-auto {
    width: auto;
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  .col-xs-auto {
    width: auto;
  }
}
@media (max-width: 420px) {
  .col-xs-auto {
    width: auto;
  }
}

.countdown-finished {
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #eceff8;
  text-transform: uppercase;
}

.time-box {
  background: rgba(255, 255, 255, 0.1);
  /*border: 2px solid rgba(255, 255, 255, 0.3);*/
  border-radius: 15px;
  padding: 10px 15px;
  min-width: 50px;
  width: 110px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .time-box {
    max-width: 50%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .time-box {
    max-width: 50%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .time-box {
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .time-box {
    max-width: 50%;
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  .time-box {
    max-width: 50%;
  }
}
@media (max-width: 420px) {
  .time-box {
    max-width: 25%;
    padding: 5px 10px;
  }
}

.time-box:hover {
  transform: translateY(-5px);
}

.time-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff0c0;
  text-shadow: 0 0 10px rgba(255, 202, 218, 0.3);
  transition: all 0.5s ease;
}
@media (max-width: 420px) {
  .time-value {
    font-size: 1rem;
  }
}

.time-label {
  text-transform: uppercase;
  color: #d3d3d3;
  letter-spacing: 1px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .time-label {
    font-size: 75%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .time-label {
    font-size: 75%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .time-label {
    font-size: 50%;
  }
}
@media (max-width: 575px) {
  .time-label {
    font-size: 50%;
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  .time-label {
    font-size: 50%;
  }
}
@media (max-width: 420px) {
  .time-label {
    font-size: 50%;
  }
}

/* Secondes anim */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}
.time-value.pulse {
  animation: pulse 0.8s ease;
}