/* 
===============
This all  Css is only header ,Footer and Navbar.
=====================
*/

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100%;
}

@keyframes pulse {
  0% {
    box-shadow: 0px 0px 5px 0px red;
  }

  60% {
    box-shadow: 0px 0px 5px 5px black;
  }
}

.header-nav-position {
  position: fixed;
  width: 100%;
  max-width: inherit;
  z-index: 28;
}

.nav-bg-color {
  background: linear-gradient(150deg, cornflowerblue, aquamarine, slategrey);
}

a {
  text-decoration: none;
  color: black;
}

.header-font-size {
  color: black;
  font-weight: 600 !important;
}

.nav-link {
  color: black;
  font-weight: 600;
}

.navbar-hide-brand {
  color: black;
  font-weight: 700;
}

.header-icons {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.header-width {
  height: 40px;
  background-color: #85858a;
}

.nav-item .nav-link:hover {
  box-shadow: 0px 6px 7px 5px black;
  margin-top: -0px;
  margin-right: 1px;
  color: black;
  font-weight: bold;
}

.nav-drpdown-item {
  text-align: center;
}

.footer-container-width {
  position: absolute;
  width: 100%;
  max-width: inherit;
}

/*
================
Media Queries
===================== 
*/

@media only screen and (min-width: 129px) and (max-width: 193px) {
  .navbar-toggler {
    color: black;
    font-size: 12px;
    font-weight: 600;
  }

  .display-none {
    display: none;
  }

  .header-number {
    display: none;
  }

  .header-icons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 7px;
  }

  .navbar-hide-brand {
    display: none;
  }

  .nav-link {
    color: black;
    font-weight: 600;
    font-size: 10px;
  }


}

@media only screen and (min-width: 194px) and (max-width: 300px) {
  .header-number {
    font-size: 9px;
    position: absolute;
    margin-left: -76px;
    margin-top: 5px;
  }

  .nav-brand-size {
    font-size: 12px;
  }

  .navbar-toggler {
    color: black;
    font-size: 15px;
    font-weight: 600;
  }

  .display-none {
    display: none;
  }

  .header-icon-hide {
    display: none;
  }

  .header-icons {
    display: flex;
    justify-content: space-between;
    gap: 19px;
  }


}

@media only screen and (min-width: 301px) and (max-width: 409px) {
  .header-number {
    position: absolute;
    margin-left: -81px;
    font-size: 11px;
    margin-top: 4px;
  }

  .navbar-toggler {
    color: black;
    font-size: 15px;
    font-weight: 600;
  }

  .display-none {
    display: none;
  }

  .nav-brand-size {
    font-size: 13px;
  }


}

@media only screen and (min-width: 410px) and (max-width: 630px) {
  .header-number {
    font-size: 14px;
  }

  .header-icons {
    display: none;
  }

  .navbar-brand {
    font-size: 16px;
  }

}






/* 
===============
Footer css
=====================
 */

a {
  text-decoration: none !important;
}

.span-or {
  display: block;
  position: absolute;
  left: 50%;
  top: -2px;
  margin-left: -25px;
  background-color: #fff;
  width: 50px;
  text-align: center;
}

.hr-or {
  background-color: #cdcdcd;
  height: 1px;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

footer.nb-footer {
  background: #222;

}

footer.nb-footer .about {
  margin: 0 auto;
  margin-top: 40px;
  max-width: 1170px;
  text-align: center;
}

footer.nb-footer .about p {
  font-size: 13px;
  color: #999;
  margin-top: 30px;
}

footer.nb-footer .about .social-media {
  margin-top: 15px;
}

footer.nb-footer .about .social-media ul li a {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  font-size: 16px;
  color: #b78c33;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

footer.nb-footer .about .social-media ul li a:hover {
  background: #b78c33;
  color: #fff;
  border-color: #b78c33;
}

footer.nb-footer .footer-info-single {
  margin-top: 30px;
}

footer.nb-footer .footer-info-single .title {
  color: #aaa;
  text-transform: uppercase;
  font-size: 16px;
  border-left: 4px solid #b78c33;
  padding-left: 5px;
}

footer.nb-footer .footer-info-single ul li a {
  display: block;
  color: #aaa;
  padding: 2px 0;
}

footer.nb-footer .footer-info-single ul li a:hover {
  color: #b78c33;
}

footer.nb-footer .footer-info-single p {
  font-size: 13px;
  line-height: 20px;
  color: #aaa;
}

footer.nb-footer .copyright {
  margin-top: 15px;
  background: #111;
  padding: 7px 0;
  color: #999;
}

footer.nb-footer .copyright p {
  margin: 0;
  padding: 0;
}

@media only screen and (min-width:130px) and (max-width:575px) {
  .txt-align-sm {
    text-align: center;
  }
}