@font-face {
	font-family: 'Axiforma-Light';
	src: url('/fonts/KastelovAxiforma-Light.woff') format('woff'),
	url('/fonts/KastelovAxiforma-Light.woff2') format('woff2'),
	url('/fonts/KastelovAxiforma-Light.otf') format('opentype');
	font-display: swap;
}
@font-face {
	font-family: 'Axiforma-Bold';
	src: url('/fonts/KastelovAxiforma-Bold.woff') format('woff'),
	url('/fonts/KastelovAxiforma-Bold.woff2') format('woff2'),
	url('/fonts/KastelovAxiforma-Bold.otf') format('opentype');
	font-display: swap;
}

:root {
	--color-primary: #000;
	--color-secondary: #0f172a;
	--color-tertiary: #468cfe;
	--color-quarternary: #ffffff;

	--font-color-primary: var(--color-primary);
	--font-color-secondary: var(--color-secondary);
	--font-color-tertiary: var(--color-quarternary);
	--font-color-quarternary: var(--color-tertiary);

	--background-color-primary: #ffffff;

	--button-background-color: #0f172a; /*Button bg normal*/
	--button-background-color-hover: #468cfe; /*Button bg hover*/

	--font-family-headline: 'Axiforma-Bold', Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
	--font-family-body: 'Axiforma-Light', Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
	--font-size-body: 1rem;
	--font-weight-body: 400;
	--line-height-body: 1.5;

	--border-radius: 4rem;
}

html {
	scroll-behavior: smooth;
}

body {
	display: flex;
	flex-direction: column;
	height: 100dvh;
	color: var(--font-color-primary);
	/*noinspection CssNoGenericFontName*/
	font-family: var(--font-family-body);
	font-size: var(--font-size-body);
	font-weight: var(--font-weight-body);
	line-height: var(--line-height-body);
}

/*region Headlines*/

body h1 {
	font-family: var(--font-family-headline);
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--font-color-secondary);
	line-height: 1.2;
	margin-bottom: 1rem;
}

body h2 {
	font-family: var(--font-family-headline);
	font-size: 3rem;
	font-weight: 700;
	color: var(--font-color-secondary);
	line-height: 1.2;
}

body h3 {
	font-family: var(--font-family-headline);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--font-color-secondary);
	line-height: 1.2;
}
body h4 {
	font-family: var(--font-family-headline);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--font-color-secondary);
	line-height: 1.2;
}

body h1 span.text-small {
	font-size: 2rem;
}

body h2 span {
	color: var(--font-color-quarternary);
}


/*endregion*/

/*region Button*/

.button {
	border-radius: var(--border-radius);
	padding: 1.25rem 2rem;
	font-size: 1rem;
	color: var(--font-color-tertiary);
	background-color: var(--button-background-color);
	margin: 1rem 0;
	text-decoration: none;
}

.button:hover, .button:focus, .button:active {
	background-color: var(--button-background-color-hover);
}

.button.outline {
	background-color: transparent;
	color: var(--button-background-color);
	border: 1px solid var(--button-background-color)
}
.button.outline:hover, .button.outline:focus, .button.outline:active {
	background-color: var(--button-background-color-hover);
	color: var(--font-color-tertiary);
	border: 1px solid var(--color-quarternary)
}

/*endregion*/

/*region Link*/

a {
	color: var(--font-color-quarternary);
	text-decoration: underline;
}

a:active, a:focus, a:hover {
	color: var(--font-color-secondary);
}

a.link {
	font-weight: bold;
}

/*endregion*/

/*region Menu Button*/

#hamburger-icon {
	width: 30px;
	height: 20px;
	position: relative;
	display: block;
	margin-right: 1.75rem;
}

#hamburger-icon .line {
	display: block;
	background: #000000;
	width: 30px;
	height: 2px;
	position: absolute;
	left: 0;
	border-radius: 2px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
}

#hamburger-icon .line.line-1 {
	top: 0;
}

#hamburger-icon .line.line-2 {
	top: 50%;
}

#hamburger-icon .line.line-3 {
	top: 100%;
}

#hamburger-icon:hover .line-1, #hamburger-icon:focus .line-1 {
	transform: translateY(-4px);
}

#hamburger-icon:hover .line-3, #hamburger-icon:focus .line-3 {
	transform: translateY(4px);
}

#hamburger-icon.actives .line-1 {
	transform: translateY(10px) translateX(0) rotate(45deg);
}

#hamburger-icon.actives .line-2 {
	opacity: 0;
}

#hamburger-icon.actives .line-3 {
	transform: translateY(-10px) translateX(0) rotate(-45deg);
}

/*endregion*/

/*region Foundation tweaks*/
hr {
	border-bottom: 0.5rem solid var(--color-tertiary);
	max-width: 502px;
}
[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'], textarea, select {
	padding: 1rem 2rem 1rem 1rem;
	color: var(--color-secondary);
	border: 1px solid #CBD5E1;
	height: 3rem;
	border-radius: 0.5rem;
	box-shadow: none;
}

.accordion-item {
	margin: 0.5rem 0;
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.accordion-title {
	color: var(--color-secondary);
	font-size: 1rem;
	font-weight: bold;
	padding-right:2rem;
	border: none;
	text-decoration: none;
}

.accordion-item.is-active .accordion-title {
	background-color: var(--color-secondary);
	color: var(--color-quarternary);
}

.accordion-title::before {
	content: "‹";
	font-size: 1.5rem;
	top: 50%;
	font-weight: normal;
	transform: rotate(270deg);
	right: 2rem;
}

.is-active > .accordion-title::before {
	content: "›";
	font-size: 1.5rem;
	top: 50%;
	font-weight: normal;
	transform: rotate(180deg);
}

.accordion-content {
	border: none;
}

label {
	font-size: 16px;
	color: var(--color-primary);
}

sub {
	opacity: 0.5;
	bottom: 0;
}

.flex-video {
	background-color: var(--color-primary);
}

/*region .position-top*/

.position-top {
	height: 450px;
}

.position-top p {
	padding: 0.7rem 1rem;
}

/*endregion*/

/*endregion*/

.ts-headline-web {
	font-size: 1.7rem;
}

#header {
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
	z-index: 1;
}

#header .menu a {
	font-weight: normal;
	color: var(--font-color-secondary);
}

.mainnav {
	padding: 0;
}

.mainnav .menu {
	padding-block: 1rem;
}

.accordion-menu li {
	border-bottom: 1px solid var(--color-quarternary);
}

.logo {
	padding: 1.5rem .5rem;
}

/* region footer */
footer {
	background-color: var(--font-color-secondary);
	color: var(--color-quarternary);
	border-top: 4px solid var(--color-tertiary);
	padding: 3rem 2rem;
}

footer .logo {
	padding: 0 0 1rem 0;
}

footer h4 {
	color: var(--color-quarternary);
}

footer .menu {
	display: block;
}

footer .menu a {
	padding: 0.7rem 0.5rem;
	text-decoration: underline;
}

footer svg path {
	fill: rgb(70 140 254);
}

footer a:hover, footer a:active, footer a:focus, .footer-teaser a:hover, .footer-teaser a:active, .footer-teaser a:focus {
	color: var(--color-quarternary);
}

footer .menu.align-left li a:after {
	border-right: 1px solid var(--color-quarternary);
	content: '';
	padding-left: 1rem;
	margin-right: -1rem;
}

footer .menu.align-left li:last-child a:after {
	display: none;
}

footer li:last-child a:after {
	border-right: none;
}

footer .menu.socialmedia, footer .menu.align-left {
	display: flex;
}

.socialmedia {
	margin-bottom: 1rem;
	margin-left: 0.25rem !important;
}
.socialmedia li {
	border: 1px solid var(--color-quarternary);
	border-radius: 50%;
	margin-right: 1rem;
	margin-bottom: 1rem;
	height: 3rem;
	width: 3rem;
}

.socialmedia li:last-child {
	margin-right: 0;
}

.socialmedia li a {
	margin: 50%;
	transform: translate(-100%, -48%);
}

.socialmedia svg path {
	fill: var(--color-quarternary);
}
.socialmedia li:hover {
	background-color: var(--color-tertiary);
	border: 1px solid var(--color-tertiary);
}
footer .menu.align-left li a:after {
	border-right: 1px solid var(--color-quarternary);
	content: '';
	padding-left: 0.75rem;
	margin-right: -.5rem;
}

footer .menu.align-left li:first-child a {
	padding-left: 0;
}


@media screen and (max-width: 729px) {
	.mainnav .menu li:last-child {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media screen and (max-width: 639px) {
	footer {
		text-align: center;
	}

	footer li a:after {
		display: none;
	}

	footer li {
		width: 100%;
	}

	#offCanvas {
		padding: 1.75rem;
	}

	.off-canvas {
		background: var(--color-quarternary);
	}

	.close-button.medium, .close-button {
		right: 1.75rem;
		top: 1.75rem;
	}
}
/*endregion*/


/* region content */
section {
	padding-bottom: 6rem;
}
section:first-child {
	padding-top: 6rem;
}

.content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	overflow-y: auto;
	scroll-behavior: smooth;
}

.content main {
	position: relative;
	flex-grow: 1;
}

/*.image-wrapper h1, .image-wrapper h2, .image-wrapper h3{
	color: var(--color-quarternary);
}*/

.image-wrapper h1 {
	/*text-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);*/
	margin-top: 1rem;
}

/*.image-wrapper span {
	color: var(--color-quarternary);
}*/

a svg {
	width: 1rem;
}

#intro hr {
	margin-left: 0;
}

#contact hr {
	margin-right: 0;
}

#contact .image-wrapper {
	max-height: 500px;
	align-items: end;
	border-radius: 3rem;
}

#contact .image-wrapper[data-first] {
	background: url(/images/rainer-linke.webp) no-repeat center;
}

#contact .image-wrapper[data-second] {
	background: url(/images/niclas-wichern.webp) no-repeat center;
}

#contact .image-wrapper[data-first],
#contact .image-wrapper[data-second] {
	background-size: cover;
}

#contact .image-wrapper-content {
	background-color: rgb(15 23 42 / 95%);
	color: var(--color-quarternary);
	width: 100%;
	padding: 3rem;
	border-radius: 3rem 0 3rem 3rem;
}
#contact .image-wrapper-content h3{
	color: var(--color-quarternary);
}
#contact .image-wrapper a{
	color: var(--color-tertiary);
}
#contact .image-wrapper a:hover{
	color: var(--color-quarternary);
}
#contact svg line, #contact svg polyline {
	stroke: var(--color-tertiary);
}
#contact a:hover svg line, #contact a:hover svg polyline {
	stroke: var(--color-quarternary);
}

.pricing {
	text-align: end;
	font-size: 1rem;
	color: var(--color-secondary);
}

.pricing p {
	margin-bottom: 0;
}

.pricing strong {
	text-align: end;
	font-size: 2rem;
	text-align: right;
	font-family: var(--font-family-headline);
}

.pricing-box-wrapper {
	background: var(--color-secondary);
	border-radius: 32px;
	padding-top: 24px;
	margin-block: 1rem 2rem;
	margin-bottom: 4rem;
}

.pricing-box-wrapper .pricing-box {
	background-color: var(--color-quarternary);
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.25);
	border-radius: 32px 0 31px 31px;
	padding: 32px 24px;
	position: relative;
	text-align: left;
}

.pricing-box-wrapper .pricing-box svg line, .pricing-box-wrapper .pricing-box svg polyline {
	stroke: var(--color-tertiary);
}
.pricing-box-wrapper .pricing-box a:hover svg line, .pricing-box-wrapper .pricing-box a:hover svg polyline {
	stroke: var(--color-secondary);
}

.pricing-box-wrapper.focus {
	background: var(--color-tertiary);
	zoom: 1.05;
	margin-top: -0.05rem;
}
.pricing-box-wrapper.focus h3, .pricing-box-wrapper.focus p strong, .pricing-box-wrapper.focus p b {
	color: var(--color-tertiary);
}

.parallax {
	position: relative;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: var(--color-secondary);
	padding: 5rem 0;
	width: 100%;
	height: 400px;
}
.parallax h2, .parallax {
	color: var(--color-quarternary);
}
.footer-teaser {
	background: rgb(15 23 42 / 90%);
	padding: 3rem 0;
	margin-top:8rem
}

.footer-teaser img {
	margin-top:-8rem;
}

.footer-teaser h2 {
	color: var(--color-quarternary);
	font-size: 3rem;
	margin-bottom: 1rem;
}

.footer-teaser p {
	color: var(--color-quarternary);
}

.image-wrapper {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-grow: 1;
	background: url(/images/car-ranking-plus-software.webp) no-repeat center;
	background-size: cover;
	width: 100%;
	height: 90dvh;
	position: relative;
}

.image-wrapper .ts-header-text-section {
	padding-inline: 160px;
	max-width: 980px;
	/*color: var(--color-quarternary);*/
	/*text-shadow: 4px 4px 16px rgba(0, 0, 0, 0.75);*/
	z-index: 10;
}

.image-wrapper .ts-header-text-section p {
	max-width: 545px;
}

.off-canvas:not(.is-open) {
	visibility: hidden;
}

.scrollbutton {
	top: 0rem;
	position: fixed;
	right: 5rem;
	z-index: 9999;
}
.scrollbutton .button {
	margin-right: 1rem;
}

/*endregion*/

/* custom checkmark */
.container {
	display: block;
	position: relative;
	padding-left: 2rem;
	cursor: pointer;
	margin-bottom: 0.5rem;
}

.container input {
	position: absolute;
	opacity: 0;
	left: 0.4rem;
	top: 1rem;
	cursor: pointer;
	/*height: 0;
	width: 0;*/
}

.checkmark {
	position: absolute;
	top: 2px;
	left: 0;
	height: 24px;
	width: 24px;
	background-color: var(--color-quarternary);
	border: 1px solid #CBD5E1;
	border-radius: 4px;
}

.container:hover input ~ .checkmark {
	background-color: #ccc;
}

.container input:checked ~ .checkmark {
	background-color: var(--color-tertiary);
}

.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.container input:checked ~ .checkmark:after {
	display: block;
}

.container .checkmark:after {
	left: 9px;
	top: 6px;
	width: 5px;
	height: 10px;
	border: solid var(--color-quarternary);
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
/*endregion*/

/* Custom UL Checklist */
ul.checklist {
	margin-left: 0;
}
ul.checklist li{
	list-style-type: none;
	padding: 1rem 1rem 1rem 5rem;
	position: relative;
	font-family: var(--font-family-headline);
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
}
ul.checklist.small li{
	font-family: var(--font-family-body);
	font-size: 1rem;
	font-weight: normal;
	line-height: 1.2;
}
ul.checklist li:after{
	list-style-type: none;
	background-image: url(/images/icons/checklist.svg);
	background-repeat: no-repeat;
	background-position: left center;
	content: "";
	display: block;
	width: 4rem;
	height: 4rem;
	position: absolute;
	left: 0rem;
	top: 50%;
	transform: translateY(-50%);
}
/*endregion*/

@media screen and (max-width: 2060px){
	.mainnav .menu {
		-webkit-box-pack: start;
		-webkit-justify-content: flex-start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
	.scrollbutton {
		right: 1rem;
	}
}
@media screen and (min-width: 1024px) and (max-width: 1080px) {
	.logo svg#a {
		width: 300px;
		margin-top: 0.5rem;
	}
}

@media screen and (min-width: 640px) and (max-width: 890px) {
	.menu a, .menu .button {
		padding: 0.7rem 0.5rem;
		font-size: 0.89rem;
	}

	/*.button, .mainnav .menu li:last-child {
		padding: 0;
	}*/
}
@media screen and (max-width: 1350px) {
	.image-wrapper .ts-header-text-section {
		padding-inline: 2rem;
	}
}
@media screen and (max-width: 1080px) {
	.image-wrapper {
		align-items: baseline;
		padding-top: 3rem;
	}

	.image-wrapper .ts-header-text-section {
		padding-inline: 1rem;
		max-width: 560px;
	}
}
@media screen and (max-width: 1023px) {
	.text-right {
		text-align: center;
	}
	#offCanvas {
		height: 100vh;
		font-size: 1.5rem;
	}

	#offCanvas .logo {
		margin-bottom: 2rem;
	}

	.logo {
		padding-top: 1.75rem;
		padding-bottom: 1.75rem;
	}

	#contact .image-wrapper {
		margin-bottom: 1rem;
	}

	#pakete .row {
		margin-bottom: 3rem;
	}

	.pricing-box-wrapper {
		margin-bottom: 1rem;
	}

	footer .columns {
		margin-bottom: 2rem;
	}

	footer .menu.socialmedia {
		display: inline-flex;
	}
}

@media screen and (min-width: 640px) and (max-width: 720px) {
	.logo svg#a {
		width: 25%;
	}

	.mainnav .menu {
		margin-left: 0.75rem;
		justify-content: left;
	}

	nav.medium-10 {
		width: 100% !important;
		flex: 0 0 100%;
		max-width: 100%;
		text-align: left !important;
	}
}

@media screen and (max-width: 639px) {
	body h1 {
		font-size: 2.5rem;
	}

	body h2 {
		font-size: 2rem;
	}

	body h3 {
		font-size: 1rem;
	}
	body h4 {
		font-size: 1rem;
	}

	body h1 span.text-small {
		font-size: 1.5rem;
	}

	#header .menu a.button {
		color: var(--font-color-tertiary);
		padding: 1.25rem 2rem;
	}

	#header .menu a.button.outline {
		color: var(--font-color-quarternary);
	}

	.footer-teaser h2 {
		font-size: 2rem;
	}
	.content img {
		margin-bottom: 1rem;
	}
	.logo svg#a {
		height: 30px;
	}

	.image-wrapper {
		background: url(/images/car-ranking-plus-software-s.webp) no-repeat center;
		background-color: var(--color-secondary);
	}
	.image-wrapper:after {
		background-color: var(--color-secondary);
		content: "";
		width: 100%;
		Height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0.5;
		z-index: 5;
	}
	.image-wrapper h1, .image-wrapper h2, .image-wrapper h3{
		color: var(--color-quarternary);
	}

	.image-wrapper h1 {
		text-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
	}

	.image-wrapper span {
		color: var(--color-quarternary);
	}
	.image-wrapper .ts-header-text-section {
		color: var(--color-quarternary);
		text-shadow: 4px 4px 16px rgba(0, 0, 0, 0.75);
	}
	#contact .image-wrapper:after {
		display: none;
	}
}

/*region Honeypot ausblenden*/
#order_mail_confirm_input, #demo_mail_confirm_input {
	display: none;
}
/*endregion*/

/*region Order Formular*/
#orderForm h3{
	margin-bottom: 2rem;
}
/*endregion*/