:root {
	--prim: #394BC4;
	--sec: #4F8FF0;
	--trans: rgba(0, 0, 0, 0.70);
	--positive: #0BC62E;
	--negative: #D52F2F;
	--content-max-width: 1450px;
}
::-webkit-scrollbar { width: 0.5em; }
::-webkit-scrollbar-track { background: var(--trans); }
::-webkit-scrollbar-thumb { background: var(--prim); border-radius: 100vw; }
::-moz-scrollbar { width: 0.5em; }
::-moz-scrollbar-track { background: var(--trans); }
::-moz-scrollbar-thumb { background: var(--prim); border-radius: 100vw; }
@font-face {
  	font-family: 'Poppins';
  	font-style: normal;
  	font-weight: 500;
  	font-display: swap;
  	src: url(poppins.woff2) format('woff2');
  	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
body, html {
    background-color: white;
    color: hsl(0 0 25);
	font-family: 'Poppins', system-ui, sans-serif;
	text-align: left;
    scroll-behavior: smooth;
    margin: 0px;
	overflow-x: hidden;
	font-size: 18px;
	word-break: break-word;
}
h1 { font-size:3.2em; font-weight: 700; text-wrap: balance; text-align: left;
	letter-spacing: 1px; box-sizing: border-box; /*max-width: 90%;*/ line-height: 1.2em;}
h2 { font-size:2.4em; font-weight: 700; text-wrap: balance; letter-spacing: 1px; box-sizing: border-box; padding-bottom: 30px;
	line-height: 1.5em;}
h3 { font-size:1.8em; font-weight: 700; text-wrap: balance; letter-spacing: 1px;}
h4 { font-size:1.6em; font-weight: 700; text-wrap: balance; letter-spacing: 1px;}
h5 { font-size:1.3em; font-weight: 700; text-wrap: balance; letter-spacing: 1px;}
p {
    /*max-width: 80ch;*/
    font-size: 1.1em;
	line-height: 1.5em;
	padding-bottom: 10px;
}
a:not([class]):link, a:not([class]):visited { color: var(--prim); }
a:not([class]):hover, a:not([class]):active { color: var(--sec); }
nav {
    cursor: pointer;
    display: flex;
    text-decoration: none;
    width: 100%;
    list-style: none;
    padding: 40px;
	} nav a {
	padding: 10px;
	display: inline-block;
	} nav div {
	align-self: center;
	} .submenu {
    display: none;
    position: relative;
    list-style: none;
    border-radius: 12px;
	} nav a:hover {
	background-color: var(--prim);
    border-radius: 12px;
	} .submenu li {
	padding: 10px;
	border-top: 1px solid white;
	border-bottom: 1px solid white;
	} nav div:hover .submenu, nav .submenu:hover, nav input:active .submenu {
    display: block;
	} .item {
	color: hsl(0 0 10);
    text-decoration: none;
	justify-self: center;
	align-content: center; 
	align-items: center; 
	align-self: center; 
}
section {
	width: 100vw;
	padding: 5em 2em;
	margin: 0;
	box-sizing: border-box;
	text-align: left;
	} section > * {
	max-width: var(--content-max-width);
	margin-left: auto;
	margin-right: auto;
}
.white-section {
    background-color:white;
    color: hsl(0 0 20);
}
.color-section {
    background: radial-gradient(1200px 600px at 20% 10%,
		rgba(14, 165, 233, 0.10), transparent 60%),
		radial-gradient(1200px 600px at 80% 20%,
		rgba(37, 99, 235, 0.10), transparent 60%);
	color: hsl(0 0 20);
}
li {
	padding: 0.5em;
	line-height: 1em;
}
.list1 > li {
	text-align: center;
	background-color: var(--prim);
	color: white;
	border-radius: 1em;
	list-style: none;
	
}
.list1 > li:hover {
	scale: 1.05;
	transition: scale 0.5s;
}
.list2 > li {
	background-color: var(--sec);
	color: white;
	border-radius: 0.7em;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
details{
      border: 1px solid lightgrey;
      border-radius: 1em;
      padding: 12px 12px;
      background: #fff;
 }
details + details{margin-top: 10px;}
summary{
    cursor: pointer;
	font-family: system-ui, sans-serif;
    font-weight: 700;
    letter-spacing: -0.1px;
    list-style: none;
}
summary::-webkit-details-marker{display:none;}
.detail-body{
      margin-top: 10px;
      color: var(--muted);
      font-size: 14px;
}
.hero {
    text-align:left;
    min-height: 10vh;
    background-image: url('background.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
	padding: 40px;

}
.language-switch {
	text-align: center;
	justify-self: center;
	margin: 15px;
}
.answer, .assistant {
	padding: 1.2em;
	font-size: 1.15em;
	border-radius: 1.2em;
	width: 98%;
	min-height: 20%;
	display: inline-block;
	box-sizing: border-box;
	background-color: white;
	margin-bottom: 35px;
	color: #333333;
	text-align: left;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}
.question, .user {
	padding: 1.2em;
	font-size: 1em;
	border-radius: 1.2em;
	width: 98%;
	min-height: 20%;
	display: inline-block;
	box-sizing: border-box;
	background-color: #222222;
	margin-bottom: 35px;
	color: white;
	text-align: left;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}
#question-field {
	padding: 1.2em;
	font-size: 1em;
	border-radius: 1.2em;
	width: 98%;
	display: inline-block;
	box-sizing: border-box;
	background-color: white;
	border: solid 1px lightgrey;
	outline: none;
	color: black;
	resize: none;
	box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}
.error {
	padding: 1.2em;
	font-size: 1.1em;	
	font-weight: 700;
	border-radius: .6em;
	width: 98%;
	min-height: 20%;
	display: inline-block;
	box-sizing: border-box;
	background-color: #F53232;
	margin-bottom: 35px;
	color: #171717;
	text-align: left;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}
.notification {
	padding: 1.2em;
	font-size: 1.1em;	
	font-weight: 700;
	border-radius: .6em;
	width: 98%;
	min-height: 20%;
	display: inline-block;
	box-sizing: border-box;
	background-color: var(--sec);
	margin-bottom: 35px;
	color: #171717;
	text-align: left;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}
.conversations-overview {
	margin: 0;
	padding: 0;
}
.conversation-card {
	margin: 25px;
	padding: 25px;
	color: #181818;
	background-color: white;
	border-radius: 1.2em;
	display: grid;
	
}
.steps {
	display: flex;
	gap: 1rem;
	list-style: none;
} .steps > li {
	padding: 15px;
	border-radius: 3em;
	border: 1px solid var(--prim);
	background-color: hsl(from var(--prim) h s l / 0.10);
	font-size: 1.15em;
	font-weight: 600;
} .steps > .upcoming {
	background-color: hsl(45 10 88);
	border-color: hsl(45 5 45);
	color: hsl(45 5 45);
}
.steps > li::before {
    content: "●";
	font-size: 1.6em;
	padding: 5px;
	padding-right: 10px;
    color: var(--prim);
    flex-shrink: 0;
	line-height: 0;
	transform: translateY(-0.10em);
}
.steps > .upcoming::before {
    color: hsl(45 5 45);
}

.mobile-only { display: none; }
.schwarz {color:black;}
.clear {clear: both;}
.spacer {clear: both; border: 1px solid transparent; height: 80px;}
.button {
	text-align: center !important;
	display: inline-block;
    background-color: var(--prim);
    border-radius: 8px;
    padding:15px;
    color:white;
    font-size: 1.2em;
    border:0;
    text-decoration:none;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
	cursor: pointer;
}
.button-2 {
	text-align: center !important;
	display: inline-block;
    background-color: var(--sec);
    border-radius: 8px;
    padding:15px;
    color:white;
    font-size: 1.2em;
    border:0;
    text-decoration:none;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
	cursor: pointer;
}
.button:hover, .button-2:hover {
    background-color:var(--sec);
}
button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.button-small {
	width: fit-content;
	margin: 15px 15px;
}

textarea:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.notification-bar {
	display: none;
	top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
	position: fixed;
	z-index: 9999;
	text-align: center;
	margin: auto;
	padding: 20px 80px;
	/*border: 2px solid green;*/
	border-radius: 1em;
	background-color: var(--prim);
	font-family: system-ui;
	font-weight: 500;
	color: #202020;
}
.container {
    text-align: center;
    display: block;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px;
}
.scrollcontainer {
	overflow-x: auto;
	white-space: nowrap;
	transform: rotateX(180deg);
	} .scrollcontainer > * {
	transform: rotateX(180deg);
}
.toggle {
	width: 95%;
	margin: 60px auto;
	}
	.toggle > li {
	list-style: none;
	width: 100%;
	margin: 20px;
	padding: 10px;
	border-radius: 1em;
	background: var(--sec);
	box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15), -6px -6px 10px -1px rgba(255, 255, 255, 0.15);
	color: white;
	}
	.toggle > li label {
	display: flex;
	align-items: center;
	padding: 10px;
	font-size: 1.2em;
	font-weight: 700;
	letter-spacing: 1px;
	cursor: pointer;
	}
	.toggle > li label::before {
	content: '+';
	margin-right: 10px;
	font-size: 1.4em;
	font-weight: 700;
	}
	.toggle input { display: none; }
	.toggle-content {
	max-height: 0;
	overflow: hidden;
	opacity: 5%;
	transition: max-height 0.8s, padding 0.8s, opacity 1s;
	}
	.toggle input:checked + label + .toggle-content {
	max-height: inherit;
	opacity: 100%;
	padding: 10px 10px 20px;
	}
	.toggle input:checked + label:before {
	content: '-';
}
.usp {
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    max-width: 500px;
	border-radius: 6px;
}
.usp:hover {
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
    border-top: 3px solid var(--prim);
    border-bottom: 3px solid var(--prim);
}
.box {
    display: block;
    background-color: #fff;
    padding: 35px 20px;
    border-radius: 16px;
	border: 1px solid lightgrey;
	overflow-x: hidden;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
	width: fit-content;
	align-content: center;
	height: fit-content;
}
.box > :first-child {
    margin-top: 0;
}
.box > :last-child {
    margin-bottom: 0;
}
.box2 {
    display: block;
    color: #fff;
    background-color: var(--sec);
    padding: 60px 20px;
    border-radius: 16px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
	overflow-x: hidden;
  	align-content: center;
	height: fit-content;
	} .box2 > img {
	width: 90%;
}
.video-player {
	padding:56.25% 0 0 0;
	position:relative;
}
.form-container {
    color: black;
    background-color: white;
    border-radius: 16px;
    display: inline-block; 
    margin: 20px;
    padding: 10px;
}
.formular {
	box-sizing: border-box;
	text-align:center;
	align-items: center;
	align-content: center;
	justify-content: center;
	justify-items: center;
	background-color: #121212;
	color: white;
	padding: 2.2em 2em;
	margin: 0 auto;
	border-radius: 12px;
	max-width: min(1200px, 90vw);
	width: fit-content;
}
.formular input:not([type="submit"]) {
	font-family: system-ui;
	border-radius: 5em;
	border: none;
	padding: 14px;
	font-size: 1em;
	text-align: center;
}
.formular input:not(placeholder-shown):valid { outline-color: var(--positive); }
.formular input:not(placeholder-shown):invalid { outline-color: var(--negative); }

#formular-antwort {
	padding-top: 30px;
	font-size: 1.2em;
}
.auto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(18rem, 100%), 1fr));
    grid-gap: 2rem;
	width: 80vw;
}
.flex-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    } .flexible-grid > * {
    flex: 1;
}
.con-list {
	--list-color: #FF5F5C;
    text-align: left;
    display: block;
    padding: 30px;
	margin: 0;
	border-top: 3px solid var(--list-color);
	box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
	} .con-list h5 {
	background-color: #EEEEEE;
	margin: 0;
	padding: 10px;
}
.pro-list {
	--list-color: #00C760;
    text-align: left;
    display: block;
    padding: 30px;
	border-top: 3px solid var(--list-color);
	box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
	} .pro-list h5 {
	background-color: #EEEEEE;
	margin: 0;
	padding: 10px;
}
.con-list li, .pro-list li {
	font-size: 1.1em;
}
.con-list li::marker, .pro-list li::marker {
    color: var(--list-color);
	font-size: 30px;
}
.quote {
	margin: 35px 0;
    padding: 18px 18px 18px 16px;
    border-left: 4px solid rgba(37,99,235,0.6);
    background-color: hsl(0 0 97);
    border-radius: 14px;
    color: var(--text);
	width: fit-content;
}
.testimonial {
	text-align: left;
	font-size: 1.1em;
	border-radius: 1em;
	border: 1px solid hsl(0 0 90);
	background-color: white;
	color: black;
	padding: 15px;
	margin-top: 20px;
	margin-bottom: 20px;
	width: fit-content;
	box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
}
.testimonial p:nth-of-type(2) {
	color: darkgrey;
	font-size: 1em;
	margin: 0;
}
.testimonial2 {
	border-radius: 12px;
	font-size: 0.8em;
	background-color: #222222;
	padding: 30px;
	margin-top: 20px;
	margin-bottom: 20px;
}
td.yes { color: #00B327; font-size: 1.4em; }
td.no { color: red; font-size: 1.4em; }
.preistabelle {
    width: 100%;
	max-width: 70em;
    border-collapse: collapse;
	margin: 0 auto;
    margin-bottom: 20px;
	}
	.preistabelle th, .preistabelle td {
		padding: 8px;
		text-align: center;
		border: 1px solid #ddd;
	}
	.preistabelle th {
		background-color: var(--sec);
		color: white;
		font-size: 1.2em;
		border-radius: 1em 1em 0 0;
  		border: 0;
	}
	.preistabelle tr:nth-child(even) {
		background-color: #f9f9f9;
	}
	.preistabelle .prime {
		background-color: var(--prim);
}

/*
Mobil-Layout
*/
@media screen and (max-width: 1440px) {
	.mobile-only { display: block; }
	.desk-only { display: none; }
	h1 { font-size: 2.6em; }
	.hero {
	padding: 40px;
    padding-top: 6.5em;
	}
	h2 { font-size:2.1em;}
	.preistabelle .feature { font-size: 0.8em;
		word-wrap: break-word; word-break: break-all; overflow-wrap: break-word; overflow: hidden; }
	.preistabelle th { font-size: 0.8em; }
	.preistabelle td { width: auto; }
	.submenu { position: relative; background-color: hsla(0, 100%, 50%, 0); }
	.submenu a { color: white; }
	section { padding: 4em 1em; }
	footer > * { justify-content: center; text-align: center !important; }
	#logo { height: 50px; }
}
@media screen and (max-width: 960px) {
	h1 { font-size: 2em; }
	h2 { font-size: 1.8em;}
	h3 { font-size: 1.4em;}
	h4 { font-size: 1.3em;}
}