/* Highest priority styling */

/*
CORE
HEADER
MENUS
*/

/*******************************************************************************************
CORE - Top-level styling
*******************************************************************************************/
:root {
	font-size: 17px;
	--body-text-color: #212121;
	--primary-color: #212121;
	--secondary-color: #FFCD0A;
	--alternate-color: #979797;
	--gray-color: #979797;
	--light-gray-color: #D6D6D6;
	--body-font-family: 'Open Sans';
	--heading-font-family: 'Zilla Slab';
	--fa-caret-right: '\f0da';
	--fa-angle-right: '\f105';
	--fa-plus: '\f067';
	--fa-minus: '\f068';
}

@media screen and (min-width: 768px) {

	/*TABLET*/
	:root {
		font-size: 17px;
	}
}

html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	display: block !important;
	line-height: 1.6;
	color: #212121;
	font-size: 1.0rem;
	font-family: var(--body-font-family);
	margin: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

*:focus {
	outline: auto;
}

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

/* CORE > Headings and Paragraphs */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 30px;
	color: #212121;
	font-weight: 400;
	font-family: var(--heading-font-family);
	line-height: 1.2;
}

h1 {
  font-size: 2.778rem;
}

h2 {
  font-size: 2.022rem;
  letter-spacing: 2px;
  color: #212121;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 20px;
}

h3 {
	font-size: 1.556rem;
}

h4 {
	font-size: 1.333rem;
}

h5,
h6 {
	font-size: 1.0rem;
}

h1 span.subtitle,
h2 span.subtitle {
	display: block;
	color: #FFCD0A;
	font-size: 40%;
}

p {
	margin: 0 0 30px;
	font-size: 1.0rem;
	color: #212121;
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: 2.778rem;
  }

  h2 {
    font-size: 2.022rem;
  }
}

/* CORE > Links and Buttons */
a {
	color: #212121;
	text-decoration: underline;
}

a:hover,
a:focus {
	color: #979797;
	text-decoration: none;
}

a.no-underline {
	text-decoration: none;
}

a.no-underline:hover,
a.no-underline:focus {
	text-decoration: underline;
}

a,
button,
.button {
	-webkit-transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in, padding 200ms ease;
	-o-transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in, padding 200ms ease;
	transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in, padding 200ms ease;
}

button,
.button {
	font-family: "Zilla Slab";
  letter-spacing: 1.6px;
	font-size: 0.941rem;
	font-weight: 400;
	text-transform: uppercase;
	cursor: pointer;
	border: none;
	margin: 0;
	padding: 12px 25px;
	text-align: center;
	display: inline-block;
	color: #212121;
	background-color: #FFCD0A;
	text-decoration: none;
}

button:active,
.button:active {
	transform: translateY(1.5px);
}

button:hover,
button:focus,
.button:hover,
.button:focus {
	background-color: #979797;
	color: #212121;
}

/* CORE > Layout */
.columns,
.column {
	float: left;
	padding: 0 40px;
}

.row,
.row-wide,
.row-narrow,
.row-1075,
.row-1175 {
	max-width: 1474px;
	margin-right: auto;
	margin-left: auto;
}

.row-1075 {
  max-width: 1075px;
}

.row-1175 {
  max-width: 1175px;
}

.row-narrow {
	max-width: 1024px;
}

.row-wide {
	max-width: 1599px;
}

.row:after {
	clear: both;
}

.row:after,
.row:before {
	display: table;
	content: ' ';
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-order: 1;
	order: 1;
}

/* CORE > Utility Classes */

.yellow-text {
  color: #FFCD0A;
}

.no-float {
	float: none;
}

.no-margin {
	margin: 0 !important;
}

.no-padding {
	padding: 0 !important;
}

.no-min-height {
	min-height: 0;
}

.position-static,
.static {
	position: static !important;
}

.position-relative,
.relative {
	position: relative !important;
}

.block {
	display: block;
}

.full-width {
	width: 100%;
}

.full-height {
	height: 100%;
}

.center,
.align-center,
.text-center {
	text-align: center;
}

.right,
.align-right,
.text-right {
	text-align: right;
}

.body-font {
	font-family: var(--body-font-family);
}

.header-font {
	font-family: var(--header-font-family);
}

.uppercase {
	text-transform: uppercase;
}

.hide {
	display: none;
}

.visually-hidden {
	border: none !important;
	clip: rect(0 0 0 0) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	white-space: nowrap !important;
	width: 1px !important;
}

.flex-container {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}

.flex-align-vertical {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
}

.flex-align-horizontal {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	text-align: center;
}

.two-buttons-container a,
.two-buttons-container button {
	display: block;
	margin-bottom: 10px;
}

.small-text {
	font-size: 0.9rem;
}

.larger-text {
	font-size: 1.2rem;
}

.font-light {
	font-weight: 300;
}

.font-normal {
	font-weight: 400;
}

.font-medium {
	font-weight: 500;
}

.font-semibold {
	font-weight: 600;
}

.bold,
.font-bold {
	font-weight: 700;
}

.height-auto {
  height: auto;
}

.max-width-100 {
  max-width: 100%;
}

.lazy-img {
  height: auto;
  max-width: 100%;
}

.lazy-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.no-repeat {
  background-repeat: no-repeat;
}

.background-cover {
  background-position: cover;
}

.mt10 {
	margin-top: 10px;
}

.mt20 {
	margin-top: 20px;
}

.mt30 {
	margin-top: 30px;
}

.mt40 {
	margin-top: 40px;
}

.mt50 {
	margin-top: 50px;
}

.mt60 {
	margin-top: 60px;
}

.mt70 {
	margin-top: 70px;
}

.mb10 {
	margin-bottom: 10px;
}

.mb20 {
	margin-bottom: 20px;
}

.mb30 {
	margin-bottom: 30px;
}

.mb40 {
	margin-bottom: 40px;
}

.mb50 {
	margin-bottom: 50px;
}

.mb60 {
	margin-bottom: 60px;
}

.mb70 {
	margin-bottom: 70px;
}

.mr10 {
	margin-right: 10px;
}

.mr20 {
	margin-right: 20px;
}

.mr30 {
	margin-right: 30px;
}

.mr40 {
	margin-right: 40px;
}

.mr50 {
	margin-right: 50px;
}

.mr60 {
	margin-right: 60px;
}

.mr70 {
	margin-right: 70px;
}

.ml10 {
	margin-left: 10px;
}

.ml20 {
	margin-left: 20px;
}

.ml30 {
	margin-left: 30px;
}

.ml40 {
	margin-left: 40px;
}

.ml50 {
	margin-left: 50px;
}

.ml60 {
	margin-left: 60px;
}

.ml70 {
	margin-left: 70px;
}

.pt10 {
	padding-top: 10px;
}

.pt20 {
	padding-top: 20px;
}

.pt30 {
	padding-top: 30px;
}

.pt40 {
	padding-top: 40px;
}

.pt50 {
	padding-top: 50px;
}

.pt60 {
	padding-top: 60px;
}

.pt70 {
	padding-top: 70px;
}

.pb10 {
	padding-bottom: 10px;
}

.pb20 {
	padding-bottom: 20px;
}

.pb30 {
	padding-bottom: 30px;
}

.pb40 {
	padding-bottom: 40px;
}

.pb50 {
	padding-bottom: 50px;
}

.pb60 {
	padding-bottom: 60px;
}

.pb70 {
	padding-bottom: 70px;
}

.pr10 {
	padding-right: 10px;
}

.pr20 {
	padding-right: 20px;
}

.pr30 {
	padding-right: 30px;
}

.pr40 {
	padding-right: 40px;
}

.pr50 {
	padding-right: 50px;
}

.pr60 {
	padding-right: 60px;
}

.pr70 {
	padding-right: 70px;
}

.pl10 {
	padding-left: 10px;
}

.pl20 {
	padding-left: 20px;
}

.pl30 {
	padding-left: 30px;
}

.pl40 {
	padding-left: 40px;
}

.pl50 {
	padding-left: 50px;
}

.pl60 {
	padding-left: 60px;
}

.pl70 {
	padding-left: 70px;
}

.small-margin-left {
	margin-left: 10px;
}

.small-margin-right {
	margin-right: 10px;
}

.no-background {
	background: none !important;
}

.animate-in-view,
.animate-in-view-with-delay,
.opacity0 {
	opacity: 0;
}

.opacity1 {
	opacity: 1 !important;
}

.pointer-events-none {
	pointer-events: none;
}

.transition-all {
	-webkit-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
	-moz-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
	-ms-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
	-o-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
	transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.z-index-over {
	position: relative;
	z-index: 1;
}

.background-center {
	background-position: center center !important;
}

.background-y-bottom {
	background-position-y: 100%;
}

.background-y-top {
	background-position-y: 0%;
}

.background-cover {
	background-size: cover;
	background-repeat: no-repeat;
}

.background-transparent {
	background: transparent;
}

.light-text,
button.light-text,
.light-text h1,
.light-text h2,
.light-text h3,
.light-text p,
.light-text span,
.light-text li,
.light-text label {
	color: #fff;
}

@media screen and (min-width: 450px) {
	.two-buttons-container {
		display: flex;
		justify-content: center;
	}

	.two-buttons-container a,
	.two-buttons-container button {
		margin: 0 6px;
	}
}

@media (min-width: 768px) {
	.hide-for-medium {
		display: none !important;
	}
}

@media (min-width: 1025px) {
	.hide-for-large {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	.hide-for-small-only {
		display: none !important;
	}
}

@media screen and (max-width: 0px),
screen and (min-width: 768px) {
	.show-for-small-only {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	.show-for-medium {
		display: none !important;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.hide-for-medium-only {
		display: none !important;
	}
}

@media screen and (max-width: 767px),
screen and (min-width: 1025px) {
	.show-for-medium-only {
		display: none !important;
	}
}

@media screen and (max-width: 1024px) {
	.show-for-large {
		display: none !important;
	}
}

/*******************************************************************************************
HEADER
*******************************************************************************************/

.header {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: #fff;
	z-index: 2;
	-webkit-transition: border-color 200ms ease-out;
	-moz-transition: border-color 200ms ease-out;
	-ms-transition: border-color 200ms ease-out;
	-o-transition: border-color 200ms ease-out;
	transition: border-color 200ms ease-out;
}

body.home .header {
  background-color: transparent;
}

body.scrolled .header {
	background-color: #fff;
  box-shadow: rgb(0 0 0 / 30%) 0px 10px 40px -5px
}

body.scrolled .module-header-a-right-top {
  display: none;
}

/* body.scrolled .module-header-a-right {
  align-self: flex-end;
} */

body.scrolled .header-logo {
  padding-bottom: 10px;
  padding-top: 15px;
}

body.scrolled .header-logo img {
  width: 215px;
}

body.scrolled .main-navigation-menu>li {
  padding-bottom: 30px;
}

body.scrolled .nav-item-contact-us {
  display: none;
}

body.scrolled .main-navigation-menu {
  margin-right: 0;
}

body.scrolled .main-navigation-menu>li:last-of-type {
  margin-right: 35px;
}

.header>.row {
	height: 100%;
}

.header a {
	text-decoration: none;
}

.header-desktop {
	display: none;
}

.header-logo {
	display: flex;
	align-items: center;
	padding: 8px 0 8px 17px;
}

.header-logo img {
  max-width: 200px;
  width: 100%;
	height: auto;
}

.header-mobile-inner {
	display: flex;
	min-height: 70px;
}

.header-mobile-buttons {
	display: flex;
	margin-left: 4%;
	flex: 1;
	justify-content: flex-end;
  align-items: center;
  padding-right: 17px;
}

.header-mobile-buttons a,
.header-mobile-buttons button {
	display: flex;
	font-size: 1.3rem;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	flex: 1;
	max-width: 50px;
	width: 50px;
	height: 50px;
}

.header-mobile-buttons .header-mobile-phone-number {
  margin-right: 6px;
}

.module-header-a-right {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-self: flex-start;
}

.module-header-a-right-top {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.module-header-a-right-top span {
  font-weight: 600;
}

.module-header-a-phone {
  font-weight: 600;
  color: #212121;
  font-size: 1.2rem;
  margin-left: 30px;
  margin-right: 20px;
  display: inline-block;
}

.module-header-a-phone i {
  font-size: 80%;
}

.module-header-a-right-bottom {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -ms-align-items: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  justify-content: flex-end;
}

.header-contact-button {
  font-family: 'Zilla Slab';
  order: 1;
}

.header-calendar-button {
  font-size: 1.765rem;
  order: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
}

body.scrolled .header-scrolled-contact-button {
  display: block;
}

.header-scrolled-contact-button {
  padding: 29px 25px;
  display: none;
  color: #FFCD0A ;
  background-color: #212121;
}

.header-scrolled-contact-button:hover,
.header-scrolled-contact-button:focus {
  color: #fff;
  background-color: #979797 !important;
}

.module-header-a-right-top .social-links {
  display: none;
}

.module-header-a-right-top-buttons .button,
.module-header-a-right-top-buttons button {
  margin-right: 10px;
}

.module-header-a-right-top-buttons .mobile-menu-toggle {
  order: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-right: 0;
}

.mobile-popout-buttons {
  display: flex;
  padding-right: 17px;
}

#mobile-navigation .mobile-popout-buttons a,
#mobile-navigation .mobile-popout-buttons button {
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

#mobile-navigation .mobile-popout-buttons .header-mobile-phone-number {
  background-color: #FFCD0A;
  color: #212121;
  margin-right: 6px;
}

@media screen and (min-width: 768px) {

  body:not(.scrolled) .header {
    height: 86px;
  }

  .header-logo img {
    max-width: 100%;
    width: auto;
  }

  body.scrolled .module-header-a-right-top {
    display: flex;
  }

  .header-mobile {
		display: none;
	}

	.header-desktop {
		display: block;
	}

  .module-header-a-inner {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    position: relative;
  }

  .module-header-a-logo {
    flex: 1;
  }

  .module-header-a-logo img {
    padding: 0;
  }

  .module-header-a-right {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    width: 70%;
    margin-right: 30px;
  }

  .module-header-a-right-top-buttons {
    display: flex;
  }

  .module-header-a-right-top-buttons .button,
  .module-header-a-right-top-buttons button {
    height: 40px;
    font-size: 1.118rem;
    padding: 5px 25px;
  }

  .module-header-a-right {
    align-self: center;
  }
}

@media screen and (min-width: 1025px) {
  .header {
    background-color: #fff;
  }

  body:not(.scrolled) .header {
    height: 134px;
  }

  body.scrolled .header {
    background-color: #FFCD0A;
  }

  body.scrolled .module-header-a-right-top {
    display: none;
  }

	.header-logo {
		padding: 25px 0 15px 25px;
	}

  .module-header-a-right-top .social-links {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }

  .module-header-a-right-top {
    margin-bottom: 15px;
  }

  .module-header-a-right {
    align-self: flex-start;
    margin-right: 0;
  }

  .module-header-a-right-top-buttons .button,
  .module-header-a-right-top-buttons button {
    height: auto;
    width: auto;
    font-size: 1.765rem;
    padding: 5px 20px;
  }

  .module-header-a-right-top-buttons .button:last-of-type {
    margin-right: 0;
  }

  .header-contact-button,
  .header-calendar-button {
    order: initial;
  }

  .module-header-a-right-top-buttons .header-contact-button {
    border-bottom-left-radius: 3px;
  }
  
  .module-header-a-right-top-buttons .header-calendar-button {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
  }

  .module-header-a-phone {
    font-size: 1.471rem;
  }
}

@media screen and (min-width: 1281px) {
  body:not(.scrolled) .header {
    height: 156px;
  }

  .header-logo {
		padding: 25px 0 25px 55px;
	}
}

/* HEADER > Header Search Bar */

/* .header-search {
	position: fixed;
	top: -100px;
	left: 0;
	right: 0;
	background-color: #212121;
	padding: 18px 0;
	width: 100%;
	opacity: 0;
	z-index: 3;
	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-ms-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

.header-search.active {
	opacity: 1;
	top: 0;
}

.header-search-inner {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	float: none;
}

.search-results-post-type:not(:last-child) {
	margin-bottom: 30px;
}

.search-results-post-type ul {
	margin: 0;
}

.header-search-results {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	padding: 30px;
	background: #212121;
	display: none;
	max-height: 350px;
	overflow: auto;
}

.header-search-results.active {
	display: block;
	-webkit-animation: fadeIn 200ms ease-out;
	animation: fadeIn 200ms ease-out;
}

.header-search-results h3,
.header-search-results a,
.header-search-results p {
	color: #fff;
}

.header-search-results h3 {
	margin-bottom: 8px;
}

.header-search-results a {
	text-decoration: none;
}

.header-search-results a:hover,
.header-search-results a:focus {
	text-decoration: underline;
}

.header-search-form {
	position: relative;
	flex: 1;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}

#header-search-input {
	margin: 0;
	height: 45px;
	border: 0 none;
	font-size: 1.3rem;
	color: #fff;
	border-bottom: 1px solid #fff;
	background: none;
	box-shadow: none;
	-webkit-box-shadow: none;
}

input::-webkit-input-placeholder {
	color: #fff;
}

input:-ms-input-placeholder {
	color: #fff;
}

input::-ms-input-placeholder {
	color: #fff;
}

input::placeholder {
	color: #fff;
}

.header-search button {
	padding: 0 20px;
	height: 45px;
	white-space: pre;
}

.header-search-submit {
	margin: 0 1%;
}

#header-search-open {
	font-size: 1.1rem;
	display: inline-block;
	line-height: 40px;
	width: 40px;
	height: 40px;
	padding: 0;
	text-align: center;
	margin: 0 0 5px 30px;
} */

/*******************************************************************************************
MENUS - Main navigation, dropdowns and mobile menu
*******************************************************************************************/
.main-navigation-menu {
	margin: 0;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
  margin-right: 25px;
}

.main-navigation-menu li {
	display: block;
	position: relative;
	padding: 0;
}

.main-navigation-menu>li {
	padding: 0 0 20px 0;
	margin-right: 20px;
}

.main-navigation-menu>li:last-of-type {
	margin-right: 0;
}

.main-navigation-menu>li:last-of-type>a {
	margin-right: 0;
}

.main-navigation-menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	width: 200px;
	margin: 0;
}

.main-navigation-menu>a:hover+.mega-menu,
.main-navigation-menu>a:focus+.mega-menu,
.main-navigation-menu>li.active>.mega-menu,
.main-navigation-menu>a:hover+.sub-menu,
.main-navigation-menu>a:focus+.sub-menu,
.main-navigation-menu>li.active>.sub-menu {
	display: block;
	-webkit-animation: menuSlideDown 200ms both;
	animation: menuSlideDown 200ms both;
}

.main-navigation-menu a:focus,
.main-navigation-menu a:hover,
.main-navigation-menu li:hover>a {
	color: #979797;
}

.main-navigation-menu>li>a {
  position: relative;
	display: block;
	height: 100%;
	color: #212121;
	line-height: 1.0;
	font-size: 0.941rem;
  text-transform: uppercase;
  letter-spacing: 1.02px;
  font-family: "Zilla Slab";
}

@media screen and (min-width: 1281px) {
  .main-navigation-menu {
    margin-right: 50px;
  }

  .main-navigation-menu>li {
    margin-right: 35px;
  }

  .main-navigation-menu>li>a {
    font-size: 1rem;
  }
}

/* MENUS > Main Nav Dropdowns (Level 2) */
#desktop-navigation .sub-menu li,
.mega-menu li {
	background: #212121;
	padding-left: 25px;
	-webkit-transition: background 200ms ease-out;
	-moz-transition: background 200ms ease-out;
	-ms-transition: background 200ms ease-out;
	-o-transition: background 200ms ease-out;
	transition: background 200ms ease-out;
}

#desktop-navigation .sub-menu li {
	position: relative;
	cursor: pointer;
}

#mega-menu li a,
#desktop-navigation .sub-menu li a {
	color: #fff;
	font-size: 0.9rem;
	display: block;
	padding: 12px;
	padding-left: 0;
	line-height: 1.0;
	text-decoration: none;
  font-family: "Zilla Slab";
}

.mega-menu li.active,
#desktop-navigation .sub-menu li.active {
	background: #FFCD0A;
}

#desktop-navigation .sub-menu li.active > a {
  color: #212121;
  outline: none;
}


/* .mega-menu li:before,
#desktop-navigation .sub-menu li:before {
	content: '\f105';
	font-family: 'Font Awesome 5 Pro';
	position: absolute;
	left: 10px;
	top: 6px;
	color: #FFCD0A;
	pointer-events: none;
	-webkit-transition: color 200ms ease-out;
	-moz-transition: color 200ms ease-out;
	-ms-transition: color 200ms ease-out;
	-o-transition: color 200ms ease-out;
	transition: color 200ms ease-out;
} */

.mega-menu li.active:before,
#desktop-navigation .sub-menu li.active:before {
	color: #fff;
}

#desktop-navigation .sub-menu .menu-item-has-children>a:after {
	content: "\f0da";
	font-family: 'Font Awesome 5 Pro';
	position: absolute;
	right: 10px;
	color: #FFCD0A;
}

#desktop-navigation .sub-menu .menu-item-has-children.active>a:after {
	color: #fff;
}

#desktop-navigation .sub-menu .menu-item-has-children ul {
	position: absolute;
	left: 100%;
	top: 0;
}

#desktop-navigation .sub-menu .sub-menu {
  width: 300px;
}

#desktop-navigation .sub-menu .sub-menu li {
  background-color: #E0E0E0;
}

#desktop-navigation .sub-menu .sub-menu li.active {
  background-color: #FFCD0A;
}

#desktop-navigation .sub-menu .sub-menu li a {
  color: #212121;
}


#desktop-navigation .sub-menu .sub-menu .sub-menu {
	display: none !important;
}

#desktop-navigation .sub-menu .menu-item-has-children:hover ul,
.menu-item-has-children.active>.sub-menu {
	display: block;
	-webkit-animation: menuSlideRight 200ms both;
	animation: menuSlideRight 200ms both;
}

/* MENUS > Mobile Menu */
#container {
	position: relative;
	right: 0;
	top: 0;
	overflow: hidden;
}

#container:before {
	z-index: 99;
	content: "";
	position: absolute;
	pointer-events: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.5);
	opacity: 0;
	-webkit-transition: opacity 200ms ease-out;
	-moz-transition: opacity 200ms ease-out;
	-ms-transition: opacity 200ms ease-out;
	-o-transition: opacity 200ms ease-out;
	transition: opacity 200ms ease-out;
}

#container.active {
	cursor: pointer;
}

#container.active:before {
	opacity: 1;
}

#mobile-menu:not(.active) {
	display: none;
}

#mobile-navigation {
	z-index: 100;
	position: fixed;
	background-color: #212121;
	opacity: 0;
}

#mobile-navigation,
#mobile-navigation .sub-menu {
	display: block;
	height: 100vh;
	transform: translateY(-100%);
	width: 100%;
	animation-fill-mode: both;
	-webkit-transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);
	-moz-transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);
	-ms-transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);
	-o-transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);
	transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);
}

.mobile-navigation-top-inner {
	align-items: center;
	padding: 8px 0 30px 20px;
	padding-right: 0;
	background: #212121;
  border-bottom: 1px solid #717171;
}

#mobile-navigation.active .mobile-navigation-top-inner {
	display: flex !important;
  justify-content: space-between;
}

.mobile-navigation-close {
	background: none;
}

#mobile-navigation.active {
	transform: translateY(0);
	opacity: 1;
}

#mobile-navigation a {
	display: block;
	text-decoration: none;
	font-size: 1rem;
	color: #fff;
  padding: 12px 20px;
  font-family: "Zilla Slab";
  text-transform: uppercase;
  letter-spacing: 1.7px
}

#mobile-navigation a:hover,
#mobile-navigation a:active,
#mobile-navigation a:focus {
	color: #979797;
	background: #fff;
}

#mobile-navigation ul {
	margin: 0;
}

#mobile-navigation ul li {
	padding: 0;
	position: relative;
	display: block;
	width: 100%;
	border-bottom: 1px solid #717171;
}

#mobile-navigation ul li:last-of-type {
	border: none;
}

#mobile-navigation ul li:before {
	display: none;
}

#mobile-navigation ul li.sub-menu-open>.sub-menu {
	top: 0;
	transform: translateY(0);
	display: block;
	-webkit-animation: fadeInRight 300ms ease-out;
	animation: fadeInRight 300ms ease-out;
	animation-fill-mode: both;
}

#mobile-navigation .sub-menu {
	margin: 0;
	position: fixed;
	background-color: #212121;
	z-index: 1;
	overflow: auto;
	display: none;
}

.mobile-navigation-next,
.mobile-navigation-close {
	padding: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	width: 50px;
	height: 100%;
}

.mobile-navigation-close {
	margin-left: auto;
	color: #FFCD0A;
	font-size: 1.6rem;
	height: 50px;
}

.mobile-navigation-close:focus,
.mobile-navigation-close:hover {
	color: #FFCD0A;
}

.mobile-navigation-next {
	position: absolute;
	right: 0;
	top: 0;
  font-size: 1.353rem;
	color: #FFCD0A;
  background-color: transparent;
}

.mobile-navigation-next:hover,
.mobile-navigation-next:focus {
	color: #fff;
  background-color: transparent;
}

.mobile-navigation-previous {
	margin-bottom: 10px;
	border: none !important;
}

.mobile-navigation-previous button {
  font-family: "Zilla Slab";
  letter-spacing: 1.7px;
}

@media screen and (min-width: 1025px) {
	#mobile-navigation {
		display: none;
	}

	.mobile-navigation-top-inner {
		display: none;
	}
}

/* MENUS > Mega Menu */
.mega-menu {
	width: 100%;
	position: absolute;
	top: 100%;
	left: auto;
	right: 0;
	display: none;
	background: #212121;
	padding: 25px 75px;
}

.mega-navigation-menu {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-column-gap: 15px;
	margin: 0;
}

.mega-menu li {
	border-right: 1px solid #fff;
}

.mega-menu li:nth-child(4n) {
	border-right: none;
	margin: 0;
	padding-right: 0;
}

.mega-menu .sub-menu {
	display: none;
}