/*/////////////////////////////////////////////
//// BEGIN: Site Menu
/////////////////////////////////////////////*/
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100px;
	height: 100%;
	padding: 0;
	background: var(--db-dark);
	border-right: 1px solid #171717;
	flex-grow: 0;
	flex-shrink: 0;
    text-align: center;
}

.nav-primary {
	padding: 20px 0;
}

.page_web-development-inquiries .nav-primary,
.page_web-development-inquiries .asl_w_container {
	display: none;
}

.nav-primary .menu-item {
	margin-bottom: 20px;
}

.nav-primary .menu-item > a {
    display: block;
    padding: 10px;
	font-size: 10px;
	font-weight: 300;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.nav-primary .menu-item.current-menu-item > a {
	background: var(--db-gold);
	color: #222;
	font-weight: bold;
}

.nav-primary .material-symbols-rounded {
	display: block;
	margin: 0 auto 10px;
	font-size: 30px;
}

/*/////////////////////////////////////////////
//// BEGIN: Media Queries
/////////////////////////////////////////////*/

/* BEGIN: Hovers
-----------------------------------*/
@media screen and (min-width: 961px) {
}

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

/* BEGIN: Tablet Horizontal
-----------------------------------*/
@media screen and (max-width: 1024px) {

}

/* BEGIN: iPad / Mobile */
@media screen and (max-width: 960px) {

	.site-header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 60px;
		border-right: 0;
		border-bottom: 1px solid #171717;
	}	
}

/* BEGIN: Mobile
-----------------------------------*/
@media screen and (max-width: 767px) {
}
/* FIN */