/* header styles */
:root {
  --header-height: 87px;
  --header-bg: var(--black);
}

.header {
  --left-right-padding: var(--page-hr-padding);
  --header-vr-padding: 30px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  margin: 0 auto;
  padding: 0 var(--left-right-padding);
  z-index: 2;
  transition: all 0.2s linear 0s;
  display: flex;
  align-items: center;
  height: var(--header-height);
  /* overflow: hidden; */
}

.header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-animated {
  --header-height: 70px;
}

.header-animated .header {
  --header-height: 70px;
  background-color: var(--header-bg) !important;
  box-shadow: 5px 0 3px 0px rgba(0, 0, 0, 0.2);
}

.header-button-section {
  display: flex;
}

.heade-button-item:not(:last-child) .site-btn {
  border-right-width: 0;
}

.header-animated .heade-button-item .site-btn:not(:hover) {
  --btn-bg-color: transparent;
}

.main-logo-section .mobile-logo {
  display: none;
}

/* .header-animated .initial-logo-white,
.initial-logo-white+.initial-logo {
  display: none;
} */

.header-animated .initial-logo-white+.initial-logo {
  display: block;
}

/* inner header */

.inner-header {
  background-color: var(--black) !important;
}

.header-animated .menu-main,
.inner-header .menu-main {
  --link-active-border-color: var(--white);
}

.header-animated .menu-link,
.inner-header .menu-link {
  --link-color: var(--white);
}

/* tag line */

.site-tagline {
  color: var(--white);
  font-size: 8px;
  letter-spacing: 1.25px;
  max-width: 119px;
  display: block;
  margin-top: 5px;
  line-height: 10px;
  font-weight: var(--primary-font-light);
}

.mobile-tagline {
  display: none;
}
