header .logo {
	width: 150px;
}

@supports (-webkit-clip-path: circle(50% at 50% 50%)) or (clip-path: circle(50% at 50% 50%)) {
	header {
		margin-top: -50px;
		padding: 0;
	}
	header .logo {
		transform: translateY(50px);
		-webkit-clip-path: circle(50% at 50% 50%);
		-moz-clip-path: circle(50% at 50% 50%);
		clip-path: circle(50% at 50% 50%);
		background: rgba(11, 92, 27, 1);
		background: -moz-linear-gradient(top,  rgba(11,92,27,0) 25%, rgba(11,92,27,1) 66%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(25%,rgba(11,92,27,0)), color-stop(66%,rgba(11,92,27,1)));
		background: -webkit-linear-gradient(top,  rgba(11,92,27,0) 25%,rgba(11,92,27,1) 66%);
		background: -o-linear-gradient(top,  rgba(11,92,27,0) 25%,rgba(11,92,27,1) 66%);
		background: -ms-linear-gradient(top,  rgba(11,92,27,0) 25%,rgba(11,92,27,1) 66%);
		background: linear-gradient(to bottom,  rgba(11,92,27,0) 25%,rgba(11,92,27,1) 66%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000b5c1b', endColorstr='#0b5c1b',GradientType=0 );
		padding: 20px;
		width: auto;
	}
}
/* larger screen widths */
@media only screen and (min-width: 65em) {
	.belt {
		overflow: hidden;
	}
	.primary {
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: center;
		/* border-bottom: 1px solid rgba(255, 255, 255, .1); */
	}
	.primary .menu-link {
		display: none;
	}
	.primary .agency-name {
		color: rgba(255, 255, 255, .8);
		display: inline;
		padding: 20px;
		float: left;
		font-size: 1em;
		font-weight: normal;
		text-shadow: 1px 1px 0 rgba(0, 0, 0, .3);
	}

		nav ul {
			list-style: none;
			margin: 0;
			padding: 0;
			text-align: right;
			position: relative;
		}
		nav ul li {
			display: inline;
		}
		nav ul li a {
			display: inline-block;
			color: #fff;
			text-decoration: none;
			font-weight: bold;
			padding: 20px;
		}
		nav ul li ul {
			display: none;
			position: absolute;
			top: 0;
			top: calc(1em + 42px);
			left: 0;
			background: #186c29;
			padding: 0px;
			box-shadow: 0px 0px 10px rgba(0, 0, 0, .2);
			z-index: -1;
		}
		nav ul li ul li {
			display: block;
			text-align: left;
		}
		nav ul li ul li a {
			padding: 20px 100px 20px 20px;;
			display: block;
		} 
		/*
		nav ul li.menu-item-has-children a::before {
			content: "\25BC";
			color:  #fff;
			font-size: 80%;
			padding-right: 10px;
		}
			nav ul li.menu-item-has-children ul li a::before {
				content: none;
			}
		*/
		nav ul li:hover > ul.sub-menu {
			display: block;
		}


	.header-block {
		transition: all 0.2s linear;
	}
	header, header .logo {
				transition: all .2s linear;
	}
	header .logo {
		max-width: 200px;
	}
	.sticky {
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 99999;
		font-size: 80%;
	}
	.sticky header {
		height: 100px;
	}
	.sticky header .logo {
		display: none;
	}
	nav {
		display: inline;
		float: right;
		background: transparent;
	}
	nav ul li {
		display: inline;
	}
	nav ul li.current_page_item a {
		border-bottom: 2px solid rgba(255, 255, 255, .4);
	}
	nav ul li.current_page_item.donate a {
		border-bottom: 2px solid rgba(255, 255, 255, .4);
	}
	nav ul li a {
		display: inline-block;
		border-bottom: 2px solid rgba(255, 255, 255, 0);
		transition: .1s linear all;
	}
	nav ul li a:hover {
		background: rgba(255, 255, 255, .1);
	}
	nav ul li.donate a {
		background: #A8181B;
		color: #111;
		color: #fff;
		font-weight: bold;
		text-transform: uppercase;
		text-shadow: 1px 1px 0 rgba(0, 0, 0, .4);
		border-bottom: 2px solid #A8181B;
	}
	main.page h1 {
		font-size: 3em;
	}
	main h1.tagline {
		font-size: 2.4em;
	}
	main p.emphasis {
		font-size: 150%;
	}
	main .content-group {
		overflow: hidden;
	}
	main .content-group .primary-content {
		width: 66%;
		float: left;
	}
	main aside {
		width: 29%;
		margin-left: 4%;
		float: right;
		font-size: 90%;
	}
	.featured-content {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-columns-gap: 20px;
	}
	.hidden {
		display: block;
	}
}