/* General */
p {
	margin-bottom: unset;
	font-size: 18px;
	line-height: 1.3;
}

html body {
	margin: 0;
	padding: 0;
	border: 0;
	font-family: 'Times New Roman';
}

main.content-wrapper {
	min-height: 100vh;
}

body:not(.home) main {
	padding-top: 80px;
	background-color: #202020;
	color: white;
}

/* all Blocks */
.block {
	padding: 60px 0px;
}

.block .blocktitle {
	font-weight: 700;
	font-size: 48px;
	margin-bottom: unset;
}

.block .blocktext {
	font-size: 18px;
	font-family: 'Roboto';
	font-weight: 400;
}

/* Buttons & Links */
body a {
	color: black;
}

body a:hover {
	color: black;
}

body:not(.home) a {
	color: white;
}

body:not(.home) a:hover {
	color: white;
}

body a.button,
body button.button {
	color: white;
	background-color: #202020;
	font-size: 28px;
	padding: 10px 40px;
	border-radius: 60px;
	margin-top: 30px;
	display: inline-block;
	text-decoration: none;
	font-weight: 500;
	font-family: 'Roboto';
	transition: 100ms;
	border: none;
	outline: 0;
}

body a.button:hover,
body button.button:hover {
	color: white;
	background-color: black;
	text-decoration: none;
}

/* Header */
header {
	height: 80px;
	position: absolute;
	top:  0;
	left: 0;
	right: 0;
	color: black;
	z-index: 100;
	transition: 600ms;
}

header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient( to bottom, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0.5) 70%,rgba(0, 0, 0, 0.1) 100% );
    opacity: 0.9;
    z-index: -1;
    transition: 500ms;
}

body.fixedheader header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.9;
    z-index: -1;
}

body.fixedheader header {
	position: fixed;
	top: 0;
}

header > div,
header > div > .row {
	height: 100%;
	position: relative;
}

header > div > .row > div {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

header > div > .row > div.title-wrapper {
	justify-content: flex-start;
}

header img.logo {
	height: 40px;
	object-fit: contain;
}

header .title-wrapper a {
	color: black;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

header .title-wrapper a:hover {
	text-decoration: none;
}

header span.site-title {
	font-size: 40px;
	margin-left: 15px;
}

header .hamburger {
	display: none;
}

header nav ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: row;
	font-family: 'Roboto';
	font-weight: 500;
	font-size: 24px;
}

header nav ul li {
	margin-left: 30px;
	position: relative;
}

header nav ul li a {
	color: white;
	text-decoration: unset;
}

header nav ul li::after{
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: white;
	visibility: hidden;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

header nav ul li:hover::after{
	visibility: visible;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	background-color: white;
}

header nav ul li a:hover {
	color: white;
	text-decoration: unset;
}

#nbw {
	position: absolute;
	right: 15px;
	top: 20px;
	height: 35px;
	cursor: pointer;
	display: none;
}

#navbtn {
	display: block;
	width: 50px;
	height: 4px;
	background-color: white;
	float: right;
	margin-top: 0px;
	transition-duration: 0s;
	border-radius: 3px;
}

#navbtn::before {
	position: absolute;
	content: " ";
	height: 4px;
	width: 50px;
	background-color: white;
	display: block;
	top: 0px;
	transition-duration: 0.3s;
	border-radius: 3px;
}

#navbtn::after {
	position: absolute;
	content: "";
	height: 4px;
	width: 50px;
	background-color: white;
	display: block;
	bottom: 0px;
	transition-duration: 0.3s;
	border-radius: 3px;
}

.open {
	height: 0px!important;
	margin-top: 0px!important;
}

.open::before {
	transform: rotate(-45deg);
	top: 15.5px!important;
}

.open::after {
	transform: rotate(45deg);
	bottom: 15.5px!important;
}

/* Footer */
footer {
	width: 100%;
	background-color: #202020;;
	color: white;
	font-size: 20px;
	padding: 50px 0;
	font-size: 24px;
	font-family: 'Roboto';
	font-weight: 500;
}

footer nav {
	width: 100%;
}

footer nav ul {
	display: flex;
	flex-wrap: wrap;
}

footer nav ul li {
	width: 50%;
	display: flex;
	justify-content: center;
	padding: 5px 0;
}

footer nav ul li div {
	width: 22%;
}

footer nav ul li div a,
footer nav ul li div button {
	display: inline-block;
	background-color: unset;
	border: 0;
	outline: none;
	padding: unset;
	font-weight: 500;
}

footer .logo-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-bottom: 50px;
}

footer .logo-wrapper > div::before {
	content: "";
	position: absolute;
	top: 50%;
	right: -180%;
	border: 1px solid white;
	width: 180%;
}

footer .logo-wrapper > div::after {
	content: "";
	position: absolute;
	top: 50%;
	left: -180%;
	border: 1px solid white;
	width: 180%;
}

footer .logo-wrapper > div {
	position: relative;
	padding: 0 3%;
}

/*footer > div .row:last-of-type {
	margin-top: 50px;
	font-size: 18px;
	text-align: center;
}*/

footer p {
	margin-bottom: unset;
}

footer img {
	height: 45px;
	object-fit: contain;
}

footer a,
footer button {
	color: white;
}

footer a:hover,
footer a:focus,
footer button:hover,
footer button:focus {
	text-decoration: underline;
	color: white;
	outline: none;
}

footer nav ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.cl {
	color: black;
}

.cl:hover {
	color: #799666;
}

.grecaptcha-badge {
	display: none;
}

/* Footer Modal */

footer .modal-dialog {
	max-width: 50%;
	height: 90%;
}

footer iframe {
	width: 100%;
	height: 100%;
	border: none;
	margin: unset;
	padding: unset;
	background-color: #292929;
	overflow-y: scroll;
}

footer .modal-body,
footer .modal-content {
	height: 100%;
	padding: unset;
}

footer button.close {
	position: absolute;
	right: calc(100% - 40px);
	top: 10px;
	height: 30px;
	width: 30px;
	z-index: 5;
	color: black;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2rem;
	text-shadow: unset;
	opacity: 1;
}

footer button.close:hover {
	color: red;
}