/* # Head # */

body .page-head {
	background-color: #fffc;
	height: 55px;
	position: sticky;
	top: 0px;
	transition: all 0.5s;
	width: 100%;
	z-index: 20;
}

@media (min-width: 992px) {
	body .page-head {
		height: 140px;
	}
}

@media (min-width: 1200px) {
	body .page-head {
		height: 100px;
	}
}

body.scroll .page-head {
	background-color: #fff;
	box-shadow: 0px -14px 15px 10px #000;
}

.page-head > .container {
	position: relative;
}

.page-head .d-flex {
	gap: 24px;
}

@media(min-width: 1200px) {
	.page-head .d-flex {
		gap: 36px;
	}
}

.page-head .page-title {
	display: inline-block;
	margin: 10px 0;
}

@media(min-width: 992px) {
	.page-head .page-title {
		margin: 20px 0;
	}
	
}

.page-head .page-title a {
	display: block;
}

.page-head .page-title img {
	height: 34px;
	width: auto;
}

@media(min-width: 992px) {
	.page-head .page-title img {
		height: auto;
		width: 200px;
	}
}

.page-head .g-navigation {
	display: none;
}

@media(min-width: 992px) {
	.page-head .g-navigation {
		align-items: end;
		display: inline-grid;
		justify-items: left;
	}
}

@media(min-width: 1200px) {
	.page-head .g-navigation {
		justify-items: end;
		margin-bottom: 11px;
	}
}

.page-head .g-right {
	align-items: center;
	display: inline-grid;
	justify-items: end;
}

@media(min-width: 992px) {
	.page-head .g-right {
		align-items: start;
	}
}

.page-head .meta {
	margin-right: var(--bs-gutter-x);
	position: absolute;
	right: 0;
	top: 10px;
}

/* ## submit-project ## */

.page-head .submit-project,
nav.mobile .submit-project {
	display: none;
	position: absolute;
	right: 0;
	top: 9px;
}

nav.mobile .submit-project {
	display: block;
	right: 10px;
	top: 0;
}

@media(min-width: 992px) {
	.page-head .submit-project {
		display: block;
	}
}

.page-head .submit-project a {
	background-color: var(--primary);
	border-radius: 0 0 6px 6px;
	color: #fff;
	font-size: 0.8rem;
	font-weight: 600;
	padding: 14px 12px 6px;
	text-decoration: none;
	text-transform: uppercase;
}

.page-head .submit-project a:hover {
	background-color: var(--primary-hover);
}

nav.mobile .submit-project a {
	box-shadow: inset 0px 5px 5px -5px rgba(0,0,0,0.75);
	padding: 5px 10px;
}

.page-head .submit-project svg {
	height: 20px;
	margin-right: 6px;
	width: auto;
}
