#main-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 200;
	-webkit-box-shadow: 0 2px 4px rgba(1,1,1,0.3);
	box-shadow: 0 2px 4px rgba(1,1,1,0.3);
}

/*When #mainNav gets to the top of the window*/
#main-header.stuck {
	position: fixed;
	top: -40px;
}

.main-header-top h1 {
	font-family: 'Abril Fatface', cursive;
	font-weight: 800;
	font-size: 1.5rem;
	line-height: 40px;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-shadow: 
	-1px -1px 0 #666,
	1px -1px 0 #666,
	-1px 1px 0 #666,
	1px 1px 0 #666;
	margin-bottom: 0;
}


/*Bottom Section of Header - League Logo and Links*/
	.league-logo-box {
		position: absolute;
		width: 100px;
		height: 56px;
		z-index: 401;
		padding-right: 20px;
	}

		.league-logo-box:before {
			content: "";
			background: #fff;
			width: 1000px;
			height: 100%;
			position: absolute;
			top: 0;
			right: 0;
			z-index: -1;
			transform: skew(-30deg);
		}	

		img.league-logo {
			position: relative;
			z-index: 12;
			width: 56px;
		}


/*Desktop Nav Menu */
	.menu-item {
		line-height: 83px;
	}

	a.main-menu-link {
		color: white;
		margin: 0;
		text-transform: uppercase;
		font-size: 22px;
	}

	.hover-item {
		display: block;
		line-height: normal;
	}

	li.hover-sport {
		border-bottom: 1px solid #aaa;
	}

	li.hover-sport:hover {
		background-color: #ccc;
	}

/*Mobile Dropdown Nav*/
	/*Link Styling*/
	ul.mobile-nav li.nav-item a.nav-link {
		color: white;
		padding: 1rem 0 ;
		margin: 0;
		text-transform: uppercase;
		font-size: 22px;
	}

	.dropdown-menu a.hover-item {
		color: black;
	}

	.mobile-link {
		display: grid;
		grid-template-columns: 1fr 1fr;
		align-items: center;
		/*border-bottom: 2px solid gray;*/
		padding: 1rem 0;
	}

	.mobile-link .dropdown-item {
		height: auto;
	}

	.mobile-link a {
		color: black;
		text-align: center;
	}

/*Mobile and Desktop Navs*/
	.sports-menu.boys, .sports-menu.girls, .sports-menu.coed, .sports-column {
		flex-basis: 100%;
		margin-bottom: 20px;
	}

	.sports-column {
		flex: 0 0 48%;
		margin-bottom: 20px;
	}

	.sports-column {
		margin-bottom: 0;
	}

	.sports-menu h4 {
		font-size: 1.25rem;
		padding-left: 10px;
	}

	.navbar-collapse {
	    max-height: calc(100vh - 56px);
	    overflow: auto;
	}

	.item-div {
		flex: 0 0 33%;
		text-align: center;
		margin-bottom: 2rem;
	}

	.dropdown-item {
		height: 60px;
	}

	.dropdown-logo-link {
		width: 50px;
	}

@media (min-width: 768px) {
	/*When #mainNav gets to the top of the window*/
	#main-header.stuck {
		position: fixed;
		top: -50px;
	}

	.main-header-top h1 {
		font-size: 2.25rem;
		line-height: 50px;
	}

	.item-div {
		flex: 0 0 20%;
		text-align: center;
		margin-bottom: 2rem;
	}

	.dropdown-logo-link {
		width: 50px;
	}

	.navbar-collapse .mobile-links .dropdown-menu.show {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
	}



	.mobile-link {
		grid-template-columns: 1fr;
	}
}


@media (min-width: 1024px) {
	
	/*Main Header gets bigger*/
	.main-header-top {
		height: 70px;
	}

	/*When #mainNav gets to the top of the window*/
	#main-header.stuck {
		position: fixed;
		top: -70px;
	}

	.main-header-top h1 {
		font-size: 2.5rem;
		line-height: 70px;
		margin-left: 175px;
		letter-spacing: 2px;
	}

	/*Shrink the league logo when the header gets "stuck"*/
		#main-header.stuck img.league-logo {
			transform: scale(0.75) translate(0, 60px);
		}

	/*Box that hold the league logo*/
	.league-logo-box {
		height: 140px;
		width: 120px;
		padding-right: 0;
		top: 0;
	}

		.league-logo-box:before {
			transform: none;
		}

		.league-logo-box:after {
			content: "";
		    display: block;
		    position: absolute;
		    top: 0;
		    left: 100%;
		    width: 100px;
		    height: 140px;
		    background: url(../img/logo_triangle.png) no-repeat;
		    -webkit-background-size: 100% 100%;
		    background-size: 100% 100%;
		    pointer-events: none;
		}

		img.league-logo {
			width: 125px;
			height: auto;
			transition: .25s;
			left:30px;
		}
			

	/*Desktop Nav with top level links*/
	.main-nav ul.top-level {
		padding-left: 150px;
		height: 70px;
		padding-right: 0;
	}

	.menu-item {
		line-height: 70px;
		flex: 1 1 auto;
		display: flex;
		justify-content: center;
	}

		/*Dropdown menus on link hover*/
		.hover-menu {
			background-color: #fff;
			position: absolute;
			width: 100%;
			left: -99999px;
			top: 100%;
			opacity: 0;
			box-shadow: 0 2px 4px rgba(1,1,1,0.3);
		}

		.hover-menu a.hover-item {
			color: black;
		}

		/*Display the appropriate dropdown menu on hover*/
		.hover-link:hover .hover-menu {
			left: 0;
			opacity: 1;
			transition: opacity .25s;
		}

/*Mobile and Desktop Navs*/
	.sports-menu {
		flex: 1 1 auto;
		padding: 1rem;
	}

	.sports-menu.boys, .sports-menu.girls, .sports-menu.coed, .sports-column {
		flex: 0 0 48%;
		margin-bottom: 20px;
	}

	.menu-item .school-name {
		line-height: normal;
	}
}

@media (min-width: 1280px) {

	/*New Nav Styles 1-17-20*/
	
	#main-header.stuck {
		top: -50px;
	}

	#main-header.stuck img.league-logo {
	    transform: scale(0.75) translate(0, 50px);
	}

	.main-header-top {
		height: 50px;
	}

	.league-logo-box {
		height: 100px;
	}

	.league-logo-box:after {
		height: 100px;
	}

	img.league-logo {
		width: 100px;
	}

	.main-nav ul.top-level {
	    padding-left: 150px;
	    height: 50px;
	    padding-right: 0;
	}

	.menu-item {
		line-height: 50px;
	} 

	.main-header-top h1 {
		font-size: 2.25rem;
		margin-left: 200px;
		line-height: 50px;
	}

	a.main-menu-link {
		font-size: 20px;
	}

	.dropdown-logo-link {
		width: 75px;
	}

	.dropdown-item {
		height: 85px;
	}
}


@media (min-width: 1600px) {
	.league-logo-box {
		width: 160px;
	}

	.main-header-top h1 {
		margin-left: 250px;
	}

	.main-nav ul.top-level {
	    padding-left: 170px;
	    padding-right: 20px;
	}
}


@media (min-width: 1920px) {

	#main-header.stuck {
	    top: -65px;
	}

	#main-header.stuck img.league-logo {
	    transform: scale(.9) translate(0, 50px);
	}

	.league-logo-box {
		width: calc(180px + calc((100vw - 1600px) / 2));
		/*padding-right: 30px;*/
	}

	.league-logo-box:after {
		height: 130px;
	}

	/*img.league-logo {
		width: 170px;
		left: 50px;
	}*/

	img.league-logo {
		width: 130px;
		left: 40px;
	}

	.main-nav ul.top-level {
		padding-left: 240px;
		height: 65px;
	}

	ul.logo-list {
		padding-left: 200px;
	}

	/*.main-header-top h1 {
		font-size: 3.25rem;
		line-height: 85px;
		margin-left: 305px;
		letter-spacing: 3px;
	}*/

	.main-header-top {
		height: 65px;
	}

	.main-header-top h1 {
		font-size: 2.75rem;
		line-height: 65px;
		margin-left: 305px;
		letter-spacing: 3px;
	}

	.league-logo-box {
	    height: 130px;
	}

	.menu-item {
	    line-height: 65px;
	}
}