/*================================================================================================
	Header Area
==================================================================================================*/

/*============================================================================================
	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 Main  
====================*/

.header.style5 {
  background: var(--white-color);
  box-shadow: 0px 24px 48px rgba(10, 38, 71, 0.08);
  position: relative;
}
.header.style5 .header-logo img {
  width: 138px;
  /* height: 72px; */
  height: auto;
  object-fit: contain;
}
.header.style5 .header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header.style5 .header-menu-list li {
  display: inline-block;
  margin-right: 24px;
}
.header.style5 .header-menu-list li:last-child {
  margin: 0;
}

.header.style5 .header-menu-list li a {
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  padding: 27px 0px;
  color: var(--title-color);
  border-radius: 4px;
}
.header.style5 .header-menu-list li a:hover,
.header.style5 .header-menu-list li.active a {
  color: var(--primary-color);
}

.header.style5 .header-more-menu .dropdown {
  height: auto;
  line-height: 0;
}
.header.style5 .header-more-menu .dropdown-toggle {
  padding: 0;
  border: none;
  color: var(--title-color);
  font-weight: 500;
  background: transparent;
  font-size: 15px;
}
.header.style5 .header-more-menu .dropdown-toggle::after {
  display: none;
}
.header.style5 .header-more-menu .dropdown-menu.show {
  border-radius: 0px;
  border: none;
  width: 240px;
  padding: 0;
  box-shadow: var(--boxshadow3);
  transform: translate3d(-2px, 45.8px, 0px) !important;
}
.header.style5 .header-more-menu .dropdown-toggle.show,
.header.style5 .header-more-menu .dropdown-toggle.show i {
  color: var(--primary-color) !important;
}
.header.style5 .header-more-menu .dropdown-toggle i {
  position: relative;
  top: 3px;
  margin-left: 2px;
  font-size: 16px;
}
.header.style5 .header-more-menu .dropdown-menu.show li {
  margin: 0;
  width: 100%;
}
.header.style5 .header-more-menu .dropdown-menu.show li a {
  color: var(--title-color) !important;
  display: block;
  border-radius: 0px;
  padding: 16px;
}
.header.style5 .header-more-menu .dropdown-menu.show li a:hover {
  background: var(--primary-color);
  color: var(--white-color) !important;
}
.header.style5 .header-more-menu .dropdown-menu.show li.active a {
  color: var(--primary-color) !important;
}
.header.style5 .header-more-menu .dropdown-menu.show li.active a:hover {
  color: var(--white-color) !important;
}
.header.style5.sticky {
  position: fixed;
  width: 100%;
  top: 0px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 666;
  animation: fadeInDown 1s both 0.2s;
}
.header.style5 .header-more-menu.active .dropdown-toggle {
  color: var(--primary-color);
}

.mobile-menu-offcanvas-toggler .line {
  background: var(--primary-color);
}

.mobile-menu-offcanvas-toggler {
  float: right;
}

@media only screen and (min-width: 1600px) and (max-width: 1920px) {
  .header.style5 .header-more-menu .dropdown-menu.show {
    transform: translate3d(-184px, 45.8px, 0px) !important;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  .header.style5 .header-right {
    display: none;
  }
  .header.style5 {
    padding: 20px 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header.style5 .header-right {
    display: none;
  }
  .header.style5 {
    padding: 20px 0px;
  }
}

@media only screen and (max-width: 767px) {
  .header.style5 .header-right {
    display: none;
  }
  .header.style5 {
    padding: 20px 0px;
  }
  .header.style5 .header-logo img {
    width: 138px;
  }
}
/*================================================================================================
	End Header Area
==================================================================================================*/
