@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat";
  font-weight: 700;
  line-height: 1.2;
  margin: 10px 0 10px 0;
  color: #70a683;
}

h1 {
  font-size: 3rem;
  line-height: 1.1;
}
@media (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }
}

.breaker {
  display: block;
  height: 1px;
}
@media (max-width: 992px) {
  .breaker {
    display: none;
  }
}

.break {
  display: none;
}
@media (max-width: 992px) {
  .break {
    display: block;
    height: 1px;
  }
}

.text-right {
  text-align: right;
}
@media (max-width: 992px) {
  .text-right {
    text-align: left;
  }
}

.headline-box {
  background: #f4f4f4;
  padding: 20px 30px;
  margin-bottom: 20px;
  position: relative;
  margin-bottom: 70px;
  display: none;
}
@media (max-width: 992px) {
  .headline-box {
    padding: 20px 20px;
  }
}
.headline-box:after {
  position: absolute;
  left: 49.5%;
  bottom: -30px;
  display: block;
  content: "";
  width: 1px;
  height: 50px;
  background: #94959a;
  transform: rotate(25deg);
}
@media (max-width: 992px) {
  .headline-box:after {
    left: 49%;
  }
}
.headline-box:before {
  position: absolute;
  left: 50.5%;
  bottom: -30px;
  display: block;
  content: "";
  width: 1px;
  height: 50px;
  background: #70a683;
  transform: rotate(25deg);
}
@media (max-width: 992px) {
  .headline-box:before {
    left: 51%;
  }
}
.headline-box h1 span {
  color: #c8c8c8;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-left: 5px;
}
@media (max-width: 992px) {
  .headline-box h1 span {
    font-size: 1.4rem;
  }
}

.c-green {
  color: #70a683;
}

.c-grey01 {
  color: #3e3d40;
}

a {
  text-decoration: none;
  transition: all 300ms ease;
  color: #000;
}

.info-txt {
  font-size: 140%;
  text-align: center;
}
@media (max-width: 992px) {
  .info-txt {
    max-width: 80%;
    margin: 0 auto;
    text-align: left;
    max-width: 88%;
  }
}

.content-ul {
  margin: 30px 0;
}
.content-ul li {
  margin: 15px 0;
  position: relative;
  padding-left: 30px;
  list-style-type: none;
}
.content-ul li:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -15px;
  top: -5px;
  width: 35px;
  height: 35px;
  background-image: url(../img/icon-blitz-gruen.svg);
  background-position: center center;
  background-size: 70%;
  background-repeat: no-repeat;
  text-align: center;
  line-height: 35px;
}

.btn-std a {
  display: flex;
  margin: 15px 0;
  padding: 15px 0px;
  transition: all 300ms ease;
  position: relative;
  justify-content: start;
  align-self: center;
}
.btn-std a .txt {
  line-height: 1;
  align-self: center;
  padding-right: 10px;
  text-transform: uppercase;
  font-weight: 700;
  color: #70a683;
}
.btn-std a .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../img/icon-arrow-right-gruen.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 35%;
}
.btn-std a small {
  display: block;
  font-size: 75%;
  transition: all 300ms ease;
}
.btn-std a:hover {
  opacity: 0.7;
}

.btn-white a .txt {
  color: #fff;
}
.btn-white a .icon {
  background-image: url(../img/icon-arrow-right-weiss.svg) !important;
}

.btn-green-rounded a {
  margin-top: 40px;
  border: 2px solid #70a683;
  max-width: 320px;
  border-radius: 3rem;
  display: flex;
  justify-content: center;
  transition: all 300ms ease;
}
.btn-green-rounded a:hover {
  background: #70a683;
}
.btn-green-rounded a:hover .txt {
  color: #fff;
}
.btn-green-rounded a:hover .icon {
  background-image: url(../img/icon-arrow-right-weiss.svg) !important;
}

.btn-center {
  margin: 0 auto;
}
.btn-center a {
  margin: 0 auto;
  justify-content: center;
  min-width: 250px;
}

.bg-box {
  background: #70a683;
  color: #fff !important;
}
.bg-box h1,
.bg-box h2,
.bg-box h3,
.bg-box h4,
.bg-box h5,
.bg-box h6 {
  color: #fff;
}

.img-margin-20px {
  display: block;
  max-width: 100%;
  margin: 20px 0;
  border-radius: 1rem;
}

.img-margin-20px-auto {
  display: block;
  max-width: 100%;
  margin: 20px auto 20px auto;
  border-radius: 1rem;
}

.img-margin-auto {
  display: block;
  max-width: 100%;
  margin: 20px auto 0 auto;
  border-radius: 1rem;
}

.img-margin-auto-xl {
  display: block;
  margin: 60px auto 0 auto;
}
@media (max-width: 992px) {
  .img-margin-auto-xl {
    margin: 25px auto;
  }
}

.img-right {
  margin: 25px 0 0 auto;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .img-right {
    margin: 25px auto;
  }
}

.img-20px {
  display: block;
  max-width: 100%;
  margin: 20px 0;
}

.no-border-radius {
  border-radius: 0;
}

.padding-t-s {
  padding-top: 50px;
}
@media (max-width: 768px) {
  .padding-t-s {
    padding-top: 50px;
  }
}

.padding-t-m {
  padding-top: 100px;
}
@media (max-width: 768px) {
  .padding-t-m {
    padding-top: 50px;
  }
}

.padding-t-l {
  padding-top: 150px;
}
@media (max-width: 768px) {
  .padding-t-l {
    padding-top: 50px;
  }
}

.padding-t-xl {
  padding-top: 200px;
}
@media (max-width: 768px) {
  .padding-t-xl {
    padding-top: 50px;
  }
}

.padding-b-s {
  padding-bottom: 50px;
}

.padding-b-m {
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .padding-b-m {
    padding-bottom: 50px;
  }
}

.padding-b-l {
  padding-bottom: 150px;
}
@media (max-width: 768px) {
  .padding-b-l {
    padding-bottom: 50px;
  }
}

.padding-b-xl {
  padding-bottom: 200px;
}
@media (max-width: 768px) {
  .padding-b-xl {
    padding-bottom: 50px;
  }
}

.padding-tb-s {
  padding-top: 50px;
  padding-bottom: 50px;
}

.padding-tb-m {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .padding-tb-m {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.padding-tb-l {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 768px) {
  .padding-tb-l {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.padding-tb-xl {
  padding-top: 200px;
  padding-bottom: 200px;
}
@media (max-width: 768px) {
  .padding-tb-xl {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.margin-t-s {
  margin-top: 50px;
}

.margin-t-m {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .margin-t-m {
    margin-top: 50px;
  }
}

.margin-t-l {
  margin-top: 150px;
}
@media (max-width: 768px) {
  .margin-t-l {
    margin-top: 50px;
  }
}

.margin-t-xl {
  margin-top: 200px;
}
@media (max-width: 768px) {
  .margin-t-xl {
    margin-top: 50px;
  }
}

.margin-b-s {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .margin-b-s {
    margin-bottom: 50px;
  }
}

.margin-b-m {
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .margin-b-m {
    margin-bottom: 50px;
  }
}

.margin-b-l {
  margin-bottom: 150px;
}
@media (max-width: 768px) {
  .margin-b-l {
    margin-bottom: 50px;
  }
}

.margin-b-xl {
  margin-bottom: 200px;
}
@media (max-width: 768px) {
  .margin-b-xl {
    margin-bottom: 50px;
  }
}

.margin-tb-s {
  margin-top: 50px;
  margin-bottom: 50px;
}

.margin-tb-m {
  margin-top: 100px;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .margin-tb-m {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

.margin-tb-l {
  margin-top: 150px;
  margin-bottom: 150px;
}
@media (max-width: 768px) {
  .margin-tb-l {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

.margin-tb-xl {
  margin-top: 200px;
  margin-bottom: 200px;
}
@media (max-width: 768px) {
  .margin-tb-xl {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

.video-box {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}
.video-box video,
.video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

ol {
  list-style-type: none;
  counter-reset: ol-list;
}
ol li {
  margin: 25px 0;
  position: relative;
  padding-left: 30px;
}
ol li:before {
  counter-increment: ol-list;
  content: counter(ol-list);
  display: inline-block;
  position: absolute;
  left: -15px;
  top: -5px;
  border: 1px solid #000;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
}
ol li strong {
  display: block;
}

header {
  display: block;
  padding: 30px 0;
}
@media (max-width: 992px) {
  header {
    padding: 30px 0;
    margin-bottom: 0;
  }
}
@media (max-width: 992px) {
  header {
    padding: 20px 0;
  }
}
header .logo-box {
  display: flex;
  margin-left: 20px;
}
@media (max-width: 576px) {
  header .logo-box {
    margin-left: 10px;
  }
}
@media (min-width: 1580px) {
  header .logo-box {
    position: relative;
    left: -30px;
  }
}
header .logo-box a {
  display: block;
}
header .logo-box img {
  display: block;
  width: 220px;
}
@media (max-width: 992px) {
  header .logo-box img {
    width: 180px;
  }
}
header .header-navi-desktop {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (min-width: 1580px) {
  header .header-navi-desktop {
    position: relative;
    right: -30px;
  }
}
header .header-navi-desktop ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-right: 15px;
}
@media (max-width: 1024px) {
  header .header-navi-desktop ul {
    display: none;
  }
}
header .header-navi-desktop ul li {
  display: inline-block;
  margin-right: 25px;
}
header .header-navi-desktop ul li a {
  display: inline-block;
  color: #70a683;
  text-transform: uppercase;
  font-weight: 700;
}
header .header-navi-desktop ul li a span {
  display: inline-block;
  padding: 5px 0;
}
header .header-navi-desktop ul li a:hover {
  opacity: 0.7;
}
header .header-navi-desktop ul li .active span {
  border-bottom: 2px solid #70a683;
}
header .header-navi-desktop #sidenav-toggler {
  display: block;
  width: 60px;
  height: 55px;
  margin-right: 5px;
  border: 0;
  color: #70a683;
  background: none;
}
header .header-navi-desktop #sidenav-toggler span {
  font-family: "Arial", "Helvetica", "sans-serif";
}
header .header-navi-desktop #sidenav-toggler .icon-open,
header .header-navi-desktop #sidenav-toggler .icon-close,
header .header-navi-desktop #sidenav-toggler .icon-start {
  font-size: 3rem;
  transition: all 300ms ease;
  line-height: 1;
  display: inline-block;
  position: relative;
  top: -7px;
}
header .header-navi-desktop #sidenav-toggler .icon-start {
  position: relative;
}
header .header-navi-desktop #sidenav-toggler .icon-start img {
  width: 40px;
}
header .header-navi-desktop #sidenav-toggler .icon-open {
  position: relative;
  top: 0px;
  animation: iconOpen 500ms;
}
@keyframes iconOpen {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
header .header-navi-desktop #sidenav-toggler .icon-close {
  font-size: 2.2rem;
  position: relative;
  top: 0px;
  animation: iconClose 500ms;
}
@keyframes iconClose {
  0% {
    transform: scale(0) rotate(0deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
}

#sidenav-toggler-navi {
  display: none;
}
@media (max-width: 576px) {
  #sidenav-toggler-navi {
    display: flex;
    margin: 0 auto;
    padding: 20px 10px;
    border: 0;
    width: 100%;
    background: none;
    justify-content: center;
    position: absolute;
    top: 0px;
    color: #fff;
  }
  #sidenav-toggler-navi span {
    display: inline-block;
    align-self: center;
    text-transform: uppercase;
  }
  #sidenav-toggler-navi i {
    margin-left: 15px;
    display: inline-block;
    align-self: center;
    font-style: normal;
    font-size: 20px;
    position: relative;
    top: -1px;
  }
  #sidenav-toggler-navi:hover {
    color: #3e3d40;
  }
}

#sitebar-inner {
  transition: all 300ms ease;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 576px) {
  #sitebar-inner {
    transform: translateY(-55%);
  }
}
#sitebar-inner .sitebar-header {
  position: sticky;
  left: 0;
  top: 0;
  z-index: 100;
  padding: 15px 0 40px 0;
}
@media (max-width: 576px) {
  #sitebar-inner .sitebar-header {
    padding: 15px 0 15px 0;
  }
}
#sitebar-inner .sitebar-header img {
  display: block;
  max-width: 160px;
  margin: 25px auto 25px;
}
#sitebar-inner .sitebar-header h3 {
  text-align: center;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #000;
}
#sitebar-inner .navigation-outer {
  list-style-type: none;
  padding: 0;
  margin: 0;
  max-width: 80%;
  margin: 0 auto;
}
#sitebar-inner .navigation-outer li:after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: #fff;
  margin: 5px auto;
}
#sitebar-inner .navigation-outer li:last-child {
  border-bottom: 0;
}
#sitebar-inner .navigation-outer li:last-child:after {
  display: none;
}
#sitebar-inner .navigation-outer li a {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 15px 15px;
  transition: all 300ms ease;
  position: relative;
  text-align: center;
}
#sitebar-inner .navigation-outer li a:before {
  content: "";
  display: block;
  width: 5px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  transition: all 300ms ease;
  display: none;
}
#sitebar-inner .navigation-outer li a:hover {
  letter-spacing: 2px;
  color: #3e3d40;
}
#sitebar-inner .navigation-outer li .active {
  font-weight: 700;
}
#sitebar-inner .navigation-outer li .active:hover {
  background: none;
  color: #fff;
  letter-spacing: 0;
}

#backtotop {
  display: none;
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: rgba(112, 166, 131, 0.7);
  color: white;
  padding: 10px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border: 0;
  transition: all 300ms ease;
  z-index: 9997;
  overflow: hidden;
  transform: rotate(45deg);
}
#backtotop span {
  width: 25px;
  height: 25px;
  display: inline-block;
  background-image: url(../img/icon-arrow-right-weiss.svg);
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  left: -3px;
  top: -3px;
  transform: rotate(-135deg);
  transition: all 300ms ease;
}
#backtotop:hover {
  opacity: 0.7;
}
#backtotop.show {
  display: block;
}

footer {
  position: relative;
  background: #3e3d40;
  padding: 50px 0 60px 0;
  margin-top: 0px;
  color: #fff;
}
footer .footer-symb {
  width: 100%;
  position: absolute;
  top: -29px;
  left: 0;
  text-align: center;
}
footer .footer-symb span {
  display: inline-block;
  background: #fff;
  padding: 12px;
  transform: rotate(45deg);
  position: relative;
}
footer .footer-symb span:before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1;
}
footer .footer-symb span:after {
  content: "";
  display: block;
  position: absolute;
  left: -5px;
  top: -5px;
  width: 100%;
  height: 100%;
  border-top: 1px solid #70a683;
  border-left: 1px solid #70a683;
  z-index: -1;
}
footer .footer-symb span img {
  width: 25px;
  transform: rotate(-45deg);
  position: relative;
  z-index: 2;
}
footer .firma-box {
  margin-top: 30px;
}
footer .firma-box .name {
  font-weight: 700;
  font-size: 1.8rem;
}
footer .firma-box .name span {
  display: inline-block;
}
footer .firma-box .slogan {
  font-style: italic;
  margin-top: 3px;
  font-size: 110%;
}
footer .oeffnugnszeiten {
  margin-top: 30px;
}
footer .oeffnugnszeiten h3 {
  font-size: 1.8rem;
}
footer .oeffnugnszeiten .oeffnungs-box {
  display: flex;
  margin: 5px 0;
  justify-content: start;
}
@media (max-width: 576px) {
  footer .oeffnugnszeiten .oeffnungs-box {
    display: block;
    margin-bottom: 20px;
  }
}
footer .oeffnugnszeiten .oeffnungs-box .tag {
  min-width: 200px;
  text-align: left;
}
@media (max-width: 576px) {
  footer .oeffnugnszeiten .oeffnungs-box .tag {
    min-width: 100%;
    display: block;
  }
}
footer .oeffnugnszeiten .oeffnungs-box .zeit {
  font-weight: 600;
}
footer ul {
  padding: 0;
  margin-top: 20px;
}
footer ul li {
  list-style-type: none;
}
footer ul li a {
  display: block;
  color: #fff;
  padding: 10px 0px;
}
footer ul li a:hover {
  color: #70a683;
}
footer .kontakt-links li:after,
footer .footer-navi li:after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  margin: 5px 0;
  background: #fff;
}
footer .kontakt-links li:last-child:after,
footer .footer-navi li:last-child:after {
  display: none;
}

.copyright {
  font-size: 90%;
}

input,
button {
  -webkit-appearance: none; /* Entfernt iOS Standardstyles */
  -moz-appearance: none;
  appearance: none;
  outline: none; /* Optional: entfernt den Fokus-Rahmen */
}

body,
html {
  font-family: "Montserrat";
  color: #3e3d40;
}

.not-found-page {
  text-align: center;
  padding: 100px 0 30px 0;
}
.not-found-page img {
  display: block;
  max-width: 200px;
  margin: 0 auto 100px auto;
}
.not-found-page .txt {
  position: relative;
  top: -50px;
  font-size: 200%;
  line-height: 1;
}
.not-found-page .txt span {
  display: block;
  font-size: 400%;
  font-weight: 700;
}

.wrapper {
  overflow-x: hidden;
}
.wrapper .container-custom {
  max-width: 1580px;
  margin-left: auto;
  margin-right: auto;
}
.wrapper #sitebar {
  position: fixed;
  width: 350px;
  height: 100vh;
  left: -350px;
  transition: all 300ms ease;
  overflow-x: hidden;
  z-index: 9998;
  position: fixed;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background: #70a683;
}
@media (max-width: 576px) {
  .wrapper #sitebar {
    width: 100%;
    left: -100%;
  }
}
.wrapper .open-sidenav {
  left: 0 !important;
}

.content-img-box .col-lg-6 {
  padding: 0;
}
.content-img-box .img-outer-box {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
.content-img-box .height-box {
  height: 600px;
}
@media (max-width: 768px) {
  .content-img-box .height-box {
    height: 300px;
  }
}
.content-img-box .height-box .inner-height-txt-box {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding: 5% 10%;
}
@media (max-width: 992px) {
  .content-img-box .height-box .inner-height-txt-box {
    top: 0;
    transform: translateY(0%);
    padding: 5% 5% 5% 8%;
  }
}
@media (max-width: 992px) {
  .content-img-box .height-box-auto-lg {
    height: auto;
  }
}
.content-img-box .content-ul li {
  font-weight: 700;
  color: #70a683;
  font-size: 1.5rem;
}
@media (max-width: 992px) {
  .content-img-box .content-ul li {
    font-size: 1.3rem;
  }
}
.content-img-box .content-ul li:before {
  top: 3px;
}

.row-col-no-padding [class^=col-] {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 992px) {
  .row-col-no-padding [class^=col-] {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }
}

.kontakt-content .firma-box {
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 992px) {
  .kontakt-content .firma-box {
    text-align: center;
  }
}
.kontakt-content .firma-box .name {
  font-weight: 700;
  font-size: 1.8rem;
}
.kontakt-content .firma-box .name span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
}
.kontakt-content .firma-box .adresse-etc {
  margin-top: 15px;
}
.kontakt-content .firma-box .adresse-etc p {
  margin: 3px 0;
}
.kontakt-content .firma-box .adresse-etc p a {
  display: block;
  transition: all 300ms ease;
}
.kontakt-content .firma-box .adresse-etc p a:hover {
  color: #70a683;
}
.kontakt-content .firma-box .slogan {
  font-style: italic;
  margin-top: 15px;
  font-size: 110%;
}
.kontakt-content .oeffnugnszeiten {
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 992px) {
  .kontakt-content .oeffnugnszeiten {
    margin-bottom: 50px;
    text-align: center;
  }
}
.kontakt-content .oeffnugnszeiten h3 {
  font-size: 1.8rem;
}
.kontakt-content .oeffnugnszeiten .oeffnungs-box {
  display: flex;
  margin: 5px 0;
  justify-content: center;
}
@media (max-width: 576px) {
  .kontakt-content .oeffnugnszeiten .oeffnungs-box {
    display: block;
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .kontakt-content .oeffnugnszeiten .oeffnungs-box {
    justify-content: center;
  }
}
.kontakt-content .oeffnugnszeiten .oeffnungs-box .tag {
  min-width: 200px;
  text-align: left;
}
@media (max-width: 992px) {
  .kontakt-content .oeffnugnszeiten .oeffnungs-box .tag {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .kontakt-content .oeffnugnszeiten .oeffnungs-box .tag {
    min-width: 100%;
    display: block;
  }
}
.kontakt-content .oeffnugnszeiten .oeffnungs-box .zeit {
  font-weight: 600;
}
.kontakt-content #map {
  width: 100%;
  height: 600px;
  margin: 50px auto 0 auto;
}
@media (max-width: 576px) {
  .kontakt-content #map {
    height: 300px;
  }
}

#vacation-outer {
  position: fixed;
  z-index: 10000000;
  width: 100vw;
  height: 100vh;
  background-color: #70a683;
  background-color: rgba(62, 61, 64, 0.8);
}
#vacation-outer:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0;
  background-image: url(../img/icon-blitz-weiss.svg);
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.1;
  display: none;
}
@media (max-width: 576px) {
  #vacation-outer:before {
    background-size: cover;
  }
}
#vacation-outer .vacation-inner {
  background: #70a683;
  max-width: 700px;
  max-height: 100%;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: zoomInLoginLogo 1200ms ease-in-out;
  animation-fill-mode: forwards;
}
@keyframes zoomInLoginLogo {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@media (max-width: 700px) {
  #vacation-outer .vacation-inner {
    max-width: 90%;
  }
}
#vacation-outer .vacation-inner #close-vacation {
  position: absolute;
  right: 30px;
  top: -30px;
  background: #3e3d40;
  color: #fff;
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
}
#vacation-outer .vacation-inner #close-vacation span {
  align-self: center;
  display: inline-block;
}
#vacation-outer .vacation-inner #close-vacation .symb {
  display: inline-block;
  font-size: 20px;
  margin-left: 10px;
  transition: all 300ms ease;
}
#vacation-outer .vacation-inner #close-vacation:hover .symb {
  transform: rotate(360deg);
}
#vacation-outer .vacation-inner .txt-box {
  padding: 30px 50px;
}
@media (max-width: 576px) {
  #vacation-outer .vacation-inner .txt-box {
    padding: 50px 30px;
  }
}
#vacation-outer .vacation-inner .txt-box h1 {
  color: #fff;
  margin-bottom: 0px;
}
#vacation-outer .vacation-inner .txt-box .termin {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.1;
}
#vacation-outer .vacation-inner .txt-box .termin span {
  display: inline-block;
}
#vacation-outer .vacation-inner .txt-box .termin span:before, #vacation-outer .vacation-inner .txt-box .termin span:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #3e3d40;
  margin: 10px 0;
}

.leaflet-popup {
  border-radius: none;
}
.leaflet-popup .leaflet-popup-content-wrapper {
  border-radius: 0 !important;
}
.leaflet-popup .leaflet-popup-content span {
  display: block;
  font-weight: 900;
  color: #70a683;
  margin-bottom: 5px;
}
.leaflet-popup .leaflet-popup-close-button {
  top: 4px !important;
  right: 5px !important;
}
.content-impressum {
  padding-bottom: 70px;
}
.content-impressum .col-lg-8 {
  text-align: center;
}
.content-impressum h3 {
  margin-top: 25px;
}
.content-impressum p {
  font-size: 110%;
  margin-bottom: 15px;
}
.content-impressum p a {
  display: inline-block;
  transition: all 300ms ease;
}
.content-impressum p a:hover {
  color: #70a683;
}

.content-agb {
  padding-bottom: 80px;
}
.content-agb p span {
  display: inline-block;
  font-weight: 700;
  color: #70a683;
}

.row-custom-symb {
  position: relative;
}
.row-custom-symb .content-symb {
  width: 100%;
  position: absolute;
  bottom: -29px;
  left: 0;
  text-align: center;
  z-index: 100;
}
.row-custom-symb .content-symb span {
  display: inline-block;
  background: #fff;
  padding: 12px;
  transform: rotate(45deg);
  position: relative;
  z-index: 100;
}
.row-custom-symb .content-symb span:before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1;
}
.row-custom-symb .content-symb span:after {
  content: "";
  display: block;
  position: absolute;
  left: -5px;
  top: -5px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.row-custom-symb .content-symb span img {
  width: 25px;
  transform: rotate(-45deg);
  position: relative;
  z-index: 2;
}

.row-z-index {
  position: relative;
  z-index: -1;
}

/*# sourceMappingURL=style.css.map */
