* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* outline:1px solid red; */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}


/* nav section */
.nav-link {
  margin: 1rem !important;
  font-size: 1rem !important;
  color: rgba(255, 255, 255, 0.77) !important;
  font-weight: 400 !important;
}

.nav-link:hover {
  transform: scale(1.2);
  color: #ffffff;
}

.nav-link.active {
  font-weight: 700 !important;
  color: #ff8811 !important;
  /* border-bottom: 1.8px solid #fff; */
}


header .days,
header .hours,
header .minutes,
header .seconds {
  font-size: 36px;
  color: #fff;
  font-weight: 700;
  height: 100px;
  width: 100px;
  display: inline-block;
  border-radius: 100%;
  line-height: 3em;

}

.date-countdown-card p {
  width: 120px;
  font-size: 16px !important;
  font-weight: 700;
}



/* header */
header {
  background-image: url("../images/bg-img.jpg");
  background-color: rgba(0, 0, 0, 0.767);
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* min-height: 100vh; */
  padding: 10rem 0;
}

.header-content-heading {
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.header-content-box {
  padding: 10em 0;
}

.text-secondary {
  color: #ff8811 !important;
}


.border-secondary{
  border-bottom: 1px solid #ff8811a4 !important;
}

/* button section */
.btn-outline-primary {
  color: rgb(255, 255, 255) !important;
  background-color: transparent;
  padding: 1rem 2.7rem !important;
  border-color: rgb(255, 255, 255) !important;
  font-weight: 400 !important;
  transition: 0.9s;
}

.btn-outline-primary:hover {
  color: #ff8811 !important;
  padding: 1rem 2.7rem !important;
  border-color: #ff8811 !important;
  background-color: transparent !important;
  /* border-color: #FF8811 !important; */
}

.btn-primary {
  color: #fff !important;
  background-color: #ff8811 !important;
  padding: 1rem 2.7rem !important;
  border-color: #ff8811 !important;
  transition: 0.9s;
}

.btn-primary:hover {
  color: #fff !important;
  background-color: #ff8811d0 !important;
}

/* End of button section */

.bg-primary {
  background-color: #ff8811 !important;
}

.bg-light {
  background-color: #bfdbfd;
}

.bg-green {
  background-color: #14213D; 
}

.bg-purple {
  background-color: #92278f;
}

.bg-yellow {
  background-color: #f5b429;
}

.content-box {
  padding: 5em 0;
}

.sub-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-align: left;
}

.mt-6 {
  margin-top: 3.7rem !important;
}

.fw-semibold {
  font-weight: 500 !important;
}

.email {
  color: #ff8811;
  word-wrap: break-word;
}

.email:hover {
  color: rgb(0, 64, 255);
}

.bg-dark {
  background-color: #000 !important;
}

/* input field */
input:active,
input:focus,
textarea:active,
textarea:focus,
button:active,
button:focus,
select:active,
select:focus {
  outline: none !important;
  box-shadow: none !important;
}

.btn:active,
.btn:focus {
  outline: none !important;
  box-shadow: none !important;
}