/**********************************************************
// Header >> Top
**********************************************************/
.Header-Top {
	padding: 10px 10px 15px 10px;
	background: #F7CBB0;
	position: relative;
	z-index: 5000;
	}

.Header-Top-Inner {
	margin: auto;
	width: 100%;
	max-width: 1190px;
	display: flex;
	align-items: center;
    justify-content: space-between;
	}

.Header-Top-Right { margin-left: auto; }

/**********************************************************
// Header >> Top >> Link
**********************************************************/
.Header-Top-Link, a.Header-Top-Link:visited {
	line-height: 1.5em;
	text-transform: lowercase;
	font-weight: 600;
	font-size: 16px;
	color: #000;
	display: inline-block;
	}

.Header-Top-Link:hover { color: #F28710; }
.Header-Top-Link:hover i { left: 3px; }
.Header-Top-Link i {
	margin-left: 3px;
	-webkit-transition: left 0.2s ease-in-out;
    -moz-transition: left 0.2s ease-in-out;
    -ms-transition: left 0.2s ease-in-out;
    -o-transition: left 0.2s ease-in-out;
    transition: left 0.2s ease-in-out;
	position: relative;
	left: 0;
	top: 1px;
	}

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

.Header-Top-Nav ul { margin-bottom: 0 !important; }

.Header-Top-Nav li {
	margin: 0 15px;
	display: inline-block;
	text-transform: lowercase;
	position: relative;
	}

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

.Header-Top-Nav li a {
	letter-spacing: 0;
	font-weight: 600;
	font-size: 16px;
	color: #000;
	}

.Header-Top-Nav li a:hover {
	color: #F28710;
	background-color: transparent;
	}

.Header-Top-Nav li ul {
	margin-top: 0;
	margin-left: -90px;
	padding-top: 10px;
	width: 180px;
	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-Top-Nav li:hover > ul {
    display: block;
    opacity: 1;
    }

.Header-Top-Nav li > ul li:hover { background: #F28710; }
.Header-Top-Nav li > ul li {
	margin: 0 0 1px 0;
	padding: 0 !important;
	display: block;
	background: #F7CBB0;
	color: #000;
	}

.Header-Top-Nav li > ul li a {
	padding: 4px 6px 6px 6px;
	line-height: 1.5em !important;
	font-size: 14px;
	display: block;
	color: #000;
	}

.Header-Top-Nav li > ul li a:hover {
	background-color: transparent !important;
	color: #000;
	}

.toggle-sub-menu { display: none !important; }

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

/**********************************************************
// Header >> Top >> Nav: Menu
**********************************************************/
.Header-Top-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-Top-Nav-Menu:focus,
.Header-Top-Nav-Menu:active {
	background-color: transparent !important;
	box-shadow: 0 0 0 #000;
	outline: 0;
	}

.Header-Top-Nav-Menu:hover,
.Header-Top-Nav-Menu.Active:hover {
	background-color: transparent !important;
	opacity: 0.7;
	}

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

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

.Header-Top-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-Top-Nav-Menu-Inner,
.Header-Top-Nav-Menu-Inner::before,
.Header-Top-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-Top-Nav-Menu-Inner::before,
.Header-Top-Nav-Menu-Inner::after {
    content: '';
    display: block;
	}

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

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

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

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

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

/**********************************************************
// Header >> Top >> Search
**********************************************************/
.Header-Top-Search {
	margin-left: 40px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	}

.Header-Top-Search i:hover { color: #F28710; }
.Header-Top-Search i {
	font-size: 18px;
	cursor: pointer;
	color: #000;
	}

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

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

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

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

.Header-Top-Search-Form .search-field {
	padding: 5px 10px;
	width: 100%;
	border: 0;
	height: 20px;
	line-height: 20px;
	letter-spacing: 0;
	font-weight: 600;
	font-size: 14px;
	border-radius: 0;
	background: transparent;
	color: #000;
	}

.Header-Top-Search-Form input::-webkit-input-placeholder { text-transform: lowercase; color: #000; }
.Header-Top-Search-Form input:-moz-placeholder           { text-transform: lowercase; color: #000; }
.Header-Top-Search-Form input::-moz-placeholder          { text-transform: lowercase; color: #000; }
.Header-Top-Search-Form input:-ms-input-placeholder      { text-transform: lowercase; color: #000; }

/**********************************************************
// Header >> Main
**********************************************************/
.Header-Main {
	padding: 25px 10px 20px 10px;
	text-align: center;
	position: relative;
	}

.Header-Main-BG {
	background: url(../Images/BG-Header-Main.jpg) top center no-repeat;
	background-size: cover;
	height: 650px;
	position: absolute;
	z-index: -1;
	right: 0;
	left: 0;
	top: 0;
	}

body.blog .Header-Main-BG,
body.search .Header-Main-BG { height: 550px; }

body.single .Header-Main-BG { height: 600px; }

body.archive .Header-Main-BG {
	height: auto;
	bottom: 0;
	}

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

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

/**********************************************************
// Header >> Main >> Nav
**********************************************************/
.Header-Main-Nav {
	margin: 20px auto 0 auto;
	text-align: center;
	display: inline-block;
	vertical-align: middle;
	}

.Header-Main-Nav ul { margin-bottom: 0 !important; }

.Header-Main-Nav li {
	margin: 0 15px;
	display: inline-block;
	text-transform: lowercase;
	position: relative;
	}

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

.Header-Main-Nav li a {
	letter-spacing: 0;
	font-weight: 600;
	font-size: 18px;
	color: #000;
	}

.Header-Main-Nav li a:hover {
	color: #F28710;
	background-color: transparent;
	}

.Header-Main-Nav li ul {
	margin-top: 0;
	margin-left: -90px;
	padding-top: 10px;
	width: 180px;
	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%;
	z-index: 1000;
	}

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

.Header-Main-Nav li > ul li:hover { background: #F28710; }
.Header-Main-Nav li > ul li {
	margin: 0 0 1px 0;
	padding: 0 !important;
	display: block;
	background: #F7CBB0;
	color: #000;
	}

.Header-Main-Nav li > ul li a {
	padding: 4px 6px 6px 6px;
	line-height: 1.5em !important;
	font-size: 14px;
	display: block;
	color: #000;
	}

.Header-Main-Nav li > ul li a:hover {
	background-color: transparent !important;
	color: #000;
	}

/**********************************************************
// Media Queries
**********************************************************/
@media
all and (max-width: 1024px),
all and (max-device-width: 1024px)
{
	body.single .Header-Main-BG {
		height: auto;
		bottom: 0;
		}
}

@media
all and (max-width: 768px),
all and (max-device-width: 768px)
{
	.Header-Top-Nav { display: none; }
	.Header-Top-Nav-Menu { display: inline-block; }
	.Header-Top-Search { display: none; }
	.Header-Main-Nav { display: none; }
}

@media
all and (max-width: 500px),
all and (max-device-width: 500px)
{
	.Header-Top-Link { display: none; }
	.Header-Top-Right { margin: auto; }
}
