body {
	margin: 0;
	font-family: 'Roboto', sans-serif;
}

main {
	margin: 120px 8px 0;
}

a {
	text-decoration: none;
	color: inherit;
}

.lhs {
	padding-left: 5px;
	float: left;
	text-align: left;
}

.rhs {
	padding-right: 5px;
	float: right;
	text-align: right;
}

.rhs-icon {
	margin-left: 10px;
}

.lhs-icon {
	margin-right: 10px;
}

.mhs {
	display: block;
	clear: both;
}

.bolder {
	font-weight: 600;
}

button, .btn {
	background-color: var(--button-accent);
	color: white;
	border: none;
	border-radius: 15px;
	padding: 10px 20px;
	font-family: 'Roboto', sans-serif;
	font-weight: 800;
	font-size: 11pt;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	z-index: 1;
	background-size: cover;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.header-logo {
	position: absolute;
	top: 15px;
	left: 15px;
	height: 70px;
	z-index: 1;
}

.header-contact {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 1;
	color: var(--contact-accent);
	text-align: right;
}

.header-contact h3 {
	margin: 0 20px;
	display: inline-block;
	font-family: 'Roboto', sans-serif;
	font-weight: 500; /* medium */
	font-size: 14pt;
}

.header-slogan {
	position: absolute;
	bottom: 0;
	/* left: 180px; */
	left: var(--slogan-spacing);
}

.header-slogan-img {
	display: inline-block;
	position: absolute;
	bottom: 0;
	height: 100px;
}

.header-slogan-txt {
	display: inline-block;
	position: absolute;
	bottom: 5px;
	margin: 0;
	left: 110px;
	width: 100px;
	font-family: 'Bebas Neue', cursive;
	text-transform: uppercase;
	font-size: 14pt;
	font-weight: normal;
	color: var(--slogan-accent);
}

nav {
	position: absolute;
	bottom: 15px;
	right: 15px;
	/* width: 80%; */
	/* max-width: calc(100% - 80px); */
}

nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	font-family: 'Bebas Neue', cursive;
	text-transform: uppercase;
	font-size: 16pt;
	float: right;
}

nav li {
	float: left;
	margin: 0 30px;
	color: var(--link-accent);
}

.corner-ribbon {
	width: 150px;
	position: absolute;
	color: white;
	background-color: var(--promo-accent-bg);
	text-align: center;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}

.ribbon-southeast {
	right: -25px;
	bottom: -25px;
	transform: translateX(30%) rotate(-45deg);
	transform-origin: bottom left;
}

.ribbon-northwest {
	left: -25px;
	top: -25px;
	transform: translateX(-30%) rotate(-45deg);
	transform-origin: top right;
}

.hidden {
	display: none !important;
}

#hamburger {
	position: relative;
	bottom: 15px;
	right: 15px;
	color: var(--contact-accent);
	font-size: 20pt;
	cursor: pointer;
	display: none;
}

footer {
	background-color: var(--dark-accent);
	color: #eeeeee;
	margin-top: 20px;
	padding: 20px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.footer-logo {
	text-align: center;
	width: 30px;
	display: block;
	margin: auto;
}

.footer-columns {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

footer ul {
	list-style-type: none;
	margin: 20px 0;
}

footer small {
	display: block;
	text-align: center;
}

#cookies-banner {
	position: fixed;
	bottom: 0;
	padding: 10px;
	text-align: justify;
	font-size: 11pt;
	background-color: #eeeeee;
	color: #333333;
}

.cookies-links {
	margin-top: 10px;
	text-align: center;
}

.cookies-link {
	display: inline-block;
	cursor: pointer;
	text-align: center;
	margin: 0 15px;
	font-size: 12pt;
}

.cookies-btn {
	border-radius: 20px;
	padding: 5px 10px;
	background-color: #009de1;
	color: white;
}

@media (max-width: 1400px) {
	.header-slogan {
		display: none;
	}
	nav li {
		margin: 0 15px;
	}
}

@media (max-width: 992px) {
	#hamburger {
		display: block;
	}
	.header-contact {
		width: 250px;
		top: 30px;
		right: 100px;
		color: var(--contact-accent-mobile);
	}
	nav li {
		float: none;
		margin: 10px 0;
		text-align: right;
	}
	nav ul {
		position: absolute;
		right: 0;
		top: 30px;
		background-color: black;
		display: none;
		width: 200px;
		float: right;
		padding: 0 20px;
		margin: 10px 0;
	}
}

@media (max-width: 600px) {
	.header {
		position: absolute;
	}
	.header-contact {
		right: 60px;
	}
	.header-contact h3 {
		font-size: var(--contact-size-mobile);
	}
	.footer-columns {
		grid-template-columns: repeat(2, 1fr);
	}
}
