body {
	margin: 0px;
	font-family: sans-serif;
	background-color: #FFFFFF;
	min-height: 100vh;
	display: grid;
	grid-template-rows: auto 1fr auto;
	font-family: 'Gloock', serif;
	font-family: 'Open Sans', sans-serif;
}
h1, h2, h3, h4, p {
	margin: 0;
	padding: 0;
}
h1, h2, h3, h4 {
	font-family: 'Gloock', serif;
	letter-spacing: 3px;
	font-weight: bold;
	text-transform: uppercase;
}
header {
	display: grid;
	margin: 0 auto;
	/*background-color: #D1FEFD;*/
	width: 100%;
	padding: 30px 0 0;
	transition: background-color 0.4s ease;
	height: 80px;
	border-bottom: 1px solid transparent;
}
header h1 {
	margin: 0 auto;
	grid-row-start: 1;
	grid-column-start: 1;
}
header h1 a {
	display: block;
	background-image: url('logo.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 300px;
	width: 320px;
	height: 80px;
	text-indent: -10000px;
	position: relative;
}
nav {
	min-width: 1028px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr 360px 1fr 1fr;
	grid-row-start: 1;
	grid-column-start: 1;
	/*transition: none 0.0s;*/
}
nav a {
	display: inline-block;
	text-align: center;
	padding: 25px;
	align-self: center;
	position: relative;
	/*bottom: -4px;*/
	text-decoration: none;
	font-weight: normal;
	transition: all 0.25s ease;
	text-transform: uppercase;
	color: #000000;
	font-family: 'Gloock', serif;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: 6px;
}
nav a.active, nav a:hover {
	color: #ECD06E;
}
nav a:nth-of-type(3) {
	grid-column-start: 4;
}
nav a:nth-of-type(4) {
	grid-column-start: 5;
}
header.sticky {
	position: fixed;
	top: 0;
	/*width: 100%;*/
	background-color: #F9F1F1;
	padding: 0;
	border-bottom: 1px solid #D2D2D2;
}
header.sticky nav {
	height: 80px !important;
}
.sticky + section#main div {
	padding-top: 188px;
}
#hmenu {
	display: none;
}
section#main {
}
section#main div {
	max-width: 1028px;
	margin: 0 auto;
	padding: 80px 22px;
}
section#main div h1 {
	font-size: 42px;
	line-height: 46px;
	margin: 0 0 22px 0;
}
section#main div h2 {
	font-size: 36px;
	line-height: 41px;
	margin: 0 0 22px 0;
}
section#main div h3 {
	font-size: 30px;
	line-height: 38px;
	margin: 0 0 22px 0;
}
section#main div p {
	font-size: 16px;
	line-height: 28px;
	margin: 0 0 34px 0;
}
section#main div ul {
	font-size: 16px;
	line-height: 28px;
	margin: 0 0 34px 0;
}
footer {
	min-height: 100px;
	text-align: center;
	padding: 20px 0 40px;
	background-color: #FFC7DC;
	border-top: 1px solid #D2D2D2;
}
footer p {
	margin: 0 0 6px;
	font-size: 16px;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
	header {
		/*padding: 0;*/
	}
	nav {
		grid-template-columns: auto;
		grid-template-rows: 1fr;
		min-width: auto;
		margin: 0;
		padding: 0;
		transition: opacity 0.7s ease-in-out;
		opacity: 0;
		z-index: -1;
	}
	nav a {
		color: #000000;
		grid-column-start: 1;
		background-color: rgba(255, 255, 255, 0.975);
		font-weight: bold;
		border-top: 1px solid #D8D8D8;
	}
	nav a:nth-of-type(1) {
		margin: 75px 0 0;
	}
	nav a:nth-of-type(3) {
		grid-column-start: 1;
	}
	nav a:nth-of-type(4) {
		grid-column-start: 1;
		border-bottom: 1px solid #D8D8D8;
	}
	/*nomads menu*/
	button#hmenu {
		margin: 17px 12px 0 0;
		padding: 0;
		background-color: transparent;
		border: 0 none transparent;
		position: absolute;
		right: 0px;
		display: inline-block;
		z-index: 2000;
	}
	#hmenu {
		display: block;
		width: 30px;
		height: 30px;
		display: inline-block;
		position: relative;
		cursor: pointer;
	}
	#hmenu span {
		display: block;
		top: 50%;
		margin-top: -2px;
		transition-duration: 0.4s;
		font-size: 0px;
		color: #ABC8EE;
	}
	#hmenu span, #hmenu span::before, #hmenu span::after {
		width: 30px;
		height: 4px;
		background-color: #FFFFFF;
		background-color: #000000;
		border-radius: 1px;
		position: absolute;
	}
	#hmenu span::before, #hmenu span::after {
		content: "";
		display: block;
	}
	#hmenu span::before {
		top: -10px;
		transition: transform 0.4s ease 0s, top 0.3s ease 0.3s;
	}
	#hmenu span::after {
		bottom: -10px;
		transition: opacity 0.1s ease 0.2s, bottom 0.3s ease 0.3s;
	}
	#hmenu.active span::before {
		top: 0px;
		transition: top 0.2s ease-out 0s, transform 0.2s ease-out 0.2s;
		transform: rotate(90deg);
	}
	#hmenu.active span {
		transition: transform 0.2s ease-out 0.2s;
		transform: rotate(-45deg);
	}
	#hmenu.active span::after {
		bottom: 0px;
		transition: bottom 0.2s ease-out 0s, opacity 0.1s ease-out 0.2s;
		opacity: 0;
	}
	.sticky + section#main div {
		padding-top: 160px;
	}
}
