@media all and (max-width: 1000px) {
	body {
		font-size: 16px;
		margin-top: 0px;
		background: var(--colorOffWhite);
	}

	h1 {
		font-size: 2em;
	}

	h2 {
		font-size: 1.5em;
	}

	h3 {
		font-size: 1.2em;
	}

	div.menuMobileContainer {
		width: 90% !important;
		margin: 0 auto;
		overflow: hidden;
		background-color: #EEE;
		position: relative;
		display: block !important;
		font-family: 'Nimbus Roman';
		border-radius: 0 0 5px 5px;
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
		border: 1px solid #FFF;
		border-top: none;
	}

	div.menuMobileContainer img {
		height: 52px;
		width: auto;
		display: inline;
		border-radius: 0 0 5px 0;
		border-right: 1px solid #FFF;
		border-bottom: 1px solid #FFF;
		float: left;
	}

	div.menuMobileContainer a {
		color: var(--colorText);
		padding: 14px 16px;
		text-decoration: none;
		font-size: 17px;
		display: block;
	}

	div.menuMobileContainer div#menuMobile {
		display: none;
	}

	div.menuMobileContainer a#menuMobileToggle {
		background: #DDD;
		display: block;
		position: absolute;
		right: 0;
		top: 0;
		background-image: url("../img/svg/hamburger.svg");
		background-repeat: no-repeat;
		background-position: center 10px;
		height: 100%;
		width: 20px;
	}

	div.menuMobileContainer a:hover {
		background-color: #DDD;
		color: var(--colorText);
	}

	div.menuMobileContainer .active {
		font-size: 2em;
		display: inline-block;
	}

	div.main {
		border: none;
		outline: none;
		width: 90% !important;
		padding: 0;
		background: var(--colorOffWhite);
		box-shadow: none;
	}

	div.left {
		display: none;
	}

	div.right {
		margin: 0;
		width: 100%;
		float: none;
	}

	div.right div.content h1 {
		display: none;
	}

	iframe.youtubeVideo {
		width: 320px !important;
		height: 181px !important;
	}
}