:root {
  --gray-1: 96%;
  --gray-2: 88%;
  --gray-3: 62%;
  --gray-4: 38%;
  --gray-5: 13%;
  --bg-color: var(--color-white);
  --color-white: #FDFEFF;
  --color-white-hover: #fdfeffcc;
  --color-gray: #606060;
  --color-gray-light: #B9B9B9;
  --color-black: #4D4D4D;
  --color-1:#2FAD4A;
  --color-2: #207030;
  --color-3: #2BA044;
  --color-active:#A6CDAE;
  --color-error: #FFD21A;
  --color-gray-1: hsl(0, 0%, var(--gray-1));
  --color-gray-2: hsl(0, 0%, var(--gray-2));
  --color-gray-3: hsl(0, 0%, var(--gray-3));
  --color-gray-4: hsl(0, 0%, var(--gray-4));
  --color-gray-5: hsl(0, 0%, var(--gray-5));
  /* GENERAL CONTAINER VARIABLES */
  /* BORDER RADIUS VARIABLES */
  /* GENERAL TRANSITION VARIABLE */
  --transition: all 500ms ease;
}

body {
  background-color: var(--bg-color);
  --color-primary: var(--color-1);
  --color-secondary: var(--color-2);
  --color-tertiary: var(--color-gray);
  --footer-color: var(--color-black);
}

.dark-bg {
  color: var(--color-white);
  padding: 20px 23px 5px 23px;
}
.dark-bg h1, .dark-bg .h1, .dark-bg h2, .dark-bg .h2, .dark-bg h3, .dark-bg .h3, .dark-bg h4, .dark-bg .h4, .dark-bg h5, .dark-bg .h5, .dark-bg h6, .dark-bg .h6, .dark-bg p {
  color: var(--color-white);
}

.light-bg {
  color: var(--color-black);
  padding: 10px 20px;
  margin: 20px 0px;
}

.black {
  background-color: var(--color-black);
}

.gray-5 {
  background-color: var(--color-gray-5);
}

.gray-4 {
  background-color: var(--color-gray-4);
}

.gray-3 {
  background-color: var(--color-gray-3);
}

.gray-2 {
  background-color: var(--color-gray-2);
}

.gray-1 {
  background-color: var(--color-gray-1);
}

.primary-bg {
  background-color: var(--color-primary);
}

.secondary-bg {
  background-color: var(--color-secondary);
}

.tertiary-bg {
  background-color: var(--color-tertiary);
}

/* lato-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  src: url("../Fonts/Lato/lato-v24-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  src: url("../Fonts/Lato/lato-v24-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  src: url("../Fonts/Lato/lato-v24-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Lato";
  font-style: normal;
  font-weight: 900;
  src: url("../Fonts/Lato/lato-v24-latin-900.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-family: "Material Symbols Rounded";
  font-style: light;
  font-weight: 400;
  src: url(../Fonts/MaterialSymbolsRounded[FILL\,GRAD\,opsz\,wght].woff2) format("woff2");
}
body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: var(--color-black);
}

.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-weight: 300;
  font-style: normal;
  font-size: 21px; /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
}

.material-symbols-rounded, .material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 20;
}

.material-symbols-outlined {
  margin-top: 5px;
  font-family: "Material Symbols Rounded";
  font-weight: 300;
  font-style: normal;
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
}

h1, .h1 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 50px;
  display: block;
}

h2, .h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 40px;
  display: block;
}

h3, .h3 {
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 20px;
  display: block;
}

h4, .h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 28px;
}

p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 20px;
  font-weight: 300;
}

a {
  font-size: 18px;
  font-weight: 400;
}

li {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 5px;
  font-weight: 300;
  top: -18px;
  position: relative;
}
li ul, li ol {
  margin-top: 16px;
}

ol, ul {
  padding-left: 1rem;
}

.mark, mark {
  padding: 0px 5px;
  color: var(--color-black);
  background-color: var(--color-secondary);
  border-radius: 2px;
}

.overline {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400 !important;
  margin-bottom: 0px;
  line-height: 24px;
  letter-spacing: 0.42px;
}

b, strong {
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  h1, .h1 {
    font-size: 50px;
    margin-bottom: 40px;
    line-height: 60px;
    font-weight: 800;
  }
  h2, .h2 {
    font-size: 38px;
    margin-bottom: 40px;
    line-height: 48px;
    font-weight: 800;
  }
  h3, .h3 {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 30px;
  }
  h4, .h4 {
    font-size: 22px;
    margin-bottom: 30px;
    line-height: 30px;
  }
  li {
    font-size: 18px;
    margin-bottom: 5px;
  }
  li ul, li ol {
    margin-top: 22px;
  }
}
.btn {
  border-radius: 50px;
  padding: 15px 25px;
  display: inline-flex;
  margin-right: 30px;
  margin-bottom: 20px;
  font-size: 18px !important;
  text-decoration: none !important;
  margin-left: -6px;
}

#btn-back-to-top {
  display: none;
  border: none;
  background: transparent;
  position: fixed;
  right: 0px;
  bottom: 50px;
  z-index: 9999999999999;
}
#btn-back-to-top:before {
  background-image: none;
  height: unset;
  font-size: 46px;
  font-family: "Material Symbols Rounded";
  content: "expand_circle_up";
  overflow: hidden;
  color: var(--color-primary);
  opacity: 0.7;
  width: -moz-fit-content;
  width: fit-content;
  transform: rotate(0deg);
  transition: transform 0.3s ease-in-out;
  font-variation-settings: "FILL" 1;
}
#btn-back-to-top:active {
  border-color: var(--color-white);
}

.btn-primary-color {
  background-color: var(--color-primary);
  color: var(--color-white) !important;
  padding: 15px 30px;
  border-color: var(--color-primary);
  text-decoration: none;
}
.btn-primary-color:hover {
  border-color: var(--color-3);
  background-color: var(--color-3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-black);
  border: 1px solid var(--color-primary);
  text-decoration: none;
  padding: 15px 35px;
}
.btn-secondary:hover {
  border-color: var(--color-gray);
  background-color: transparent;
  color: var(--color-gray);
}

.btn-secondary-white {
  background-color: transparent;
  color: var(--color-white) !important;
  border: 1px solid var(--color-white);
  text-decoration: none;
  padding: 15px 35px;
}
.btn-secondary-white:hover {
  border-color: var(--color-gray);
  background-color: transparent;
  color: var(--color-gray) !important;
}
.btn-secondary-white:hover:before {
  color: var(--color-gray) !important;
}
.btn-secondary-white:before {
  color: var(--color-white) !important;
}

.btn-tertiary-light {
  background-color: var(--color-tertiary);
  color: var(--color-white);
  border-color: var(--color-tertiary);
}
.btn-tertiary-light:hover {
  border-color: var(--color-tertiary);
  color: var(--color-tertiary);
}

.btn-primary-white {
  background-color: var(--color-white);
  color: var(--color-gray) !important;
  border-color: var(--color-white);
  border: 2px solid var(--color-white);
  text-decoration: none;
  padding: 15px 25px;
}
.btn-primary-white:hover {
  color: var(--color-black);
  background-color: var(--color-white-hover);
}

.btn-tertiary-dark {
  background-color: var(--color-tertiary);
  color: var(--color-white);
  border-color: var(--color-tertiary);
}

a.external-link {
  color: var(--color-black);
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  align-items: center;
}
a.external-link::after {
  content: "open_in_new";
  font-family: "Material Symbols Rounded";
  display: inline-block;
  font-size: 22px;
  vertical-align: sub;
}

a.btn-link {
  color: var(--color-black) !important;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--color-primary);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
  display: inline-flex;
  padding: 15px 25px 15px 0px;
  align-items: center;
  margin-top: 0px;
  margin-right: 30px;
  margin-bottom: 20px;
  line-height: 28px;
}
a.btn-link::after {
  content: "arrow_forward";
  font-family: "Material Symbols Rounded";
  display: inline-block;
  overflow: hidden;
  font-size: 22px;
  position: relative;
  left: 3px;
}
a.btn-link:hover::after {
  left: 10px;
  transition: all 0.3s ease 0s;
}

a.btn-textlink {
  color: var(--color-black);
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  font-size: 18px;
  text-underline-offset: 4px !important;
}

.bg-tertiary a.external-link, .bg-secondary a.external-link, .bg-tertiary .btn-secondary {
  color: var(--color-white);
}

.bg-tertiary .btn-primary-white {
  color: var(--color-black);
}

.btn-nav {
  background-color: var(--color-gray);
  border-color: var(--color-gray);
}

@media (min-width: 992px) {
  #btn-back-to-top {
    bottom: 20px;
  }
}
video {
  width: 100%;
  position: relative !important;
  height: 640px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
}

iframe {
  width: 100%;
  min-height: 475px;
}

.fullwidth-video {
  position: relative;
}

.playpause, .playpause span {
  position: absolute;
  background-size: contain;
  background-position: 50%;
}

.playpause span {
  color: var(--color-white);
  font-size: 65px;
}

.playpause:hover {
  transform: scale(1);
}

.vid-button {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 70px;
  bottom: 0px;
  margin: auto;
  background-size: contain;
  background-position: 50%;
  width: 220px;
  height: 220px;
  border-radius: 220px;
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  animation: pulse 1.2s infinite ease-in;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.vid-button:hover {
  transform: scale(1.25);
  cursor: pointer;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  70% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
.video-headline {
  position: absolute;
  padding: 75px 20px;
  z-index: 99;
  color: var(--color-white);
}

.playpause, .playpause span {
  width: 65px;
  height: 65px;
}

.overlay::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 640px;
  display: block;
  z-index: 1;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 3px;
}

@media (min-width: 768px) {
  .video-headline {
    padding: 100px;
  }
}
.card-img-top {
  width: 100%;
  height: 210px;
}

video.card-img-top {
  width: 100%;
  height: 210px;
}

.card-img-top-svg {
  text-align: left;
  height: 150px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 30px;
  padding-bottom: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

.card-body {
  padding: 20px 40px;
  padding-bottom: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  min-height: 360px;
}
.card-body p:first-of-type {
  margin-bottom: 30px;
}
.card-body p:nth-child(3) {
  margin-bottom: 0px;
}

.card-kontakt {
  background: transparent linear-gradient(352deg, #F6F6F6 0%, #EDEDED 100%) 0% 0% no-repeat padding-box !important;
  min-height: unset !important;
  top: 0px;
  transition: all 500ms ease;
  border-radius: 30px 0px !important;
}
.card-kontakt:hover {
  position: relative;
  top: -10px;
  transition: all 500ms ease;
}

.card-title-kontakt {
  color: var(--color-black) !important;
}

.card-grau {
  background: transparent linear-gradient(352deg, #F6F6F6 0%, #EDEDED 100%) 0% 0% no-repeat padding-box;
  top: 0px;
  transition: all 500ms ease;
  min-height: 490px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-grau .card-title {
  color: var(--color-black) !important;
}
.card-grau:hover {
  position: relative;
  top: -10px;
  transition: all 500ms ease;
}

.card-transparent {
  background: transparent;
  top: 0px;
  transition: all 500ms ease;
  min-height: 475px;
}
.card-transparent .btn-link {
  color: var(--color-white) !important;
  text-decoration-color: var(--color-white) !important;
}
.card-transparent p {
  color: var(--color-white);
}
.card-transparent:hover {
  position: relative;
  top: -10px;
  transition: all 500ms ease;
}

.card {
  min-height: 475px;
  border: 1.5px solid var(--color-white);
  border-radius: 30px 0px;
  position: relative;
  top: 0px;
  transition: all 500ms ease;
}
s .card:hover {
  position: relative;
  top: -10px;
  transition: all 500ms ease;
}
.card img {
  border-radius: 30px 0px 0px;
}

.card-col {
  padding: 0px 20px;
  margin-bottom: 40px;
}

.special-border-l .card {
  border-radius: 30px 0px 30px 0px;
}

.special-border-r .card {
  border-radius: 30px 0px 30px 0px;
}
.special-border-r .card img {
  border-radius: 30px 0px 0px;
}

.card-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--color-white);
}

@media (min-width: 768px) {
  .card-img-top {
    height: 310px;
  }
  video.card-img-top {
    height: 310px;
  }
  .card-body {
    padding-bottom: 20px;
  }
}
@media (min-width: 992px) {
  .card-col {
    padding: 0px 10px;
  }
  .special-border-l .card {
    border-radius: 0px 0px 30px 0px;
  }
  .special-border-r .card {
    border-radius: 30px 0px 0px 0px;
  }
  .special-border-r .card img {
    border-radius: 30px 0px 0px 0px;
  }
  .card, .card > img {
    border-radius: 0px;
  }
}
#footer {
  position: relative;
  z-index: 999;
  background-color: var(--color-gray);
  margin-bottom: 50px;
  padding: 0px 10px;
}
#footer a {
  color: #BEBFBF;
  padding: 0px;
  font-size: 18px;
  line-height: 30px;
}

footer {
  position: relative;
  z-index: 99999;
}

.footer-row-one {
  padding-top: 15px;
}

.social-wrapper {
  width: 100%;
  height: auto;
  border-radius: 50px;
  padding: 15px;
}

.social-wrapper > a > img {
  width: 20px;
  height: 20px;
  margin-right: 20px;
}

.social-wrapper > a {
  display: inline-block;
  width: 20px;
  margin: 0px 10px;
}

.footer-end {
  float: left;
  margin-left: 10px;
}

.footer-wave {
  position: relative;
  bottom: -5px;
}

.list-footer {
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  margin-bottom: 0px;
}
.list-footer li {
  list-style: none;
  margin: 5px 0px;
}
.list-footer li a {
  text-decoration: none;
  letter-spacing: 0.42px;
  line-height: 20px;
  font-weight: 300;
}

.list-footer-item {
  top: 0px !important;
}
.list-footer-item a, .list-footer-item button {
  color: var(--color-gray-light) !important;
  margin-right: 20px;
  font-size: 14px !important;
}
.list-footer-item button {
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.list-footer-item::before {
  content: "";
  width: 0px;
  height: 0px;
}

.accordion-item, .accordion-button, .accordion-button:not(.collapsed) {
  background-color: transparent;
}

.accordion-button:not(.collapsed) {
  color: var(--color-primary) !important;
}

.footer-menu {
  margin-top: 30px;
  margin-bottom: 40px;
}

.accordion-header, .accordion-button {
  padding: 5px 0px;
  font-size: 18px;
  font-weight: 500;
}

.accordion-header > a {
  color: var(--color-white) !important;
  font-weight: 400;
}

.accordion-button {
  display: flex;
  justify-content: center;
  color: var(--color-white);
}
.accordion-button::after {
  background-image: none;
  height: unset;
  font-size: 20px;
  font-family: "Material Symbols Rounded";
  content: "keyboard_arrow_down";
  overflow: hidden;
}
.accordion-button:not(.collapsed)::after {
  background-image: none;
  height: 35px;
  font-size: 20px;
  font-family: "Material Symbols Rounded";
  content: "keyboard_arrow_down";
  transform: var(--bs-accordion-btn-icon-transform);
  overflow: hidden;
}
.accordion-button:not(.collapsed) {
  box-shadow: unset;
}

.accordion-item, .accordion-flush .accordion-item:last-child {
  border-bottom: 1px solid rgba(185, 185, 185, 0.231372549) !important;
}

.navbar-nav .accordion-item, .navbar-nav .accordion-flush .accordion-item:last-child {
  border-bottom: 1px solid #60A66F !important;
}

.accordion-body {
  padding: 10px 0px;
}
.accordion-body a {
  text-decoration: none;
}

.footer-infos {
  margin-bottom: 30px;
}
.footer-infos a {
  padding: 0px;
}

.footer-info {
  text-decoration: none;
}

a.footer-info {
  display: inline-flex !important;
  margin-bottom: 15px;
  line-height: 25px;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color-white) !important;
}
a.footer-info::before {
  color: var(--color-white) !important;
  display: inline-flex;
}

.accordion-button:focus {
  border: none;
  box-shadow: none;
}

.footer-hl {
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.footer-col {
  width: -moz-fit-content;
  width: fit-content;
}
.footer-col ul {
  padding-left: 0px;
}
.footer-col ul li {
  list-style-type: none;
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 22px;
  top: 0px !important;
}
.footer-col ul li::before {
  content: "";
  width: 0px;
  height: 0px;
}
.footer-col ul li a {
  text-decoration: none;
  line-height: 25px !important;
}
.footer-col ul li a:hover {
  color: var(--color-primary) !important;
}

.copyright > a, .copyright {
  text-decoration: none;
  font-size: 12px !important;
  font-weight: 300;
  margin-top: 5px;
  color: var(--color-gray-light) !important;
}

.copyright {
  font-weight: 300;
  padding: 0px;
  margin-bottom: 30px;
}

#footer-logo {
  margin-bottom: 40px;
}
#footer-logo a img {
  width: 220px;
  height: auto;
}

.social-box {
  margin-bottom: -20px;
}
.social-box .social-wrapper {
  display: flex;
  justify-content: space-evenly;
  height: auto;
  background: var(--color-tertiary);
  border-radius: 25px 25px 0px 0px;
}

.list-footer {
  padding: 0px 12px;
}

.nav-seperator {
  margin: 0px 5px;
}

@media (min-width: 768px) {
  .copyright {
    position: relative;
    top: 65px;
    color: var(--color-black) !important;
  }
  .copyright a {
    color: var(--color-black) !important;
  }
  .footer-menu {
    margin-bottom: 60px;
    margin-top: 30px;
  }
  .footer-end {
    width: 100%;
    margin-left: -5px;
  }
  .social-box {
    float: right;
  }
  #footer-logo a img {
    width: 300px;
    height: auto;
  }
  .footer-bottom-links {
    position: relative;
    top: 45px;
  }
}
@media (min-width: 992px) {
  #footer {
    padding: 0px;
  }
  .footer-info {
    text-decoration: none;
    float: right;
  }
  .footer-infos {
    float: right;
    margin-bottom: 0px;
  }
  .copyright > a, .copyright {
    text-decoration: none;
    font-size: 12px !important;
    font-weight: 300;
    margin-top: 5px;
    color: var(--color-black) !important;
  }
  .social-box {
    position: relative;
    bottom: -20px;
  }
  .social-box .social-wrapper {
    height: auto;
    background: var(--color-primary);
    border-radius: 50px;
  }
  a.footer-info {
    display: block;
    font-weight: 400 !important;
    margin-bottom: 15px;
    font-size: 24px !important;
    line-height: 37px;
    width: -moz-fit-content;
    width: fit-content;
    color: var(--color-white);
  }
  a.footer-info::before {
    color: var(--color-white) !important;
    font-size: 24px !important;
    margin-bottom: -10px !important;
  }
  .footer-row-one {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
#nav {
  background-color: var(--color-white);
  color: var(--color-black);
  transition: all 0.3s ease 0s;
}
#nav div {
  display: flex;
}

#navigation {
  background: transparent linear-gradient(180deg, #238338 0%, #238338 100%, var(--color-1) 100%) 0% 0% no-repeat padding-box;
  position: fixed;
  padding: 15px 0px;
}
#navigation a.nav-link {
  color: var(--color-white);
}

.nav-item, .dropdown {
  font-size: 20px;
}
.nav-item a, .dropdown a {
  color: var(--color-white);
  opacity: 1;
}
.nav-item::before, .dropdown::before {
  content: "";
  width: 0px;
  height: 0px;
}

.dropdown a {
  color: var(--color-tertiary);
  position: relative;
  z-index: 9999;
}
.dropdown a::after {
  border: none;
}
.dropdown a:hover body {
  background-color: var(--color-black);
  opacity: 0.5;
}

#logo-dark {
  display: none;
}

#logo-white {
  display: block;
}

.sticky .nav-item.active {
  color: var(--color-black) !important;
}
.sticky .nav-item.active > a {
  font-weight: 700;
}

.nav-scroll .nav-item.active {
  color: var(--color-black) !important;
}
.nav-scroll .nav-item.active > a {
  color: var(--color-black) !important;
  font-weight: 700;
}

.nav-item.active {
  color: var(--color-black) !important;
}
.nav-item.active a {
  color: var(--color-black);
}

.mobile-nav .accordion-header {
  color: var(--color-white);
}
.mobile-nav .accordion-header .accordion-button:not(.collapsed) {
  color: var(--color-white) !important;
  font-weight: 700;
}

.dropdown-item {
  font-weight: 400;
}
.dropdown-item:hover {
  background-color: var(--color-white);
}

.mega-dropdown {
  position: static !important;
}

.mega-dropdown-menu {
  padding: 20px 0px;
  width: 100%;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.dropdown-wrap {
  top: 100%;
  left: -30px;
  height: auto;
  padding-top: 25px;
  background-color: transparent;
  z-index: 1;
  min-width: 200px;
}
.dropdown-wrap:hover {
  opacity: 1;
}

.nav-row {
  display: flex !important;
  justify-content: center;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.navbar-logo {
  padding: 0px;
}
.navbar-logo img {
  width: 200px;
  height: auto;
  padding-left: 10px;
}

.navbar-toggler {
  border: none;
  padding: 0px;
  padding-bottom: 3px;
}

button.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar {
  padding-left: 5px;
}
.navbar span {
  color: var(--color-white);
}

.nav-scroll .container .nav-row > .mobile-nav > .navbar {
  padding-left: 5px;
}
.nav-scroll .container .nav-row > .mobile-nav > .navbar span {
  color: var(--color-black);
}
.nav-scroll .container .nav-row > .mobile-nav > .navbar-text {
  color: var(--color-black);
}

.cta-col {
  display: flex;
  justify-content: flex-end;
}

.mainnav-col {
  justify-content: flex-end;
}

.dropdown-menu {
  background-color: rgba(var(--secondary), 37, 85, 0.7);
}
.dropdown-menu:after {
  content: " ";
  background: url("../Images/triangle.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -14px;
  left: 39px;
  height: 30px;
  width: 30px;
  z-index: -1;
}

.menu-link {
  margin: 0px 10px;
}

.navbar-text {
  font-size: 10px;
  text-transform: uppercase;
  margin-right: 5px;
  letter-spacing: 0.3px;
  color: var(--color-white);
}

.navbar-overlay {
  display: flex;
  justify-content: flex-end;
}

.nav-overlay {
  background: transparent linear-gradient(160deg, #238338 0%, #238338 0%, var(--color-1) 100%) 0% 0% no-repeat padding-box;
}
.nav-overlay .navbar-text, .nav-overlay span.material-symbols-outlined {
  color: var(--color-white);
}

.nav-row-burger {
  padding: 20px;
}

.nav-menu {
  padding: 15px 0px;
}

.nav-menu-contact {
  padding-top: 40px;
  padding-left: 20px;
  padding-bottom: 0px;
}
.nav-menu-contact a {
  color: var(--color-white);
}

.nav-link {
  padding: 8px 0px;
}

.menu-info {
  padding: 0px 10px;
}

a.menu-info {
  margin-bottom: 15px;
  display: block;
  font-size: 18px;
  padding: 0px;
  color: var(--color-white) !important;
  text-decoration-color: var(--color-white) !important;
}
a.menu-info:before {
  color: var(--color-white) !important;
}

.menu-infos {
  margin: 40px 0px 60px 0px;
}

.menu-bottom-links {
  padding: 0px;
}

.list-menu {
  list-style: none;
  padding: 0px !important;
}
.list-menu li {
  margin: 5px 0px;
  font-size: 18px !important;
}
.list-menu li a {
  text-decoration: none;
  letter-spacing: 0.3px;
  font-size: 18px;
  line-height: 20px;
  color: var(--color-white) !important;
  font-weight: 300;
}

.list-menu-item::before {
  content: "";
  width: 0px;
  height: 0px;
}

.sub-menu-item::before {
  width: 0px;
  height: 0px;
}

.nav-menu-end {
  margin-top: 30px;
}

.lang {
  color: var(--color-white);
  font-size: 14px;
}
html[lang=de] .lang {
  content: "DE";
}
html[lang=en] .lang {
  content: "EN";
}

.open {
  transition: transform 0.6s ease;
  opacity: 1 !important;
  pointer-events: all;
  transform: translateY(0) !important;
}

.nav-overlay.open {
  transform: translateY(0) !important;
  transition: transform 0.6s ease;
}

.nav-overlay {
  opacity: 0;
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999999999999;
  pointer-events: none;
  background-attachment: fixed;
  transform: translateY(-100%) !important;
  transition: transform 0.6s ease;
  pointer-events: all;
}

.navbar-nav {
  padding: 0px 20px;
}

.modal-backdrop {
  top: 106px;
}

.sticky {
  width: 100%;
  z-index: 9999999;
  transform: translateY(0%);
  transition: transform 0.65s cubic-bezier(0.19, 1, 0.22, 1);
}

.no-top {
  width: 100%;
  background-color: transparent;
  box-shadow: none;
  transition: transform 0.65s cubic-bezier(0.19, 1, 0.22, 1);
}

.desktop-nav {
  display: none !important;
}

.mobile-nav {
  display: block !important;
}

.active-link {
  font-weight: 600;
}

.nav-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.lang-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
}
.lang-wrap span {
  color: var(--color-white);
}
.lang-wrap span.material-symbols-rounded {
  color: var(--color-white);
  margin-bottom: -2px;
  margin-right: 5px;
}

.nav-scroll {
  position: fixed;
  top: 0px;
  background: var(--color-white) !important;
  background-color: var(--color-white) !important;
  color: var(--color-black) !important;
  box-shadow: 0px 0px 15px rgba(0, 53, 90, 0.1607843137) !important;
}
.nav-scroll .nav-row > .desktop-nav > ul > .nav-item.active a, .nav-scroll a.nav-link, .nav-scroll a {
  color: var(--color-black) !important;
}
.nav-scroll:focus {
  color: var(--color-primary);
}
.nav-scroll .nav-row > .btn-nav-wrap > .btn-primary-white {
  color: var(--color-white) !important;
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary);
}
.nav-scroll .nav-row > .btn-nav-wrap > .btn-primary-white:hover {
  background-color: var(--color-3) !important;
  border-color: var(--color-3);
}
.nav-scroll .dropdown a {
  color: var(--color-black) !important;
}

.active-link {
  color: var(--color-active) !important;
}

.meta-nav {
  padding: 15px 0px;
  width: 100%;
  position: fixed;
  bottom: 0px;
  z-index: 999999;
  background-color: var(--color-white);
  box-shadow: 0px 0px 15px rgba(0, 53, 90, 0.1607843137);
}

.meta-nav-col {
  display: flex;
  justify-content: center;
}

a.meta-nav-item {
  cursor: pointer;
  color: var(--color-gray);
  text-decoration: none;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}
a.meta-nav-item span {
  color: var(--color-primary);
  margin-top: 0px;
  margin-right: 5px;
}

#nav-button > a.meta-nav-item {
  position: relative;
}
#nav-button > a.meta-nav-item:hover:after {
  background: var(--color-white-hover);
  border-radius: 3px;
  top: 100%;
  content: attr(tooltip);
  display: block;
  padding: 1em;
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
  white-space: nowrap;
  box-shadow: 0px 0px 15px rgba(0, 53, 90, 0.1607843137);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (min-width: 768px) {
  .btn-nav-wrap {
    justify-content: flex-end;
  }
  .btn-nav-wrap .meta-nav-item {
    opacity: 0;
    pointer-events: none;
  }
  .btn-nav-wrap .meta-nav-item > span {
    color: var(--color-primary);
    transition: all 0.3s ease 0s;
  }
  .btn-nav-wrap .meta-nav-item > span:hover {
    color: var(--color-3);
  }
  .btn-nav-wrap .btn-primary-white {
    margin: 0px 5px 0px 0px;
  }
  .navbar-logo {
    padding: 0px;
  }
  .navbar-logo img {
    height: auto;
    padding-left: 0px;
  }
  nav {
    position: relative;
  }
  .sub-menu-desktop {
    display: none;
  }
  .dropdown-menu {
    margin-left: -55px;
    border: none;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 10px;
    padding: 30px 40px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
  .dropdown-menu li {
    display: block;
    position: relative;
    list-style: none;
    width: 100%;
    margin-bottom: 0px;
    padding: 10px 0px;
    top: 0px !important;
    border-bottom: 1px solid #F0F0F0;
  }
  .dropdown-menu li:after {
    content: "";
    padding: 0px 30px;
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 3px;
    bottom: -1.5px;
    left: 0;
    background-color: var(--color-primary);
  }
  .dropdown-menu li:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
    transition: transform 0.4s ease-out;
  }
  .dropdown-menu li:hover a {
    color: var(--color-primary);
  }
  .dropdown-menu li:first-child {
    border-top: 1px solid #F0F0F0;
  }
  .nav .nav-item {
    margin: 0px 10px;
    font-size: 18px;
    padding: 3px 10px;
    position: static;
  }
  .nav .nav-item a.nav-link {
    padding: 30px 0px;
  }
}
@media (min-width: 992px) {
  .meta-row {
    width: 850px;
  }
  .meta-nav-col {
    display: flex;
    justify-content: flex-end;
  }
  .navbar {
    padding-left: 5px;
  }
  .navbar span {
    color: var(--color-white);
    font-size: 28px;
  }
  #navigation {
    padding: 0px;
  }
  .lang-wrap span {
    color: var(--color-gray-light);
  }
  .lang-wrap span.material-symbols-rounded {
    color: var(--color-gray-light);
  }
  .list-menu li a {
    color: var(--color-gray-light) !important;
  }
  .navbar-logo {
    padding: 0px;
  }
  .navbar-logo img {
    width: 250px;
    height: auto;
    margin-bottom: 10px;
  }
  .meta-nav {
    position: unset;
    bottom: 0px;
    z-index: 999999;
    background-color: var(--color-white);
    box-shadow: 0px 0px 15px rgba(0, 53, 90, 0.1607843137);
    padding: 15px 0px;
  }
  .meta-nav > .container > .row {
    display: flex;
    justify-content: flex-end;
  }
  a.meta-nav-item {
    cursor: pointer;
    color: var(--color-gray);
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
  }
  a.meta-nav-item span {
    color: var(--color-primary);
    margin-top: 0px;
    margin-right: 5px;
  }
  .desktop-nav {
    display: block !important;
  }
  .mobile-nav {
    display: none !important;
  }
  .d_flex {
    display: flex !important;
  }
}
@media (min-width: 1200px) {
  .nav .nav-item {
    margin: 0px 20px;
    font-size: 18px;
    padding: 3px 10px;
  }
  .meta-row {
    width: 1040px;
  }
}
@media (min-width: 1400px) {
  .meta-row {
    width: 1200px;
  }
}
@media (min-width: 2560px) {
  .nav-row {
    max-width: 1650px;
  }
  .meta-row {
    width: 1570px;
  }
}
#cta-text .h1, #cta-text h1, #cta-text .h2, #cta-text h2, #cta-text h3, #cta-text .h3 {
  color: var(--color-white);
  display: unset;
}
#cta-text p {
  color: var(--color-white);
}
#cta-text div {
  padding-right: 0px;
}

.cta-text {
  margin: 0px;
  border-radius: 30px 0px 0px 0px;
  background: transparent linear-gradient(160deg, #238338 0%, #238338 0%, var(--color-1) 100%) 0% 0% no-repeat padding-box;
}

.cta-text-headline {
  padding: 30px 25px 5px 30px;
}
.cta-text-headline p, .cta-text-headline span {
  padding-right: 20px;
}

.cta-text-text {
  padding: 30px 0px 0px 30px;
}
.cta-text-text p {
  margin-bottom: 30px;
}

.cta-image {
  padding: 0px;
}
.cta-image img {
  height: 390px;
  width: 100%;
}

.cta-image-row {
  display: flex;
  justify-content: flex-end;
}

.cta-image-bg {
  padding: 10px 35px 45px 35px;
  color: var(--color-white);
  position: relative;
  bottom: 150px;
  margin-bottom: -150px;
}
.cta-image-bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 5;
  background: transparent linear-gradient(160deg, #238338 0%, #238338 0%, var(--color-1) 100%) 0% 0% no-repeat padding-box;
  border-radius: 0px 0px 0px 50px;
}
.cta-image-bg h1, .cta-image-bg h2, .cta-image-bg .h1, .cta-image-bg .h2, .cta-image-bg p {
  margin-bottom: 0px;
  position: relative;
  z-index: 99;
}
.cta-image-bg p {
  margin-top: 30px;
}

@media (min-width: 768px) {
  .cta-image-bg {
    padding: 45px 90px;
  }
  .cta-image-bg {
    bottom: 270px;
  }
  .cta-image img {
    height: 700px;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .cta-text {
    margin: 0px;
    border-radius: 30px 0px 30px 0px;
  }
  .cta-text-headline {
    padding: 75px 0px 15px 95px;
  }
  .cta-text-text {
    padding: 300px 50px 80px 40px !important;
  }
}
@media (min-width: 992px) {
  #cta-text div {
    padding-right: unset;
  }
}
@media (min-width: 1920px) {
  .cta-image-bg {
    right: 150px;
  }
}
.header-img-full img, .header-img-full video {
  height: 665px;
  width: 100%;
}

.header-img-low img, .header-img-low video {
  height: 345px;
  width: 100%;
}

.header-row {
  display: flex;
  padding-top: 4rem;
}

.header-bg {
  background: transparent linear-gradient(180deg, #238338 0%, #238338 0%, var(--color-1) 100%) 0% 0% no-repeat padding-box;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0px 10px;
}
.header-bg > .container {
  position: relative;
  z-index: 99;
}

.header-wave {
  position: relative;
  bottom: 7px;
  z-index: 1;
}

#header {
  margin-bottom: 120px;
}
#header p, #header .h1, #header h1, #header .h2, #header h2 {
  color: var(--color-white);
}
#header img {
  border-radius: 30px 0px 30px 0px;
  width: 100%;
  position: relative;
  z-index: 9999;
  height: 250px;
  margin-bottom: -80px;
  margin-top: 25px;
}
#header .overline {
  margin-bottom: 5px;
}

#header-low {
  margin-bottom: 0px;
}
#header-low img {
  border-radius: 3px;
  width: 100%;
  position: relative;
  z-index: 9999;
  margin-bottom: 40px;
  height: 220px;
}
#header-low .overline {
  color: var(--color-secondary);
}

.text-down {
  margin: 0px !important;
}

.header-bg-down {
  padding: 45px;
  color: var(--color-white);
  margin: 0px 10px;
  position: relative;
  top: -75px;
  margin-bottom: -75px;
}
.header-bg-down h1, .header-bg-down h2, .header-bg-down .h1, .header-bg-down .h2, .header-bg-down h3, .header-bg-down .h3, .header-bg-down h4, .header-bg-down .h4, .header-bg-down span {
  margin-bottom: 0px;
  position: relative;
  z-index: 99;
}

.overline-date, .overline-location {
  display: flex;
  align-items: center;
}
.overline-date span, .overline-location span {
  font-size: 20px;
  font-weight: 300;
  margin-right: 10px;
}

#header-start {
  height: 70vh;
  background-repeat: no-repeat;
  background-size: cover;
}
#header-start::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  mix-blend-mode: multiply;
  z-index: 5;
  background: transparent linear-gradient(139deg, #00355A 0%, rgba(0, 10, 16, 0) 100%) 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
  opacity: 0.75;
}
#header-start .btn-link {
  color: var(--color-white);
  text-decoration-color: var(--color-white);
  padding: 0px;
}
#header-start .btn-link:hover {
  color: var(--color-gray-blue);
  text-decoration-color: var(--color-gray-blue);
}
#header-start .btn {
  margin-top: 30px;
}

.hero-wave {
  position: absolute;
  bottom: 40px;
  left: 0px;
  z-index: 999;
  width: 100%;
  transform: scale(-2);
}

.hero-text {
  margin-top: 20px;
}

.start-img {
  height: 100vh;
  width: 100%;
}

.header-bg-start {
  color: var(--color-white);
}
.header-bg-start h1, .header-bg-start h2, .header-bg-start .h1, .header-bg-start .h2, .header-bg-start h3, .header-bg-start .h3, .header-bg-start h4, .header-bg-start .h4, .header-bg-start span, .header-bg-start p {
  margin-bottom: 25px;
  position: relative;
  z-index: 99;
}

.header-bg-start-mobil {
  color: var(--color-primary) !important;
  position: relative;
  z-index: 9999;
}

.hero-mobil .header-row {
  margin-top: -50px;
  margin-bottom: 85px;
  padding-top: 0px;
}
.hero-mobil .btn-link {
  padding: 0px 5px !important;
}

.hero-wave-low {
  position: absolute;
  z-index: 1;
  top: 170px;
  transform: scale(3);
}

#header-low {
  height: -moz-fit-content;
  height: fit-content;
}

.no-img {
  height: 170px;
}

@media (min-width: 768px) {
  .hero-data {
    padding-right: 40px;
  }
  .hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0px;
    z-index: 999;
    transform: scale(-1);
  }
  #header-start {
    margin-bottom: -50px;
    height: 110vh;
  }
  #header {
    height: 100%;
    margin-bottom: 150px;
  }
}
@media (min-width: 992px) {
  #header {
    margin-bottom: 130px;
  }
  .header-bg {
    display: flex;
    align-items: center;
  }
  .no-img {
    display: none;
  }
  .hero-wave-low {
    position: absolute;
    z-index: 1;
    top: 0px;
    transform: scale(1);
  }
  .hero-text {
    margin-top: 20px;
  }
  .hero-data {
    margin-bottom: 0px;
  }
  #header.header-low {
    margin-bottom: 30px;
  }
  .header-bg-down {
    width: 90%;
  }
  #header-low {
    margin-bottom: 200px;
  }
  #header-low .hero-data {
    padding-right: 100px;
  }
  #header-low img {
    height: -moz-fit-content;
    height: fit-content;
  }
  #header img {
    height: 500px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: -100px;
  }
}
@media (min-width: 1200px) {
  #header-start {
    height: 135vh;
    width: 100%;
    margin-bottom: -150px;
  }
}
@media (min-width: 1400px) {
  #header-low .header-data {
    padding-right: 170px;
  }
}
@media (min-width: 1920px) {
  #header img {
    height: 500px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: -150px;
  }
}
@media (min-width: 2560px) {
  #header img {
    height: 450px;
  }
  #header-start {
    height: 110vh;
  }
}
#bildslider {
  padding-right: 0px;
  padding-left: 20px;
  padding-top: 30px;
  margin: 0px auto;
}

.owl-item {
  padding-right: 35px;
  background-color: var(--color-white);
}

.item-wrap {
  width: 100%;
  margin-bottom: 20px;
}
.item-wrap img {
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}

.image_box {
  width: 45px;
  height: 20px;
  background: var(--color-3);
  border-radius: 2px;
  position: relative;
  bottom: 10px;
  left: 70%;
}

.image-content {
  margin-top: 30px;
}

.owl-stage {
  padding: 0px !important;
}

.owl-dots {
  position: absolute;
  width: 85%;
  top: -25px;
  display: flex;
  justify-content: flex-start;
  padding: 0px 35px;
}

.owl-dot {
  margin: 0px 1%;
  width: 100%;
  border-radius: 4px;
  height: 4px;
  background-color: var(--color-gray-2) !important;
}
.owl-dot span {
  margin-bottom: 20px;
  border-radius: 4px;
  display: flex;
  height: 4px;
  width: 100%;
}

.owl-dot.active span {
  display: flex;
  height: 4px;
  border-radius: 4px;
  width: 0;
  background-color: var(--color-primary);
  animation: progress 7000ms 0.3s infinite linear;
}

.owl-nav {
  display: none;
}

.image-content {
  opacity: 0;
}

.owl-item.active > .item > .item-wrap > .image-content {
  opacity: 1;
}

.firstactiveitem > .item > .item-wrap > img {
  opacity: 1 !important;
}

.owl-item > .item > .item-wrap > img {
  opacity: 0.2;
}

@keyframes progress {
  0% {
    width: 0%;
  }
  25% {
    width: 25%;
  }
  50% {
    width: 50%;
  }
  75% {
    width: 85%;
  }
  100% {
    width: 100%;
  }
}
.hl-row {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .hl-row {
    margin-bottom: 70px;
  }
  .image_box {
    left: 80%;
  }
  #bildslider {
    padding: 0px;
    margin: 0px auto;
  }
  .owl-item {
    padding: 0px 5px;
  }
  .image_box, .image-content > p {
    opacity: 0;
  }
  .owl-next > .material-symbols-rounded, .owl-prev > .material-symbols-rounded {
    font-size: 22px;
  }
  .image-content > h4, .owl-item > .item > img {
    opacity: 0.5;
  }
  .image-content > h4 {
    margin-bottom: 20px;
  }
  .owl-item.active.center > .item > .item-wrap > .image-content > p, .owl-item.center > .item > .item-wrap > img, .owl-item.center > .item > .item-wrap > .image_box, .owl-item.center > .item > .item-wrap > .image-content > h4 {
    opacity: 1 !important;
    border-radius: 0px !important;
  }
  .firstactiveitem > .item > .item-wrap > img {
    border-radius: 30px 0px 0px 0px;
  }
  .lastactiveitem > .item > .item-wrap > img {
    border-radius: 0px 0px 30px 0px;
    opacity: 0.2;
  }
  .firstactiveitem > .item > .item-wrap > img {
    border-radius: 30px 0px 0px 0px;
    opacity: 0.3 !important;
  }
  .owl-item:first-child > .item > .item-wrap > img {
    opacity: 0.3;
    border-radius: 30px 0px 0px 0px !important;
  }
  .owl-item:last-child > .item > .item-wrap > img {
    opacity: 0.5;
    border-radius: 0px 0px 30px 0px !important;
  }
  .item img {
    height: 450px;
    width: 100% !important;
    margin-right: 0px;
  }
  .owl-dots {
    position: absolute;
    width: 100%;
    top: -25px;
    display: flex;
    justify-content: center;
    padding: 0px 240px;
  }
  .owl-nav {
    position: absolute;
    width: 100%;
    top: -35px;
    display: flex;
    justify-content: flex-end;
    z-index: 999;
  }
  .owl-dot {
    margin: 0px 0.5%;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background-color: var(--color-gray-2) !important;
  }
  .owl-dot span {
    margin-bottom: 20px;
    border-radius: 4px;
    display: flex;
    height: 4px;
    width: 100%;
  }
  .owl-dot.active span {
    display: flex;
    height: 4px;
    border-radius: 4px;
    width: 0;
    animation: progress 7000ms 0.3s infinite linear;
  }
  .owl-nav {
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    right: 0px;
    padding: 0px 5px;
  }
}
#breadcrumb {
  margin-bottom: 50px;
}

.breadcrumb-container {
  padding: 0px 20px;
}

.breadcrumb {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 5px;
  font-size: 12px;
  line-height: 18px;
  color: var(--color-gray-4);
  font-weight: 500;
}

.breadcrumb-wrap {
  display: flex;
  align-items: center;
}
.breadcrumb-wrap div {
  margin-bottom: 15px;
  margin-right: 5px;
  color: var(--color-gray-4);
  font-size: 12px;
}

.breadcrumb-acitve {
  text-decoration: none;
}

@media (min-width: 768px) {
  .breadcrumb-container {
    padding: 0px 200px;
  }
}
.zitat-image img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px 0px 30px 0px;
}

.image-box-zitat {
  width: 45px;
  height: 20px;
  background: var(--color-3);
  border-radius: 2px;
  position: relative;
  bottom: 10px;
  left: 15px;
}

.grau p {
  color: var(--color-black) !important;
}

.zitat-text p {
  font-size: 26px;
  line-height: 36px;
  color: var(--color-3);
  font-weight: 700;
  margin: 20px 0px;
  position: relative;
  z-index: 999;
}

.zitat-content {
  padding: 0px 20px;
}

.zitat-autor p {
  color: var(--color-black);
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  letter-spacing: 0.4px;
}

.flex-center {
  justify-content: center;
}

.desktop {
  display: none;
}

.zitat-svg {
  width: 180px;
  height: auto;
  position: relative;
  right: 20px;
  top: 10%;
  z-index: 1;
}

@media (min-width: 768px) {
  .desktop {
    display: block;
  }
  .zitat-svg {
    position: relative;
    right: 240px;
    top: 20%;
    z-index: 1;
  }
  #zitat > .container-fluid {
    margin-bottom: 30px;
  }
  .zitat-image img {
    height: 360px;
  }
  .pb {
    padding: 0px 0px 120px 0px;
  }
  .zitat-text p {
    font-size: 30px;
    line-height: 45px;
  }
  .zitat-autor p {
    margin-bottom: 0px;
  }
  .zitat-svg .zitat-text, .zitat-svg .zitat-autor {
    position: relative;
    top: 100px;
  }
  .zitat-col {
    margin-left: 50px;
    position: relative;
    top: 125px;
  }
  .image-box-zitat {
    left: 80%;
  }
}
form h2 {
  color: var(--color-white);
  font-weight: 600;
  padding: 0px;
}

form {
  background: transparent linear-gradient(180deg, #238338 0%, #238338 0%, var(--color-1) 100%) 0% 0% no-repeat padding-box;
  background-color: var(--color-primary);
  padding: 40px 20px;
}
form .row {
  margin: 30px 0px;
}

form .row .col-12 {
  padding: 0px;
}

.custom-radio {
  margin-right: 17px;
  display: inline-flex;
  font-size: 18px !important;
  align-items: center;
  color: var(--color-white);
}

input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  margin: 0;
  font: inherit;
  width: 15px;
  height: 15px;
  border: 0.15em solid var(--color-white);
  border-radius: 50%;
  margin-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
input[type=radio]:checked {
  border-color: var(--color-white);
  background-color: transparent;
  background-image: none;
}
input[type=radio]:focus {
  outline: none;
  box-shadow: none;
}
input[type=radio]::before {
  content: "";
  transform: scale(0);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  box-shadow: inset 1em 1em var(--form-control-color);
  /* Windows High Contrast Mode */
  background-color: var(--color-white);
}
input[type=radio]:checked::before {
  transform: scale(1);
}

.form-group {
  margin: 15px 0px;
}

.lightbox {
  width: 100%;
  color: var(--color-black);
  border: 2px solid var(--color-white);
  opacity: 0.8;
  background-color: var(--color-white);
  border-radius: 3px;
  padding: 30px;
}

.form-label {
  font-size: 18px;
  letter-spacing: 0.35px;
  margin-bottom: 5px;
}

.form-text {
  display: none;
}

label {
  color: var(--color-white);
}

.form-control {
  border-radius: 3px;
  padding: 15px 12px;
  font-size: 18px;
  margin-bottom: 18px;
  color: var(--color-black);
  border: 2px solid var(--color-white);
  opacity: 0.8;
}
.form-control:focus {
  border: 2px solid var(--color-error);
  box-shadow: none;
}

.form-check {
  margin: 0px;
  padding: 0px;
}

textarea.form-control {
  min-height: 170px;
  opacity: 0.8;
  margin-bottom: 0px;
}

button[type=submit] {
  color: var(--color-white);
  font-size: 18px;
  padding: 15px 30px;
  background-color: var(--color-gray);
  border: 1px solid var(--color-gray);
}
button[type=submit]:hover {
  background-color: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}

.form-navigation {
  padding: 0px;
}

input[type=checkbox] {
  aspect-ratio: 1;
  height: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  margin-top: 3px;
  border: 2px solid var(--color-white);
  border-radius: 3px;
  margin-right: 10px;
}
input[type=checkbox]:checked {
  background-color: transparent;
}
input[type=checkbox]::before {
  content: "";
  display: none;
  transform: scale(0);
  position: relative;
  left: 3px;
  top: 0px;
  width: 5px;
  height: 8px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(43deg);
}

input[type=checkbox]:checked::before {
  display: block;
}

.form-check-label {
  display: inline-flex;
  align-items: baseline;
}
.form-check-label span {
  font-size: 18px !important;
}

@media (min-width: 768px) {
  input[type=checkbox] {
    height: 17px;
    margin-top: 3px;
  }
  input[type=checkbox]::before {
    left: 4px;
    top: 0px;
    width: 6px;
    height: 10px;
  }
  input[type=radio] {
    width: 18px;
    height: 18px;
  }
  input[type=radio]::before {
    width: 8px;
    height: 8px;
  }
  form h2 {
    padding: 0px 12px;
  }
  #formular {
    padding: 0px;
  }
  form {
    border-radius: 3px;
    padding: 80px 200px;
  }
  .input, .form-label, .btn-toolbar {
    padding: 0px 15px;
  }
}
.gallery-item1 img, .gallery-item2 img {
  height: 230px !important;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
}

.img-50-50 .gallery-item1 {
  padding: 0px 0px 6px 0px;
}
.img-50-50 .gallery-item2 {
  padding: 6px 0px 0px 0px;
}

.img-66-33 .gallery-item1 {
  padding: 0px 0px 6px 0px;
}
.img-66-33 .gallery-item2 {
  padding: 6px 0px 0px 0px;
}

.img-33-66 .gallery-item1 {
  padding: 0px 0px 6px 0px;
}
.img-33-66 .gallery-item2 {
  padding: 6px 0px 0px 0px;
}

.parallax {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 500px;
}

@media (min-width: 768px) {
  .gallery-item1 img, .gallery-item2 img {
    height: 50vh !important;
  }
  .img-50-50 .gallery-item1 img, .img-50-50 .gallery-item2 img {
    height: 490px;
    width: 100%;
  }
  .img-50-50 .gallery-item1 {
    padding: 0px 6px 0px 0px;
  }
  .img-50-50 .gallery-item2 {
    padding: 0px 0px 0px 6px;
  }
  .img-66-33 .gallery-item1 img, .img-66-33 .gallery-item2 img {
    height: 490px;
    width: 100%;
  }
  .img-66-33 .gallery-item1 {
    padding: 0px 6px 0px 0px;
  }
  .img-66-33 .gallery-item2 {
    padding: 0px 0px 0px 6px;
  }
  .img-33-66 .gallery-item1 img, .img-33-66 .gallery-item2 img {
    height: 490px !important;
    width: 100%;
  }
  .img-33-66 .gallery-item1 {
    padding: 0px 6px 0px 0px;
  }
  .img-33-66 .gallery-item2 {
    padding: 0px 0px 0px 6px;
  }
  .gallery {
    margin: 0px;
  }
}
#textmedia {
  padding: 0px 10px;
}

.textmedia-col img {
  width: 100%;
  height: 230px;
  border-radius: 30px 0px 30px 0px;
  margin-bottom: 50px;
}
.textmedia-col video {
  width: 100%;
  height: 230px;
  border-radius: 30px 0px 30px 0px;
  margin-bottom: 50px;
}

.textmedia-col {
  padding: 0px 10px;
}

@media (min-width: 768px) {
  #textmedia {
    padding: 0px;
  }
  .textmedia-col img {
    height: 100%;
    margin-bottom: 0px;
  }
  .textmedia-col video {
    height: 100%;
    margin-bottom: 0px;
  }
}
#accordion {
  padding: 0px 20px;
}

.accordion-button-custom p {
  font-size: 18px;
  color: var(--color-black);
  padding: 25px 0px;
  margin: 0px;
  font-weight: 800;
  padding-right: 5px;
}

.accordion {
  border-color: transparent;
}

.accordion-item-custom {
  border-bottom: 1px solid var(--color-gray-2);
}

.accordion-body-custom {
  padding: 0px;
  transition: all 0.3s ease-in-out;
}

.accordion-body {
  padding: 7px 20px;
}

.accordion-button-custom {
  text-decoration: none !important;
  padding: 8px 0px;
}
.accordion-button-custom::after {
  background-image: none;
  height: unset;
  font-size: 36px;
  font-family: "Material Symbols Rounded";
  content: "add_circle";
  overflow: hidden;
  color: var(--color-1);
  width: -moz-fit-content;
  width: fit-content;
  transform: rotate(90deg);
  transition: transform 0.3s ease-in-out;
  font-variation-settings: "FILL" 1;
}
.accordion-button-custom:not(.collapsed)::after {
  background-image: none;
  height: unset;
  font-size: 36px;
  font-family: "Material Symbols Rounded";
  content: "do_not_disturb_on";
  transform: none !important;
  overflow: hidden;
  color: var(--color-1);
  width: -moz-fit-content;
  width: fit-content;
  transform: rotate(90deg);
  transition: transform 0.3s ease-in-out;
  font-variation-settings: "FILL" 1;
}
.accordion-button-custom:not(.collapsed) > p {
  color: var(--color-primary);
  font-weight: 800;
}

@keyframes perspect {
  0% {
    transform: perspective(300px) rotateY(0deg);
  }
  25% {
    transform: perspective(300px) rotateY(90deg);
  }
  50% {
    transform: perspective(300px) rotateY(180deg);
  }
  75% {
    transform: perspective(300px) rotateY(270deg);
  }
  100% {
    transform: perspective(300px) rotateY(360deg);
  }
}
@media (min-width: 768px) {
  .accordion-button-custom {
    text-decoration: none !important;
  }
}
.big-text-image img {
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 280px;
  border-radius: 3px;
}

.big-text-text {
  position: relative;
  bottom: 25px;
}
.big-text-text p {
  color: var(--color-3);
  font-size: 50px;
  line-height: 60px;
  margin-right: 10px;
  font-weight: 800;
}

@media (min-width: 768px) {
  #big-text > .container-fluid {
    margin-bottom: 30px;
  }
  .big-text-image img {
    height: 600px;
  }
  .big-text-text {
    top: 200px;
    right: 50px;
  }
  .big-text-text p {
    font-size: 88px;
    line-height: 100px;
    margin-right: 10px;
  }
  #big-text {
    padding-bottom: 180px;
  }
}
.news-card {
  border-radius: 3px;
  padding: 35px 0px 5px 0px;
  margin-bottom: 50px;
  min-height: unset !important;
}
.news-card .card-body {
  padding: 35px 35px 0px;
}

.news-img-wrap {
  display: none;
}
.news-img-wrap a img {
  height: 150px;
}

.header-news {
  margin-bottom: 200px !important;
}

#header .news-list-date {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 5px;
  color: var(--color-white);
}
#header .news-list-date span {
  font-size: 20px;
  margin-bottom: 2px;
  margin-right: 8px;
  color: var(--color-white);
}

.news-list-date {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 25px;
  color: var(--color-gray);
}
.news-list-date span {
  font-size: 20px;
  margin-bottom: 2px;
  margin-right: 8px;
  color: var(--color-gray);
}

.teaser-text p a.btn-link {
  margin-bottom: 0px !important;
}

.image-box-news {
  width: 45px;
  height: 20px;
  background: var(--color-3);
  border-radius: 2px;
  position: relative;
  bottom: 10px;
  left: 78%;
}

.h3-news {
  color: var(--color-3);
  font-weight: 700;
}

.btn-news {
  background-color: transparent;
  border: 1px solid var(--color-2);
  box-shadow: none;
}
.btn-news a {
  color: var(--color-black);
  text-decoration: none;
}
.btn-news:hover {
  border: 1px solid var(--color-black);
}

.article {
  margin-top: -50px;
  padding: 0px;
}

.mediaelement-image img {
  width: 100%;
  height: 300px;
  border-radius: 3px;
  margin: 0px;
}

.news-single {
  margin-bottom: 50px;
}

.header h2 {
  font-weight: 800;
}

.header-news {
  margin-bottom: 60px;
}

#header > .mediaelement-image img {
  height: 400px;
}

.outer {
  margin-bottom: 30px;
}

.news-text-wrap {
  margin-bottom: 100px;
}

.news-card-body .header h4 {
  margin-bottom: 20px;
}
.news-card-body .teaser-text {
  margin-top: 0px;
}

.view-more-wrap {
  text-align: center;
}

.news-article {
  padding: 0px 20px;
}

@media (min-width: 768px) {
  .news-img-wrap a img {
    height: 250px;
  }
  .news-card .card-body {
    padding: 35px 35px 5px 35px;
  }
  .mediaelement-image img {
    width: 100%;
    height: 450px;
    border-radius: 3px;
    margin: 0px;
  }
}
@media (min-width: 922px) {
  .news-single > .article {
    margin-top: 160px;
  }
}
@media (min-width: 1920px) {
  .header-news {
    margin-bottom: 250px !important;
  }
}
.job-kachel {
  background: transparent linear-gradient(160deg, #238338 0%, #238338 0%, var(--color-1) 100%) 0% 0% no-repeat padding-box;
  padding: 40px 30px;
  border-radius: 30px 0px 30px 0px;
  height: 100%;
  min-height: 250px;
  margin: 0px 20px;
  position: relative;
  top: 0px;
  transition: all 500ms ease;
}
.job-kachel p, .job-kachel a.btn-link, .job-kachel h3, .job-kachel span, .job-kachel h2 {
  color: var(--color-white) !important;
  text-decoration-color: var(--color-white);
}
.job-kachel h3 {
  font-weight: 600;
  margin-bottom: 20px;
}
.job-kachel p {
  margin-bottom: 0px;
}
.job-kachel a.btn-link {
  margin: 0px;
}
.job-kachel:hover {
  position: relative;
  top: -10px;
  transition: all 500ms ease;
}

.job-infos {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}

.jobs-overline {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.jobs-overline span {
  font-size: 20px;
  margin-right: 8px;
  font-weight: 400;
}

.job-hl {
  width: 90%;
}

#jobs .col-12 {
  padding: 0px;
}

@media (min-width: 768px) {
  .job-kachel {
    border-radius: 3px;
    margin: 0px;
  }
  #jobs .col-12 {
    padding: 0px 12px;
  }
}
img.img-clientlogo {
  opacity: 1;
  transition: all 300ms ease-out;
  filter: none;
  -webkit-filter: grayscale(0%) contrast(100%);
  transition: all 300ms ease-out;
}
img.img-clientlogo:hover {
  opacity: 1;
  filter: gray;
  -webkit-filter: grayscale(100%) contrast(80%);
}

.img-clientlogo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fafkunde-wrap {
  width: 100%;
  height: 100%;
  background: var(--color-gray-1);
  border-radius: 3px;
}

#fafkunde {
  padding: 3px;
  height: 15vh;
}

#kunde {
  margin: 0px 20px;
}

@media (min-width: 992px) {
  #fafkunde {
    padding: 5px;
    height: 100%;
  }
}
.card-body-contact, .card-body-contact-full {
  padding: 25px;
  display: block;
  min-height: unset;
}
.card-body-contact h5, .card-body-contact-full h5 {
  font-size: 22px;
  margin-bottom: 5px;
}

.job-title {
  margin-bottom: 45px;
}

#contact {
  padding: 0px 10px;
}

.contact-tel, .contact-mail, .contact-adress {
  display: flex;
  align-items: flex-start !important;
  margin-bottom: 17px;
}
.contact-tel span, .contact-mail span, .contact-adress span {
  margin-right: 20px;
}
.contact-tel a, .contact-mail a, .contact-adress a {
  color: var(--color-black) !important;
  font-weight: 300 !important;
  text-decoration: none !important;
  padding: 0px !important;
  font-size: 16px;
  align-items: flex-start !important;
}
.contact-tel a:before, .contact-mail a:before, .contact-adress a:before {
  color: var(--color-primary) !important;
}

.contact-adress {
  align-items: flex-start;
  margin-bottom: 40px;
  font-weight: 300;
}
.contact-adress span {
  margin-top: 2px;
  color: var(--color-primary);
}

.contact-img {
  height: 235px;
  border-radius: 30px 0px 0px 0px !important;
}

.contact-img-full {
  height: 235px;
}

@media (min-width: 992px) {
  .card-body-contact {
    padding: 25px;
  }
  .card-body-contact h5 {
    font-size: 22px;
    margin-bottom: 5px;
  }
  .card-body-contact-full {
    padding: 35px 10px;
  }
  .card-body-contact-full h5 {
    font-size: 26px;
    margin-bottom: 5px;
  }
  .contact-img {
    height: 235px;
  }
  .contact-img-full {
    height: 100%;
    border-radius: 3px;
    width: 100%;
  }
}
.events-card, .events-card-top {
  border-radius: 3px;
}

.list-group-item {
  border-radius: 3px;
  background: transparent linear-gradient(160deg, #238338 0%, #238338 0%, var(--color-1) 100%) 0% 0% no-repeat padding-box;
  color: var(--color-white);
  padding: 25px 30px;
}
.list-group-item::before {
  content: "";
  width: 0px;
  height: 0px;
}

.event-date, .event-location {
  font-size: 14px;
  display: flex;
  align-items: flex-start;
}
.event-date span, .event-location span {
  font-size: 18px;
  margin-right: 10px;
  margin-top: 5px;
}

.card-body-events {
  padding: 5px 30px 45px;
}
.card-body-events img {
  width: 100%;
  height: 90px;
}

.scroll-container {
  margin-top: 100px;
}

.media-heading {
  font-size: 22px;
  color: var(--color-black);
  text-decoration: none;
}

.event-img {
  opacity: 1;
  transition: all 300ms ease-out;
  filter: gray;
  -webkit-filter: grayscale(100%) contrast(80%);
}
.event-img:hover {
  filter: none;
  -webkit-filter: grayscale(0%) contrast(100%);
  transition: all 300ms ease-out;
}

.event-img-detail {
  width: 100%;
  margin-bottom: 40px;
}

.event-list-wrapper {
  display: inline-flex;
  padding: 0px !important;
}

.event-list-date {
  margin-left: 30px;
}

@media (min-width: 992px) {
  .scroll-container {
    margin-top: 150px;
  }
  .list-group-item {
    height: 100%;
    padding: 25px;
  }
  .event-date, .event-location {
    line-height: 22px;
    margin-bottom: 20px;
  }
  .event-date span, .event-location span {
    font-size: 20px;
    margin-top: 0px;
  }
  .card-body-events {
    padding: 0px;
    padding-left: 35px;
  }
  .card-body-events img {
    width: 100%;
    height: 100%;
  }
  .card-body-events .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .events-card .row {
    height: 100%;
    min-height: 190px;
  }
}
.card-body-standort, .card-body-standort-full {
  padding: 25px;
  display: block;
  min-height: unset;
}

.job-title {
  margin-bottom: 45px;
}

#standort {
  padding: 0px;
}

.card-standort, .card-standort-halb {
  background: transparent linear-gradient(352deg, #F6F6F6 0%, #EDEDED 100%) 0% 0% no-repeat padding-box !important;
  border-radius: 30px 0px 30px 0px;
  padding: 35px 20px;
  min-height: unset;
  top: 0px;
  transition: all 500ms ease;
}
.card-standort:hover, .card-standort-halb:hover {
  top: -10px;
  transition: all 500ms ease;
}

.card-standort-halb {
  padding: 0px;
}
.card-standort-halb img {
  border-radius: 30px 0px 0px;
}

.standort-zeiten {
  display: flex;
  align-items: flex-start !important;
}
.standort-zeiten span {
  margin-top: -3px;
}

.image-box-standort {
  width: 45px;
  height: 20px;
  background: var(--color-3);
  border-radius: 2px;
  position: relative;
  bottom: -10px;
  left: 77%;
  z-index: 9999;
  transition: all 500ms ease;
}

.card-title-standort {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-black);
  margin-bottom: 35px;
}

.standort-zeiten-infos h6 {
  font-size: 18px;
  color: var(--color-black);
  font-weight: 700;
}

.standort-tel, .standort-mail, .standort-adress, .standort-zeiten {
  display: flex;
  align-items: flex-end;
  margin-bottom: 17px;
  color: var(--color-black);
}
.standort-tel span, .standort-mail span, .standort-adress span, .standort-zeiten span {
  margin-right: 20px;
  color: var(--color-primary);
  font-size: 28px;
}
.standort-tel a, .standort-mail a, .standort-adress a, .standort-zeiten a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 300;
  padding: 0px !important;
}
.standort-tel a:before, .standort-mail a:before, .standort-adress a:before, .standort-zeiten a:before {
  color: var(--color-primary);
  font-size: 28px;
}
.standort-tel a[href^="tel:"], .standort-tel a[href^="mailto:"], .standort-tel p, .standort-mail a[href^="tel:"], .standort-mail a[href^="mailto:"], .standort-mail p, .standort-adress a[href^="tel:"], .standort-adress a[href^="mailto:"], .standort-adress p, .standort-zeiten a[href^="tel:"], .standort-zeiten a[href^="mailto:"], .standort-zeiten p {
  font-size: 16px;
  text-decoration: none;
}
.standort-tel a[href^="tel:"]:before, .standort-tel a[href^="mailto:"]:before, .standort-tel p:before, .standort-mail a[href^="tel:"]:before, .standort-mail a[href^="mailto:"]:before, .standort-mail p:before, .standort-adress a[href^="tel:"]:before, .standort-adress a[href^="mailto:"]:before, .standort-adress p:before, .standort-zeiten a[href^="tel:"]:before, .standort-zeiten a[href^="mailto:"]:before, .standort-zeiten p:before {
  margin-right: 20px;
  color: var(--color-primary);
  font-size: 22px;
}

.standort-adress {
  align-items: flex-start;
  margin-bottom: 17px;
  font-weight: 300;
}
.standort-adress span {
  margin-top: 2px;
}

.standort-img {
  height: 235px;
}

.standort-img-full {
  height: 235px;
}

@media (min-width: 992px) {
  .image-box-standort {
    left: 87%;
  }
  .card-body-standort {
    padding: 25px;
  }
  .card-body-standort-full {
    padding: 35px 10px;
  }
  .card-body-standort-full h5 {
    font-size: 26px;
    margin-bottom: 5px;
  }
  .standort-img {
    height: 235px;
  }
  .standort-img-full {
    height: 100%;
    border-radius: 3px;
    width: 250px;
  }
}
:lang(en) a.en, :lang(de) a.de, a.btn-textlink, .nav-item.active, a.menu-info {
  text-decoration: underline;
  text-decoration-color: var(--color-primary);
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}

section {
  position: relative;
  z-index: 999;
}

body {
  color: var(--color-black) !important;
  overflow-x: hidden;
  padding: 0px !important;
}

body.modal-open {
  padding: 0px !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

::-moz-selection {
  color: white !important;
  background-color: var(--color-primary);
  -webkit-text-fill-color: white;
}

::selection {
  color: white !important;
  background-color: var(--color-primary);
  -webkit-text-fill-color: white;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
}

.mobile {
  display: block;
}

.desktop {
  display: none;
}

.wrapper {
  top: 70px;
  margin: 0 auto;
  background-color: var(--color-white);
  padding: 0px;
  position: absolute;
  left: 0px;
  right: 0px;
  overflow: hidden;
}

.wrapper-overlay::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 9999999;
  top: 0px;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.space-small {
  height: 20px;
}

.space-medium {
  height: 40px;
}

.space-large {
  height: 80px;
}

.bg-image::before {
  background-image: url(../Images/background.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  height: 500px;
  position: absolute;
  width: 500px;
  z-index: 0;
  top: 0%;
}

.bg-image-l::before {
  right: 0;
}

.bg-image-r::before {
  left: 0;
}

.bg-primary {
  background: transparent linear-gradient(160deg, #238338 0%, #238338 0%, var(--color-1) 100%) 0% 0% no-repeat padding-box !important;
  padding: 70px 0px 30px 0px;
}

.bg-secondary {
  background-color: var(--color-black) !important;
  padding-top: 30px !important;
}
.bg-secondary p, .bg-secondary ul, .bg-secondary ol, .bg-secondary h1, .bg-secondary .h1, .bg-secondary h2, .bg-secondary .h2, .bg-secondary h3, .bg-secondary .h3, .bg-secondary h4, .bg-secondary .h4, .bg-secondary .external-link {
  color: var(--color-white);
}

.bg-tertiary {
  background-color: var(--color-tertiary);
  padding-top: 30px !important;
}
.bg-tertiary p, .bg-tertiary ul, .bg-tertiary ol, .bg-tertiary h1, .bg-tertiary .h1, .bg-tertiary h2, .bg-tertiary .h2, .bg-tertiary h3, .bg-tertiary .h3, .bg-tertiary h4, .bg-tertiary .h4, .bg-tertiary .external-link, .bg-tertiary .btn-link, .bg-tertiary a {
  color: var(--color-white);
}

.frame-default {
  position: relative;
  z-index: 9999;
}

.row {
  position: relative;
}

ul ul {
  list-style-type: none;
}

ul li::before {
  content: "+";
  display: block;
  width: 18px;
  height: 18px;
  position: relative;
  left: -20px;
  top: 18px;
  color: var(--color-primary);
  font-weight: bold;
}

ul li ul li::before {
  content: " ";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: relative;
  left: -17px;
  top: 16px;
  background: var(--color-black);
}

li {
  list-style-type: none;
}

ol li::marker {
  content: counters(list-item, ".") ". ";
  counter-increment: item;
}

.desktop {
  display: none;
}

.lang-overlay {
  display: none;
  background-color: var(--color-white);
  position: absolute;
  bottom: 60px;
  left: 0px;
  padding: 20px 15px;
  margin: 0px 20px;
  width: 80%;
  font-weight: 600;
  font-size: 18px;
}
.lang-overlay::before {
  content: " ";
  position: Absolute;
  width: 0;
  height: 0;
  left: 15px;
  bottom: -14px;
  border-left: 12px Solid Transparent;
  border-right: 12px Solid Transparent;
  border-top: 15px Solid var(--color-white);
}
.lang-overlay span.material-symbols-outlined {
  color: var(--color-black);
  position: relative;
  bottom: 10%;
  left: 15%;
}
.lang-overlay ul {
  padding: 0px;
  margin-top: 15px;
}
.lang-overlay ul li {
  font-weight: 400;
  font-size: 18px;
  list-style-type: none;
}
.lang-overlay ul li::before {
  display: none;
}
.lang-overlay ul li a {
  color: var(--color-black) !important;
  text-decoration: none;
}

.col-lang {
  height: 0px;
  display: flex;
}

.lang-title {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  font-size: 18px;
}

:lang(de) a.en {
  text-decoration: none;
}

:lang(en) a.de {
  text-decoration: none;
}

a[href^="tel:"], a[href^="mailto:"] {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-flex !important;
  text-decoration: underline;
  text-decoration-color: var(--color-primary);
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
  color: var(--color-black);
  align-items: center;
  padding: 15px 22px;
}
a[href^="tel:"]::before, a[href^="mailto:"]::before {
  font-family: "Material Symbols Rounded";
  position: relative;
  overflow: hidden;
  color: var(--color-black);
  width: -moz-fit-content;
  width: fit-content;
  font-variation-settings: "FILL" 0;
  font-size: 20px;
  margin-right: 15px;
  font-weight: 300;
  display: flex;
}

a[href^="tel:"]::before {
  content: "phone_in_talk";
}

a[href^="mailto:"]::before {
  content: "mail";
}

.tx-maps2 {
  position: relative;
  top: 130px;
}

#textonly {
  padding: 0px 20px;
}

@media (min-width: 768px) {
  .bg-image::before {
    height: 1000px;
    width: 100%;
    background-position: right center;
  }
  .lang-overlay {
    display: none;
    position: relative;
    background-color: var(--color-white);
    color: var(--color-black);
    bottom: 150px;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 600;
    font-size: 18px;
    z-index: 99999;
    height: 175px;
  }
  .lang-overlay::before {
    content: " ";
    position: Absolute;
    width: 0;
    height: 0;
    left: 80%;
    bottom: -14px;
    border-left: 12px Solid Transparent;
    border-right: 12px Solid Transparent;
    border-top: 15px Solid var(--color-white);
  }
  .lang-overlay span.material-symbols-outlined {
    color: var(--color-black);
    position: absolute;
    left: 85%;
    top: 0;
    width: -moz-fit-content;
    width: fit-content;
  }
  .lang-overlay span.material-symbols-outlined:hover {
    cursor: pointer;
  }
  .lang-overlay ul {
    padding: 0px;
    margin-top: 25px;
  }
  .lang-overlay ul li {
    font-weight: 400;
    font-size: 18px;
    list-style-type: none;
    text-align: left;
    color: var(--color-black);
  }
  .lang-overlay ul li::before {
    display: none;
  }
  .lang-overlay ul li a {
    color: var(--color-black);
    text-decoration: none;
  }
  .lang-wrap:hover {
    cursor: pointer;
  }
}
@media (min-width: 992px) {
  .space-small {
    height: 20px;
  }
  .space-medium {
    height: 60px;
  }
  .space-large {
    height: 150px;
  }
  #textonly {
    padding: 0px;
  }
  .wrapper {
    top: 90px;
  }
  .wrapper.with-meta-nav {
    top: 145px;
  }
  .desktop {
    display: block;
  }
  .mobile {
    display: none;
  }
}
@media (min-width: 2560px) {
  .container {
    max-width: 1680px;
  }
}/*# sourceMappingURL=base.css.map */