  


/* * * * * * * * * * * * *  MOBILE HEADER  * * * * * * * * * * * * */

.mobile-header {
	/* Mobile header styles */
	display: none;
}
@media screen and (max-width: 720px) {
	.mobile-header {
		/* Mobile header styles */
		display: block;
		position: relative;
	}

	.desktop-header {
		display: none; /* Hide desktop header on mobile */
	}
	
	.mobile-header .header-logo {
		height: 50px;
		margin: 10px 20px 0;
	}
	
	.header-mobile-btn {
		position: absolute;
		display: inline-block;
		right: 0;
		/* height: 70px; */
		font-size: 28px;
		padding: 11px 21px;
		cursor: pointer;
		
	}
	
}

/* * * * * * * * * * * * *  HAMBURGER ICON  * * * * * * * * * * * * */

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 22px;
  width: 24px;
  margin: 11px 0px;
}

.nav-toggle .bar {
  height: 4px;
  width: 100%;
  background-color: #333;
  transition: all 100ms ease-in-out;
  border-radius: 10px;
}

.nav-toggle:hover {
  cursor: pointer;
}

.x:nth-of-type(1) {
  transition: all 100ms ease-in-out;
  transform: rotate(45deg);
  transform-origin: top left;
  width: 28px;
}

.x:nth-of-type(2) {
  transition: all 100ms ease-in-out;
  transform-origin: center;
  width: 0;
}

.x:nth-of-type(3) {
  transition: all 100ms ease-in-out;
  transform: rotate(-45deg);
  transform-origin: bottom left;
  width: 28px;
}


/* * * * * * * * * * * * *  MOBILE NAVIGATION  * * * * * * * * * * * * */

.mobile-navigation {
	position: absolute;
	z-index: 1000;
	width: 100%;
	height: 100vh;
	display: none;
	background-color: #333;
}

.mobile-nav-head {
	position: relative;
	background-color: var(--true-blue);
	color: white;
	padding: 10px;
	text-align: right;
}
.mobile-nav-head ul, .mobile-nav-body ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.mobile-nav-head li {
	padding: 0;
	margin: 0;
	display: inline-block;
}
.mobile-nav-head a {
	color: white;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 500;
	padding: 8px 12px;
}
.mobile-nav-head a:hover {
	background-color: var(--aqua);
}

.mobile-nav-body li {
	margin: 0;
	padding: 0;
	position: relative;
}

.mobile-nav-body a.link {
	display: inline-block;
	width: 100%;
	background-color: #333;
	color: #ddd;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	padding: 12px 20px;
	border-bottom: 1px solid #444;
}
.mobile-nav-body .has-child a.link {
	width: calc(100% - 75px);
}
.mobile-nav-body a.button {
	display: inline-block;
	position: absolute;
	right: 0;
	width: 74px;
	overflow: hidden;
	background-color: #333;
	color: #ddd;
	text-decoration: none;
	font-size: 16px;
	padding: 12px 20px;
	border-bottom: 1px solid #444;
	border-left: 1px solid #444;
	text-align: center;
	cursor: pointer;
}

.mobile-nav-body a.link:hover, .mobile-nav-body a.button:hover {
	background-color: #222;
}

.hide-overflow {
	overflow: hidden!important;
}

.mobile-nav-body ul.submenu {
	display: block;
	position: absolute;
	background-color: #333;
	width: 100%;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	display: none;
}

.mobile-nav-body .back {
	padding: 12px 20px;
	background-color: #444;
	border-bottom: 1px solid #444;
	color: #ddd;
	cursor: pointer;
}
.mobile-nav-body .back:hover {
	background-color: #222;
}


/* * * * * * * * * * * * *  MOBILE SEARCH BAR  * * * * * * * * * * * * */

.mobile-nav-body .search {
	padding: 16px 10px;
	border-bottom: 1px solid #444;
}
.mobile-nav-body .search .search-input {
	background-color: #444;
	border-radius: 50px;
	padding: 0px 10px;
}
.mobile-nav-body .search .search-input input {
	background: none!important;
	outline: none;
	border: 0!important;
	width: 100%;
	width: calc(100% - 35px);
	/* background-color:#999; */
	color: #ddd;
}