@media screen and (max-width: 768px) {
	.toggle {
		position: fixed;
		top: 1em;
		right: 5vw;
		z-index: 100000000000;
		display: block;
		cursor: pointer;
		padding: 1px 4px;
		border: 4px solid #b4caed;
		background-color: #b4caed;
		border-radius: 4px;
		height: 30px;
		width: 25px;
		/*transition: all .3s ease;*/
	}
	
	.toggle span,
	.toggle span:before,
	.toggle span:after {
		cursor: pointer;
		border-radius: 1px;
		top: 12.5px;
		height: 4px;
		width: 25px;
		position: absolute;
		background: #23222d;
		display: block;
		content: '';
		transition: all .3s ease-in-out;
	}
	
	.toggle span:before {
		top: -8px;
	}
	
	.toggle span:after {
		top: 8px;
	}
	
	input[type='checkbox']:checked ~ .toggle span {background-color: transparent;}
	
	input[type='checkbox']:checked ~ .toggle span:before,
	input[type='checkbox']:checked ~ .toggle span:after {
		top: 0;
	}
	
	input[type='checkbox']:checked ~ .toggle span:before {
		transform: rotate(45deg);
	}
	
	input[type='checkbox']:checked ~ .toggle span:after {
		transform: rotate(-45deg);
	}
	
	input[type='checkbox']:checked ~ nav ul {display: block;}
	

	nav ul {
		position: absolute; 
		top: 0;
		left: 0;
		display: none;
		z-index:1;
	}
	
	nav ul li {
		margin: 0;
	}

	nav ul a {
		float: none;
		width: 100vw;
		margin: 0;
		padding: 0;
		text-align: center; 
	background: rgba(13,12,12, .4);
		display: inline-block;
		font-size: 4vw;
		height: 6vh;
		line-height: 6vh;
		color: #0543a6;
		border: none;
		border-radius: 0;
	}
	
	nav ul a:hover, nav ul a:focus {
		background: #c9d9f2;
		color: #2e3235;
		box-shadow: 0;
	}
	nav img {max-height: 4vw; }
	section {
	min-height: 100vh;
	width: 100vw;
}
#slideshow {visibility: hidden;}