/* Header Style */
@-webkit-keyframes fadeInDown {
  from {
    transform: translate3d(0, -100%, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInDown {
  from {
    transform: translate3d(0, -100%, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.header {
  position: absolute;
  z-index: 111;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  transition: var(--transition);
}

.header-sticky.is-sticky {
  position: fixed;
  margin-top: 0;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  background-color: rgba(var(--header-background-color));
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.header-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-right: -15px;
  margin-left: -15px;
}
.header-inner > * {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  padding-right: 15px;
  padding-left: 15px;
}
.header-left {
  align-items: center;
  align-self: center;
  flex: 0 0 auto;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .header-center {
    display: none;
  }
}
.header-right {
  display: flex;
  align-items: center;
  align-self: center;
  flex: 0 0 auto;
}
@media only screen and (max-width: 767px) {
  .header-right .btn {
    display: none;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 0;
  padding-left: 30px;
}
@media only screen and (max-width: 767px) {
  .header-actions {
    padding-left: 0px;
  }
}
.header-actions li {
  list-style: none;
  position: relative;
}
.header-actions li button {
  height: 40px;
  width: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-actions li button svg {
  width: 16px;
  height: 16px;
  color: rgba(var(--base-color));
}
.header-actions li button svg path {
	fill: currentColor;
	stroke: currentColor;
}

@media only screen and (max-width: 767px) {
  .header-actions li button {
    height: 36px;
    width: 36px;
  }
}

.header-logo {
  line-height: 1;
  display: flex;
}
.header-logo img {
  width: 100%;
}
.header-main-menu {
  margin-left: 40px;
}
.header-main-menu-nav ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-main-menu-nav > ul {
  gap: 0 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-main-menu-nav > ul {
    gap: 0 32px;
  }
}
.header-main-menu-nav > ul > li {
  position: relative;
}
.header-main-menu-nav ul > li > a {
  font-family: var(--body-font);
  font-size: var(--body-font-size);
  font-weight: 400;
  line-height: 1.18;
  position: relative;
  display: flex;
  padding: 20px 0;
  text-transform: capitalize;
  color: rgba(var(--menu-link-color));
  gap: 7px;
}
.header-main-menu-nav > ul > li > a::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  content: "";
  transition: all 0.3s ease 0s;
  background-color: currentColor;
}
.header-main-menu-nav ul > li:hover > a {
  color: rgba(var(--menu-link-hover-color));
}
.header-main-menu-nav ul li:hover a::before {
  right: auto;
  left: 0;
  width: 100%;
}
.header-main-menu-nav > ul > li:hover .header-sub-menu-2 {
  visibility: visible;
  margin-top: 0;
  opacity: 1;
}
.header-main-menu-nav .header-sub-menu-2 {
  position: absolute;
  z-index: 99;
  top: 100%;
  left: -25px;
  visibility: hidden;
  flex-direction: column;
  width: 220px;
  margin-top: 20px;
  padding: 20px 25px;
  transition: var(--transition);
  opacity: 0;
  background-color: rgba(var(--dropdown-bg-color));
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.header-main-menu-nav ul > li > ul > li > a {
  font-family: var(--body-font);
  font-size: var(--body-font-size);
  font-weight: 400;
  line-height: 30px;
  display: flex;
  padding: 5px 0;
  text-transform: capitalize;
  color: rgba(var(--child-menu-link-color));
}
.header-main-menu-nav ul > li > ul > li > a:hover {
  color: rgba(var(--child-menu-link-hover-color));
}