/*============================================================================================
	Header Area
==============================================================================================*/
.topbar {
  background: var(--primary-color);
  padding: 10px 0px;
}
.topbar-contact-list li {
  display: inline-block;
  margin-right: 20px;
}
.topbar-contact-list li:last-child {
  margin: 0;
}

.topbar-contact-list li i {
  background: #ffffff29;
  border-radius: 8px;
  color: var(--white-color);
  width: 28px;
  height: 28px;
  display: inline-block;
  text-align: center;
  font-size: 14px;
  line-height: 31px;
  margin-right: 6px;
}
.topbar-contact-list li a {
  color: var(--white-color);
  font-weight: 600;
  font-size: 15px;
  line-height: 120%;
}
.topbar-selfcare-links {
  text-align: right;
}
.topbar-selfcare-links-list li {
  display: inline-block;
  margin-right: 12px;
  padding-right: 12px;
  position: relative;
}
.topbar-selfcare-links-list li:last-child {
  margin: 0;
  padding: 0;
}
.topbar-selfcare-links-list li::before {
  position: absolute;
  content: "";
  top: 6px;
  right: 0.5px;
  background: rgba(250, 250, 252, 0.32);
  width: 1px;
  height: 15px;
}
.topbar-selfcare-links-list li:last-child::before {
  display: none;
}
.topbar-selfcare-links-list li a {
  font-weight: 600;
  font-size: 15px;
  line-height: 120%;
  color: #fafafc;
}
@media only screen and (max-width: 767px) {
  .topbar {
    display: none;
  }
}

/* Header */
.header {
  background-color: var(--secondary-color);
  padding: 10px 0px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-nav li {
  display: inline-block;
  margin-right: 24px;
}
.header-nav li:last-child {
  margin: 0;
}
.header-nav li a {
  color: var(--white-color);
  font-weight: 500;
}
.header-nav li.active a,
.header-nav li a:hover {
  color: var(--primary-color);
}

.header-action .theme-btn {
  gap: 4px;
  padding: 5px 12px;
  border: 1px solid transparent;
}
.header-action .theme-btn:hover {
  border: 1px solid var(--white-color);
}

.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  -webkit-animation: sticky 1.2s;
  animation: sticky 1.2s;
}
@-webkit-keyframes sticky {
  0% {
    top: -200px;
  }
  100% {
    top: 0;
  }
}
@keyframes sticky {
  0% {
    top: -200px;
  }
  100% {
    top: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-nav li {
    margin-right: 8px;
  }
}

@media only screen and (max-width: 991px) {
  .header-nav {
    display: none;
  }
  .header-action {
    display: none;
  }
}

/*============================================================================================
	End Header Area
==============================================================================================*/
