/**********************************************************
// Header
**********************************************************/
.Header {
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 5000;
	background: #fff;
	}

.Header-Inner { max-width: 1300px; margin: 0 auto; }

.Header-Logo {
	display: inline-block;
	vertical-align: top;
	line-height: 0;
	font-size: 0;
	}

.Header-Logo img {
	width: auto;
	height: auto;
	max-height: 45px;
	}

/**********************************************************
// Header >> Sections
**********************************************************/

.Header-Top {
	display: flex;
	max-width: 1300px; 
	width: 100%;
	margin: 0 auto;
	padding: 10px 30px;
    justify-content: space-between;
}

.Header-Top-Right {
	display: flex;
	gap: 2em;
	align-items: center;
}

.Header-Logo img { max-height: 65px; }

.Header-Bottom { 
	background: var(--Dark); 
	width: 100%;
	padding: 20px 30px;
}

.Header-Button:hover { background: var(--Blue); color: #fff; }
.Header-Button {
	background: var(--Yellow);
	color: #fff;
	padding: 10px 30px;
	font-size: 15px;
	border-radius: 40px;
}

.Header-Social .Social-Links li a svg * { fill: var(--Blue); }
.Header-Social .Social-Links li a:hover svg * { fill: var(--Yellow); }

.Header-Bottom .Header-Button { display: none; }

/**********************************************************
// Header >> Nav
**********************************************************/
.Header-Nav {
	text-align: center;
	display: inline-block;
	vertical-align: middle;
	max-width: 1300px; 
	width: 100%;
	margin: 0 auto;
	}

.Header-Nav ul.menu { display: flex; justify-content: space-between; gap: 1.5em;  }

.Header-Nav li {
	text-align: left;
	text-transform: uppercase;
	position: relative;
	}


.Header-Nav ul.menu > li { flex: 1; }

.Header-Nav li:first-child { margin-left: 0; }
.Header-Nav li:last-child { margin-right: 0; }

.Header-Nav li a:hover { color: var(--Alt); }
.Header-Nav li a {
	letter-spacing: 1px;
	font-weight: 700;
	font-size: 14px;
	color: #fff;
	padding: 10px 0;
	display: block;
	line-height: 18px;
	}

.Header-Nav li.current-menu-item a:hover { border-bottom: 1px solid var(--Alt); }
.Header-Nav li.current-menu-item a {
    border-bottom: 1px solid #fff;
}

.Header-Nav li.menu-item-home { display: none; }

.Header-Nav li ul {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -10px) scaleY(0.95);
  transform-origin: top center;
  opacity: 0;
  visibility: hidden;
  transition: all 250ms ease;
  z-index: 999;
  margin: 10px 0 0;
  padding: 0;
  width: 300px;
  background: var(--LightBG);
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.Header-Nav ul.menu li:nth-child(2) ul {
	left: 0;
	transform: scaleY(0.95);
	transform-origin: top left;
}

.Header-Nav li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) scaleY(1);
}

.Header-Nav li > ul li {
  	display: block;
  	margin: 0;
}

.Header-Nav li > ul li a {
  display: block;
  padding: 15px 16px;
  color: var(--Dark);
  font-size: 14px;
  text-decoration: none;
  transition: background 200ms, color 200ms;
}

.Header-Nav li > ul li a:hover {
  background: var(--Alt);
  color: #fff;
}

.Header-Nav li > ul li:first-child a { border-radius: 6px 6px 0 0; }
.Header-Nav li > ul li:last-child a { border-radius: 0 0 6px 6px; }

/* Optional: Reset weird animation override if needed */
@keyframes Grow_Down {
  0% { transform: scaleY(0) }
  80% { transform: scaleY(1.1) }
  100% { transform: scaleY(1) }
}

/**********************************************************
// Header >> Nav: Menu Trigger
**********************************************************/
.Menu-Trigger {
	display: none;
	width: 50px;
	z-index: 2000;
	border: 0;
	background: none;
	}

.Menu-Trigger:hover svg, .Menu-Trigger:hover svg * { fill: var(--Yellow); }
.Menu-Trigger svg, .Menu-Trigger svg * { fill: #fff; }

/**********************************************************
// Header >> Nav: Menu
**********************************************************/
.Header-Nav-Menu {
	margin: 0;
	padding: 0;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	text-transform: none;
	line-height: 0;
	background-color: transparent;
	border: 0;
	overflow: visible;
	vertical-align: middle;
	position: relative;
	display: none;
	}

.Header-Nav-Menu:focus { outline: 0; }
.Header-Nav-Menu:hover,
.Header-Nav-Menu.Active:hover { opacity: 0.7; }

.Header-Nav-Menu.Active .Header-Nav-Menu-Inner,
.Header-Nav-Menu.Active .Header-Nav-Menu-Inner::before,
.Header-Nav-Menu.Active .Header-Nav-Menu-Inner::after { background-color: #000; }

.Header-Nav-Menu-Box {
	width: 30px;
	height: 24px;
	display: inline-block;
	position: relative;
	}

.Header-Nav-Menu-Inner {
	margin-top: -2px;
	display: block;
    transition-duration: 0.275s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
	top: 2px;
	}

.Header-Nav-Menu-Inner,
.Header-Nav-Menu-Inner::before,
.Header-Nav-Menu-Inner::after {
	width: 30px;
	height: 3px;
	background-color: #000;
	border-radius: 4px;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
	}

.Header-Nav-Menu-Inner::before,
.Header-Nav-Menu-Inner::after {
    content: '';
    display: block;
	}

.Header-Nav-Menu-Inner::before {
	top: 10px;
    transition: opacity 0.125s 0.275s ease;
	}

.Header-Nav-Menu-Inner::after {
	bottom: -10px;
	top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	}

.Header-Nav-Menu.Active .Header-Nav-Menu-Inner {
	transform: translate3d(0, 10px, 0) rotate(135deg);
	transition-delay: 0.075s;
	}

.Header-Nav-Menu.Active .Header-Nav-Menu-Inner::before {
    transition-delay: 0s;
    opacity: 0;
	}

.Header-Nav-Menu.Active .Header-Nav-Menu-Inner::after {
    transform: translate3d(0, -20px, 0) rotate(-270deg);
    transition-delay: 0.075s;
	}

/**********************************************************
// Header >> Search
**********************************************************/
.Header-Search {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	}

.Header-Search i:hover { color: #333; }
.Header-Search i {
	font-size: 20px;
	cursor: pointer;
	color: #555;
	}

.Header-Search-Box {
	display: none;
	padding-top: 25px;
	width: 280px;
	position: absolute;
	z-index: 9000;
	right: -20px;
	}

.Header-Search-Box::before {
	width: 20px;
	height: 20px;
	content: '';
	transform: rotate(45deg);
	background: #000;
	display: block;
	position: absolute;
	z-index: 8000;
	right: 20px;
	top: 17px;
	}

.Header-Search-Form {
	padding: 15px;
	background: #000;
	position: relative;
	z-index: 9000;
	}

.Header-Search-Form span,
.Header-Search-Form .search-submit { display: none; }

.Header-Search-Form .search-field {
	width: 100%;
	border: 0;
	height: 20px;
	line-height: 20px;
	letter-spacing: 1px;
	font-weight: 400;
	font-size: 14px;
	background: transparent;
	color: #FFF;
	}

.Header-Search-Form input::-webkit-input-placeholder { text-transform: uppercase; color: #FFF; }
.Header-Search-Form input:-moz-placeholder           { text-transform: uppercase; color: #FFF; }
.Header-Search-Form input::-moz-placeholder          { text-transform: uppercase; color: #FFF; }
.Header-Search-Form input:-ms-input-placeholder      { text-transform: uppercase; color: #FFF; }

/**********************************************************
// Header >> Banner
**********************************************************/
.Header-Banner {
	margin: auto;
	text-align: center;
	line-height: 0;
	font-size: 0;
	}

.Header-Banner-Desktop { display: block; }
.Header-Banner-Mobile { display: none; }
.Header-Banner img {
	margin: auto;
	width: 100%;
	}

/**********************************************************
// Media Queries
**********************************************************/
@media
all and (max-width: 64rem),
all and (max-device-width: 64rem)
{
	.Header-Nav { display: none; }
	.Menu-Trigger { display: inline-block; }
	.Header-Bottom { padding: 10px 30px; }
}

@media
all and (max-width: 48rem),
all and (max-device-width: 48rem)
{
	.Header-Banner-Desktop { display: none; }
	.Header-Banner-Mobile { display: block; }
	
	.Header-Social { display: none; }
}

@media
all and (max-width: 37.5rem),
all and (max-device-width: 37.5rem)
{
	.Header-Top { justify-content: center; }
	.Header-Bottom { display: flex; gap: 2em; justify-content: center; }
	.Header-Top .Header-Button { display: none; }
	.Header-Bottom .Header-Button { display: block; padding: 17px 30px; }
}
@media
all and (max-width: 24rem),
all and (max-device-width: 24rem)
{

	
}
