/**
	* Template Name: Gp
	* Updated: May 18 2023 with Bootstrap v5.2.3
	* Template URL: https://bootstrapmade.com/gp-free-multipurpose-html-bootstrap-template/
	* Author: BootstrapMade.com
	* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
	# Farben
--------------------------------------------------------------*/
:root {
	--gruen: #95bc42;
	--hellgruen: #a3c65b9e;
	--grau: #a8a8a8;
	--weiß: #FFFFFF;
	--schwarz: #000000;
	--orange:#F39C12;
	--aubergine:#6C3483;
	--blau:#2b76c2;
}

.gruen {
	color: var(--gruen);
}
.hellgruen {
	color: var(--hellgruen);
}
.orange {
	color: var(--orange);
}
.aubergine {
	color: var(--aubergine);
}
.blau {
	color: var(--blau);
}

/*--------------------------------------------------------------
	# Schriften laden
--------------------------------------------------------------*/

/* Yahfie Normal */
@font-face {
  font-family: 'Yahfie';
  src: url('/fonts/Yahfie-Normal.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
/* Yahfie Light */
@font-face {
  font-family: 'Yahfie';
  src: url('/fonts/Yahfie-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
/* Yahfie Heavy */
@font-face {
  font-family: 'Yahfie';
  src: url('/fonts/Yahfie-Heavy.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

/* Neo Regular */
@font-face {
  font-family: 'Neo';
  src: url('/fonts/NeoSansStd-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
/* Neo Medium */
@font-face {
  font-family: 'Neo';
  src: url('/fonts/NeoSansStd-Medium.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}
/* Neo Bold */
@font-face {
  font-family: 'Neo';
  src: url('/fonts/NeoSansStd-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

/* Open Sans Regular */
@font-face {
  font-family: 'Open Sans';
  src: url('/fonts/OpenSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Open Sans Light */
@font-face {
  font-family: 'Open Sans';
  src: url('/fonts/OpenSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
/* Open Sans Bold */
@font-face {
  font-family: 'Open Sans';
  src: url('/fonts/OpenSans-Bold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/* Open Sans ExtraBold */
@font-face {
  font-family: 'Open Sans';
  src: url('/fonts/OpenSans-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
/* Open Sans Light Italic */
@font-face {
  font-family: 'Open Sans';
  src: url('/fonts/OpenSans-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
/* Open Sans Italic */
@font-face {
  font-family: 'Open Sans';
  src: url('/fonts/OpenSans-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
/* Open Sans Bold Italic */
@font-face {
  font-family: 'Open Sans';
  src: url('/fonts/OpenSans-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/*--------------------------------------------------------------
	# Body
--------------------------------------------------------------*/
body {
	font-family: 'Open Sans', sans-serif; 
	color: #333333;
	font-weight:300;
}

/*--------------------------------------------------------------
	# Buttons
--------------------------------------------------------------*/

.btn-primary {
	--bs-btn-color: #fff;
	--bs-btn-bg: var(--gruen);
	--bs-btn-border-color: var(--gruen);
	--bs-btn-hover-color: #000;
	--bs-btn-hover-bg: #fff;
	--bs-btn-hover-border-color: var(--gruen);
	--bs-btn-focus-shadow-rgb: 49, 132, 253;
	--bs-btn-active-color: var(--gruen);
	--bs-btn-active-bg: #fff;
	--bs-btn-active-border-color: var(--gruen);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: #fff;
	--bs-btn-disabled-bg: var(--gruen);
	--bs-btn-disabled-border-color: var(--gruen);
}

.btn-outline-primary {
	--bs-btn-color: var(--gruen);
	--bs-btn-bg: #fff;
	--bs-btn-border-color: var(--gruen);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: var(--gruen);
	--bs-btn-hover-border-color: var(--gruen);
	--bs-btn-focus-shadow-rgb: 49, 132, 253;
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: var(--gruen);
	--bs-btn-active-border-color: #fff;
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: #fff;
	--bs-btn-disabled-bg: var(--gruen);
	--bs-btn-disabled-border-color: var(--gruen);
}

.btn-container {
  display: inline-block; /* Container passt sich dem längsten Button an */
}

.btn-container .btn {
    display: block;
    width: 100%;
    white-space: nowrap;
}

/*--------------------------------------------------------------
	# Tabelle
--------------------------------------------------------------*/
.table-primary {
	--bs-table-bg:var(--hellgruen);
}

/*--------------------------------------------------------------
	# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: var(--gruen);
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all 0.4s;
}

.back-to-top i {
	font-size: 28px;
	color: #151515;
	line-height: 0;
}

.back-to-top:hover {
	background: #151515;
}

.back-to-top:hover i {
	color: var(--gruen);
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
	# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #151515;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% &ndash; 0px);
	left: calc(50% &ndash; 30px);
	border: 6px solid var(--gruen);
	border-top-color: #151515;
	border-bottom-color: #151515;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}
	
	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
	# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
	# Header
--------------------------------------------------------------*/
#header {
	transition: all 0.5s;
	z-index: 997;
	padding: 15px 0;
	background-color: #000000;
}

#header.header-scrolled,
#header.header-inner-pages {
	/* background: rgb(0, 0, 0, 0.9); */
	background:#000;
}

.logo {
	margin: 0;
	padding: 0;
	max-width: 100%;
	width: 300px !important; 
	height: auto;
}

#header a {
	text-decoration: none;
}

/*--------------------------------------------------------------
	# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

.navbar {
	padding: 0;
	font-family: 'Neo';
	font-size:1rem;
	text-transform:uppercase;
	font-weight:400;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
}

.navbar a, 
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0 10px 30px;
	color: #fff;
	white-space: nowrap;
	transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
	line-height: 0;
	margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
	color: var(--gruen);
}

/* dropdown */
.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 14px;
	top: calc(100%);
	margin: 0px 0 0 0px;
	padding: 18px 0 10px 10px;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	/* background: rgb(0, 0, 0, 0.9); */
	background:#000;
	/* box-shadow: 3px 5px 10px rgba(133, 133, 133, 0.5); */
	border-bottom-left-radius: 5%;
	border-bottom-right-radius: 5%;
	transition: 0.3s;
}

.navbar .dropdown ul li {
	min-width: 200px;
	padding:10px 10px 5px 10px;
	margin:0px 20px 0px 10px;
	border-top:1px dotted white;
}

.navbar .dropdown li i {
	position: absolute;
	padding: 0px 0px 0px 0px;
	color: #fff;
}

.navbar .dropdown ul a {
	padding: 0px 0px 5px 25px;
	font-family: 'Neo';
	font-size:1rem;
	font-weight:400;
	text-transform: none;
	color: #fff;
}

.navbar .dropdown ul a i {
	font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
	color: var(--gruen);
}

.navbar .dropdown:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% &ndash; 30px);
	visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
}

@media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}
	
	.navbar .dropdown .dropdown:hover>ul {
		left: -100%;
	}
}

/**
	* Mobile Navigation 
*/
.mobile-nav-toggle {
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;
	}

.logo {
	width: 220px !important; 
}

	.navbar ul {
		display: none;
	}
}

.navbar-mobile ul i {
	/* left: 10; */
	top: 7px;
	color: var(--gruen);
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	/* background: rgba(0, 0, 0, 0.9); */
	/* background-color:#fff; */
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
	padding: 10px 20px;
	/* font-size: 15px; */
	color: #151515;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 68px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	padding: 20px 20px;
	background-color: #fff;
	overflow-y: auto;
	transition: 0.3s;
}

.navbar-mobile .active  {
	color: var(--gruen);
}

.navbar-mobile li {
	/* position: relative; */
	padding: 0px 0px 0px 0px;
	background-color:#fff;
	border-bottom:2px dotted #efefef;
}

/* Dropdown */

.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 0px 0px;
	padding: 0px 0px 10px 8px;
	width:250px;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: #fff;
	box-shadow:none;
	overflow:auto;
}

.navbar-mobile .dropdown ul li {
	padding:0px 0px 0px 15px;
	background-color:#fff;
	border-bottom:0px;
}

.navbar-mobile .dropdown ul a {
	position:relative;
	padding: 0px 0px 5px 3px;
	color: #151515;
}

.navbar-mobile .dropdown li i {
	left:0px;
	top:0px;
	padding:0px;
	color: var(--gruen); 
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
	background: #fff;
}

.navbar-mobile .dropdown>.dropdown-active {
	display: block;
	/* padding:0px 0px 10px 8px; */
}

/*--------------------------------------------------------------
	# Sections General
--------------------------------------------------------------*/
section {
	padding: 20px 0px 20px 0px;
	overflow: hidden;
}
section .bot {
	unicode-bidi: bidi-override;
	direction: rtl;
	text-align: left;
}
/*--------------------------------------------------------------
	# Sections Headlines
--------------------------------------------------------------*/
h1, h2, h3, h4, h5 {
	font-family:'Yahfie', sans-serif;
}
section h1 {
	font-size: 2rem;
	font-weight: bold;
	color: #222222;
	text-transform: uppercase;
	text-align:center;
	margin: 20px 0 40px 0;
}
/* Grüne Unterstreichung */
section h1::after {
	content: "";
	width: 30%;
	height: 2px;
	display: block;
	background: var(--gruen);
	margin: 0 auto; /* Zentrierung horizontal */
	margin-top:0px; /* Abstand zum Text darüber */
}

/* Grüne Überstreichung */
section h1::before {
	content: "";
	width: 30%;
	height: 2px;
	display: block;
	background: var(--gruen);
	margin: 0 auto; /* Zentrierung horizontal */
	margin-bottom:10px; /* Abstand zum Text darunter */
}
@media (max-width: 991px) {	
	section h1 {
		font-size:1.8rem;
	}
	/* Grüne Unterstreichung */
	section h1::before, section h1:after  {
		width: 60%;
	}
}
section h2 {
	font-size: 1.6rem;
	font-weight:bold;
	color: #222222;
	margin-top:1.5rem;
}

section h2:first-child {
	margin-top:0; 
}

section h3 {
	font-size: 1.3rem;
	font-weight:bold;
	color: var(--gruen);  
	margin-top:1.5rem;
}

section h3:first-child {
	margin-top:0; 
}

/*--------------------------------------------------------------
	# Sections Text-Formatting
--------------------------------------------------------------*/
b, strong, th {
	font-weight:600;
}

section p {
	hyphens: auto;
}

section p.small {
	margin-bottom:0.5rem;
	margin-left:0.8rem;
	text-indent:-0.5rem;
}

/* Pfeile vor Links - Abstand und Farbe */
section p i {
	color: var(--gruen);
	margin-right: 5px;
}

p:last-child {
	margin-bottom: 5px;
}

section a {
	color: var(--blau);
	text-decoration: underline;
}

section a:hover {
	color: #000000;
	text-decoration: none;
}

section ul {
  list-style: none;
	margin-bottom: 1rem;
  padding-left: 10px;
}

section ul li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 4px; /* Abstand zwischen den <li> */
  line-height: 1.3; 
}

section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px; 
  width: 6px;
  height: 6px;
  background-color: var(--gruen); 
}

@media (max-width: 991px) {
	section ul {
	position: relative;
	list-style: none;
	padding: 0 0 0 22px;
	}
	section li {
		position: relative;
	}
}  /* Ende @media */

/*--------------------------------------------------------------
	# Cards
--------------------------------------------------------------*/
.card-header {
        height:74px;
		display: flex;
        align-items: center;
		padding-right:2px;
}
.card-title {
		font-family:'Yahfie', sans-serif;
		font-size: 1.6rem;
		font-weight:bold;
		color: #222222;
		margin-top:1.5rem;
        flex: 1;
        margin:0px;
		line-height:1.5rem;
		padding-top:5px;
		padding-bottom:0px;
		margin-bottom:0px;
}
.card-piktogramm {
	width:70px;
	height:70px;
	padding:0px;
	margin-right:5px;
}
.card-body p:last-child {
	margin-bottom: 1rem;
}

/*--------------------------------------------------------------
	# Accordion
--------------------------------------------------------------*/
.accordion {
	--bs-accordion-active-bg: var(--hellgruen);
	--bs-accordion-btn-focus-border-color: #fff;
	--bs-accordion-btn-focus-box-shadow: none;
}

/*--------------------------------------------------------------
	# Hero Section
--------------------------------------------------------------*/
#hero {
	background: url("/img/hero.jpg") top center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	width:100%;
	height: 100%;
}

#hero .container {
	position: relative;
	padding-top: 50px;
	padding-bottom:50px;
	text-align: center;
}

#hero .bg-black-transparent {
	background: rgba(0, 0, 0, 0.4);
	padding-top:30px;
	padding-bottom:30px;
}

@media (max-width: 768px) {	
	#hero {
		height: auto;
	}
}

/* Hero H1 */
#hero h1 {
	margin: 0 0 5px 0;
	font-family: 'Neo', sans-serif;
	font-size: 3.2rem;
	transform: scaleY(0.9);
	font-weight: normal;
	text-transform: uppercase;
	/* text-shadow: 1px 1px 3px #1d1d1d; */
	color: #fff;
}
/* Weder Über- noch Unterstreichung */
#hero h1::after, #hero h1::before {
	height: 0px;
}
#hero h1 span {
	color: var(--gruen);
}
@media (max-width: 768px) {	
	#hero h1 {
		font-size: 2.5rem;
		line-height: 3rem;
	}
}

/* Hero H2 */
#hero h2 {
	margin: 0;
	font-family: 'Neo', sans-serif;
	font-size: 2.4rem;
	transform: scaleY(0.9);
	font-weight: normal;
	text-transform: uppercase;
	color: #fff;
}
#hero h2 span {
	color: var(--gruen);
}
#hero h2::before {
	content: "";
	width: 50%;
	height: 1px;
	display: block;
	background: var(--gruen);
	margin: 0 auto; /* Zentrierung horizontal */
	margin-bottom:15px; /* Abstand zum Text darunter */
}
#hero h2::after {
	height: 0px;
}
@media (max-width: 768px) {	
	#hero h2 {
		font-size: 1.5rem;
	}
}

/*--------------------------------------------------------------
	# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
	padding: 10px 0;
	background: url("/img/testimonials-bg.jpg") no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
}

.testimonials h1 {
	position: relative;
    z-index: 100;
	margin-bottom:2rem;
	margin-top:3rem;
}

.testimonials::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.9);
}

.testimonials .section-header {
	margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
	overflow: hidden;
}

.testimonials .swiper-slide {
	margin-bottom:20px;
}

.testimonials .testimonial-item {
	text-align: center;
	color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
	width: 100px;
	border-radius: 50%;
	border: 6px solid rgba(255, 255, 255, 0.15);
	margin: 0 auto;
}

.testimonials .testimonial-item h3 {
	font-family: "Open Sans", sans-serif;
	font-size: 1rem;
	font-weight: 600;
	margin: 10px 0 5px 0;
	color: #000;
}

.testimonials .testimonial-item h4 {
	font-family: "Open Sans", sans-serif;
	font-size: 0.8rem;
	color: #000;
	margin: 0 0 15px 0;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #000;
  display: inline-block; /* Damit die Icons korrekt umflossen werden */
  padding-top: 5px;  /* damit quote-icon-left oben nicht abgeschnitten wird */
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  width: 26px;          /* Größe der PNG-Icons */
  height: 26px;
  /* opacity: 0.6;  */        
  display: inline-block;
  color: red;
}

.testimonials .testimonial-item .quote-icon-left {
	position: relative;
  margin-left: -5px;    /* Ersetzt das "left: -5px" */
  margin-right: 5px;    /* Abstand zum Text */
  margin-top:-15px;
}

.testimonials .testimonial-item .quote-icon-right {
  margin-right: -5px;   /* Ersetzt das "right: -5px" */
  margin-left: 8px;     /* Abstand zum Text */
  position: relative;
  top: 2px;             /* Feinjustierung der vertikalen Position (statt "top: 10px") */
}
/* Anpassung für mobile Geräte (Bildschirmbreite < 768px) */
@media (max-width: 767px) {
  .testimonials .testimonial-item .quote-icon-left,
  .testimonials .testimonial-item .quote-icon-right {
    width: 20px;  /* Kleinere Größe für Mobilgeräte */
    height: 20px;
  }	
  .testimonials .testimonial-item .quote-icon-left {
	margin-left: 0px;    /* Ersetzt das "left: -5px" */
	margin-right: 0px;    /* Abstand zum Text */
	margin-top: -15px;
  }
  .testimonials .testimonial-item .quote-icon-right {
	margin-left: 0px;    /* Ersetzt das "left: -5px" */
	margin-right: 0px;    /* Abstand zum Text */
	margin-top: -15px;
  }
}

.testimonials .swiper-pagination {
	margin-top: 10px;
	position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
	width: 15px;
	height: 15px;
	margin:5px;
	background-color:#151515;
}
.testimonials .swiper-button-next, .swiper-button-prev {
	display:none;
	color:var(--gruen);
	padding:0 30px
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--gruen);
	opacity: 1;
}

@media (min-width: 1024px) {
	.testimonials {
		background-attachment: fixed;
	}
	.testimonials .swiper-button-next, .swiper-button-prev {
		display:block;
	}
}

@media (min-width: 992px) {
	.testimonials .testimonial-item p {
		width: 80%;
	}
	.testimonials .swiper-button-next, .swiper-button-prev {
		display:block;
	}
}

/*--------------------------------------------------------------
	# Contact
--------------------------------------------------------------*/
.contact .php-email-form {
	width: 100%;
	background: #fff;
	padding-bottom:1rem;
}

.contact .php-email-form .form-group {
	padding-bottom: 8px;
}

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

.contact .php-email-form .error-message br+br {
	margin-top: 25px;
}

.contact .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: var(--gruen);
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

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

.contact .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid var(--gruen);
	border-top-color: #eee;
	animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
	border-color: var(--gruen);
}

.contact .php-email-form input {
	height: 44px;
}

.contact .php-email-form textarea {
	padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
	border:  1px solid var(--weiß);
	padding: 8px 20px;
	background-color: var(--gruen);
	color: var(--weiß);
	transition: 0.4s;
	border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
	background: var(--weiß);
	border: 1px solid var(--gruen);
	color: var(--schwarz)
}

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

/*--------------------------------------------------------------
	# Footer
--------------------------------------------------------------*/
#footer {
	background: black;
	padding: 0 0 0 0;
	margin-top:30px;
	color: #fff;
}

#footer div.col-sm-6 {
	padding:0px;
}

#footer .footer-div {
	padding: 10px 0 10px 0;
	margin-bottom: 0px;
}

#footer .footer-div a {
	display: inline-block;
	color: #ffffff;
	/* padding: 8px 0 8px 0; */
	margin-right: 4px;
	text-align: center;
	text-decoration: none;
}

#footer .footer-div a:hover {
	color: var(--gruen);
}
