:root {
	--main-bg-color: #c5e1d7;
}
html,body { 
	height:100%;
	margin: 0px;
	padding: 0px;
	
}
html {
	/* overflow: hidden; */
}
body {
    color: #333;
    overflow: visible;
    font-family: 'Px Grotesk', sans-serif;
    -webkit-font-smoothing: antialiased;
    background-color: #e6e6e6;
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	
}
p {
	margin-top: 0rem;
	
}
a {
	text-decoration: none;
	color: inherit;
	
}
ul {
	list-style-type: none;
	margin: 0px;
	padding: 0rem;
	
}
ol {
	padding-left: 1.7rem;
	margin-top: 0rem;
	
}
.limited {
	max-width: 1200px;
	margin: 0px auto;
	position: relative;
	width: 90%;
	
}
.btn {
	padding: 1rem 3rem;
	background-color: #848383;
	color: white;
	font-size: 1rem;
	border: none;
	-webkit-transition: background-color .3s ease;
	-moz-transition: background-color .3s ease;
	transition: background-color .3s ease;
	cursor: pointer;
}
.btn:hover {
	background-color: #aaa;
	
}
a.link {
	color: #848383;
	-webkit-transition: color .3s ease;
	-moz-transition: color .3s ease;
	transition: color .3s ease;
	
}
a.link:hover {
	color: #b3334c;
	
}
a.textlink {
	position: relative;
	
}
a.textlink:after {
	content: '';
	position: absolute;
	display: block;
	bottom: 0rem;
	left: 0rem;
	width: 100%;
	height: 1px;
	background-color: #bbb;
	
}
.gray {
	/* color: #9a9a9a; */
	
}
.section {
	padding-top: 2rem;
	
}
.border-top {
	border-top: 1px solid var(--cl2);
	padding-top: var(--sp2);
	
}
.unternehmensvideo {
	margin-bottom: var(--indent);
	
}