@import url('https://fonts.googleapis.com/css?family=Poppins:200i,400&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.1/font/bootstrap-icons.css");
:root {
	--color-lightred: #f3f3f3;
	--color-darkblue: #152040;
	--color-gold: #d8b61c;
	--color-darkgold: #685917;
	--color-lightgreen: #ced0cd;
	min-width: fit-content;
}
body {
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.4;
	margin: 0;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
ul li::before {
	content: "\200B";
}
li {
	list-style-type: none;
}
a:link {
	color: #291e04;
	text-decoration: none;
}
a:visited {
	color: #291e04;
}
a:hover {
	color: aqua;
}
.text-white-bolder {
	color: #ffffff;
	font-weight: bolder;
	font-size: 1.5rem;
}
.text-grey {
	color: #bbbbbb;
}
h1 {
	color: var(--color-gold);
}
h2 {
	color: var(--color-darkgold);
}
/* Navbar */
.navbar {
	position: fixed;
	width: 100%;
	max-width: 100%;
	background-color: #89999e;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	opacity: 0.8;
	font-size: 20px;
	padding: 0;
	top: 0;
	left: 0;
	z-index: 1;
}
/* Logo */
.logo {
	flex: 20%;
	display: inline-flex;
	align-items: center;
}
.logo-img {
	width: 50px;
	height: 50px;
}
.logo a {
	padding: 20px;
}
/* Nav List */
.nav-list {
	padding: 0 20px 0 0;
	margin: 0;
}
.list-item {
	display: inline-block;
	padding: 20px 10px;
}
.menu {
	display: none;
}
.menu-line {
	width: 20px;
	height: 3px;
	background-color: black;
	margin-bottom: 4px;
}
/* Header/Title */
.header {
	padding: 60px;
	text-align: center;
}
/* Column container */
.row {
	display: flex;
	flex-wrap: wrap;
}
/* Main column */
.main {
	flex: 100%;
	background-color: var(--color-lightred);
	padding: 20px;
}
.info {
	background-color: var(--color-lightgreen);
	width: 100%;
	padding: 20px;
}
/* FOOTER */
.footer-row {
	position: relative;
	display: flex;
	flex-direction: row;
	background-color: var(--color-darkblue);
	color: white;
	z-index: 0;
	padding: 2rem;
}
.footer-links, .footer-info, .footer-social {
	flex: 30%;
	padding: 1rem;
}
.footer-col {
	display: flex;
	flex-direction: column;
}
.fo-pad {
	margin: 1rem 0.5rem 1rem 0;
}
.social-row {
	display: flex;
	flex-direction: row;
}
.bi-white {
	color: white;
	font-size: 2.5rem;
	margin-right: 0.5rem;
}
#consent-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1rem 1rem;
	background-color: #07a0e1;
	color: #ffffff;
	transition: opacity 1s ease;
	z-index: 1;
}
.hidden {
	pointer-events: none;
	opacity: 0;
}
.cookie-concent {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
}
.cookie-img {
	padding: 0.6rem 0;
}
.cookie-img > img {
	width: 24px;
	height: 24px;
	color: blue;
}
.gdpr-info {
	padding: 0.3rem 1rem;
}
.gdpr-more-info > a {
	font-weight: bold;
	color: #ffffff;
	text-decoration: underline;
}
.gdpr-accept {
	background-color: #0780c0;
	color: #ffffff;
    padding: 0.7rem 3rem;
    border-radius: 21px;
	font-size: large;
	font-weight: bold;
	border-style: none;
}
@media all and (max-width: 935px)  {
	.navbar {
		flex-direction: column;
		padding: 0.5rem 0;
	}
	.logo {
		width: 100%;
	}
	.logo-img {
		padding: 0.5rem;
	}
	.logo a {
		padding: 10px;
	}
	.menu {
		display: block;
		position: absolute;
		top: 25px;
		right: 45px;
	}
	.nav-list .list-item {
		display: block;
		border-top: 1px solid white;
		padding: 10px;
	}
	.nav-list {
		width: 100%;
		text-align: center;
		padding-top: 10px;
		display: none;
	}
	.active {
		display: block;
	}
}
@media screen and (max-width: 700px) {
	.row {
		flex-direction: column;
	}
}
@media all and (max-width: 677px) {
		.cookie-concent {
		flex-direction: column;
		text-align: center;
	}
}
