/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.counter-header {
  position: relative;
  width: 100%;
  /* countdown */
}

.counter-header h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

.counter-header h2 {
  color: #eee;
  margin-bottom: 40px;
  font-size: 22px;
}

.counter-header .countdown div {
  text-align: center;
  margin: 10px 10px;
  width: 100px;
}

.counter-header .countdown div h3 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 15px;
}

.counter-header .countdown div h4 {
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .countdown div h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .countdown div h4 {
    font-size: 14px;
    font-weight: 500;
  }
}

.counter-header .subscribe {
  font-size: 15px;
  text-align: center;
}

.counter-header .subscribe h4 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

.counter-header .subscribe .subscribe-form {
  min-width: 300px;
  margin-top: 10px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  text-align: left;
}

.counter-header .subscribe .subscribe-form input[type="email"] {
  padding: 4px 8px;
  width: calc(100% - 100px);
}

.counter-header .subscribe .subscribe-form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #24b7a4;
  color: #fff;
  transition: 0.3s;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.counter-header .subscribe .subscribe-form input[type="submit"]:hover {
  background: #22ae9c;
}

.counter-header .subscribe .error-message {
  display: none;
  color: #ed3c0d;
  text-align: center;
  font-weight: 600;
}

.counter-header .subscribe .sent-message {
  display: none;
  color: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.counter-header .subscribe .loading {
  display: none;
  text-align: center;
  padding: 15px;
}

.counter-header .subscribe .loading:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  -webkit-animation: animate-loading-notify 1s linear infinite;
  animation: animate-loading-notify 1s linear infinite;
}

@-webkit-keyframes animate-loading-notify {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading-notify {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.counter-header .social-links {
  margin-top: 40px;
}

.counter-header .social-links a {
  font-size: 16px;
  color: #fff;
  margin: 0 3px;
  width: 48px;
  height: 48px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counter-header .social-links a i {
  line-height: 0;
}

.counter-header .social-links a:hover {
  background: #24b7a4;
}

.countdown div {
  display: inline-block !important;
  margin: 0 !important;
}

.countdown div h3, .countdown div h4 {
  color: white !important;
  margin-bottom: 0 !important;
}

