/* 'Round the world and home again, that's the sailor's way. */

nav > ul > li#navbar_for_providers,
nav > ul > li#navbar_for_patients		/* remove redundant options from root page */
	{
	display: none;
	}

#root_featured_image		/* root featured image */
	{
	display: block;
	width: auto;
	height: 25vw;
	margin: 0em auto 0em auto;
	}
	@media only screen and (max-width: 768px)
		{
		#root_featured_image
			{
			width: 35vw;
			height: auto;
			}
		}


#root_nav_two							/* root navigation container */
	{
	margin-left: auto;
	margin-right: auto;
	}
#root_nav_two *							/* all root navigation items */
	{
	hyphens: none;
	-ms-hyphens: none;
	-webkit-hyphens: none;
	}
#root_nav_two > div						/* root items containers */
	{
	width: 40vw;
	margin: 0.5em auto 0.5em auto;
	box-sizing: border-box;
	}
	@media only screen and (max-width: 900px)
		{
		#root_nav_two > div
			{
			width: 80vw;
			}
		}
	@media only screen and (max-width: 767px)
		{
		#root_nav_two > div
			{
			width: 85vw;
			}
		}
	@media only screen and (max-width: 320px)
		{
		#root_nav_two > div
			{
			width: 90vw;
			}
		}
#root_nav_two > h1		/* NHS as text */
	{
	text-align: center;
	font-family: Times, "Times New Roman", serif;
	font-size: 3.0rem;
	font-weight: 400;
	color: #FFFFFF;
	background-color: #9B1C4B;
	margin: 1rem auto 1rem auto;
	padding: 0.25rem 1rem 0.25rem 1rem;
	}
	@media only screen and (max-width: 767px)
		{
		#root_nav_two > h1
			{
			font-size: 1.5rem;
			}
		}
	@media only screen and (max-width: 320px)
		{
		#root_nav_two > h1
			{
			font-size: 1.5rem;
			margin-bottom: 0;	
			}
		}
#root_nav_two > div:nth-of-type(1)		/* navigable items container */
	{
	display: flex;
	justify-content: space-around;
	}
#root_nav_two > div:nth-of-type(1) > a					/* All links default state */
	{
	font-size: 2.0rem;
	}
	@media only screen and (max-width: 767px)
		{
		#root_nav_two > div:nth-of-type(1) > a
			{
			font-size: 1.0rem;
			}
		}
#root_nav_two > div:nth-of-type(1) > a:first-of-type	/* For Providers link */
	{
	margin-right: 1rem;
	}
#root_nav_two > div:nth-of-type(1) > a:last-of-type		/* For Patients link */
	{
	margin-left: 1rem;
	}



