/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 18 2026 | 02:35:26 */
/* =========================================
   Blue Tree Project Badge
   ========================================= */

.header-logo-menu-section {
	position: relative;
}

/* Desktop: logo image, top-right corner */
.blue-tree-badge {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	z-index: 10;
}

.blue-tree-badge img {
	width: 90px;
	height: auto;
	display: block;
	transition: opacity 0.2s ease;
}

.blue-tree-badge a:hover img {
	opacity: 0.8;
}

/* Mobile: text link, inline in the mobile bar */
.blue-tree-badge-mobile {
	display: none;
}

.blue-tree-badge-mobile a {
	color: #0035e8;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.5px;
	text-decoration: none;
	white-space: nowrap;
	transition: opacity 0.2s ease;
}

.blue-tree-badge-mobile a:hover {
	opacity: 0.7;
	text-decoration: none;
}

/* Responsive: swap desktop logo for mobile text */
@media screen and (max-width: 1024px) {
	.blue-tree-badge {
		display: none;
	}

	.blue-tree-badge-mobile {
		display: inline-block;
/* 		margin-left: auto;
		margin-right: 5.5rem; */
	}
}