<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
*****************************************************************************
Start Normalizer
*****************************************************************************
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

table,
table td {
	padding: 0;
	border: none;
	border-collapse: collapse;
}

img {
	vertical-align: top;
}

embed {
	vertical-align: top;
}

html {
	scroll-behavior: smooth;
}

.wrapper {
	max-width: 1140px;
	padding-left: 1rem;
	padding-right: 1rem;
	margin-left: auto;
	margin-right: auto;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color: #222;
}

/* 
*****************************************************************************
End Normalizer
*****************************************************************************
*/


/* 
*****************************************************************************
Start Base
*****************************************************************************
*/

html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: Urbanist, sans-serif;
	font-size: var(--fz-text-m);
	line-height: 1.6;
	color: #000000;
}

:root {
	--main-color: #0265ab;
	--secondary-color: #ffffff;
	--third-color: linear-gradient(135deg, #2eafff, #FF69B4);
	--fourth-color: #c3ebff;
	--fifth-color:#edf7dc;
	--sixth-color:#73B300;
	/*#edf2fc;*/
	--section-padding: 40px;
	--section-background: #f6f6f6;
	--button-color: linear-gradient(135deg, #2eafff, #FF69B4);
	--main-duration: 0.5s;
	--bs-body-bg: white;
	--bs-white: #fff;
	--bs-primary: #3f78e0;
	--bs-light: #fefefe;
	--bs-gray: #f6f7f9;
	--fz-text-s: 16px;
	--fz-text-m: 18px;
	--fz-text-l: 20px;
	--fz-text-xl: 22px;
}


.sr-only {
	position: absolute;
	clip: rect(1px, 1px, 1px, 1px);
	padding: 0;
	border: 0;
	height: 1px;
	width: 1px;
	overflow: hidden;
}



.container {
	margin-left: auto;
	margin-right: auto;
}

/* Small */
@media (max-width:576px) {
	.container {
		width: 100%;
		padding: 20px;
	}
}

@media (min-width:576px) {
	.container {
		width: 540px;
		padding: 0;

	}
}

@media (min-width:768px) {
	.container {
		width: 720px;
		padding: 0;

	}
}


/* Medium */
@media (min-width:992px) {
	.container {
		width: 960px;
		padding: 0;

	}
}

/* Large */
@media (min-width:1200px) {
	.container {
		width: 1140px;
		padding: 0;

	}
}

@media (min-width:1400px) {
	.container {
		width: 1320px;
		padding: 0;

	}
}

/* 
*****************************************************************************
End Base
*****************************************************************************
*/


/* 
*****************************************************************************
Start Header
*****************************************************************************
*/


/* Start Toolbar */

.toolbar{
	font-weight: 700 !important;
	background: var(--sixth-color);
	/*Background: linear-gradient(135deg, #2eafff, #FF69B4) ;*/
	color: #fff
}


.toolbar .ms-auto {
    margin-left: auto!important
}


.toolbar .d-flex {
    display: flex!important
}

.toolbar .flex-md-row,.flex-row {
    flex-direction: row!important
}

.toolbar .align-items-center {
    align-items: center!important
}

@media (min-width: 768px) {

	.toolbar  .d-md-flex {
        display: flex!important
    }
}

.toolbar .mt-1 {
    margin-top: .25rem!important
}

.toolbar .me-6 {
    margin-right: 1.5rem!important
}

.toolbar .py-2 {
    padding-top: .5rem!important;
    padding-bottom: .5rem!important
}


.toolbar .fs-22 {
    font-size: 1.1rem!important
}

.toolbar .uil-phone-volume {
    width: 20px;
    height: 20px;
    margin-left: 7px;
    border-radius: 50%;
    background-color: #0e9cd4;
    animation: 2s infinite alternate pulse,2s infinite colorChange
}

@media (max-width: 768px) {
	.toolbar  .nonetelefone {
        display:none!important
    }

    .toolbar .flex-row {
        justify-content: center
    }
}

@keyframes pulse {
    0%,100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.2)
    }
}

@keyframes colorChange {
    0%,100% {
        background-color: #4caf50
    }

    50% {
        background-color: #4caf4fa8
    }
}

.toolbar .telefon {
    font-size: 24px;
	color: white;
}

.toolbar .telefon::selection {
    color: #1d5cd1;
    background: #fff
}

.toolbar .text-light {
    color: #fff
}

/* End Toolbar */

/* Start Nav */

#header {
	--navbar-height: 78px;
	position: sticky;
	z-index: 1000;
}



.fixed-nav{
	background-color: white;
	width: 100%;
}

.brand {
	font-weight: bold;
	font-size: 20px;
}



.navbar-container {
	display: flex;
	justify-content: space-between;
	height: 70px; 
	margin-left: auto;
	margin-right: auto;
	align-items: center;
}

.navbar-item {
	margin: .4em
}

#navbar .underline {
	border-bottom: 3px solid var(--sixth-color)
}

.home-link,
.navbar-link {
	color: hsl(0, 0%, 0%);
	text-decoration: none;
	display: flex;
	font-weight: 600;
	align-items: center;
	font-size: 17px
}

.navbar-link {
	justify-content: center;
	width: 100%;
	padding: .5em .8em;
	border-radius: 5px
}

.navbar-link:is(:focus, :hover, .active, .active:focus) {
	color: var(--sixth-color)
}

#navbar-toggle {
	cursor: pointer;
	border: none;
	background-color: transparent;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column
}

.icon-bar {
	display: block;
	width: 25px;
	height: 4px;
	margin: 2px;
	background-color: hsl(0, 0%, 0%)
}

#navbar-menu {
	position: fixed;
	top: var(--navbar-height);
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	left: 0;
	right: 0
}


.navbar-links {
	list-style: none;
	position: absolute;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	left: 0;
	right: 0;
	margin: 1.4rem;
	border-radius: 5px;
	box-shadow: 0 0 20px rgba(0, 0, 0, .3)
}

@media screen and (min-width:655px) {

	#navbar-toggle,
	#navbar-toggle[aria-expanded="true"] {
		display: none
	}

	#navbar-menu,
	#navbar-toggle[aria-expanded="true"] #navbar-menu {
		visibility: visible;
		opacity: 1;
		position: static;
		display: block;
		height: 100%
	}

	.navbar-links,
	#navbar-toggle[aria-expanded="true"] #navbar-menu .navbar-links {
		margin: 0;
		padding: 0;
		box-shadow: none;
		position: static;
		flex-direction: row;
		width: 100%;
		height: 100%
	}

	.navbar-link {
		padding: 20px .8em
	}
}

.sidenav {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	background-color: #111;
	overflow-x: hidden;
	transition: 0.5s;
	padding-top: 60px;
  }
  
  .sidenav a {
	padding: 8px 8px 8px 32px;
	text-decoration: none;
	font-size: 25px;
	color: #ffffff;
	display: block;
	transition: 0.3s;
  }
  
  .sidenav a:hover {
	color: #f1f1f1;
  }
  
  .sidenav .closebtn {
	position: absolute;
	top: 0;
	right: 25px;
	font-size: 36px;
	margin-left: 50px;
  }
  
  #header {
	transition: margin-left .5s;

  }
  
  @media screen and (max-height: 450px) {
	.sidenav {padding-top: 15px;}
	.sidenav a {font-size: 18px;}
  }


/* End Nav */

/* 
*****************************************************************************
End Header
*****************************************************************************
*/


/* 
*****************************************************************************
Start  Content
*****************************************************************************
*/

.content {
	padding-top: var(--section-padding);
	padding-bottom: var(--section-padding);
}

.content .content-content .card {
	background-color: white;
}

.content .content-content .card img {
	width: 100%;
	padding: 20px;
}

.content .content-content .card .info {
	padding: 20px;
}

.content .content-content .card .info p {
	padding-bottom: 18px;
}

.content h2 {
	font-size: 30px;
	color: #000000;
	margin: 0;
	padding: 28px 0 14px;
}

.content h3 {
	font-size: 18px;
	color: #000000;
	margin: 0;
	padding-bottom: 18px;
}

.content h4 {
	font-size: 22px;
	color: var(--third-color);
	margin: 0;
	padding-bottom: 10px;
}

.content .text {
	text-align: justify;
}

ul.mainNavigation li a:hover {
	border-bottom: 3px solid #000;
	color: #000;
}

ul.mainNavigation li.active a {
	font-weight: 700;
	border-bottom: 3px solid #000;
	color: #000000;
}

.content-color {
	background-color: rgba(240, 240, 240, 0.82);
}

.content-text .row {
	display: grid;
	grid-gap: 10px;
	grid-template-columns: 5fr 0.5fr 5fr;
}

@media (max-width:500px) {
	.content-text .row {
		display: grid;
		grid-template-columns: none;
		grid-gap: 30px;
		margin-top: 20px;
	}
}


.rounded-pill {
	border-radius: 15px !important;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transform: translateY(0);
	letter-spacing: -0.01rem;
	position: relative;
	color: white;
	transition: all 0.2s ease-in-out;
	height: 45px;
	overflow: hidden;
	padding: 6px 20px;
	border: white;
	font-size: 17px;
	font-weight: bold;
	background-color: #03a9f4;
}

.btn:not(.btn-link):hover {
	transform: translateY(-0.15rem);
	box-shadow: 0rem 0.25rem 0.75rem rgba(30, 34, 40, 0.15);
}

.rgb{
	background: var(--third-color);
}


/* 
*****************************************************************************
End  Content
*****************************************************************************
*/


/* 
*****************************************************************************
Start  impressum
*****************************************************************************
*/


.impressum .container h2 {
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.2;
	margin-top: 4rem;
	margin-bottom: 2rem
}

.impressum .container p {
	margin-bottom: 1rem;
	margin-top: 1em;
	font-size: 1rem
}

.impressum .container h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	margin-top: 2rem;
}

.impressum .container h4 {
	font-weight: 600;
	margin-top: 2.2rem
}

.impressum .container span {
	font-size: 20px;
	font-weight: 550;
	margin-top: 30px;
	display: block
}

/* 
*****************************************************************************
End  impressum
*****************************************************************************
*/

/* 
*****************************************************************************
Start  footer
*****************************************************************************
*/


.footer .row {
	display: grid;
	grid-gap: 10px;
	grid-template-columns: 4fr 1fr 2.5fr 2.2fr
}

.footer .row span {
	text-decoration: none;
	color: #fff;
}

.footer .row .textver {
	padding-left: 28px;
}

.footer p {
	color: #fff;
	line-height: 20px;
	font-size: 14px
}

.footerLogo {
	max-width: 300px;
	margin-bottom: 15px;
}

.footer ul {
	margin: 0;
	padding: 0;
}

.footer ul li {
	list-style: none;
	padding-left: 6px;
	padding-bottom: 3px;
}

.footer ul li a {
	color: #fff;
}

.footer h4 {
	color: #ffffff;
	font-size: 20px;
	margin: 0;
	padding-bottom: 26px;
}

.footer i {
	font-size: 20px;
	padding-right: 10px;
	color: #fff;
}

.footer {
	width: 100%;
	float: left;
	background: #1f243b;
	padding: 25px 0px 25px 0px;
}

@media (max-width:1000px) {
	.footer .row {
		display: grid;
		grid-gap: 10px;
		grid-template-columns: 1.7fr 0.1fr 1.5fr 1.3fr
	}
}

@media (max-width:768px) {
	.footer .row {
		display: grid;
		grid-template-columns: none;
		grid-gap: 30px;
		margin-top: 20px
	}
}

p.copyRight {
	font-size: 12px;
	color: #fff;
	margin-top: 18px;
}

p.copyRight a {
	text-decoration: none;
	color: #fff;
	font-size: 12px;
}

p.copyRight a:hover {
	color: #9a9a9a;
	text-decoration: underline;
}

/* 
*****************************************************************************
End  footer
*****************************************************************************
*/


/* 
*****************************************************************************
Start  Headline
*****************************************************************************
*/


/* anfrage  */


.form-padding {
	overflow: hidden;
	padding-top: 30px;
	padding-bottom: 30px;

}

.anfrage .row-f {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(-1 * var(--bs-gutter-y));
	margin-right: calc(-0.5 * var(--bs-gutter-x));
	margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.anfrage .row-f&gt;* {
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: calc(var(--bs-gutter-x) * 0.5);
	padding-left: calc(var(--bs-gutter-x) * 0.5);
	margin-top: var(--bs-gutter-y);
}

@media (min-width: 1200px) {
	.col-xl-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-xl-10 {
		flex: 0 0 auto;
		width: 83.33333333%;
	}

	.col-xl-11 {
		flex: 0 0 auto;
		width: 91.66666667%;
	}

	.gx-xl-12 {
		--bs-gutter-x: 3.5rem;
	}
}

@media (min-width: 768px) {
	.anfrage .col-md-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.anfrage .col-md-6 {
		width: 50%;
	}

	.anfrage .col-md-8 {
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.anfrage .col-md-12 {
		flex: 0 0 auto;
		width: 100%;
	}
}

.anfrage ul {
  background-color: transparent;
  font-size: 15px;
  margin-bottom: 10px;
}

.anfrage .form-control {
	display: block;
	width: 100%;
	padding: 0.6rem 1rem;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.7;
	color: #60697b;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: var(--bs-body-bg);
	background-clip: padding-box;
	border: 1px solid rgba(8, 60, 130, 0.07);
	border-radius: 0.4rem;
	box-shadow: 0rem 0rem 1.25rem rgba(30, 34, 40, 0.04);
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.anfrage .card {

	--bs-card-border-width: 1px;
	--bs-card-border-color: rgba(164, 174, 198, 0.2);
	--bs-card-border-radius: 0.4rem;
	--bs-card-box-shadow: ;
	--bs-card-inner-border-radius: 0.4rem;
	--bs-card-cap-padding-y: 0.9rem;
	--bs-card-cap-padding-x: 2rem;
	--bs-card-cap-bg: transparent;
	--bs-card-bg: var(--bs-white);
	--bs-card-img-overlay-padding: 1rem;
	--bs-card-group-margin: 0.75rem;
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	height: var(--bs-card-height);
	color: var(--bs-body-color);
	word-wrap: break-word;
	background-color: var(--bs-card-bg);
	background-clip: border-box;
	border: var(--bs-card-border-width) solid var(--bs-card-border-color);
	border-radius: var(--bs-card-border-radius);
	box-shadow: var(--bs-card-box-shadow);
}


.anfrage .w-100 {
	width: 100% !important;
}

.anfrage .mx-auto {
	margin-right: auto !important;
	margin-left: auto !important;
	overflow: hidden;
}

.anfrage .my-3 {
	margin-top: 0.75rem !important;
	margin-bottom: 0.75rem !important;
}

.anfrage .mb-2 {
	margin-bottom: 0.5rem !important;
}

.anfrage .p-11 {
	padding: 3rem !important;
}

.anfrage .text-center {
	text-align: center !important;
}

/* rtl:begin:remove */
/* rtl:end:remove */


.anfrage .text-center {
	text-align: center !important;
}



.anfrage .anfrage-titel {
	font-size: 28px !important;
	font-weight: bold;
	margin-bottom: 20px;
}

.anfrage .form-group {
	margin: 0 0 20px;
	position: relative;
	padding-left: 10px;
}


/* end anfrage */

.flex-grow{
	flex-grow: 2.5 !important;
}


.headline .row {
	align-items: center;
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;

}

.headline .row&gt;* {
	flex: 1 1 373px;
	width: 100%;
	max-width: 100%;
	padding-right: calc(var(--bs-gutter-x) * 0.5);
	padding-left: calc(var(--bs-gutter-x) * 0.5);
	margin-top: var(--bs-gutter-y);
}


.headline .container h1 {
	color: #000;
	font-weight: 700;
	font-size: 2.7rem;
	line-height: 1.2;
	padding-top: 2rem;
	margin-bottom: 1rem
}

.headline .container h2 {
	color: #000;
	font-weight: 600;
	font-size: 1.6rem
}
.headline .container h3 {
	color: #000;
	padding-top: 0rem;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.headline .container .headline-p {
	color: #000;
	margin-bottom: 3rem;
	margin-top: 1em;
	font-size: 1.3rem
}

 @media (max-width: 450px) {
	.headline .container h1 {	
		font-size: 2.0rem;
	}
	.headline .container h2 {
	
		font-size: 1.0rem
	}
	.headline .container .headline-p {
		font-size: 0.9rem
	}
	
 }


.headline .container h4 {
	color: #000;
	padding-top: 2rem;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
}

.headline .container h5 {
	color: #000;
	padding-top: 1.5rem;
	font-size: 2rem;
}

.headline .container span {
	color: #000;
	padding-top: 1rem;
	margin-bottom: 1.5rem;
	font-size: 1rem;
}

.headline .container .telefon {
	padding-top: 5rem;
	padding-left: 12rem
}



.headline .container a:active {
	color: var(--main-color);
}

.headline .container span a:hover {
	color: var(--main-color);
}


.headline .bg-primary {
	background-color: var(--fifth-color);
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4)
}

@media (max-width:1200px) {
	#number {
		display: none;
	}

	
}

/* 
*****************************************************************************
End  Headline
*****************************************************************************
*/

/* 
*****************************************************************************
Start  Banner
*****************************************************************************
*/

.banner .container .gebraucht {
	padding-top: 10px;
	padding-bottom: 0.1rem;
	padding-bottom: 40px;
}

.banner .container .gebraucht h1 {
	color: #000;
	font-weight: 700;
	font-size: 2.1rem;
	line-height: 1.2;
	padding-top: 2rem;
	margin-bottom: 1rem
}

.banner .container .gebraucht h2 {
	color: #000;
	font-weight: 600;
	font-size: 1.5rem;
	margin-bottom: 0.8rem
}

.banner .container .gebraucht h3 {
	color: #000;
	font-weight: 600;
	font-size: 1.1rem;
}

.banner .container .gebraucht {
	text-align: center;
}


.banner .bg-primary {
	background-color: var(--fifth-color);
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4)
}

/* 
*****************************************************************************
End  Banner
*****************************************************************************
*/


/* 
*****************************************************************************
Start  columnservice
*****************************************************************************
*/


.columnservice {
	background-color: rgba(240, 240, 240, 0.82);
}

.columnservice .content-content {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(315px, 1fr));
	grid-gap: 30px;
	margin-top: 20px;
}

@media (max-width:400px) {
	.columnservice .content-content {
		grid-template-columns: none;
	}
}

.columnservice .content-content .part2svg {
	text-align: center;
}

/* 
*****************************************************************************
End  columnservice
*****************************************************************************
*/

/* 
*****************************************************************************
Start  comment
*****************************************************************************
*/
.comment {
	background-color: var(--fifth-color);
}

.comment p.colon {
	background: url(../images/colon.png) no-repeat left top;
	font-size: 18px;
	padding-top: 20px;
	padding-left: 60px;
	font-style: italic
}

.comment .content h2 {
	font-size: 30px;
	color: #000;
}

.comment .angebot p {
	margin-bottom: 30px;
}

.phone-design {
	width: 200px;
    text-align: center;
    border-radius: 7px;
    padding: 4px 0;
    font-weight: bold;
    color: white;
    background: var(--third-color);
}

/* 
*****************************************************************************
End  comment
*****************************************************************************
*/

/* 
*****************************************************************************
Start  pointbox
*****************************************************************************
*/


.pointbox .feat {
	padding: 20px;
	text-align: center;
}

.pointbox .feat svg {
	color: #000000;
}

.pointbox .content-content {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	grid-gap: 20px;
}

@media (max-width: 400px) {
	.pointbox .content-content {
		grid-template-columns: none;
	}
}

/* 
*****************************************************************************
End  pointbox
*****************************************************************************
*/

/* 
*****************************************************************************
Start  list-unstyled
*****************************************************************************
*/

.list-unstyled {
	background: var(--fifth-color);
}

.list-unstyled ul {
	line-height: 3rem;
	margin-left: 25px
}

.list-unstyled ul li i {
	margin-right: 20px;
}

.list-unstyled ul svg {
	margin-bottom: -4px;
}

/* 
*****************************************************************************
End  list-unstyled
*****************************************************************************
*/

/* 
*****************************************************************************
Start  list-faq
*****************************************************************************
*/

.faq .container .bildtext {
	display: flex;
	align-content: space-between;
}

@media (max-width:1000px) {
	.faq .container img {
		display: none;
	}
}

.faq .faq-section {
	margin-top: 20px;
	width: 100%;
}

.faq details {
	cursor: pointer;
	border: 1px solid #eaeaea;
	border-radius: 8px;
	margin-bottom: 10px;
}

.faq summary {
	font-weight: bold;
	padding: 16px;
	background-color: #f2f2f2;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

.faq p {
	padding: 16px;
	margin: 0;
}

.faq details[open] p {
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

.faq .content a {
	color: var(--main-color);
	font-weight: 600;
}

/* 
*****************************************************************************
End  list-faq
*****************************************************************************
*/


/* 
*****************************************************************************
Start showcasebox
*****************************************************************************
*/

.showcasebox {
	background-color: #fff;
	margin-bottom: 60px
}

.showcasebox .item-wrapper {
	padding: 36px 25px 21px;
	box-shadow: 0 0 8px 0 rgba(196, 15, 15, 0.12);
	background-color: var(--fourth-color);
	font-size: 16px
}

.showcasebox .content .container .row {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(315px, 1fr));
	grid-gap: 30px;
	margin-top: 20px;
}

@media (max-width: 400px) {
	.showcasebox .content .container .row {
		grid-template-columns: none;
	}
}

.showcasebox .content .part2svg {
	text-align: center;
}

.showcasebox .content .part3svg {
	text-align: justify;
}


/* 
*****************************************************************************
End showcasebox
*****************************************************************************
*/


/* 
*****************************************************************************
Start featurebox
*****************************************************************************
*/


.featurebox .row {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(315px, 1fr));
	grid-gap: 30px;
}

@media (max-width:400px) {
	.featurebox .row {
		grid-template-columns: none;
	}
}

.featurebox-box {
	text-align: center;
	position: relative;
	margin-bottom: 30px;
	padding: 50px;
	border-radius: 12px;
	border-width: 1px;
	border-style: solid;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	overflow: hidden;
}

.featurebox-box:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	border-radius: 12px;
}

.featurebox-box:hover:before {
	border-radius: 12px;
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
	background-color: var(--fifth-color);
}

.featurebox-box img {
	margin-bottom: 25px;
}

.featurebox-number {
	top: 20px;
	right: 20px;
	font-size: 26px;
	line-height: 26px;
	-webkit-transform: scale(1);
	transform: scale(1);
	margin: 0;
	padding: 0;
	-webkit-transition: all .3s linear;
	transition: all .3s linear;
}

.featurebox-box:hover .featurebox-number {
	-webkit-transform: scale(2);
	transform: scale(1.5);
	top: 30px;
	right: 30px;
}

.featurebox-box p {
	text-align: justify;
}

.featurebox-box h3 {
	padding: 20px;
}

/* 
*****************************************************************************
End featurebox
*****************************************************************************
*/

/* 
*****************************************************************************
Start news
*****************************************************************************
*/


.news-outer {
	background-color: #F2F2F2;
}

.news-outer .content a {
	color: var(--main-color);
	font-weight: 600;
}

.news-inner {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 4rem;
}

@media all and (min-width:1000px) {
	.news-inner {
		grid-template-columns: repeat(12, 1fr);
	}
}


.news-section-title {
	display: flex;
	align-items: center;
	font-size: 1.5rem;
}

@media all and (min-width:1000px) {
	.news-section-title {
		font-size: 1.75rem;
	}
}

@media (max-width:765px) {
	.news-section-title {
		margin-left: 10px;
	}
}

.news-section-title:before {
	display: block;
	font-display: swap;
	margin-right: 0.75rem;
	font-size: 2.5rem;
	font-weight: 400;
	color: var(--main-color);
}

.news-section h2 {
	padding: 0;
}

@media (max-width:450px) {
	.news-section-title.icon-news:before {
		display: none;
	}
}

.news {
	list-style: none;
	padding: 0;
	margin-top: 1rem;
	padding-left: 1.25rem;
	border-left: 1px solid var(--main-color);
	padding-top: 1.5rem;
	padding-bottom: 3rem;
}

@media all and (min-width:1000px) {
	.news {
		margin-left: 1.25rem;
		padding-left: 2rem;
	}
}

.news-item+* {
	margin-top: 3rem;
}

.news-headline {
	font-size: 1.25rem;
	color: var(--main-color);
	text-decoration: underline;
}

.news-excerpt {
	margin-top: 0.75rem;
}

@media all and (min-width:1000px) {
	.news-section-actions {
		padding-left: 1.25rem;
	}
}

/* 
*****************************************************************************
End news
*****************************************************************************
*/

/* 
*****************************************************************************
Start highlightbox
*****************************************************************************
*/

.highlightbox .row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.highlightbox .center {
	text-align: center;
	padding-bottom: 20px;
}

.highlightbox .row h3 {
	margin-top: 20px;
}

.highlightbox .column {
	padding: 1em;
}

.highlightbox .card {
	padding: 3.1em 1.25em;
	text-align: center;
	background: linear-gradient(0deg, var(--sixth-color) 10px, white 10px);
	background-repeat: no-repeat;
	background-position: 0 0.62em;
	box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.15);
	border-radius: 0.5em;
	transition: 0.5s;
}

.highlightbox .card .icon {
	font-size: 2.5em;
	height: 2em;
	width: 2em;
	margin: auto;
	background-color: var(--sixth-color);
	display: grid;
	place-items: center;
	border-radius: 50%;
	color: #ffffff;
}

.highlightbox .card svg {
	width: 45%;
}

.highlightbox .icon:before {
	position: absolute;
	content: "";
	height: 1.5em;
	width: 1.5em;
	border: 0.12em solid var(--sixth-color);
	border-radius: 50%;
	transition: 0.5s;
}

.highlightbox .card h4 {
	font-size: 1.3em;
	margin: 1em 0 1.4em 0;
	font-weight: 600;
	letter-spacing: 0.3px;
	color: #070024;
}

.highlightbox .card p {
	text-align: justify;
}

.highlightbox .card:hover {
	background-position: 0;
}

.highlightbox .card:hover .icon:before {
	height: 2.25em;
	width: 2.25em;
}

@media screen and (min-width:768px) {
	.highlightbox section {
		padding: 1em 7em;
	}
}

@media screen and (min-width:992px) {
	.highlightbox section {
		padding: 1em;
	}

	.highlightbox .column {
		flex: 0 0 29.33%;
		max-width: 36.33%;
		padding: 0 1em;
	}
}

/* 
*****************************************************************************
End highlightbox
*****************************************************************************
*/

/* 
*****************************************************************************
Start image.text
*****************************************************************************
*/


.image-text .image-text-content .image-text-design {
	max-width: 100px;
	height: 2px;
	background-color: var(--main-color);
	margin-bottom: 40px;
}

.image-text .image-text-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

@media (max-width:991px) {
	.image-text .image-text-content {
		flex-direction: column;
	}
}

.image-text .image-text-content .image {
	position: relative;
	max-width: 550px;
	height: auto;
	margin: 50px auto auto auto;
}

@media (max-width:991px) {
	.image-text .image-text-content .image-text-design {
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width:991px) {

	.image-text .image-text-content .image::before,
	.image-text .image-text-content .image::after {
		display: none;
	}
}

.image-text .image-text-content .image img {
	width: 800px;
	max-width: 100%;
}

.image-text .image-text-content .text {
	flex-basis: calc(100% - 600px);
}

.image-text .image-text-content .text p:first-of-type {
	text-align: justify;
}

/* 
*****************************************************************************
End image.text
*****************************************************************************
*/

/* 
*****************************************************************************
Start fieldbox
*****************************************************************************
*/


.fieldbox {
	float: left;
	width: 250px;
	height: 40px;
	margin-right: 10px;
	white-space: nowrap;
}

.fieldbox label {
	width: 100px;
	display: inline-block;
}

.fieldbox input {
	padding: 0;
	font-size: 12px;
	width: 143px;
	display: inline-block;
}

.fieldbox select {
	width: 145px;
}

/* 
*****************************************************************************
End fieldbox
*****************************************************************************
*/


/* 
*****************************************************************************
Start side Buttoms
*****************************************************************************
*/

.whatsapp-ico {
	fill: #fff;
	width: 50px;
	height: 50px;
	padding: 3px;
	background: var(--sixth-color);
	border-radius: 50%;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 10;
}

.phone-ico {
	fill: #fff;
	width: 50px;
	height: 50px;
	padding: 3px;
	background: var(--sixth-color);
	border-radius: 50%;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
	position: fixed;
	bottom: 20px;
	right: 80px;
	z-index: 10;
}

/* 
*****************************************************************************
End side Buttoms
*****************************************************************************
*/

.section-header {
	margin-bottom: 15px;
}

.section-header h2 {
	position: relative;
	padding-bottom: 20px;
}

.section-header h2::before {
	content: "";
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background: var(--main-color);
	bottom: 15px;
	left: 0;
}

.section-header h3 {
	position: relative;
	color: black;
	padding-bottom: 20px;
}

.section-header p {
	font-size: 18px;
	color: black;
	margin: 0;
	padding-bottom: 18px;
	font-weight: 400;
}


/* 
*****************************************************************************
Start Features
*****************************************************************************
*/


.features {
	position: relative
}

.features .features-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(315px, 1fr));
	gap: 30px
}

@media (max-width: 400px) {
	.features .features-container {
		grid-template-columns: none;
	}
}

.features .box {
	text-align: center;
	background-color: #fff;
	border: 1px solid #ccc
}

.features .box .img-holder {
	position: relative;
	overflow: hidden
}

.features .box .img-holder::before {
	content: "";
	position: absolute;
	left: 0;
	top: -1px;
	width: 100%;
	height: 100%
}

.features .box .img-holder::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	border-style: solid;
	border-width: 0 0 50px 500px;
	border-color: transparent transparent #fff transparent;
	transition: 0.3s
}

.features .box .img-holder img {
	width: 100%
}

.features .box:hover .img-holder::after {
	border-width: 150px 500px 50px 0
}

.features .box h3 {
	position: relative;
	font-size: 25px;
	margin: auto;
	width: fit-content
}

.features .box h2::after {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 15px;
	height: 5px;
	width: calc(100% - 30px)
}

.features .box p {
	text-align: justify;
	padding: 25px
}

.features .quality h2::after {
	background-color: #f44036
}

.features .time h2::after {
	background-color: #009688
}

.features .passion h2::after {
	background-color: #03a9f4
}

.features .main-title {
	text-transform: uppercase;
	margin: 0 auto 80px;
	border: 2px solid #000;
	padding: 10px 20px;
	font-size: 25px;
	width: fit-content;
	position: relative;
	z-index: 1;
	transition: 0.3s
}

.features .main-title::before,
.features .main-title::after {
	content: "";
	width: 12px;
	height: 12px;
	background-color: var(--main-color);
	position: absolute;
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%)
}

@keyframes left-move {
	50% {
		left: 0;
		width: 12px;
		height: 12px
	}

	100% {
		left: 0;
		border-radius: 0;
		width: 50%;
		height: 100%
	}
}

@keyframes right-move {
	50% {
		right: 0;
		width: 12px;
		height: 12px
	}

	100% {
		right: 0;
		border-radius: 0;
		width: 50%;
		height: 100%
	}
}


/* 
*****************************************************************************
End Features
*****************************************************************************
*/


/* 
*****************************************************************************
Start testimonial
*****************************************************************************
*/

.testimonial {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	grid-gap: 20px
}

@media (max-width: 400px) {
	.testimonial {
		grid-template-columns: none;
	}
}

.testimonial .card {
	position: relative;
	margin: 0 auto;
	width: 90%;
	background: #eeeeee;
	padding: 20px;
	box-sizing: border-box;
	text-align: center;
	overflow: hidden
}

.testimonial .card .layer {
	position: absolute;
	top: calc(100% - 2px);
	left: 0;
	height: 100%;
	width: 100%;
	background: var(--third-color);
	z-index: 1;
	transition: 0.5s
}

.testimonial .card:hover .layer {
	top: 0
}

.testimonial .card .contents {
	position: relative;
	z-index: 2
}

.testimonial .card .contents p {
	margin: 10px 0px 10px 0px;
}

.testimonial .card .contents .image {
	width: 80px;
	height: 80px;
	margin: 30px auto auto auto;
}

.testimonial .card .contents .details span {
	font-weight: 600;
}

/* 
*****************************************************************************
End testimonial
*****************************************************************************
*/



/*
|----------------------------------------------------------------------------
	Multi-Step-Form - PHP Multi Step Multipurpose Ajax Form Script Main CSS
	Author: MGScoder
	Author URL: https://codecanyon.net/user/mgscoder
	Version: 3.1
|----------------------------------------------------------------------------
*/

.section {
	overflow: hidden;
	-webkit-transition: all 0.23s ease-in-out 0s;
	-moz-transition: all 0.23s ease-in-out 0s;
	-ms-transition: all 0.23s ease-in-out 0s;
	-o-transition: all 0.23s ease-in-out 0s;
	transition: all 0.23s ease-in-out 0s;
}

.section.slide-right {
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	-ms-transform: translateX(100%);
	-o-transform: translateX(100%);
	transform: translateX(100%);
	width: 100%;
}


.intro-text {
	border: 1px solid #3e3e3e;
	border-radius: 10px;
	font-size: 18px;
	margin: 50px 20%;
	padding: 30px;
}

/* .QuoteForm-section {
	background-attachment: fixed;
	background-image: url(../img/bg22.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	margin: 0 auto;
	padding: 0;
	position: relative;
	width: 100%;
	z-index: 1;
}

.QuoteForm-section::before {
	background-color: #fff;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	opacity: 0.7;
	top: 0;
	width: 100%;
	z-index: -1;
} */

.column {
	margin: 0 0 50px;
}

.display-table {
	display: table;
	/*  height: 100vh;*/
	width: 100%;
}

.display-table-cell {
	display: table-cell;
	vertical-align: middle;
}

.form-wrap {
	background-color: rgba(250, 250, 250, 0.9);
	border-radius: 4px;
	margin: 30px auto;
	padding: 30px;
}

h2.form-title {
	font-size: 32px;
	font-weight: bold;
	color: #0c43b3;
	margin: 50px 0;
	padding: 0 30px;
	text-align: center;
}

h3.section-title {
	background-color: #1067ff;
	border: 1px solid rgba(62, 62, 62, 0.9);
	border-radius: 10px;
	color: #fff;
	font-weight: bold;
	padding: 10px;
	margin: 20px 0;
	text-align: center;
}

.section-wrap {
	overflow: hidden;
	position: relative;
}

.section.slide-left {
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	-o-transform: translateX(-100%);
	transform: translateX(-100%);
}

.section.open {
	height: auto;
	opacity: 1;
}


/*
|----------------------------------------------------------------------------
	2. FORM DESIGN
|----------------------------------------------------------------------------
*/
.form-group {
	margin: 0 0 20px;
	position: relative;
}

.contact-button-divider {
	display: flex;
	gap: 10px;
}

/* #QuoteForm .has-error .form-control {
    border-color: #ce0606;
} */

.help-block {
	color: #ce0606;
	margin: 0;
	position: absolute;
	bottom: -30px;
}

.help-block.with-errors.mandatory-error {
	bottom: auto;
	font-size: 16px;
	font-weight: bold;
	position: relative;
}


/*
|----------------------------------------------------------------------------
	4. ATTCHMENT FIELD
|----------------------------------------------------------------------------
*/
.section .form-group.attachmentFile {
	display: flex;
	margin: 15px 0 40px;
}

.section .input-group-btn&gt;.btn {
	background-color: rgba(3, 121, 202, 0.7);
	border: 1px solid rgba(3, 121, 202, 0.7);
	border-radius: 4px 0 0 4px;
	color: #fff;
	height: 34px;
	padding: 4.5px 14px;
}

.attachmentFile .input-group-btn:first-child&gt;.btn {
	margin-left: 0;
}

.section .input-group-btn&gt;.btn&gt;input[type="file"] {
	display: none;
}

.form-group.attachmentFile .input-group-btn&gt;.btn {
	width: 112px;
	/* margin-top: -5px; */
	height: 34px;
}


.error-message {
	display: none;
	color: #fff;
	background: #ed3c0d;
	text-align: left;
	padding: 15px;
	font-weight: 600;
}

.sent-message {
	display: none;
	color: #fff;
	background: #18d26e;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.loading {
	display: none;
	background: #fff;
	text-align: center;
	padding: 15px;
}

.loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #18d26e;
	border-top-color: #eee;
	-webkit-animation: animate-loading 1s linear infinite;
	animation: animate-loading 1s linear infinite;
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg)
	}

	100% {
		transform: rotate(360deg)
	}
}


.file-form-conrtol {
	padding: 0.6rem 1rem;
	font-size: 0.75rem;
	font-weight: 500;
	width: 100%;
	height: 36px;
	line-height: 1.7;
	color: #60697b;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: var(--bs-body-bg);
	background-clip: padding-box;
	border: 1px solid rgba(8, 60, 130, 0.07);
	box-shadow: 0rem 0rem 1.25rem rgba(30, 34, 40, 0.04);
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}




.error-message {
	display: none;
	color: #fff;
	background: #ed3c0d;
	text-align: left;
	padding: 15px;
	font-weight: 600;
}

.error-message br+br {
	margin-top: 25px;
}

.sent-message {
	display: none;
	color: #fff;
	background: #18d26e;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.loading {
	display: none;
	background: #fff;
	text-align: center;
	padding: 15px;
}

.loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #18d26e;
	border-top-color: #eee;
	-webkit-animation: animate-loading 1s linear infinite;
	animation: animate-loading 1s linear infinite;
}

.d-block {
	display: block !important;
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg)
	}

	100% {
		transform: rotate(360deg)
	}
}

/* ---- */

.squares .flex{
    display: flex;
    flex-wrap: nowrap;
}

.squares .flex-item1{
    width: 40%;
}
.squares .flex-item2{
    width: 60%;
}
.squares .columnbox1{
    margin: 10px;
	margin-top:20px;
    padding: 20px;
	height: calc(50% -10px) ;
	border-radius: 8px;
	background-color: rgb(255, 255, 255);
}
.squares .columnbox2{
    margin: 10px;
	margin-top:20px;
    flex-grow: 2; /* This will make the first div twice as large as the second */
    padding: 20px;
	height: calc(100% -10px) ;
	border-radius: 8px;
	background-color: rgb(255, 255, 255);
}
.squares h3{
    font-size:22px;
}

@media (max-width: 800px) {
    .squares .flex {
      flex-direction: column; /* Stack items vertically */
    }
	.squares .flex-item1{
		width: 100%;
	}
	.squares .flex-item2{
		width: 100%;
	}
  }


  .headline .arrow-button {
    background-color: #73B300;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
   /* display: flex; */
    align-items: center;
	font-weight: bold;
	max-width: 220px; /* Begrenzung der LÃ¤nge */
    white-space: nowrap; /* Kein Zeilenumbruch */
    overflow: hidden; /* Ãœberlauf verstecken */
    text-overflow: ellipsis; /* TextÃ¼berlauf mit ... anzeigen */
    transition: background-color 0.3s ease;
}

.leistungen .arrow-button {
    background-color: #73B300;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.comment .arrow-button {
	justify-content: center;
    background-color: #73B300;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 22px;
    display: flex;
	font-weight: bold;
    align-items: center;
	justify-content: center;
	max-width: 400px; /* Begrenzung der LÃ¤nge */
    transition: background-color 0.3s ease;
}

.arrow-button:hover {
    background-color: #4e7700;
}

.leistungen .arrow-button::after {
    content: 'â†’';
    margin-left: 10px;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.arrow-button:hover::after {
    transform: translateX(5px);
}
.arrow-button .svg{
    margin-right: 20px; /* Abstand zwischen Icon und Text */
}</pre></body></html>