/* --------------------------------------------
      Allgemein / Main
-------------------------------------------- */

@font-face {
font-family:"karmina";
src:url("https://use.typekit.net/af/9447d1/0000000000000000000176f7/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"),url("https://use.typekit.net/af/9447d1/0000000000000000000176f7/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"),url("https://use.typekit.net/af/9447d1/0000000000000000000176f7/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
font-display:auto;font-style:normal;font-weight:400;font-stretch:normal;
}

@font-face {
font-family:"karmina";
src:url("https://use.typekit.net/af/faecfa/0000000000000000000176f9/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"),url("https://use.typekit.net/af/faecfa/0000000000000000000176f9/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"),url("https://use.typekit.net/af/faecfa/0000000000000000000176f9/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
font-display:auto;font-style:normal;font-weight:700;font-stretch:normal;
}

@font-face {
  font-family: 'ManropeRegular';
  src: url('../webfonts/Manrope-Regular.woff2') format('woff2'),
    url('../webfonts/Manrope-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ManropeLight';
  src: url('../webfonts/Manrope-Light.woff2') format('woff2'),
    url('../webfonts/Manrope-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ManropeBold';
  src: url('../webfonts/Manrope-Bold.woff2') format('woff2'),
    url('../webfonts/Manrope-Bold.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  /* diverse Farben */
  --color-light-gray: #c6c6c6;
  --color-dark-gray: #222222;
  --color-primary: #006f72;
  --color-secondary: #004f59;
  --color-light-green: #04a58e;
  --color-green: #008985;
  --color-dark-green: #00303f;
  /* Schriften */
  --font-family-headline: "karmina";
  --font-family-light: 'ManropeLight';
  --font-family-regular: 'ManropeRegular';
  --font-family-bold: 'ManropeBold';
  --font-size-h1: 60px;
  --font-size-h2: 48px;
  --font-size-h2-sub: 28px;
  --font-size-h3: 24px;
  --font-size-body: 19px;
  /* Abstaende */
  --padding-xs: 20px;
  --padding-sm: 40px;
  --padding-md: 60px;
  --padding-lg: 100px;
  --padding-xl: 160px;
  --margin-xs: 20px;
  --margin-sm: 40px;
  --margin-md: 50px;
  --margin-lg: 100px;
  --margin-xl: 160px;
}

*, ::after, ::before {
  box-sizing: border-box;
  padding: 0;
}

body {
  font-family: var(--font-family-regular);
  font-size: var(--font-size-body);
  color: var(--color-secondary);
}

h1, .h1 {
  font-family: var(--font-family-headline);
  font-weight: 600;
  line-height: 1;
  font-size: var(--font-size-h1);
}

h2, .h2 {
  color: var(--color-secondary);
  font-weight: 600;
line-height: 1;
  font-size: var(--font-size-h2);
  text-transform: uppercase;
}

h1+h2 {
  font-family: var(--font-family-light);
  font-weight: normal;
  font-size: var(--font-size-h2-sub);

}

h3, .h3 {
  color: var(--color-secondary);
  font-family: var(--font-family-bold);
  font-size: var(--font-size-h3);
  text-transform: uppercase;
  line-height: 1;
}

h2+h3,
h2+.h3,
.h2+h3,
.h2+.h3 {
  font-family: var(--font-family-light);
}

p+h3,
p+.h3 {
  margin-top: 50px;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  font-family: var(--font-family-regular);
}

a:hover, a:focus, a:active {
  color: var(--color-light-green);
}
small, .small {
  padding: 30px 0;
}
img {
  max-width: 100%;
}
/* Circle */
figure {
	position: relative;
  overflow: hidden;
}
figure::before {
	position: absolute;
	bottom: 0;
	left: 0s;
	z-index: 2;
	display: block;
	content: '';
	width: 0;
	height: 10px;
	background: var(--color-primary);
	opacity: 0;
}
figure:hover::before {
	-webkit-animation: line .75s;
	animation: line .75s;
  animation-fill-mode: forwards;
}
@-webkit-keyframes line {
	0% {
		opacity: 0;
	}
	20% {
		opacity: 1;
	}
	100% {
		width: 80%;
    opacity: 1;
	}
}
@keyframes line {
	0% {
		opacity: 0;
	}
	20% {
		opacity: 1;
	}
	100% {
		width: 80%;
    opacity: 1;
	}
}
ul, ol {
  list-style: none;
  padding: 0;
}

hr {
  margin-top: var(--margin-lg);
  margin-bottom: var(--margin-lg);
  background-color: var(--color-secondary);
  opacity: 1;
}

select,
input, textarea {
  padding: 10px !important;
  border: 1px solid var(--color-light-gray) !important;
}

input:hover,
input:focus,
input:active,
input:active:focus,
select:hover,
select:focus,
select:active,
select:active:focus,
textarea:hover,
textarea:focus,
textarea:active,
textarea:active:focus {
  border-color: var(--color-primary) !important;
  outline: none;
  box-shadow: none;
}

.border-bottom-gray {
  border-bottom: 1px solid var(--color-light-gray);
}
.border-bottom-green {
  border-bottom: 1px solid var(--color-secondary);
}

.border-left-gray {
  border-left: 1px solid var(--color-light-gray);
  padding-left: 20px;
}

.border-left {
  border-left: 1px solid var(--color-secondary);
  padding-left: 20px;
}

.box .border-bottom-gray {
  border-color: #fff;
}

.w-80 {
  max-width: 80%;
}

.ms-md {
  margin-left: var(--margin-md);
}
.no-wrap {
  white-space: nowrap;
}
.border-top-radius-on {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
}

.bg-primary {
  background-color: var(--color-primary) !important;
}

.bg-secondary {
  background-color: var(--color-secondary) !important;
}
.text-normal {
  text-transform: none !important;
}

@media(max-width: 1500px) {
  :root {
    --font-size-h1: 50px;
    --font-size-h2: 38px;
  }
}

@media(max-width: 991px) {
  :root {
    --padding-lg: 50px;
    --padding-xl: 80px;
    --margin-lg: 60px;
    --margin-xl: 80px;
  }

  .w-80 {
    max-width: 100%;
  }

  .border-left {
    border: 0;
    padding-left: 0;
  }
  h2, .h2, .noSlide h1 {
    text-align: center;
    margin-bottom: 30px;
  }
}

@media(max-width: 768px) {
  :root {
    --font-size-h1: 40px;
    --font-size-h2: 28px;
  }
}

@media(max-width: 575px) {
  :root {
    --font-size-h1: 35px;
    --font-size-h2-sub: 25px;
    --padding-lg: 20px;
    --padding-xl: 30px;
    --margin-lg: 20px;
    --margin-xl: 30px;
  }
  hr {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

@media(max-width: 480px) {
  :root {
    --font-size-h1: 30px;
    --font-size-h2-sub: 22px;
  }
}

/*---------------------------------------------------
                BUTTONS
----------------------------------------------------*/
.btn {
  border-radius: 10px;
  box-shadow: 3px 3px 10px 0px #0000006b;
  font-family: var(--font-family-bold);
  padding: 10px 40px;
  font-size: var(--font-size-body);
  color: #fff !important;
  position: relative;
  overflow: hidden;
}
.btn::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.btn-primary.active:focus,
.btn-primary:active:focus,
.btn-secondary.active:focus,
.btn-secondary:active:focus,
.show>.btn-primary.dropdown-toggle:focus,
.btn:hover,
.btn:focus,
.btn:active,
.btn:visited {
  outline: none;
  box-shadow: none;
}
.btn:hover::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}
.btn-primary {
  background-color: var(--color-green);
  border-color: var(--color-green);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--color-light-green);
  border-color: var(--color-light-green);
}

.btn-secondary {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
  background-color: var(--color-dark-green);
  border-color: var(--color-dark-green);
}




@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}

@media(max-width: 575px) {
  .btn {
    width: 100% !important;
  }
}

/*---------------------------------------------------
                HEADER
----------------------------------------------------*/
header {
  padding: var(--padding-sm) 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9
}

.is-scroll header {
  padding: var(--padding-xs) 0;
}

header #mod-custom109 a {
  font-family: var(--font-family-regular);
}

header #logo {
  max-width: 200px;
}
header #logoscroll {
  display: none;
  max-width: 90px;
}
/*
header #logoscroll {
  display: none;
  max-width: 90px;
}

.is-scroll header #logo {
  display: none;
}

.is-scroll header #logoscroll {
  display: block;
}
*/
header .mod-menu {
  justify-content: flex-end
}

header .mod-menu li.parent {
  position: relative;
}

header .mod-menu li span,
header .mod-menu li a {
  text-transform: uppercase;
  color: var(--color-dark-gray);
  margin: var(--padding-xs) var(--padding-sm);
  display: block;
  font-family: var(--font-family-bold);
  cursor: pointer;
}

header .mod-menu li.active>a,
header .mod-menu li:hover>a,
header .mod-menu li:focus>a,
header .mod-menu li:active>a {
  color: var(--color-primary);
}

header .mod-menu li:last-child a {
  margin-right: 0;
}

@media(min-width: 1400px) {
  header .mod-menu__sub {
    display: none;
    background: var(--color-dark-green);
    position: absolute;
    top: 100%;
    left: 0;
    transition: 0.3s;
    z-index: 5;
    min-width: 290px;
    padding: 30px;
  }

  header .mod-menu__sub li a {
    color: #fff;
    text-align: left;
    text-transform: none;
    margin: 0;
    padding: 10px;
    border-bottom: 1px solid var(--color-secondary);
  }

  header .mod-menu__sub li:last-child a {
    border-bottom: 0;
  }

  header .mod-menu__sub li:hover>a,
  header .mod-menu__sub li:focus>a,
  header .mod-menu__sub li:active>a {
    background: var(--color-light-green);
    color: #fff;
  }

  header .mod-menu li.parent:hover .mod-menu__sub {
    display: block;
  }
}

@media(max-width: 1400px) {
  .burger {
    background: #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    padding: 8px 0;
    margin-left: auto;
    margin-top: 20px;
    z-index: 10;
    position: relative;
  }

  .menu-open .burger {
    background: var(--color-light-green);
  }

  .burger .burger-line {
    height: 4px;
    border-radius: 2px;
    width: 30px;
    display: block;
    margin: 6px auto;
    background: var(--color-primary);
    transition: 0.3s;
  }

  .menu-open .burger-line:nth-child(2) {
    display: none;
  }

  .menu-open .burger-line:first-child {
    position: relative;
    transform: rotate(-30deg);
    top: 10px;
  }

  .menu-open .burger-line:last-child {
    position: relative;
    transform: rotate(30deg);
    top: 0px;
  }

  header .mod-menu {
    justify-content: flex-end;
    position: fixed;
    top: 0;
    left: 0;
    flex-direction: column;
    background: var(--color-primary);
    z-index: 9;
    height: 0%;
    width: 100%;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
    overflow: hidden;
  }

  .menu-open header .mod-menu {
    height: 100%;
    display: flex;
    opacity: 1;
  }

  header .mod-menu  li span,
  header .mod-menu  li a {
    color: #fff;
    font-size: var(--font-size-h1);
    margin: 5px 0;
    text-align: center;
  }

  header .mod-menu li.active>a,
  header .mod-menu li:hover>a,
  header .mod-menu li:focus>a,
  header .mod-menu li:active>a {
    text-decoration: underline;
    color: #fff;
  }

  header .mod-menu__sub li a {
text-transform: none;
font-size: var(--font-size-h3);
font-family: var(--font-family-regular);
margin: 0 5% 10px;
line-height: normal;
border-bottom: 1px dotted #fff;
padding-bottom: 10px;

  }

  header .mod-menu__sub li:last-child a {
    margin-right: 5%;
  }

  .is-scroll header #mod-custom109 {
    display: none;
  }

  .is-scroll .burger {
    margin-top: 20px;
  }
}

@media(max-width: 991px) {
  h2, .h2, p{
    padding-left: 20px;
    padding-right: 20px;
  }
  .noSlide p,
  .noSlide h2,
  .noSlide .h2,
  #leistungen p,
  #slider p,
  #slider h2,
  #slider .h2 {
    padding: 0;
  }
  header #logo {
    max-width: 200px;
    margin: 0 auto 20px;
  }

  header #navigation {
    position: relative;
  }

  header #navigation .border-bottom-gray {
    border: 0;
  }

  .burger {
    margin-top: 0;
    position: absolute;
    top: -160px;
    right: 0;
  }
  /*
  .is-scroll .burger {
    top: -60px;
  }*/

  header #mod-custom109 a {
    background: var(--color-primary);
    display: block;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin: 10px 0 0 !important;
  }
}

/*---------------------------------------------------
                SLIDER
----------------------------------------------------*/
#slider {
  border-top: 50px solid var(--color-secondary);
  position: relative;
  z-index: 1
}

#slider::before {
  content: "";
  background: url("../images/bow.svg");
  height: calc(100% + 50px);
  width: 100%;
  position: absolute;
  top: -50px;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 3;
  filter: drop-shadow(4px 0px 2px rgb(0 0 0 / 0.4));
  background-position-x: 50%;
}

#slider img {
  clip-path: polygon(0 0, 100% 0%, 74% 100%, 0% 100%);
  height: 500px;
  width: auto;
  max-width: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#slider .mod-custom {
  background-color: var(--color-primary);
  color: #fff;
  height: 500px;
  justify-content: flex-end;
}

#slider .mod-custom h1 {
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
#slider .mod-custom h1,
#slider .mod-custom h2 {
  color: #fff;
}

#slider .mod-custom p {
  margin-bottom: 0;
}

#slider .mod-custom .text {
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 50px 0 190px;
  flex: 0 0 50%;
  z-index: 2;
  background-color: var(--color-primary);
  text-align: center;
}

@media(max-width: 1700px) {
  #slider .mod-custom .text {
    padding: 0 50px 0 260px;
    flex: 0 0 54%;
  }
}

@media(max-width: 1300px) {
  #slider::before {
    background-position-x: 45%;
  }

  #slider .mod-custom {
    height: 400px;
  }

  #slider img {
    height: 400px;
  }

  #slider .mod-custom .text {
    flex: 0 0 60%;
  }
}

@media(max-width: 1100px) {
  #slider::before {
    background-position-x: 40%;
  }
}

@media(max-width: 1050px) {
  #slider {
    border-top: 0;
  }

  #slider .mod-custom {
    height: auto;
    display: block !important;
    padding-bottom: 120px;
    background: transparent;
  }

  #slider img {
    height: auto;
    position: relative;
    top: 0;
    left: 0;
    max-width: 100%;
    clip-path: none;
    width: 100%;
  }

  #slider .mod-custom .text {
    flex: 0 0 100%;
    padding: 50px;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 3;
    background: transparent
  }

  #slider::before {
    background: url("../images/loop-horizontal.svg") no-repeat top center;
    height: 100%;
    width: 100%;
    top: 37%;
    z-index: 2;
  }
}

@media(max-width: 900px) {
  #slider::before {
    top: 33%;
  }

  #slider .mod-custom .text {
    top: -30px;
  }
}

@media(max-width: 768px) {
  #slider::before {
    top: 53%;
  }

  #slider .mod-custom .text {
    padding: 0 50px;
    clip-path: unset;
  }
}

@media(max-width: 670px) {
  #slider .mod-custom {
    padding-bottom: 0;
}
  #slider::before {
    display: none;
  }
  #slider .mod-custom .text {
    top: 0;
    padding: 50px;
    clip-path: unset;
    background: var(--color-primary);
}
}



/*---------------------------------------------------
                FOOTER
----------------------------------------------------*/
footer #footerTop {
  padding: var(--padding-md) 0;
  background-color: var(--color-secondary);
  color: #fff;
}

footer #copyright {
  padding: var(--padding-xs) var(--padding-md);
  background-color: var(--color-dark-green);
  text-align: center;
  color: #fff;
}

footer #copyright p {
  margin-bottom: 0;
  font-size: 14px;
}

footer #copyright a {
  color: #fff;
}
footer #copyright a:hover {
  text-decoration: underline;
}

footer a {
  color: #fff;
}

footer .logo-small {
  max-width: 105px;
}

.scrollToTop {
  background: var(--color-primary);
  color: #fff;
  width: 40px;
  height: 40px;
  text-align: center;
  padding: 10px;
  line-height: 1;
  position: fixed;
  bottom: 10px;
  right: 10px;
}

.scrollToTop:hover {
  background: var(--color-secondary);
  color: #fff;
}

@media(max-width: 991px) {
  footer .logo-small {
    max-width: 120px;
    margin: 0 auto 20px;
    display: block;
  }

  footer .links ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-left: -10px;
    margin-right: -10px;
  }

  footer .links li {
    padding: 0 10px;
    flex: 0 0 50%;
  }

  footer .links a {
    background-color: var(--color-green);
    border-radius: 10px;
    box-shadow: 3px 3px 10px 0px #0000006b;
    font-family: var(--font-family-bold);
    padding: 10px 40px;
    font-size: var(--font-size-body);
    display: block;
    text-align: center;
  }
}

@media(max-width: 490px) {
  footer .links ul {
    margin-top: 20px;
  }

  footer .links li {
    flex: 0 0 100%;
    margin-top: 10px;
  }
}

/*---------------------------------------------------
                MAIN
----------------------------------------------------*/
main {
  margin-top: 198px;
}

.com-content-article__body {
  padding: var(--padding-xl) 0;
  position: relative;
  z-index: 2;
}

.noSlide .com-content-article__body {
  padding: var(--padding-md) 0 var(--padding-xl);
}
.cat-107 .noSlide .com-content-article__body,
.cat-107 .com-content-article__body {
  padding: 0;

}
@media(max-width: 991px) {
  main {
    margin-top: 350px;
}
.is-scroll main {
  margin-top: 280px;
}

}
@media(max-width: 575px) {
.cat-108 main img {
  margin-bottom: 30px;
}
}
/*---------------------------------------------------
                LEISTUNGEN
----------------------------------------------------*/
#leistungen {
  margin-bottom: var(--margin-xl);
}

#leistungen .box {
  padding: 60px 90px 60px 140px;
  color: #fff;
  height: 100%;
  background-color: var(--color-primary);
  transition: 0.3s;
}

@media(min-width:1201px ) {
  #leistungen .box:hover {
    transform: scale(1.1);
    box-shadow: 7px 5px 18px 4px #00000059;
  }
}

#leistungen .col-12:first-child .box,
#leistungen .col-12:last-child .box {
  background-color: var(--color-secondary);
}

#leistungen .col-12:nth-child(odd) {
  padding-right: 0;
}

#leistungen .col-12:nth-child(even) {
  padding-left: 0;
}

#leistungen .col-12:nth-child(2) .box {
  border-top-right-radius: 125px;
}

#leistungen .col-12:nth-child(3) .box {
  border-bottom-left-radius: 125px;
}

#leistungen .box h3 {
  font-size: var(--font-size-h2);
  font-family: var(--font-family-bold);
  color: #fff;
  text-transform: none;
  position: relative;
  margin-bottom: 50px;
  padding-left: 18px;
}

#leistungen .box h3 span {
  font-size: var(--font-size-h1);
  font-family: var(--font-family-headline);
  font-weight: 600;
  position: absolute;
  left: -65px;
  top: -8px;
  color: var(--color-secondary);
}
#leistungen .box .border-left-gray {
  margin-bottom: 50px;
}
#leistungen .col-12:first-child .box h3 {
  min-height: 140px;
}
#leistungen .col-12:first-child .box h3 span,
#leistungen .col-12:last-child .box h3 span {
  color: var(--color-primary);
}

@media(max-width: 1200px) {
  #leistungen .col-12:first-child .box h3 {
    min-height: 110px;
}
}
@media(max-width: 1200px) {
  #leistungen .col-12:nth-child(odd) {
    padding-right: calc(var(--bs-gutter-x)/ 2);
  }

  #leistungen .col-12:nth-child(even) {
    padding-left: calc(var(--bs-gutter-x)/ 2);
  }

  #leistungen .col-12:nth-child(3) .box {
    background-color: var(--color-secondary);
  }

  #leistungen .col-12:nth-child(3) .box h3 span {
    color: var(--color-primary);
  }

  #leistungen .col-12:last-child .box {
    background-color: var(--color-primary);
  }

  #leistungen .col-12:last-child .box h3 span {
    color: var(--color-secondary);
  }
  #leistungen .col-12:first-child .box h3 {
    min-height: 10px;
}
  #leistungen .box,
  #leistungen .col-12:nth-child(2) .box,
  #leistungen .col-12:nth-child(3) .box {
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
    border-radius: 20px;
  }

  #leistungen .col-12 {
    margin-bottom: 20px;
  }
}

@media(max-width: 768px) {
  .border-left-gray {
    border-left: 0;
    padding-left: 0;
    position: relative;
    z-index: 2
  }

  #leistungen .box {
    padding: 40px 80px;
    overflow: hidden;
  }

  #leistungen .box h3 {
    padding-left: 0;
    position: relative;
    z-index: 2;
  }

  #leistungen .box h3 span {
    font-size: 150px;
    left: -105px;
    top: -60px;
    z-index: -1;
  }
}

@media(max-width: 575px) {
  #leistungen .box {
    padding: 30px 50px;
  }
}

/*---------------------------------------------------
                TEAM
----------------------------------------------------*/
#team {
  background: var(--color-primary);
  padding-top: var(--padding-md);
  padding-bottom: var(--padding-md);
}

#team * {
  overflow: visible !important;
}

#team div#n2-ss-2 .n2-ss-slide {
  background-color: transparent !important;
}
#team div#n2-ss-2 .n2-ss-slider-1 {
  overflow: hidden !important;
}
#team .n2-ss-slide p {
  font-family: var(--font-family-regular) !important;
}

#team .n2-ss-slide p strong {
  font-family: var(--font-family-bold) !important;
  font-size: var(--font-size-h3);
}

#team .n2-ss-slider .n2-ss-item-image-content img {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden !important;
}

#team .n2-ss-slide .n2-ss-text {
  position: relative;
  padding: 8px 25px 13px;
  min-height: 120px;
}



#team .n2-ss-slide:nth-of-type(even) .n2-ss-text {
  background: var(--color-dark-green);
}

#team .n2-ss-slide .n2-ss-text::after {
  background: var(--color-dark-green);
  height: 25px;
  width: 100%;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  position: absolute;
  bottom: -25px;
  left: 0;
  content: "";
}

#team .n2-ss-slide:nth-of-type(odd) .n2-ss-text::before {
  content: "";
  height: 120px;
  width: calc(100% + 20px);
  display: block;
  position: absolute;
  top: 0px;
  left: -10px;
  background: url("../images/bow-middle.png") repeat-y top left;
  z-index: -1;
  background-size: contain;
}
#team .n2-ss-slide:first-of-type .n2-ss-text::before {
  content: "";
  height: 130px;
  width: 119%;
  display: block;
  position: absolute;
  top: -10px;
  left: -45px;
  background: url("../images/bow-start.png") no-repeat top left;
  z-index: -1;
  background-size: 100% 205px;
}
#team .n2-ss-slide:last-of-type .n2-ss-text::before {
  content: "";
  height: 127px;
  width: 110%;
  display: block;
  position: absolute;
  top: -6px;
  left: -10pxpx;
  background: url("../images/bow-end.png") no-repeat top right;
  z-index: -1;
}
@media(max-width: 1400px) {

#team .n2-ss-slide:nth-of-type(odd) .n2-ss-text::before {
    height: 120px;
    width: calc(100% + 164px);
    top: 0px;
    left: -82px;
    background: url("../images/bow-middle.png") repeat-y top left;
    z-index: -1;
    background-size: cover;
}
#team .n2-ss-slide:first-of-type .n2-ss-text::before {
    content: "";
    height: 120px;
    width: calc(100% + 83px);
    top: 0px;
    left: -1px;
    background: url("../images/bow-middle.png") no-repeat top left;
    background-size: cover;
}
#team .n2-ss-slide:last-of-type .n2-ss-text::before {
    width: calc(100% + 83px);
  }
}
@media(max-width: 1300px) {
  .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls {
      height: 50px !important;
      bottom: -30px;
      width: 300px !important;
      left: 50%;
      transform: translateX(-50%);
  }
}
@media(max-width: 1200px) {
  #team {
    padding-bottom: var(--padding-lg);
}
  .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls {
      bottom: -70px;
  }

  #team .n2-ss-slide:nth-of-type(odd) .n2-ss-text::before {
    width: calc(100% + 40px);
    left: -22px;
  }
  #team .n2-ss-slide:first-of-type .n2-ss-text::before {
      width: calc(100% + 22px);
      left: -1px;
  }
  #team .n2-ss-slide:last-of-type .n2-ss-text::before {
    width: calc(100% + 23px);
    left: -22px;
}
}
@media(max-width: 991px) {
  #team {
    padding-bottom: var(--padding-xl);
}
  .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls {
      bottom: -70px;
  }
  #team .n2-ss-slide:last-of-type .n2-ss-text::before,
  #team .n2-ss-slide:first-of-type .n2-ss-text::before,
  #team .n2-ss-slide:nth-of-type(odd) .n2-ss-text::before,
  #team .n2-ss-slide:nth-of-type(even) .n2-ss-text::before,
  #team .n2-ss-slide:nth-of-type(3) .n2-ss-text::before {
      display: none;
  }
  #team .n2-ss-slide .n2-ss-text {
    background: var(--color-dark-green);
}
}
@media(max-width: 768px) {
  .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls {
      height: 100% !important;
      bottom: 0px;
      width: 100%!important;
      left: 0%;
      transform: none;
  }
  .n2-section-smartslider {
    padding: 0 50px;
  }
}
@media(max-width: 575px) {
  #team div#n2-ss-2 .n2-ss-slide {

   /* max-width: 100%;*/
}
}

/*---------------------------------------------------
                GALERIE
----------------------------------------------------*/
#galerie .n2-ss-slider .n2-ss-slide-background-image img,
#galerie .n2-ss-slider .n2-ss-item-image-content img {
  border-radius: 20px;
}

@media(max-width: 1300px) {
  #galerie {
    margin: 90px 0;
  }
}
@media(max-width: 1200px) {
  #galerie {
    margin: 30px 0 90px;
  }
  #galerie .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls {
    bottom: -50px;
}
}
@media(max-width: 768px) {
  #galerie {
    margin: 100px 0;
  }
  #galerie .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls {
    bottom: 0;
}
}
/*
@media(max-width: 575px) {
  .n2-section-smartslider {
    padding: 0;
  }
  .n2-ss-slider .n2-ss-slider-controls-absolute-right-center>*, .n2-ss-slider .n2-ss-slider-controls-absolute-left>* {
    margin-right: 15px !important;
}
.n2-ss-slider .n2-ss-slider-controls-absolute-left-center>*, .n2-ss-slider .n2-ss-slider-controls-absolute-right>* {
  margin-left: 15px !important;
}
}
*/

/*---------------------------------------------------
                KONTAKT MODUL
----------------------------------------------------*/
#kontakt {
  background: url("../images/anfahrt.png") no-repeat top left;
  padding: 180px 0;
  height: 625px;
}

#kontakt .contactBox .bg-primary {
  border-bottom-left-radius: 60px;
  position: relative;
}

#kontakt .contactBox .bg-primary::after {
  content: "";
  background: url('../images/loop-small.svg') no-repeat top center;
  width: 90px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: -41px;
  background-size: cover;
  filter: drop-shadow(4px 0px 2px rgb(0 0 0 / 0.4));
  z-index: 2;
}

#kontakt .contactBox .bg-secondary {
  border-top-right-radius: 100px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
  position: relative;
}

#kontakt .contactBox .bg-secondary::after {
  background-color: var(--color-secondary);
  content: " ";
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  bottom: 0;
  left: -30px;
  z-index: 1;
}

#kontakt .contactBox .circle {
  background: var(--color-green);
  padding: 27px 20px;
  border-radius: 50%;
  height: 160px;
  width: 160px;
  display: block;
  overflow: hidden;
  margin: 55px 45px;
}

#kontakt .contactBox .fa-user {
  font-size: 140px;
  color: var(--color-secondary);
}

#kontakt .contactBox .h2 {
  font-size: 36px;
  color: #fff;
}

@media(max-width: 1720px) {
  #kontakt {
    background: url("../images/anfahrt.png") no-repeat top left;
    padding: 130px 0;
    height: auto;
    background-size: contain;
  }
}

@media(max-width: 1400px) {
  #kontakt {
    padding: 80px 0;
  }

  #kontakt .contactBox .bg-primary {
    border-bottom-left-radius: 0px;
    background-color: transparent !important;
  }

  #kontakt .contactBox .bg-secondary::after,
  #kontakt .contactBox .bg-primary::after {
    display: none;
  }

  #kontakt .contactBox .circle {
    padding: 27px 17px;
    margin: 0 auto -70px;
    z-index: 1;
    position: relative;
    border: 2px solid var(--color-green);
  }

  #kontakt .contactBox .bg-secondary {
    border-radius: 20px;
    position: relative;
    padding-top: 100px;
    text-align: center;
  }
}

@media(max-width: 1100px) {
  #kontakt {
    padding: 20px 0 40px;
  }

  #kontakt .contactBox .h2 {
    font-size: 30px;
  }
}

@media(max-width: 991px) {
  #kontakt {
    margin-top: 400px;
    padding: 0 0 90%;
    background: url("../images/anfahrt-xs.svg") no-repeat top left;
    background-size: cover;
  }

  #kontakt .contactBox {
    margin-top: -320px
  }
}

@media(max-width: 768px) {
  #kontakt {
    margin-top: 450px;
  }

  #kontakt .contactBox {
    margin-top: -380px;
    margin-left: 0;
    margin-right: 0;
  }

}
@media(max-width: 575px) {
  #kontakt .contactBox .h2 {
    line-height: 1.2;
    font-size: 25px;
  }
  #kontakt .contactBox .bg-secondary {
    padding: 100px 30px 30px;
  }
}

/*---------------------------------------------------
                KONTAKT FORM
----------------------------------------------------*/
.visCSSlabel:not(.visCheckbox) {
  display: none;
}

.visCSSlabel.visCheckbox {
  font-size: 15px;
  display: block;
  float: none;
  margin-right: 0%;
  width: 100%;
  padding-left: 25px;
}

.visCustomText p {
  font-size: 15px;
}

.visBtnCon {
  text-align: left !important;
}

.visCSSinput {
  width: 100%;
}

.visBtnCon .btn {
  padding: 10px 40px !important;
  border-color: var(--color-light-green) !important;
}

.field7 {
  position: relative;
}

.field7 input {
  position: absolute;
  top: -5px;
  left: 0;
}
.visform div[class^="field"] {
  position: relative;
}
.visform:not(.bt5):not(.bt4mcindividual):not(.uikit3):not(.uikit2) p.errorcontainer {
    padding-top: 0;
    margin-top: 0;
    margin-bottom: 0;
    position: absolute;
    top: -45px;
    left: 0;
}
.visform:not(.bt5):not(.bt4mcindividual):not(.uikit3):not(.uikit2) p.errorcontainer:after {
    border-top: 12px solid var(--color-dark-green);
}
.visform:not(.bt5):not(.bt4mcindividual):not(.uikit3):not(.uikit2) label.error {
    font-size: 14px;
    color: #fff;
    padding: 10px;
    background-color: var(--color-dark-green);
    border-radius: 5px;
    display: inline-block !important;
    max-width: 100%;
    margin: 0;
}
#modvisform119datenschutzlbl a {
  text-decoration: underline;
}
