/*
 * -----------------------------------
 * Copyright
 * COM.POSiTUM Multimedia-Agentur GmbH
 * -----------------------------------
 */

/* ------------------------------------
 *  FONTS
 * ------------------------------------
 */

/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap'); */
/* ------------------------------------
*  BASICS
* ------------------------------------
*/

@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	src: url(../fonts/OpenSans-Regular.ttf) format('truetype');
	font-display: swap;
}
  

:root {
	--braun: #b7ac9a;
	--hellbraun: #f0eee9;
	--weiss: #ffffff;
	--orange: #f0811e;
	--font-color-accordion: #000000;
}

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	border: 0 none;
}

html, body {
	height: 100%;
}

body {
	background: #fff;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.6rem;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

a.highlighted {
	color: var(--orange);
}

.team a br {
	display: none;
}

p, ul {
	line-height: 1.8;
}

table {
	border-collapse: collapse;
}

table td {
	min-width: 8rem;
	padding: 0.2rem 0;
}

/* ------------------------------------
*  TYPOGRAPHY
* ------------------------------------
*/

h1, h2, h3, h4, h5, h6 {
	margin-bottom: 2.4rem;
	color: var(--orange);
}

h1, h2 {
	font-size: 4rem;
}

h3 {
	font-size: 3rem;
}

p {
	margin: 2.4rem 0;
}

p~h1, p~h2, p~h3, p~h4, p~h5, p~h6 {
	margin-top: 4.8rem;
}

.font-bold {
	font-weight: bold;
}

/* ------------------------------------
*  SCELETON
* ------------------------------------
*/

.page-wrapper {
	/* equal to footer height */
	min-height: 100%;
}

.page-wrapper::after {
	content: '';
	display: block;
	margin-bottom: -80px;
	height: 80px;
}

.content-wrapper {
	margin: 0 auto;
	min-height: 100%;
	width: 100%;
	float: none;
}

section {
	max-width: 1200px;
}

div hr {
	max-width: 1200px;
	padding-left: 30px;
	padding-right: 30px;
	margin: 0 auto;
	border-top: 2px dotted #999;
}

.page-wrapper .content-wrapper h2 {
	font-size: 2rem;
}

.page-wrapper .content-wrapper .image-block ~ * {
	display: flow-root;
}

.image-block {
	float: right;
	margin: 0 0 2rem 2rem;
	text-align: center;
	padding: 0 !important;
}

.image-block p {
	color: var(--orange);
	margin-top: 1rem;
}

.image-block img {
	width: 400px;
	margin: auto;
}

/* ------------------------------------
*  HELPER CLASSES
* ------------------------------------
*/

.fixed {
	position: fixed;
	z-index: 10;
}

.rightalign {
	text-align: right;
}

.center {
	float: none!important;
	display: table;
}

.flex {
	display: flex;
}

/* ------------------------------------
*  HEADER
* ------------------------------------
*/

header {
	color: var(--orange);
	padding: 2rem 0;
	width: 100%;
}

header .subnavigation {
	color: var(--braun);
}

header .content-wrapper {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding: 0 10rem;
}

.logo-img {
	width: 20rem;
}

/* ------------------------------------
*  NAVIGATION
* ------------------------------------
*/

nav ul li {
	display: inline-block;
	list-style-type: none;
	margin: 0;
	position: relative;
}

nav ul li:last-child {
	margin-right: 0;
}

nav ul li a {
	transition: all 0.2s ease;
	padding: 1rem 3rem;
	display: inline-block;
}

nav ul li a:hover {
	background-color: var(--orange);
	color: var(--weiss);
}

nav ul li ul li a:hover {
	background-color: var(--braun);
	color: var(--weiss);
}

nav ul li ul {
	opacity: 0;
	position: absolute;
	transition: all 0.4s ease;
	visibility: hidden;
	z-index: 100;
}

nav ul li ul li {
	background: #fff;
	color: #343434;
	display: block;
	margin: 0;
	transition: all 0.2s ease;
	padding-top: 1rem;
}

nav ul li ul li:last-child {
	border-bottom: 0 none;
}

nav ul li:hover ul {
	opacity: 1;
	visibility: visible;
}

.content-wrapper nav ul ul {
	list-style: circle;
	margin: 0;
}

.content-wrapper nav ul, .content-wrapper ol {
	margin-bottom: 0;
	padding-left: 0;
}

.content-wrapper ul ul li a, .content-wrapper ol ol li a {
	height: auto;
	width: 100%;
	text-align: center;
	border: 1px solid var(--orange);
}

.button-border {
	border: 1px solid var(--braun);
	border-radius: 1rem;
}

/* ------------------------------------
*  POSITION FIXED
* ------------------------------------
*/

.register-link {
	position: fixed;
	right: 0;
	top: 50%;
	z-index: 1000;
}

/* ------------------------------------
*  HERO IMAGE
* ------------------------------------
*/

.hero-img {
	max-height: 50vh;
	height: 50rem;
	overflow: hidden;
	width: 100%;
	max-width: 100%;
	opacity: 0;
	padding: 0;
}

.hero-img>div {
	background-image: url(../img/header-logo.svg);
	background-position: center center;
	background-repeat: no-repeat;
	opacity: 0;
}

.hero-img>svg {
	margin-top: 5rem;
}

.hero-img>* {
	height: 100%;
	width: 75%;
}

/* ------------------------------------
*  CONTENT
* ------------------------------------
*/

section.content-wrapper {
	padding-top: 6rem;
	padding-bottom: 6rem;
}

.start>.col-lg-7 {
	min-width: 60%;
}

/* ------------------------------------
*  FORMS
* ------------------------------------
*/

input, textarea, select {
	display: block;
	border: 2px solid var(--braun);
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.6rem;
	padding: 1.5rem 1rem;
	margin: 2rem 0;
	width: 100%;
	max-width: 40rem;
}

input:focus, textarea:focus {
	outline: 0 none;
}

textarea {
	height: 14rem;
}

input[type="submit"] {
	background: var(--orange);
	color: #fff;
	transition: all 0.4s ease;
	border: none;
	margin-top: 2rem;

	color: var(--weiss);
	font-size: 2rem;
	margin: 1rem 0;
	padding: 0.5rem 2rem;
	transition: all 0.4s ease;
	background-color: var(--orange);
	border-radius: 0.7rem;

	/* padding: 1.2rem 4rem;
	border-radius: 1rem;
	display: inline-block; */
	height: auto;
	width: auto;
}

input[type="submit"]:hover {
	background: var(--braun);
	cursor: pointer;
}

#form-callback {
	background: var(--braun);
}

#form-callback:empty {
	display: none;
}

/* ------------------------------------
*  BUTTONS
* ------------------------------------
*/

button {
	color: var(--weiss);
	display: block;
	font-size: 2rem;
	margin: 1rem 0;
	padding: 1rem 3rem;
	transition: all 0.4s ease;
	background-color: var(--orange);
	border-radius: 1.2rem;
}

button:active, button:focus {
	outline: 0 none;
}

button:hover {
	background: var(--braun);
	cursor: pointer;
}

.button--border {
	background: transparent;
	border: 2px solid #97c8de;
	color: #97c8de;
}

.button--border:hover {
	background: #97c8de;
	color: #fff;
}

.button {
	color: var(--weiss);
	font-size: 2rem;
	margin: 1rem 0;
	padding: 0.5rem 2rem;
	transition: all 0.4s ease;
	background-color: var(--orange);
	border-radius: 0.7rem;
}

.button-big {
	padding: 1.2rem 4rem;
	border-radius: 1rem;
	display: inline-block;
}

.button:hover, .button:focus {
	background: var(--braun);
	cursor: pointer;
	text-decoration: none;
	color: var(--weiss);
}

/* ------------------------------------
*  FOOTER
* ------------------------------------
*/

footer {
	padding: 4vh 0 4rem;
	width: 100%;
	position: relative;
	overflow: hidden;
	min-height: 15vh;
	background-color: var(--braun);
	color: var(--weiss);
}

footer .content-wrapper {
	align-items: center;
	display: table;
	position: relative;
	z-index: 3;
}

footer .content-wrapper>div {
	display: table-cell;
	float: none;
}

footer nav {
	font-size: inherit;
}

footer .content-wrapper div, footer .content-wrapper div p {
	padding: 0 0.5rem;
	font-size: 1.4rem;
}

footer .logo-img {
	vertical-align: top;
	display: inline-block;
}

.bottom {
	vertical-align: bottom;
}

footer nav ul li a {
	padding: 0.5rem;
	font-size: 1.4rem;
}

footer .logo-img {
	width: 100%;
	max-width: 20rem;
}

/* ------------------------------------
*  ADDITIONAL
* ------------------------------------
*/

section.start {
	padding-top: 0;
}

.subheader {
	font-size: 3rem;
	font-weight: bold;
	color: var(--braun);
}

.checkbox img, .checkbox p {
	margin: 0 auto;
	text-align: center;
}

.checkbox img {
	max-width: 25%;
	width: auto;
}

.checkbox p.subheader {
	margin-top: 10px;
}

.content-wrapper.go-digital>div.col-md-12.center {
	padding-top: 10rem;
}

.content-wrapper.go-digital>div.col-md-12.center, .content-wrapper.go-digital>div.col-md-12.center>.col-md-6:first-child {
	display: flex;
}

.sidebar h2 {
	margin-bottom: 0;
	padding-bottom: 0;
}

.sidebar .subheader {
	margin-top: 0;
	line-height: 1.4;
}

.sidebar hr {
	margin: 0;
	border-top: 2px dotted #999;
}

/* accordion */

.accordion {
	color: #444;
	cursor: pointer;
	padding: 0;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	transition: 0.4s;
	background-color: var(--weiss);
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
}

.accordion .title {
	flex: 1;
}

.accordion:after {
	content: ' ';
	background-image: url('../img/arrow.svg');
	background-size: 28px 28px;
	height: 28px;
	width: 28px;
	margin-right: 20px;
	margin-left: 20px;
	padding: 10px;
}

.active:after {
	/* content: "\02C4"; */
	transform: rotate(180deg);
}

.panel {
	padding: 0 18px;
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

.circle {
	border-radius: 50%;
	width: 50px;
	height: 50px;
	padding: 10px;
	background: var(--orange);
	color: var(--weiss);
	text-align: center;
	display: inline-table;
	margin-right: 10px;
	font-weight: bold;
}

section.mehrwerte .col-lg-4 img {
	width: auto;
	height: 120px;
	display: inline-block;
}

section.mehrwerte .col-lg-4 p {
	font-weight: bold;
	font-size: 1.2em;
	line-height: 1.4;
	padding-top: 10px;
	max-width: 240px;
}

section.content-wrapper>h2 {
	padding: 0;
	margin: 0;
}

h2+div {
	margin-top: 3rem;
}

section.papierkram .subheader {
	padding: 0;
	margin-top: 0;
}

section.papierkram .sidebar p,
section.papierkram .sidebar li {
	font-size: 2rem;
}

section.faq .accordion:after {
	padding: 0;
}

section.faq button.accordion {
	padding: 10px;
	font-size: 2.5rem;
}

section.faq hr {
	margin: 0;
}

section.faq .sidebar {
	padding-bottom: 5em;
}

.box-background {
	padding: 5rem 0;
	background-color: var(--hellbraun);
	border-radius: 3rem;
}

.box-background.empty {
	padding: 15em 0;
}

.box-background p {
	font-size: 3rem;
	font-weight: bold;
	margin-top: 0;
}

.content-wrapper > .box-background.important {
	padding: 3rem;
	margin: 3rem auto 0;
}

.box-background.important p {
	font-size: 2rem;
	font-weight: normal;
	margin-bottom: 0;
	text-align: left;
}

.box-background.important p + p {
	margin-top: 2rem;
}

.content-wrapper.go-digital {
	padding-bottom: 0;
}

.content-wrapper.go-digital div.col-md-12.center {
	padding-top: 10rem;
}

.content-wrapper.go-digital div.col-md-12.center, .content-wrapper.go-digital div.col-md-12.center>.col-md-6:first-child {
	display: flex;
}

main {
	padding: 0 15px;
}

section.briefkasten p {
	font-size: 2rem;
}

span.price {
	padding-left: 10rem;
}

footer .content-wrapper>div {
	float: left;
}

footer .content-wrapper div a img, #footer_menu {
	margin: 2.4rem 0;
}

footer .content-wrapper .bottom {
	text-align: right;
}

/* Team */

.team .col-lg-4 img {
	max-height: 20rem;
	margin: 2rem auto;
	max-width: 25rem;
}

.team .col-lg-4 {
	margin-bottom: 3rem;
	min-width: 20rem;
	flex-grow: 1;
	padding: 1rem 2rem;
}

.team h2 {
	padding-bottom: 0;
	margin-bottom: .5rem;
}

.flexbox {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 3rem 0;
}

.flexbox > * {
	float: none;
}

.team .team-mobile {
	display: none;
}

.team .team-desktop {
	display: block;
}

/* Data Security */

section.data-security p {
		margin: 1rem 0;
}

section.data-security h2 {
    padding-top: 1rem;
}

/* Form */

.form-row.full select {
	padding: 0 1.2rem;
}

/* DATENSCHUTZ */

.content-wrapper.data-security ol :first-child h3 {
    margin-top: 0.5rem;
} 

.content-wrapper.data-security ol > li::marker {
    font-size: 2rem;
    color: var(--orange);
    font-weight: 600;
}

.content-wrapper.data-security h2 {
	font-size: 3.5rem;
	counter-reset: headings3;
}

.content-wrapper.data-security h3,
.content-wrapper.data-security h4 {
	margin-top: 4.8rem;
	font-size: 2rem;
}
.content-wrapper.data-security h3:before {
    content: counter(headings3) ". ";
    counter-increment: headings3;
}

.content-wrapper.data-security a {
	text-decoration: underline;
}

@media screen and (min-width: 1200px) {
	section.mehrwerte .col-lg-push-2 {
		left: 12.5%;
	}
	span.price {
		padding-left: 5em;
	}
	footer .content-wrapper>div {
		float: none;
	}
}

@media screen and (max-width: 1199px) {
	footer .content-wrapper .bottom {
		text-align: center;
	}
	.team a br {
		display: initial;
	}
}

@media screen and (max-width: 991px) {
	.content-wrapper.go-digital div.col-md-12.center, .content-wrapper.go-digital div.col-md-12.center>.col-md-6:first-child {
		display: block;
	}
	#accordion-image {
		max-height: 300px;
	}
	header .content-wrapper {
		padding: 0 1rem;
	}
	nav ul li a {
		padding: 0.5em 1.4em;
	}
	span.price {
		padding-left: 5em;
	}
	.checkbox p.subheader {
		font-size: 1.5em;
	}
	footer .content-wrapper, footer .content-wrapper .bottom {
		text-align: center;
	}
}

@media screen and (max-width: 850px) {
	.image-block {
		float: none;
		margin: 0 0 2rem;
	}
	.image-block img {
		width: auto;
		max-width: 100%;
	}
}

@media screen and (max-width: 767px) {
	section.mehrwerte .col-lg-9, section.papierkram>div {
		display: block;
	}
	section.mehrwerte .col-lg-4 img {
		max-height: 240px;
	}
	section.mehrwerte .col-lg-4 {
		padding-bottom: 4em;
	}
	section.go-digital>div:first-child {
		display: block;
	}
	section.papierkram .sidebar {
		padding-top: 2em;
	}
	section.papierkram img {
		max-height: 300px;
	}
	.checkbox.col-sm-4 {
		padding: 2em 0;
	}
	.accordion-image {
		padding: 2em 0;
	}
	.nav_mobile img.logo-img {
		margin: 2em;
	}

	.team .team-mobile {
		display: flex;
	}
	.team .team-desktop {
		display: none;
	}
}
