/*============================================================================================
	Header Area
==============================================================================================*/
/* Topbar */
.topbar {
  background: var(--primary-color);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-info-list li {
  display: inline-block;
  position: relative;
  padding-right: 16px;
  margin-right: 16px;
}
.topbar-info-list li:last-child {
  padding: 0;
  margin: 0;
}
.topbar-info-list li::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 24px;
  background: #325da1;
  right: 0;
  top: 0;
}
.topbar-info-list li:last-child::before {
  display: none;
}
.topbar-info-list li a {
  color: var(--white-color);
  font-weight: 600;
}
.topbar-info-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 8px;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar-right-info li {
  display: inline-block;
  margin-right: 24px;
}
.topbar-right-info li:last-child {
  margin: 0;
}
.topbar-right-info li a {
  color: var(--white-color);
  font-weight: 600;
  font-size: 16px;
}
.self-care-btn {
  background: var(--accent-color);
  padding: 11px 46px 11px 24px;
  color: var(--white-color) !important;
  font-weight: 600;
  position: relative;
}
.self-care-btn:hover {
  background: var(--white-color);
  color: var(--accent-color) !important;
}
.self-care-btn i {
  position: absolute;
  transform: rotate(-48deg);
  font-size: 16px;
  top: 11px;
  right: 24px;
}

/* Header */
.header.style3 {
  background: var(--secondary-color);
  padding: 16px 0px;
}
.header.style3.sticky {
  position: fixed;
  width: 100%;
  border-bottom: 1px solid transparent;
  z-index: 9999;
  animation: fadeInDown 1s both 0.2s;
  top: 0;
  left: 0;
}
.header.style3 .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header.style3 .header-logo img {
  width: 172px;
  height: 40px;
  object-fit: contain;
}
.header.style3 .header-menu-list > li {
  display: inline-block;
  margin-right: 24px;
  position: relative;
}
.header.style3 .header-menu-list > li:last-child {
  margin: 0;
}
.header.style3 .header-menu-list > li > a {
  font-weight: 500;
  color: var(--white-color);
  position: relative;
  display: flex;
justify-content: center;
align-items: center;
}

.header.style3 .header-menu-list > li > a:hover {
  color: var(--accent-color);
}
.header.style3 .header-menu-list > li > a:hover::before,
.header.style3 .header-menu-list > li > a:hover::after {
  opacity: 1;
  visibility: visible;
}
.header.style3 .header-menu-list > li > a:hover::before,
.header.style3 .header-menu-list > li.active > a::before {
  width: 24px;
}
.header.style3 .header-menu-list > li.active > a::before,
.header.style3 .header-menu-list > li.active > a::after {
  opacity: 1;
  visibility: visible;
}

.header.style3 .header-menu-list > li.active > a {
  font-weight: 700;
  color: var(--accent-color) !important;
}
.header.style3 .header-menu-list > li > a::before {
  position: absolute;
  content: "";
  width: 0px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
  bottom: -6px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.header.style3 .header-menu-list > li > a::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 50px;
  bottom: -6px;
  left: 27px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.header.style3 .header-menu-list li .sub-menu {
  position: absolute;
  top: 25px;
  width: 220px;
  background: #fff;
  z-index: 5222;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  box-shadow: 0px 10px 30px #04091e17;
  border-radius: 4px;
  margin: 0;
  padding: 4px 0px;
  transition-delay: 0.2s;
  opacity: 0;
}
.header.style3 .header-menu-list li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(15px);
  transition-delay: 0s; 
}
.header.style3 .header-menu-list li .sub-menu::before {
  background: #fff;
  bottom: 0;
  content: "";
  height: 12px;
  margin-left: -6px;
  opacity: 1;
  position: absolute;
  left: 24px;
  top: -6px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.2s ease;
  visibility: visible;
  width: 12px;
}
.header.style3 .header-menu-list li .sub-menu li {
  display: block;
  margin: 0;
  text-align: left;
  /* border-bottom: 1px solid #eee; */
}


.header.style3 .header-menu-list li .sub-menu li a {
  color: var(--primary-color);
  display: block;
  padding: 10px 25px;
  font-size: 15px;
  border-radius: 0;
  font-weight: 600;
}
.header.style3 .header-menu-list li .sub-menu li a:hover {
  color: var(--accent-color);
  padding: 10px 25px;
  margin-left: 5px;
}

.header.style3 .header-menu-list li a i{
line-height: 0px !important;
margin-left: 5px;
font-size: 14px;
}
.header.style3 .header-menu-list li a i::before{
  font-weight: 800 !important;
}

@-webkit-keyframes sticky {
  0% {
    top: -200px;
  }
  100% {
    top: 0;
  }
}
@keyframes sticky {
  0% {
    top: -200px;
  }
  100% {
    top: 0;
  }
}


@media only screen and (max-width: 1199px) {
  
  .header.style3 .navigation {
    display: none;
  }
  .mobile-menu-modal .topbar-right-info li a {
    color: var(--title-color);
    font-size: 11px;
    text-wrap: nowrap;
    border-radius: 4px;
  }
  .mobile-menu-modal .self-care-btn {
    display: block;
    text-align: center;
    font-size: 12px;
    padding: 2px 12px;
    }
  .mobile-menu-modal .self-care-btn.self-care-btn-red{
    padding-right: 20px;
  }

  .mobile-menu-modal .self-care-btn.self-care-btn-red:hover{
    background: var(--secondary-color) !important;
  }
  .mobile-menu-modal .self-care-btn.self-care-btn-blue{
    background: var(--secondary-color) !important;
  }

  .mobile-menu-modal .topbar-right-info li {
    margin-right: 8px;
  }
  .mobile-menu-modal .topbar-right-info:nth-last-child{
    margin-right: 0px;
  }

  .mobile-menu-modal .self-care-btn i {
    font-size: 11px;
    top: 3px;
    right: 4px;
  }
  .mobile-menu-modal .topbar-right-info {
    text-align: center;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media only screen and (max-width: 767px) {
  .topbar {
    display: none;
  }

  .header.style3 .header-logo img {
    width: 154px;
    height: 40px;
  }
  .topbar-right-info li a {
    color: var(--title-color);
    font-size: 12px;
  }
  .topbar-right-info li a:hover {
    color: var(--accent-color);
  }


  .self-care-btn:hover {
    background: var(--secondary-color);
    color: var(--white-color) !important;
  }
  .topbar-right {
    display: block;
  }



}