/* Grundfarben */
:root {
  --hauptfarbe: 101, 99, 101; /* m-grau */
  --rot: 227, 6, 19;
  --gruen: 21, 171 ,80; /* wie im Grünen Kreuz */
  --weiss: 255, 255, 255;
  --h-grau: 178, 177, 167;
  --m-grau: 101, 99, 101;
  --d-grau: 49, 47, 50;
  --xh-grau: 209, 208, 202;
  --test: 0, 255, 0;
}
.cls-1{fill:rgba(var(--rot));}
.cls-2{
  fill:rgba(var(--hauptfarbe));
}

/* Dom (alt) Background: #ededed */
/* Anwendungsschema: xyz { color: rgb(var(--hauptfarbe)); } */


/* Footer unten festnageln  */

html, body {
  height: 100%;
  min-height: 100vh;
}
body {
  display: flex;
  flex-direction: column;
}
#main {
  margin-bottom: auto;
}
#footer {
  flex-shrink: 0;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/


body {
  font-family: 'Inter', 'Courier', sans-serif;
  font-size-adjust:
  color: rgba(var(--dunkelgrau));
}

a {
  color: rgba(var(--rot));
  text-decoration: none;
}

a:hover {
  color: rgba(var(--rot), .3);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', 'Courier', sans-serif;
  color: rgba(var(--hauptfarbe));
}
.dunkel h2, .dunkel h3, .dunkel h4, .dunkel h5, .dunkel h6 {
  color: rgba(var(--xh-grau));
}

p, li {
  hyphens: auto;
  -webkit-hyphens: auto;
  /* font-size: 1.1rem; */
  /* line-height: 1.4em; */
}
a {
  hyphens: manual;
  -webkit-hyphens: manual;
}

p em {
  font-weight: 600;
}
strong {
  font-weight: 600;
}

table td {
  vertical-align: top;
}
table tr td:first-child {
  padding-right: .5em!important;
}

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

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

.back-to-top:hover {
  background: rgba(var(--rot), .5);
  color: #fff;
}

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

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


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg, .streifen:nth-of-type(odd) {
  background-color: rgba(var(--xh-grau), .15);
}
.dunkel {
  background-color: rgba(var(--d-grau));
}

.section-title {
  /* padding-bottom: 30px; */
}
.section-title h1 {
  color: rgba(var(--rot));
  font-size: 2.5rem;
  font-weight: 600;
}
@media (max-width: 992px) {
  .section-title h1 {

  }
}
@media (max-width: 567px) {
  .section-title h1 {
    font-size: 2rem;
  }
}
@media (max-width: 420px) {
  .section-title h1 {
    font-size: 1.5rem;
  }
}
@media (max-width: 240px) {
  .section-title h1 {
    font-size: 1.2rem;
  }
}

.intro .section-title h3 {
  font-size: 1.5rem;
  color: rgba(var(--hauptfarbe));
  text-transform: uppercase;
  letter-spacing: .15rem;
}
.section-title h2 {
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15rem;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: rgba(var(--hauptfarbe));
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: rgba(var(--rot));
  bottom: 0;
  left: 0;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# marken
--------------------------------------------------------------*/
.marken {
  background: rgba(var(--xh-grau), .5);
  text-align: center;
  padding: 5px 0;
}
.marken .row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.marken .row div {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.marken img {
  width: 40%;
  /* filter: grayscale(100); */
  transition: all 0.4s ease-in-out;
  padding: 15px 0;
}

.marken img:hover {
  filter: none;
  transform: scale(1.1);
}

.marken-slider {
  height: 3rem;
}
.swiper, .swiper .swiper-wrapper {
  object-fit: contain!important;
}
.marken-slider .swiper-slide {
  width: fit-content;
  display: flex;
}
.marken-slider .swiper-slide img {
  padding: 0;
  margin: 0!important;
}
.swiper-slide img.marken-svg {
  height: 3rem;
}
.swiper-slide img.marken-bitmap {
  max-height: 3rem;
  width: auto;
}
.marken-slider .swiper-slide img:hover {
  filter: none;
}
.swiper-free-mode > .swiper-wrapper{
  /* transition-timing-function:ease-in-out; */
  transition-timing-function: linear;
}

.swiper-fade.swiper-free-mode .swiper-slide{
  transition-timing-function: linear;
}

img.marken-swiper {
  height: 100%;
  object-fit: contain!important;
}
@media (max-width: 992px) {
  img.marken-swiper {
    max-width: 100%!important;
  }
}
.kosmetik-kachel {
  display: flex;
  align-content: center;
  justify-content: space-around;
  position: relative;
  max-height: 100%;
  overflow: hidden;
  padding: 0!important;
  /* margin: 0!important; */
}
.kosmetik-kachel img {
  /* position: absolute; */
}
.quadrat {
  aspect-ratio: 1/1;
  overflow: hidden;
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}
.neukundenrabatt {
  display: flex;
  align-content: center;
  justify-content: space-around;
  padding: 0!important;
  background-color: rgba(var(--rot), 0)!important;
  width: 100%;
  position: relative;
  bottom: -6rem;
}
.neukundenrabatt-icon {
  width: 75%;
  position: relative;
  bottom: 6rem;"
}
@media (max-width: 1400px) {
  .neukundenrabatt {
    bottom: -9rem;
  }
  .neukundenrabatt-icon {
    width: 75%;
    position: relative;
    bottom: 4rem;"
  }
}
@media (max-width: 1200px) {
  .neukundenrabatt {
    bottom: -11rem;
  }
  .neukundenrabatt-icon {
    width: 75%;
    position: relative;
    bottom: 3rem;"
  }
}
@media (max-width: 992px) {
  .neukundenrabatt {
    bottom: -5rem;
  }
  div:has(> .neukundenrabatt) {
    margin-top: -7rem;
  }
}
@media (max-width: 768px) {
  .neukundenrabatt-icon {
    bottom: 8rem;
  }
}
@media (max-width: 576px) {
  .neukundenrabatt-icon {
    bottom: 8rem;
  }
}
@media (max-width: 480px) {
  .neukundenrabatt-icon {
    bottom: 5rem;
  }
}
@media (max-width: 360px) {
  .neukundenrabatt-icon {
    bottom: 3rem;
  }
}
.neukundenrabatt img {
  max-width: 100%;
  object-fit: contain;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h2 {
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15rem;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: rgba(var(--hauptfarbe));
}
.about .content h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: rgba(var(--rot));
  bottom: 0;
  left: 0;
}

.about .content h3 {
  font-size: 1.25rem;
  color: rgba(var(--hauptfarbe), .75);
  text-transform: uppercase;
  letter-spacing: .15rem;
}

.about .content ul li {
  position: relative;
}

.about .icon-list ul {
  list-style: none;
  padding: 0;
}

.about .icon-list ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

.about .content ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: rgba(var(--hauptfarbe));
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: rgba(var(--xh-grau));
  padding: 40px 0 20px 0;
  color: #fff;
}

.counts .counters span {
  font-size: 36px;
  display: block;
  font-weight: 700;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 15px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Kacheln (ex-Why Us)
--------------------------------------------------------------*/
.kacheln .content {
  padding: 30px;
  background: rgba(var(--xh-grau), .5);
  border-radius: 4px;
  color: #fff;
}

.kacheln .content h3 {
  font-weight: 600;
  font-size: 34px;
  margin-bottom: 30px;
  color: rgba(var(--hauptfarbe));
}

.kacheln .content p {
  margin-bottom: 30px;
  color: rgba(var(--hauptfarbe))
}
.kacheln .content li {
  color: rgba(var(--hauptfarbe))
}
.kacheln .content .more-btn {
  display: inline-block;
  background: rgba(var(--xh-grau));
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.kacheln .content .more-btn i {
  font-size: 14px;
}

.kacheln .content .more-btn:hover {
  color: rgba(var(--hauptfarbe));
  background: #fff;
}

.kacheln .icon-boxes .icon-box {
  text-align: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 2rem 1.5rem 1.5rem;
  width: 100%;
  transition: 0.3s;
}

.kacheln .icon-boxes .icon-box i {
  font-size: 40px;
  color: rgba(var(--hauptfarbe));
  margin-bottom: 30px;
}

.kacheln .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.kacheln .icon-boxes .icon-box p, .kacheln .icon-boxes .icon-box li {
  text-align: left;
  /* font-size: 15px; */
  color: rgba(var(--hauptfarbe));
}

.kacheln .icon-boxes .icon-box:hover {
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15);
}

/*--------------------------------------------------------------
# Panorama-Bilder (ex-Cta)
--------------------------------------------------------------*/
.panorama {
  height: 20vh;
  min-height: 10rem;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  /* padding: 60px 0; */
}
@media (orientation: landscape) {
  .panorama {
    background-size: 100vw auto;
  }
}
@media (pointer: coarse) {
  .panorama {
    background-attachment: unset;
    background-size: 100vw;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 40px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  border: 1px solid rgba(var(--hauptfarbe));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
  color: rgba(var(--hauptfarbe));
}

.services .icon-box .icon i {
  font-size: 28px;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: rgba(var(--rot));
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.services .icon-box:hover h4 a {
  color: rgba(var(--hauptfarbe));
}

.services .icon-box:hover .icon {
  color: #fff;
  background: rgba(var(--hauptfarbe));
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio-item {
  margin-bottom: 30px;
}
.portfolio-item {
  flex-direction: column;
}
.portfolio-img {
  background-color: white;
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  overflow: hidden;
}
.portfolio-info {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}
.portfolio-info h4 {
  margin: 1rem;
  text-align: center;
}
.portfolio-info p {
  text-align: left;
  margin: 0 1rem 1rem;
  color: rgba(var(--hauptfarbe));
}
.portfolio-info hr {
  border: 1px solid rgba(var(--rot));
  opacity: 1;
  margin: 0 42.5% 1rem;
}
.portfolio-info img {
  overflow: hidden;
}
.platzhalter {
  aspect-ratio: 2 / 1;
  display: flex;
  justify-content: space-around;
  align-items:center;
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
}

.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.team .member .pic {
  overflow: hidden;
  width: 150px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover img {
  transform: scale(1.1);
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: rgba(var(--rot));
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: rgba(var(--rot));
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: rgba(var(--rot));
}

.team .member .social a i {
  color: #fff;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: rgba(var(--hauptfarbe));
}

.team .member .social a+a {
  margin-left: 8px;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  /* color: rgba(var(--weiss)); */
  font-size: 14px;
  background-color: rgba(var(--d-grau));
  padding-bottom: 3rem;
}

#footer .footer-top {
  padding: 3rem 0 2rem 0;
  color: rgba(var(--weiss), .9);
}

#footer h3 {
  color: white;
}

#footer h4 {
  font-size: 1rem;
  padding: 0;
  margin: 0 0 .25em 0;
  line-height: 1;
  font-weight: 600;
  color: white;
}

#footer p, #footer td, #footer li  {
  font-size: .9rem;
  line-height: 1.4rem;
  margin: 0!important;
  padding: 0!important;
  letter-spacing: .25pt;
  color: rgba(var(--weiss), .9);
}
#footer td {
  font-variant-numeric: tabular-nums;
}

#footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer a {
  color: rgba(var(--weiss));
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .o-zeiten tr td {
  text-align: right;
}
#footer .o-zeiten tr td:first-child {
  text-align: left;
  padding-right: 3em!important;
}
#footer a:hover {
  text-decoration: none;
  color: rgba(var(--h-grau), .7);
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(var(--h-grau));
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin: 0 .5rem .5rem 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background-color: rgba(var(--h-grau), .5);
  color: #fff;
  text-decoration: none;
}
#footer .row div {
  margin-bottom: 1rem!important;
}
/* ----------- Navigationsknöpfe ---------- */


/* ====== Flip-div ====== */

.kacheln .mySwiper {
  margin-bottom: 24px;
  /* padding-left: 12px; */
  /* padding-right: 12px; */
}
.swiper-button-next, .swiper-button-prev {
  color: rgba(var(--hauptfarbe), .5);
  transform: scale(70%);
}
.swiper-pagination-bullet-active{
  /* opacity:var(--swiper-pagination-bullet-opacity, 1); */
  /* background:var(--swiper-pagination-color,var(--swiper-theme-color)) */
  background: rgba(var(--rot));
}
.mySwiper .swiper-slide.text {
  padding: 2.5rem!important;
}
.mySwiper .swiper-slide.text h4 {
  color: rgba(var(--hauptfarbe));
  text-transform: uppercase;
  letter-spacing: 1.5pt;
}
.mySwiper .swiper-slide.text h5 {
  color: rgba(var(--hauptfarbe));
  padding-bottom: .5em;
}
.mySwiper .swiper-slide.text a {
  position: relative;
}
.mySwiper .swiper-slide.text i {
  position: absolute;
  font-size: 1.5rem;
  top: .1em;
  left: .1em;
  color: rgba(var(--rot))!important;
}
.mySwiper .swiper-slide.text i:hover {
  color: rgba(var(--rot), .5)!important;
}
.swiper-slide-img img {
  width: 100%;
  padding-left: 3rem;
  padding-right: 3rem;
  /* aspect-ratio: 1 / 1; */
  border-radius: 10px;
  object-fit: contain;
}
.swiper-slide-img {
  padding-bottom: 3rem!important;
  display: flex;
  align-content: center;
  justify-content: space-around;
  /* padding: 0!important; */
  /* margin: 0; */
}

.icon-boxes .row {
  margin-bottom: 1rem;
}
@media (max-width: 1140px) {
  .icon-boxes .row {
    margin-bottom: 0;
  }
  .icon-box {
    /* padding-bottom: 0!important; */
  }
  .mySwiper .swiper-wrapper .swiper-slide {
    /* padding: 0; */
  }
  .mySwiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    /* aspect-ratio: 1 / 1; */
    border-radius: 10px;
    object-fit: cover;
    margin: 0!important;
  }
}
/* ====== diverse Ergänzungen ====== */

#about li i {
  top: .6em;
}

.extrabox {
  width: 100%;
  margin-bottom: 24px;
}
@media (max-width: 1200px) {
  .extrabox {
    margin-bottom: 0;
  }
}
@media (max-width: 992px) {
  .extrabox {
    margin-bottom: 24px;
  }
}
::marker {
  color: rgba(var(--rot));
}
@media (min-width: 768px) {
  .spalten {
    padding-top: 0;
    column-count: 2;
    widows: 2;
    gap: 24px;
  }
}

ul.nr li {
  padding-left: 2rem;
  position: relative;
  list-style: none;
}
ul.nr li::before {
  display: inline-block;
  width: 6ch;
  position: absolute;
  left: calc(2rem - 6ch);
  counter-increment: section;
  content: 'Nr. ' counter(section)' ';
  font-variant-numeric: tabular-nums;
}

.row + .row {
  margin-top: 12px;
}
.align-items-stretch .icon-box {
  margin-bottom: 24px;
}
@media (max-width: 1200px) {
  .align-items-stretch .icon-box {
    margin-bottom: 0;
  }
}
.submenu {
  list-style: none;
  padding-left: 0;
}
.submenu li {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: .05em;
  font-size: 1.2rem;
  line-height: 1.4;
  padding-bottom: .4em;
  hyphens: manual!important;
  -webkit-hyphens: manual!important;
  text-transform: uppercase;
}
ul.verteiler {
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}
ul.verteiler li {
  /* display: flex; */
  list-style: none;
  margin: .5rem 3rem .5rem 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: .05em;
  font-size: 1rem;
  line-height: 1.4;
  hyphens: none!important;
  -webkit-hyphens: none!important;
  text-transform: uppercase;
  position: relative;
}
.runter, .weiter {
  position: relative;
}
.runter:after {
  position: absolute;
  right: -1.75rem;
  bottom: -.2em;
  content: "\eab7";
  font-size: 1.4em;
}

@media (max-width: 768px) {
  ul.verteiler {
    flex-flow: column;
  }
}
.weiter:after {
  position: absolute;
  right: -1.75rem;
  bottom: -.2em;
  content: "\ebe6";
  font-size: 1.4em;
}

.intermezzo {
  height: 20vw;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: row nowrap;
}
.intermezzo div {
  flex: 1 1 0%;
  display: flex;
}
.intermezzo div img {
  max-width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 576px) {
  .intermezzo {
    height: 40vw;
  }
}


.spalten p:first-of-type {
  margin-top: .2rem;
}
.spalten p:last-of-type {
  margin-bottom: 0;
}

.jobframe {
  background-color: rgba(var(--rot))!important;
  margin-bottom: 24px;
}
.job {
  background-color: rgba(var(--rot))!important;
}
.job a, .job p, .job h4 {
  color: rgba(var(--weiss))!important;
  text-align: center!important;
}
.job a:hover {
  color: rgba(var(--weiss), .5)!important;
}

.sm-icons a h5, .sm-icons a i {
  color: rgba(var(--rot))!important;
}
.sm-icons a:hover h5, .sm-icons a:hover i {
  color: rgba(var(--rot), .25)!important;
}
.job h3 {
  font-size: 1.5rem;
  letter-spacing: .01em;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.job h3 span {
  font-weight: 200;
  font-size: .75em;
}
.bewirb-dich {
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(var(--rot));
  background: #fff;
  padding: .125em .5em;
  width: fit-content;
  font-size: 2.75rem;
  margin: 0;
}
@media (max-width: 992px) {
  .bewirb-dich {
    font-size: 2rem;
  }
}

/* ###### Contact/Form ####### */
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: rgb(210 1 40); /*#ed3c0d;*/
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

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

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: rgb(210 1 40); /*#18d26e;*/
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

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

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

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

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

.contact .php-email-form input {
  padding: 10px 15px;
}

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

.contact .php-email-form button[type="submit"] {
  background: rgba(var(--rot));
  border: 0;
  padding: 10px 30px;
  border-radius: 4px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
  background: rgba(var(--rot), .5);
}

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

.contact .php-email-form {
  text-align: start;
}
.contact .php-email-form input[type="file"] {
  padding: .5rem 1rem;
}
.form-control::file-selector-button, .form-control::-webkit-file-upload-button {
  border-inline-end-width:0;
}
/* .form-control::file-upload-button, .form-control::-webkit-file-upload-button {
  border-inline-end-width:0;
} */

/* ###### Contact/Form Ende ####### */

@media (max-width: 992px) {
  h4 {
    padding-top: 1em;
  }
}
@media (max-width: 576px) {
  h1, h2, h3, h4, h5, h6 {
    hyphens: auto;
    -webkit-hyphens: auto;
  }
  .about .content h2 {
    font-size: 1.5rem;
  }
  .section-title h2 {
    font-size: 1.5rem;
  }
}

.o-zeiten {
  /* width: 100%; */
}
.o-zeiten tr td {
  text-align: right;
}
.o-zeiten tr td:first-of-type {
  text-align: left;
  padding-right: 3em!important;
}

.o-zeiten tr td {
  font-variant-numeric: tabular-nums!important;
}


video {
  width: 100%;
  object-fit: contain;
}

@media (max-width: 992px) {
  .vorfahrt {
    order: -1;
  }
}
/* ===== Tooltips ===== */
.bx-info-circle-after:after{
  content:"\eb21";
  color: rgba(var(--gruen));
}

details.info {
  display: inline-block;
}
details.info summary {
  position: relative;
  background-color: rgba(var(--gruen));
  border-radius: 4em;
  aspect-ratio: 1/1;
  padding: .25em;
  width: 1em;
}
details.info summary span {
  text-align: center;
  position: absolute;
  top: -.125em;
  left: .375em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #fff;
}
details.info summary::marker,
details.info summary::-webkit-details-marker {
  content: "";
  color: magenta;
  display: none;
}
details.info[open] [role=button] {
}

details.info div {
  position: absolute;
  padding: 1em;
  border: thin solid rgba(var(--gruen));
  border-radius: 0.5em;
  background-color: #fff;
}

/* ===== Tooltips Ende ===== */

/* ======= Baustelle ======= */

.test {
  border: 1px dashed magenta;
}
.check {
  background-color: rgba(var(--test));
  background-blend-mode: multiply .5;
}
.vorschau {
  mix-blend-mode: multiply;
}


/* ===== app-footer ===== */
#app-footer a {
  width: 100%;
}
#app-footer h4 {
  font-size: 1.1rem;
  margin: 0;
}
#app-footer.kacheln .icon-boxes .icon-box {
  /* width: 100%; */
  height: 100%;
  padding: 2rem 0 1rem 0!important;
}
#app-footer .kachel {
  margin-bottom: 24px;
}


/* ===== FAQ (bzw. Serviceliste) ==== */

.faq-item {
  border-bottom: 1px solid rgba(var(--rot), .25);
  padding: 1rem 0;
}



/* Downloads */
.download {
  padding-left: 0;
}
.download li {
  display: block;
}
.download li::before {
  font-size: 1.5em;
  color: rgba(var(--rot));
}


.subline {
   text-transform: uppercase;
   letter-spacing: .03em;
   text-align: center!important;
}
.kosmetik-kachel {
  border-radius: 10px;
  display: flex;
  align-content: center;
  justify-content: space-around;
  position: relative;
  max-height: 100%;
  overflow: hidden;
  padding: 0!important;
  /* margin: 0!important; */
}
@media (min-width: 1200px) {
  .text-markenlogo {
    width: 100%;
    padding: 3rem 3rem 3rem 0;
  }
}
@media (min-width: 992px) {
  .text-markenlogo {
    width: 100%;
    padding: 2rem 2rem 2rem 0;
  }
}
@media (max-width: 991.9px) {
  .text-markenlogo {
    width: 100%;
  }
}
.section-bg-img:nth-of-type(odd) {
  background-color: rgba(var(--xh-grau), .25);
}
.section-bg-img:nth-of-type(even) {
  background-color: rgba(var(--weiss));
}

.section-bg-img {
  background-size: cover;
  background-attachment: fixed;
}
.img-1 {
  background-image: url('../img/image/kosmetik-1-breit.jpg');
  background-position: 100% 50%;
}
.img-2 {
  background-image: url('../img/image/kosmetik-4-quadrat.jpg');
  background-position: 0% 20%;
}
.section-bg-img .container {
  background-color: rgba(var(--weiss), .7);
  border-radius: 1rem;
  padding-top: 1rem;
  padding-bottom: 0!important;
}
@media (max-width: 576px) {
  .section-bg-img {
    background-image: unset;
  }
}
@media (max-width: 1200px) {
  .section-bg-img .container {
    padding-top: 1rem;
    padding-bottom: 1rem!important;
  }
}
/* @media only screen and (max-width: 1200px) {
  html::before {
    content: ' ';
    display: block;
    background-image: url('../img/image/Dom-Apotheke-mit-Dom.jpg');
    background-position: center;
    background-size: cover;
    height: 100vh;
    width: 100vw;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed!important;
    z-index: -10;
  }
} */
.flyer {
  width: 100%;
  box-shadow: 0 5px 10px rgba(0,0,0, .7);
  transform: rotate(3deg);
  transition: all .15s;
}
.flyer:hover {
  scale: 1.1;
  transform: unset;
  box-shadow: 0 5px 50px rgba(var(--m-grau));
  transition: all .5s;
}
.carousel-indicators li.active {
  background-color: rgba(var(--rot), .7)!important;
}

/* accessibility */
tr.blindheader {
  font-size: 1pt;
  opacity: 0;
  position: absolute;
}
