/**********************************************************
// Header >> Ads
**********************************************************/
.Header-Ads {
	background: #F5F5F5;
	position: relative;
	z-index: 9000;
	}

/**********************************************************
// Header
**********************************************************/
.Header {
	padding: 15px 10px 20px 10px;
	width: 100%;
	display: block;
	text-align: center;
	position: relative;
	z-index: 5000;
	}

.Header-Top {
	margin: auto;
	width: 100%;
	max-width: 1000px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 100;
	}

.Header-Bottom {
	margin: 30px auto 0 auto;
	width: 100%;
	display: none;
	position: relative;
	z-index: 100;
	}

.Header-Open {
	position: absolute;
	z-index: 50;
	left: 0;
	top: 0;
	}

.Header-Open a { display: block; }
.Header-Open img {
	width: auto;
	height: auto;
	max-height: 160px;
	}

.Header-Logo {
	margin: 0 auto -20px auto;
	max-width: 1000px;
	position: relative;
	z-index: 50;
	top: -20px;
	line-height: 0;
	font-size: 0;
	}

.Header-Logo a { display: inline-block; }

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

/**********************************************************
// Header >> Nav
**********************************************************/
.Header-Nav {
	text-align: center;
	display: inline-block;
	vertical-align: middle;
	}

.Header-Nav li {
	margin: 0 12px;
	display: inline-block;
	text-transform: uppercase;
	position: relative;
	}

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

.Header-Nav li a:hover { color: #FFB948; }
.Header-Nav li a {
	letter-spacing: 1px;
	font-weight: 500;
	font-size: 12px;
	color: #FFF;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	}

.Header-Nav li ul {
	margin-top: 0;
	margin-left: -105px;
	padding-top: 10px;
	width: 210px;
	display: none;
	opacity: 0;
    animation: Grow_Down 300ms ease-in-out forwards;
    transform-origin: top center;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
	position: absolute;
	left: 50%;
	}

.Header-Nav li:hover > ul {
    display: block;
    opacity: 1;
    }

.Header-Nav li > ul li:hover { background: #FFB948; }
.Header-Nav li > ul li {
	margin: 0 0 1px 0;
	display: block;
	background: #FFF;
	color: #005070;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	}

.Header-Nav li > ul > li:first-child {
    -webkit-border-top-left-radius: 4px;
    -webkit-border-top-right-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-topright: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
	}

.Header-Nav li > ul > li:last-child {
    -webkit-border-bottom-right-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-bottomright: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
	}

.Header-Nav li > ul li a:hover { color: #005070; }
.Header-Nav li > ul li a {
	padding: 10px 15px;
	line-height: 1.5em;
	display: block;
	color: #005070;
	}

.Header-Nav li.Icon-Home a {
	position: relative;
	font-size: 0;
	}

.Header-Nav li.Icon-Home a:before {
	content: "\f015";
	font-family: "Font Awesome 5 Pro";
	font-weight: 700;
	font-size: 16px;
	}

@keyframes Grow_Down {
      0% { transform: scaleY(0)   }
     80% { transform: scaleY(1.1) }
    100% { transform: scaleY(1)   }
}

/**********************************************************
// Header >> Nav: Menu
**********************************************************/
.Header-Nav-Menu {
	margin: auto;
	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: #FFF; }

.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: #FFF;
	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 {
	margin-left: 50px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	}

.Header-Search-Label:hover,
.Header-Search-Label:focus { color: #FFB948; }
.Header-Search-Label {
	cursor: pointer;
	color: #FFF;
	}

.Header-Search-Label i { font-size: 20px; }
.Header-Search-Label span {
	margin-left: 2px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
	font-size: 12px;
	position: relative;
	top: -2px;
	}

.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: #FFB948;
	display: block;
	position: absolute;
	z-index: 8000;
	right: 20px;
	top: 17px;
	}

.Header-Search-Form {
	padding: 15px;
	border-radius: 4px;
	background: #FFB948;
	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: 700;
	font-size: 14px;
	background: transparent;
	color: #005070;
	}

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

/**********************************************************
// 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: 1260px),
all and (max-device-width: 1260px)
{
	.Header-Open { display: none; }
}

@media
all and (max-width: 1024px),
all and (max-device-width: 1024px)
{
	.Header { padding: 0 10px 20px 10px; }

	.Header-Top { display: none; }
	.Header-Nav-Menu { display: inline-block; }
	.Header-Bottom { display: block; }

	.Header-Logo {
		margin: 0 auto -40px auto;
		top: -40px;
		}
}

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

	.Header-Logo {
		margin: 0 auto -30px auto;
		top: -30px;
		}

	.Header-Bottom { margin-top: 20px; }
}

@media
all and (max-width: 600px),
all and (max-device-width: 600px)
{
	.Header-Logo {
		margin: 0 auto -10px auto;
		top: -10px;
		}
}
