/* Header Zone [General] */
#HeaderZone {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 20;
	transition: 0.35s ease;
	-webkit-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	background-color: #FFFFFF; /* $white */
	box-shadow: 0 0.15em 0.35em rgba(0,0,0,0.25);
}

.cms-admin #HeaderZone {
	position: relative;
}

.right-info {
	font-family: 'Montserrat', sans-serif; /* @accentfont */
	line-height: 1;
}

.right-info p {
	margin: 0;
}

.right-info span {
	text-transform: uppercase;
	font-size: 1.167em;
	color: #FFFFFF; /* $white */
	background-color: #E03636; /* $secondary */
	border-radius: 2em;
	padding: .15em 1em;
	transition: .5s;
}

.right-info span:hover {
	background-color: #FFFFFF; /* $white */
	color: #0845A2; /* $primary */
}
/* End Header Zone [General] */

/* Top Bar */
.tagline-area {
	background-color: #0845A2; /* tertiary */
	padding: 0.35em 0;
	position: relative;
	z-index: 1;
}

.tagline-area header {
	font-size: 0.967em;
	color: #FFFFFF; /* $white */
	font-family: 'Montserrat', sans-serif; /* @accentfont */
	text-transform: uppercase;
}

.tagline-area .top-bar {
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.tagline-area .right-info {
}

.tagline-area .right-info > * {
	display: inline-block;
	vertical-align: middle;
}

.tagline-area .right-info span {
	margin-right: 0.5em;
}

.tagline-area .right-info a {
	color: #FFFFFF; /* $white */
	font-family: 'Montserrat', sans-serif;
}

.tagline-area .right-info a.phone {
	font-size: 1.667em;
}
/* End Top Bar */

/* Masthead */
.header-area {
	transition: 0.35s ease;
	padding: 0;
}

.fixed .header-area {
	padding: 0;
}

.header-area .masthead {
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
}

.top-logo {
	padding: 1em 0;
	position: relative;
}

.header-area > .main:before {
	content: '';
	display: block;
	position: absolute;
	left: -5em;
	bottom: 0;
	background-image: url(../images/header-repairman.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center bottom;
	height: 9.333em;
	width: 6.056em;
	z-index: 2;
}

.top-logo img {
	display: block;
	max-width: 25em;
	transition: 0.35s ease;
}

.fixed .top-logo img, .sub .top-logo img {
}

.top-nav {
}

.top-nav a {
	display: block;
	padding: 0.5em 0.85em;
	color: #31251C; /* $dark */
	font-family: 'Montserrat', sans-serif; /* @accentfont */
	font-size: 1.167em;
	transition: 0.35s ease;
	position: relative;
	z-index: 1;
	text-align: center;
}

.top-nav a:hover {
	color: #0845A2; /* $primary */
}

.header-area .right-info {
	text-align: center;
}

.header-area .right-info span {
	display: block;
	margin-bottom: 0.5em;
}

.header-area .right-info a {
	display: block;
	color: #31251C; /* $dark */
}
/* End Masthead */

/* Mobile Nav */
.mob-triggers {
	display: none;
}

.mobile-nav > li {
	display: inline-block;
	vertical-align: middle;
}

.mobile-nav li > * > button, .mobile-nav > li > a {
	color: #0845A2; /* $primary */
	background-color: transparent;
	padding: 0.25em 0.5em;
	border: none;
	margin: 0;
	font-size: 2.15em;
	outline: none;
}

.mob-triggers .icon-mob-call {
	font-size: 1.2em;
}
/* End Mobile Nav */

/* Responsive - 1736px */
@media screen and (max-width: 1736px) {
	.header-area .main:before {
		left: 0;
	}

	.top-logo {
		padding-left: 5em;
	}

	.tagline-area header {
		padding-left: 5em;
	}
}
/* End Responsive - 1736px */

/* Responsive 1350px */
@media screen and (max-width:1350px) {
	.top-nav a {
		font-size: .9em;
	}
}
/* End Responsive 1350px */

/* Responsive - 1120px */
@media screen and (max-width: 1120px) {
	.top-logo img {
		max-width: 15em;
	}

	.top-nav a {
		padding: 0.5em;
	}

	.tagline-area .right-info span {
		display: none;
	}

	.header-area > .main:before {
		height: 133%;
	}
}
/* End Responsive - 1120px */

/* Responsive - 875px */
@media screen and (max-width: 875px) {
	.masthead {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.header-area {
		padding: 0.75em 0;
	}

	.fixed .header-area {
		padding: 0.5em 0 0;
	}

	.tagline-area header {
		display: none;
	}

	.tagline-area .right-info {
		display: block;
		text-align: center;
		margin: 0 auto;
	}

	.top-bar {
	}

	.top-logo img, .fixed .top-logo img, .sub .top-logo img {
		max-width: 15.5em;
		margin: 0;
	}

	.top-logo img {
		position: relative;
		top: 0;
	}

	.top-nav {
		width: 100%;
		-webkit-order: 1;
		-ms-flex-order: 1;
		order: 1;
		padding-left: 5em;
	}
}
/* End Responsive - 875px */

/* Responsive - 800px (Mobile) */
@media screen and (max-width: 800px) {
	#HeaderZone {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

	.down-scroll .fixed #HeaderZone {
		-webkit-transform: translateY(-100%);
		-ms-transform: translateY(-100%);
		transform: translateY(-100%);
	}

	.fixed .header-area {
		padding: 0.5em 0;
	}

	.top-logo img, .fixed .top-logo img, .sub .top-logo img {
		max-width: 10.5em;
	}

	.top-nav {
		display: none;
	}

	.header-area .right-info {
		display: none;
	}

	.mob-triggers {
		display: block;
		margin: 0 auto;
	}
}
/* End Responsive - 800px (Mobile) */

/* Responsive - 683px */
@media screen and (max-width: 683px) {
}
/* End Responsive - 683px */

/* Responsive - 532px */
@media screen and (max-width: 532px) {
	.top-bar.flex {
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.tagline-area {
		display: none;
	}
}
/* End Responsive - 532px */

/* Responsive - 414px */
@media screen and (max-width: 414px) {
	.top-logo img {
		max-width: 14.5em;
	}

	.header-area > .main:before {
		height: 100%;
		bottom: auto;
		top: 0;
	}

	.mob-triggers {
		margin: 4px auto;
		padding-left: 7em;
	}
}
/* End Responsive - 414px */

/* Responsive - 323px */
@media screen and (max-width: 323px) {
}
/* End Responsive - 323px */
