@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
html {
	font-family: "Inter", sans-serif;
	font-size: 16px;
}
@media only screen and (max-width: 550px) {
	html {
		font-size: 14px;
	}
}
@media only screen and (max-width: 450px) {
	html {
		font-size: 13px;
	}
}
:root {
	--spaceHalf: 10px;
	--space: 20px;
	--spaceDouble: 40px;
	--spaceTripple: 60px;
	--spaceQuattro: 80px;
	--spaceSixfold: 120px;
	--spaceEightfold: 160px;
	--spaceTenfold: 200px;
	--spacePageBorder: var(--spaceQuattro);
	--spacePageSpace: var(--spaceEightfold);
	--colorBlack: #111;
	--colorLightGray: #ededed;
	--colorGray: #dcdcdc;
	--colorPrimary: #f22400;
	--colorAccent: #ffaf3d;
	--borderRadius: 4px;
}
@media only screen and (max-width: 550px) {
	:root {
		--spacePageBorder: var(--spaceDouble);
		--spacePageSpace: var(--spaceDouble);
	}
}
body {
	margin: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	background: radial-gradient(circle, rgb(255, 255, 255) 55%, rgb(255, 205, 164) 100%);
	color: var(--colorBlack);
}
a {
	text-decoration: none;
	color: var(--colorPrimary);
}
ul, li {
	list-style: none;
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4 {
	margin: 0;
	padding: 0;
	line-height: 1;
}
p {
	margin: 0;
	padding: 0;
	line-height: 1.6;
	font-weight: 300;
}
h2 {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1;
	margin-bottom: ~"calc(-1.5 * var(--space))";
}
h3 {
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.3;
}
h4 {
	font-size: 1.2rem;
	line-height: 1.3;
}
strong {
	line-height: 1;
	font-weight: 600;
}
body {
	margin: auto;
}
address {
	font-style: normal;
	font-size: 1rem;
	line-height: 1.6;
}
.button {
	padding: var(--spaceHalf) var(--space);
	background: var(--colorPrimary);
	border-radius: var(--borderRadius);
	color: #fff;
	display: inline-block;
	font-weight: 500;
}
.button:hover {
	background: var(--colorAccent);
}
@media only screen and (min-width: 2200px) {
	.page-wrapper {
		max-width: 2000px;
		box-shadow: rgba(0, 0, 0, 0.3) 0 18px 250px,rgba(0, 0, 0, 0.15) 0 -25px 30px -20px, rgba(0, 0, 0, 0.1) 0 25px 30px -13px;
		margin: var(--spaceDouble);
		margin-top: 0;
		border-radius: var(--borderRadius);
		overflow: hidden;
	}
	.page-wrapper:after {
		color: #fff;
		transform: rotate(90deg);
		content: 'Dein Bildschirm gefällt mir 😉';
		padding: var(--spaceHalf);
		background: black;
		position: fixed;
		top: 50%;
		right: -90px;
	}
}
@media only screen and (min-width: 3500px) {
	.page-wrapper:after {
		content: 'WOW, jetzt hör aber auf! 😱';
	}
}
main .content-box {
	display: flex;
	gap: var(--spaceDouble);
	overflow: hidden;
	flex-direction: column;
	align-items: center;
}
@media only screen and (max-width: 900px) {
	main .content-box {
		flex-direction: column;
	}
}
main .content-center {
	display: flex;
	flex-direction: column;
	gap: var(--spaceDouble);
	text-align: center;
	align-items: center;
	max-width: 800px;
}
main .box-api {
	padding: var(--spacePageSpace) var(--spacePageBorder);
	gap: var(--spacePageSpace);
	background: linear-gradient(0, #ffffff 55%, #ffe7d3 100%);
}
main .box-api .top {
	display: flex;
	gap: var(--spaceDouble);
	flex-direction: column;
}
main .box-mountain {
	padding: var(--spacePageSpace) var(--spacePageBorder);
	padding-bottom: var(--spaceTripple);
	background-image: url("/app/tpl/images/map-background.webp");
	background-size: cover;
	background-position: center bottom;
}
main .box-mountain iframe {
	border: none;
	width: 100%;
	max-width: 800px;
	aspect-ratio: 1;
}
@media only screen and (max-width: 900px) {
	main .box-mountain iframe {
		margin-left: calc(-1 * var(--spacePageBorder));
		margin-right: calc(-1 * var(--spacePageBorder));
		width: calc(100% + 2 * var(--spacePageBorder));
	}
}
main .box-design {
	background: var(--colorPrimary);
	color: #fff;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}
@media only screen and (max-width: 900px) {
	main .box-design {
		grid-template-columns: 1fr;
	}
	main .box-design > div:nth-child(3) {
		order: 4;
	}
	main .box-design > div:nth-child(4) {
		order: 3;
	}
}
main .box-design .text-container {
	padding: var(--spacePageSpace) var(--spacePageBorder);
	display: flex;
	flex-direction: column;
	gap: var(--spaceDouble);
}
main .box-design .image-container {
	overflow: hidden;
	position: relative;
}
main .box-design .image-container .image-slider {
	display: flex;
	height: 100%;
	width: 100%;
}
main .box-design .image-container .image-slider .image {
	flex: 1;
}
main .box-design .image-container .image-slider .image:hover {
	flex: 9;
}
main .box-design .image-container .image {
	position: relative;
	background-size: cover;
	background-position: center;
	height: 100%;
	width: 100%;
	min-height: 400px;
	transition: all 1.5s ease-in-out;
}
main .box-design .image-container .image:after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 60px rgba(0, 0, 0, 0.5) inset;
	content: '';
}
main .box-design .image-container.inview .image {
	transform: scale(1.05);
}
main .box-wordpress {
	padding: var(--spacePageSpace) var(--spacePageBorder);
}
@media only screen and (max-width: 600px) {
	main .box-wordpress {
		padding-bottom: var(--spaceSixfold);
	}
}
main .box-wordpress .top .notebook {
	width: 500px;
	height: 322px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	position: relative;
}
main .box-wordpress .top .notebook .screen {
	margin-top: -13%;
	width: 73%;
	height: 71%;
	background-image: url(/app/tpl/images/wordpress-small.webp);
	background-size: cover;
	animation-timing-function: ease-in-out;
	animation-name: notebook;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
@media only screen and (max-width: 900px) {
	main .box-wordpress .top .notebook {
		width: 300px;
		height: 194px;
	}
}
main .box-wordpress .top .description {
	border-radius: var(--borderRadius);
	background: var(--colorPrimary);
	color: #fff;
	padding: var(--space);
	max-width: 350px;
	position: relative;
	opacity: 0;
	transition: all 0.5s ease-out;
	box-shadow: rgba(255, 255, 255, 0.25) 0 1px 1px 0 inset, rgba(50, 50, 93, 0.3) 0 36px 50px -20px, rgba(0, 0, 0, 0.35) 0 30px 50px -30px;
}
main .box-wordpress .top .description:after {
	content: " ";
	position: absolute;
	top: -14px;
	left: calc(50% - 15px);
	border-left: 15px solid transparent;
	border-top: none;
	border-bottom: 15px solid var(--colorPrimary);
	border-right: 15px solid transparent;
}
main .box-wordpress .top .description.inview {
	opacity: 1;
	transform: translateY(20px);
}
main .box-ai {
	padding: var(--spacePageSpace) var(--spacePageBorder);
	gap: var(--spacePageSpace);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 50%);
}
main .box-bind {
	padding: var(--spacePageSpace) var(--spacePageBorder);
	gap: var(--spacePageSpace);
	background: linear-gradient(0, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 50%);
}
main .box-wordpress-features {
	padding: 0 var(--spacePageBorder) var(--spacePageSpace) var(--spacePageBorder);
}
@keyframes notebook {
	0% {
		background-position: top center;
	}
	30% {
		background-position: top center;
	}
	60% {
		background-position: bottom center;
	}
	100% {
		background-position: bottom center;
	}
}
header {
	width: 100%;
	height: 100vh;
	background-color: var(--colorPrimary);
	display: flex;
	color: #fff;
}
@media only screen and (max-width: 1000px), only screen and (max-height: 600px) {
	header {
		flex-direction: column;
		height: auto;
	}
}
@media only screen and (min-width: 2200px) {
	header {
		min-height: calc(100vh - var(--spaceDouble));
	}
}
header:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 90vh;
	width: 100%;
	background-color: var(--colorPrimary);
	z-index: -1;
}
header .left {
	display: flex;
	flex-direction: column;
	flex: 1;
}
header .left .box-intro {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: var(--spaceQuattro);
	padding: var(--spacePageBorder) var(--spacePageBorder) var(--spaceQuattro) var(--spacePageBorder);
}
header .left .box-intro h1 {
	font-size: 5rem;
	font-weight: 400;
}
header .left .box-intro .claim {
	font-size: 2rem;
	line-height: 1.3;
}
header .left .box-intro .claim span {
	margin-right: -1rem;
	animation: blink 1.5s infinite;
}
header .left .box-intro .skills {
	display: flex;
	gap: var(--spaceHalf);
	flex-wrap: wrap;
}
header .left .box-intro .skills div {
	background-color: rgba(0, 0, 0, 0.4);
	border-radius: var(--borderRadius);
	padding: 5px 15px;
	font-weight: 400;
	user-select: none;
	transition: all 0.2s ease-in-out;
	opacity: 0;
	animation-name: popup;
	animation-duration: 1s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	line-height: 1.6;
}
header .left .box-intro .skills div:hover {
	background-color: rgba(0, 0, 0, 0.7);
}
header .left .box-intro .skills div:nth-child(1) {
	animation-delay: 0.1s;
}
header .left .box-intro .skills div:nth-child(2) {
	animation-delay: 0.2s;
}
header .left .box-intro .skills div:nth-child(3) {
	animation-delay: 0.3s;
}
header .left .box-intro .skills div:nth-child(4) {
	animation-delay: 0.4s;
}
header .left .box-intro .skills div:nth-child(5) {
	animation-delay: 0.5s;
}
header .left .box-intro .skills div:nth-child(6) {
	animation-delay: 0.6s;
}
header .left .box-intro .skills div:nth-child(7) {
	animation-delay: 0.7s;
}
header .left .box-intro .skills div:nth-child(8) {
	animation-delay: 0.8s;
}
header .left .box-intro .skills div:nth-child(9) {
	animation-delay: 0.9s;
}
header .left .box-intro .skills div:nth-child(10) {
	animation-delay: 1s;
}
header .left .box-intro .skills div:nth-child(11) {
	animation-delay: 1.1s;
}
header .left .box-intro .skills div:nth-child(12) {
	animation-delay: 1.2s;
}
header .left .box-intro .skills div:nth-child(13) {
	animation-delay: 1.3s;
}
header .left .box-intro .skills div:nth-child(14) {
	animation-delay: 1.4s;
}
header .left .box-intro .skills div:nth-child(15) {
	animation-delay: 1.5s;
}
header .left .box-intro .skills div .heartbeat {
	display: inline-block;
	animation: beat 1s infinite;
}
header .left .box-social-icons {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
	max-width: 1000px;
}
@media only screen and (max-width: 800px) {
	header .left .box-social-icons {
		grid-template-columns: 1fr 1fr 1fr;
	}
}
header .left .box-social-icons .item {
	gap: var(--spaceHalf);
	overflow: hidden;
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: var(--spaceHalf) 0;
	transition: all 0.2s ease-in-out;
}
header .left .box-social-icons .item span {
	color: #fff;
}
header .left .box-social-icons .item img {
	height: var(--space);
	width: var(--space);
	filter: invert(1);
	display: block;
}
header .left .box-social-icons .item:after {
	content: '';
	display: block;
	width: 100%;
	aspect-ratio: 1;
	background-color: var(--colorAccent);
	position: absolute;
	top: 100%;
	z-index: -1;
	left: 0;
	border-radius: 1000px;
	transition: all 0.8s cubic-bezier(0, -0.02, .09, 1.05);
	transform: scale(0.5);
	transform-origin: left center;
	opacity: 0;
}
header .left .box-social-icons .item:before {
	content: '';
	display: block;
	width: 100%;
	aspect-ratio: 1;
	background-color: var(--colorAccent);
	position: absolute;
	top: 100%;
	z-index: -1;
	left: 0;
	border-radius: 1000px;
}
header .left .box-social-icons .item:hover {
	box-shadow: rgb(255, 106, 0) 0px 30px 100px -20px, rgba(0, 0, 0, 0.7) 0px 30px 40px -30px;
}
header .left .box-social-icons .item:hover:after {
	top: 0;
	transform: scale(2);
	opacity: 1;
	transform-origin: center center;
}
header .right {
	flex-direction: column;
	align-self: stretch;
	overflow: hidden;
	height: 100%;
	aspect-ratio: 0.7;
}
header .right .box-introimage {
	background-image: url("/app/tpl/images/ich-hintergrund.webp");
	background-size: cover;
	transition: all 15s ease-out;
	background-position: center 0;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
header .right .box-introimage .image-foreground {
	background-image: url("/app/tpl/images/ich-vordergrund.webp");
	background-size: cover;
	background-position: center 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 15s ease-out;
	background-repeat: no-repeat;
}
header .right .box-introimage .bubble {
	color: #fff;
	transition: all 0.5s ease-out;
	font-size: 3rem;
	opacity: 0;
	line-height: 1.2;
	font-weight: bold;
	display: flex;
	flex-direction: column;
	padding: var(--spaceDouble);
	transform: rotate(-15deg);
}
header .right .box-introimage .bubble .line1 {
	text-align: center;
	transition: all 0.5s ease-out;
	transform: translateX(-40px);
}
header .right .box-introimage .bubble .line2 {
	text-align: center;
	transition: all 0.5s ease-out;
	transform: translateX(40px);
}
header .right .box-introimage .bubble .line3 {
	text-align: center;
	transition: all 0.5s ease-out;
	transform: translateX(-40px);
}
header .right .box-introimage.inview {
	background-position: center -100px;
}
header .right .box-introimage.inview .image-foreground {
	transform: scale(1.2);
	background-position: center 50px;
	background-image: url("/app/tpl/images/ich-vordergrund.webp");
}
header .right:hover .bubble {
	opacity: 1 !important;
	backdrop-filter: blur(8px);
	background-color: rgba(0, 0, 0, 0.5);
}
header .right:hover .bubble .line1 {
	transform: translateX(-4px);
}
header .right:hover .bubble .line2 {
	transform: translateX(-10px);
}
header .right:hover .bubble .line3 {
	transform: translateX(-5px);
}
@media only screen and (min-width: 900px) and (max-width: 1400px) {
	header .right {
		aspect-ratio: 0.4;
	}
}
@media only screen and (max-width: 900px) {
	header .right .box-introimage {
		flex-grow: 1;
	}
	header .right .box-introimage .image-foreground {
		flex-grow: 1;
	}
}
@keyframes blink {
	0%, 49% {
		color: transparent;
	}
	50%, 100% {
		color: #fff;
	}
}
@keyframes popup {
	from {
		transform: scale(0.8);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}
@keyframes beat {
	0% {
		transform: scale(1);
	}
	20% {
		transform: scale(1.3);
	}
	40% {
		transform: scale(1);
	}
	100% {
		transform: scale(1);
	}
}
footer {
	background-color: #000;
	color: #aaa;
}
footer .top {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: var(--spaceDouble) var(--spacePageBorder);
	gap: var(--space);
	border-bottom: 1px dashed #333;
}
footer .top .left {
	display: flex;
	gap: var(--space);
}
footer .top .left .item {
	background-color: #fff;
	padding: var(--spaceHalf);
	border-radius: var(--borderRadius);
	transition: all 0.3s ease-in-out;
	height: var(--space);
	aspect-ratio: 1;
}
footer .top .left .item img {
	display: block;
	height: 100%;
	width: 100%;
}
footer .top .left .item:hover {
	background-color: var(--colorPrimary);
	transform: scale(1.3);
}
footer .top .right {
	max-width: 400px;
	display: flex;
	flex-direction: column;
	gap: var(--space);
	align-items: flex-start;
}
footer .top .right h4 {
	color: #fff;
}
@media only screen and (max-width: 900px) {
	footer .top {
		text-align: center;
		flex-direction: column-reverse;
		gap: var(--spaceDouble);
		align-items: center;
	}
	footer .top .right {
		align-items: center;
	}
}
footer .bottom {
	padding: var(--spaceDouble) var(--spacePageBorder);
	display: flex;
	justify-content: space-between;
}
@media only screen and (max-width: 900px) {
	footer .bottom {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}
}
.component-features {
	display: grid;
	gap: var(--spaceTripple);
	grid-template-columns: 1fr 1fr 1fr;
	justify-items: center;
}
.component-features .feature {
	display: flex;
	flex-direction: column;
	gap: var(--spaceDouble);
	justify-items: center;
	max-width: 300px;
	align-items: center;
	opacity: 0;
	transition: all 0.6s ease-out;
	transform: translateY(-30px);
}
.component-features .feature:nth-child(2) {
	transition-delay: 0.2s;
	transform: translateY(30px);
}
.component-features .feature:nth-child(3) {
	transition-delay: 0.4s;
	transform: translateY(40px);
}
.component-features .feature:nth-child(4) {
	transition-delay: 0.6s;
	transform: translateY(-30px);
}
.component-features .feature:nth-child(5) {
	transition-delay: 0.8s;
	transform: translateY(40px);
}
.component-features .feature:nth-child(6) {
	transition-delay: 1s;
	transform: translateY(40px);
}
.component-features .feature .image {
	aspect-ratio: 1;
	background-position: center;
	background-size: cover;
	width: 100px;
	height: 100px;
	border-radius: var(--borderRadius);
	position: relative;
	box-shadow: rgba(255, 255, 255, 0.4) 0 1px 1px 0 inset, rgba(50, 50, 93, 0.5) 0 30px 100px -20px, rgba(0, 0, 0, 0.7) 0 30px 40px -30px;
}
.component-features .feature .image.green {
	box-shadow: rgba(16, 255, 0, 0.7) 0 30px 100px -20px, rgba(0, 0, 0, 0.7) 0 30px 40px -30px;
}
.component-features .feature .image.blue {
	box-shadow: rgba(0, 0, 255, 0.7) 0 30px 100px -20px, rgba(0, 0, 0, 0.7) 0 30px 40px -30px;
}
.component-features .feature .icon {
	padding: var(--space);
	background-color: var(--colorPrimary);
	box-shadow: rgba(255, 255, 255, 0.5) 0 1px 1px 0 inset, rgba(255, 0, 0, 0.7) 0 20px 80px -20px, rgba(0, 0, 0, 0.9) 0 30px 60px -30px;
	border-radius: var(--borderRadius);
}
.component-features .feature .icon img {
	filter: invert(1);
	width: 48px;
	aspect-ratio: 1;
	display: block;
}
.component-features .feature .description {
	display: flex;
	flex-direction: column;
	gap: var(--spaceHalf);
	align-items: center;
}
.component-features .feature .description p {
	flex: 1;
	text-align: center;
}
.component-features .feature .description h4 {
	text-align: center;
}
@media only screen and (max-width: 700px) {
	.component-features .feature {
		flex-direction: row;
		max-width: 100%;
	}
	.component-features .feature .description {
		align-items: flex-start !important;
	}
	.component-features .feature .description p {
		text-align: left !important;
	}
	.component-features .feature .description h4 {
		text-align: left;
	}
	.component-features {
		grid-template-columns: 1fr !important;
	}
}
.component-features.count-2 {
	grid-template-columns: 1fr 1fr;
}
.component-features.inview .feature {
	opacity: 1;
	transform: translateY(0);
}
.component-point {
	display: flex;
	flex-direction: column;
	gap: var(--spaceTripple);
	align-items: center;
}
.component-point .image {
	aspect-ratio: 1;
	background-position: center;
	background-size: cover;
	width: 160px;
	height: 160px;
	border-radius: var(--borderRadius);
	position: relative;
	box-shadow: rgba(0, 127, 255, 0.4) 0 1px 1px 0 inset, rgba(0, 0, 255, 0.7) 0 30px 100px -20px, rgba(0, 0, 0, 0.7) 0 30px 40px -30px;
	opacity: 0;
	transform: scale(0.5);
	transition: all 0.6s ease-out;
	transition-delay: 0.2s;
}
.component-point .description {
	max-width: 600px;
	display: flex;
	text-align: center;
	flex-direction: column;
	gap: var(--spaceDouble);
	align-items: center;
}
.component-point.inview .image {
	opacity: 1;
	transform: scale(1);
}
@media only screen and (max-width: 700px) {
	.component-point {
		align-items: flex-start;
		gap: var(--spaceDouble);
	}
	.component-point .description {
		text-align: left;
		align-items: flex-start;
	}
}
/*# sourceMappingURL=css_fd1af05ecd6fd3ce52bc1babf8e43fcb105aab5f.map */
