/* https://www.cleancss.com/css-beautify/ */
/* css Datei für webseiten-fritz.de */

:root {
  /* --orange: #ED7D4D; */
  --blau: #0052BA;
  --grau: #65767A;
  --dunkelgrau: #495456;
  --hellgrau: #d2dbdd;

}

html {
  scroll-behavior: smooth;
}

body {
  background-color: white;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  background-repeat: repeat;
  font-size: 20px;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.4em;
  background-attachment: fixed;
  background-size: cover;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
}

.cookiebg {
  /* background-image: url('../bilder/cookie.png');
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: center;
    background-position-y: bottom 0px; */
  margin: 5px auto;
  width: 200px;

}


.breite {
  width: 90%;
  max-width: 1100px;
  margin: 0px auto;
  display: flex;
}

h1,
h2,
h3,
h4 {
  font-weight: normal;
  text-align: left;
}

h1 {
  margin-top: 40px;
  font-size: 60px;
  font-weight: 400;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  color: black;
  transition: height 0.5s;
  line-height: 1.3em;
  margin-bottom: 0px;
  text-shadow: 3px 2px 2px rgb(154, 138, 138);
  font-variant: small-caps;
}

h1.whitetext {
  text-shadow: 2px 2px 1px black;
}

h2 {
  margin-top: 40px;
  font-size: 60px;
  font-weight: 400;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  color: black;
  transition: height 0.5s;
  line-height: 1.3em;
  margin-bottom: 0px;
  text-shadow: 3px 2px 2px rgb(154, 138, 138);
  font-variant: small-caps;
}

h2.whitetext {
  text-shadow: 2px 2px 1px black;
}

h2:first-child {
  /* margin-top: 165px; */
}

h4 {
  margin: 0px 0px;
  font-weight: bold;
  padding: 5px 0px;
  color: #057CB8;
}

h3 {
  margin: 10px 0px;
  font-weight: 400;
  color: #007692;
  font-size: 34px;
  padding-bottom: 10px;
  padding-top: 0px;
  padding-right: 20px;
  line-height: 1.2em;
  text-align: left;
}

/* slideshow neu */

.slideshow {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  pointer-events: none;
  /* <— alle inaktiven Slides NICHT klickbar */
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  /* <— nur aktive Slide reagiert auf Klicks */
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* background-color: #000; */
}

/* Bildunterschrift */
.caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 22px 10px 0px 10px;
  /* background: rgb(180, 180, 180); */
  text-align: center;
}

.caption a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  font-size: 24px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
  transition: color 0.3s;
}



.caption a:hover {
  color: #fff;
  text-shadow: 0 0 10px #ff4747;
}

/* Ende slide show */

.linkliste {
  display: flex;
  flex-wrap: wrap;
  /* erlaubt Umbruch bei schmalem Fenster */
  justify-content: center;
  /* zentriert die Links */
  gap: 0.8em;
  /* etwas Abstand zwischen den Links */
  list-style: none;
  /* keine Punkte */
  margin: 20px auto;
  padding: 0;
  line-height: 8px;
  font-size: 13px;

}

.linkliste li {
  display: inline;
  /* sorgt dafür, dass sie sich aneinanderreihen */
}

/* böser Hack :-) */
.linkliste {
  font-size: 0;
}

.linkliste li {
  display: inline;
  font-size: 16px;
  /* deine normale Größe */
  line-height: 19px;

}

.linkliste a {
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* wegen google pagedev  */
.linkliste a {
  display: inline-block;
  padding: 6px 4px;
  /* erhöht Touch-Ziel */
  margin: 2px;
}

.linkliste a:hover {
  color: #00bfff;
  /* dezenter hellblauer Hover-Effekt */
  text-decoration: underline;
}

.linkliste li::after {
  content: "–";
  margin: 0 0.5em;
  /* optisch ausgewogener Abstand */
}

.linkliste li:last-child::after {
  content: "";
}

.content {
  position: relative;
  background-color: #e4e4e4;
  z-index: 99;
}

#topcontainer {
  z-index: 199;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 140px;
  border-bottom: 1px solid black;
  transition: height 0.5s;
  background-image: linear-gradient(to right, rgba(198, 0, 110, 1) 0%, rgba(127, 0, 48, 1) 100%);
}

.navigation {
  display: flex;
  flex-wrap: wrap;
  min-height: 42px;
  padding-left: 0px;
  padding-right: 25px;
  font-size: 24px;
  /* border: 1px solid black;
     */
  padding-top: 5px;
  justify-content: flex-end;
  gap: 12px;
}

.navigation li {
  list-style: none;
  flex-grow: 2;
  flex-shrink: 1;
  flex-basis: 0px;
  flex: 0 0 auto;


}

/* .navigation li a {
  text-decoration: none;
  color: #ffffff;
  padding: 4px 4px 0px 4px;
  margin-bottom: 0px;
  font-variant: small-caps;
} */

nav a {
  text-decoration: none;
  color: #ffffff;
  padding: 0px 4px 0px 4px;
  margin-bottom: 14px;
  font-variant: small-caps;

}

nav a.active {
  color: #28d000;
  /* dein Navigations-Grün */
  font-weight: 600;
  /* border-bottom: 2px solid #28d000; */
  transition: color 0.3s, border-bottom 0.3s;
  padding-bottom: 0px;
  text-decoration: underline;
}

nav a:focus-visible {
  outline: 2px solid #28d000;
  outline-offset: 4px;
}

.telcontainer img {
  margin: 0px 0px -8px 0px;
}

#menulogo {
  justify-content: flex-start;
  height: 28px;
  display: none;
  /* transition: display 2.5s ease;
     */
}

.fancylist ul li {
  list-style: none;
  padding-left: 30px;
  position: relative;
  padding-top: 20px;
}

.fancylist ul {
  padding-left: 0px;
}

ul {
  padding-left: 30px;
}

li {
  list-style-type: circle;
}

.fancylist ul li:before {
  content: "";
  position: absolute;
  top: 26px;
  left: 2px;
  display: inline-block;
  height: 18px;
  width: 18px;
  background-size: contain;
  background-image: url("../bilder/haken.svg");
}

.fancylist ul.hohezeile li:before {
  top: 6px;
}

ul.hohezeile {
  /* line-height: 1.9em;
     */

}

ul.hohezeile li {
  margin-bottom: 15px;
  list-style: none;
color: white;
  padding: 10px;
  padding-left: 15px;

  backdrop-filter: blur(8px);
  background-color: rgba(123, 23, 190, 0.79);
  border: 1px solid #333;
  border-radius: 8px;
  box-shadow: 2px 2px 3px #333;

}

.whiteborder img {
  border: 2px solid white;
  border-radius: 8px;
  background-color: rgb(190, 190, 190)
}

.navigation a:hover:not(.active) {
  color: #28D000;
}


nav a[aria-current="page"] {
  color: #28d000;
  text-decoration: underline;
  font-weight: 600;
}


p {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  text-align: justify;
  margin-top: 10px;
  margin-bottom: 10px;
}

.kasten a {
  color: #207F1D;
}
#secagentur a {
  color: #207F1D;
}


.kasten.whitetext a {
  color: rgb(31, 226, 1);
}

.whitetext .telcontainer {
  border-color: white;
}

a {
  color: rgba(0, 172, 84, 1);
}

.kasten {
  text-align: left;
  padding: 20px;
  color: black;
  flex: 1;
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
  min-height: 0px;
  /*      gap: 12px; */

}

.gap20 {
  gap: 20px;
}

/* 1. Seite */
.kastenklein {
  text-align: left;
  padding: 20px;
  color: black;
  min-height: 0px;
  align-self: center;
  flex-direction: row;
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  background-color: blue;
  /* position: relative;
     */
  /* width: 99%;
     */
  width: 100%;
}

.grossbox {
  flex: 1 1 auto;
  padding: 0px;
  padding-left: 30px;
  background-color: white;
  display: flex;
  /* align-items: flex-start; */
  flex-wrap: wrap;
  /* font-weight: 200; */
  font-size: 22px;
  line-height: 1.2em;
  /* justify-content: center; */
  margin-left: 20px;
  margin-right: 20px;
  text-align: justify;
}

.grossbox2 {
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.76);
  border: 1px solid #333;
  border-radius: 8px;
  box-shadow: 2px 2px 3px #333;
  padding-top: 10px;
  margin-top: 110px;
  margin-bottom: 20px;
  height: 60px;
  width: 800px;
  flex: 1 1 auto;
  text-align: center;
}

.grossbox3 {
  flex: 1 1 auto;
  padding: 35px 45px;
  background-color: white;
  display: flex;
  /* align-items: flex-start; */
  flex-wrap: wrap;
  /* font-weight: 200; */
  font-size: 22px;
  line-height: 1.2em;
  /* justify-content: center; */
  margin-left: 20px;
  margin-right: 20px;
  text-align: justify;
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.76);
  border: 1px solid #333;
  border-radius: 8px;
  box-shadow: 2px 2px 3px #333;
  padding-top: 10px;
  margin-top: 195px;
  margin-bottom: 20px;

}

.portrait {
  position: relative;
  display: inline-block;
}

.portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.3)); */
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.1));
  pointer-events: none;
  border-radius: inherit;
}

@media (prefers-color-scheme: light) {
  .portrait::after {
    background: linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.1));
  }
}


.infobox {
  border: 1px solid #ddd;
  background: #fafafa;
  border-radius: 6px;
  padding: 1.2em 1.5em;
  margin: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.infobox h3 {
  margin-top: 0;
  font-size: 1.2em;
  color: #006EA1;
}

.infobox ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.infobox li {
  margin: 0.3em 0;
}


.zentriert {
  align-items: center;
  text-align: center;

}

/* https://stackoverflow.com/questions/30788131/maintain-image-aspect-ratio-when-changing-height */
.grossbox img {
  max-width: 100%;
  height: auto;
  padding: 2px;
  border-color: #4575ca;
  border-style: solid;
  border-width: 2px;
  background-color: white;
}


.kleinbox {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  text-align: justify;
  flex: 1 1 auto;
  padding: 35px 45px;
  width: 385px;
  border: 1px solid #067DC1;
  box-shadow: 7px 7px 0px #05486f;
  /* font-weight: 200; */
  /* margin: 20px 20px 20px 0px;
     */
  background-color: white;
  gap: 20px;
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.76);
  border: 1px solid #333;
  border-radius: 8px;
  box-shadow: 2px 2px 3px #333;

}

.kleinbox img {
  max-width: 100%;
}

.kleinbox-nurbild {
  background-color: transparent;
  align-self: center;
}

.kasten i {
  font-weight: 400;
  color: #057CB8;
}

.kleinbox strong {
  font-weight: 400;
  color: var(--blau);
}

.noflex {
  display: block;
}

#logobox {
  display: flex;
  overflow: hidden;
  padding-top: 0px;
  background-image: linear-gradient(rgba(43, 58, 103, 1) 11.5%, rgba(122, 134, 172, 1) 124.1%);
  transition: height 0.5s;
}

.logobox_l {
  flex: 1 1 0px;
  align-self: center;
  margin-left: 20px;
}

.logobox_r {
  flex: 0 1 0px;
  align-self: center;
  margin-top: 0px;
  margin-right: 18px;
}

.logoimg {
  width: 65px;
  height: 65px;
  margin-top: 20px;
}

.inhli {
  width: 100%;
  max-width: 1100px;
  margin: 0px auto;
  padding: 5px 30px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border-radius: 10px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);

}

.inhboxlinks {
  flex: 1 1 200px;
  align-self: center;
  align-items: center;
  overflow: auto;
  margin: 10px auto;
  flex-direction: column;
  gap: 12px;

}

div#clxRateWidget {
  margin: 5px auto;
  line-height: 1.3em;
}

div#clxRateWidget {
  color: white !important;
  font-size: 16px !important;
}

div#clxReviewWidget div#clxRateWidget span {
  color: white !important;
}

.blaurahmen {
  background-color: rgba(0, 106, 209, 0.68);
  padding: 10px;
  border: 1px solid black;
  border-radius: 5px;
}

.whitebg {
  background-color: white;
}

.whitetext {
  color: white;
}

div.inhboxlinks picture img {
  height: 90%;
  width: 90%;
  box-shadow: 5px 5px 10px #777;
  margin: 5px 0;
}

div.inhboxlinks picture source {
  height: 100%;
  width: 100%;
  box-shadow: 5px 5px 10px #777;
  margin: 5px 0;
}

.inhboxrechts {
  flex: 3 1 200px;

  /* align-self: stretch;
     */
  margin-left: 50px;
  /*     margin: 20px; */

  /*      padding-left: 20px; */
}

.inhboxlinks50 {
  flex: 1 1 300px;
  align-self: center;
  overflow: auto;
  /* border: 1px solid red;
     */
}

div.inhboxlinks picture img {
  height: 100%;
  width: 100%;
  box-shadow: 5px 5px 10px #777;
}

.inhboxrechts50 {
  flex: 1 1 150px;
  /* align-self: stretch;
     */
  overflow: auto;
  margin-left: 30px;
}

lite-youtube {
  margin: 10px 0;
}

.insidediv {
  overflow: auto;
}

section {
  min-height: calc(100vh - 170px);
  /* 190px ist dein Header+Logo-Bereich */
  padding: 30px 20px 20px;
  scroll-margin-top: 140px;
  /* damit beim Scrollen nix unter den Header rutscht */
}

/* https://gradienthunt.com */

section#sechome.webp {
  /*      background-image: url(../bilder/girl.webp), radial-gradient( circle farthest-corner at 5.6% 54.5%, rgba(245, 245, 245, 1) 0%, rgba(173, 173, 173, 1) 83.6% ); */
}

section#sechome.no-webp {
  /*      background-image: url(../bilder/girl.jpg), radial-gradient( circle farthest-corner at 5.6% 54.5%, rgba(245, 245, 245, 1) 0%, rgba(173, 173, 173, 1) 83.6% ); */
}

section#secvorteile {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  height: auto;
}

section#secvorteile.webp {
  /* background-image: url(../bilder/bgsonne.webp); */
  background-image: url(../bilder/mauer.webp);
}

section#secvorteile.no-webp {
  background-image: url(../bilder/bgsonne.webp), radial-gradient(circle farthest-corner at 5.6% 54.5%, rgba(224, 211, 174, 1) 0%, rgba(225, 180, 67, 1) 83.6%);
}

section#secagentur {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh; /* <-- volle Fensterhöhe */
  background-image: url(../bilder/agentur.webp);
  min-height: 100vh;
  padding-bottom: 0;
}



section#secpreise {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  height: auto;
  background-image: radial-gradient(circle 610px at 5.2% 51.6%, rgba(5, 0, 51, 1) 0%, rgba(68, 0, 121, 1) 97.5%);
}

section#secpreise.webp {
  background-image: url(../bilder/money2.webp);

}

section#secpreise.no-webp {
  background-image: url(../bilder/money2.jpg);

}

section#sechome {
  background-image: url(../bilder/Fritz_jung_links_IMG_7645.webp);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  height: auto;

}

/* das ist das alte  */
section#secreferenzen {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  height: auto;
  background-image: url(../bilder/mocupquadratisch.webp);
  background-color: rgba(77, 77, 77, 1);
  background-blend-mode: darken;
}

/*
section#secreferenzen {
  background-image:
    linear-gradient(to bottom right, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65)),
    url(../bilder/mocupquadratisch.webp);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-blend-mode: overlay; 
  color: white;
  min-height: 100vh;
  padding: 40px 20px;
}

section#secreferenzen h2,
section#secreferenzen h3,
section#secreferenzen p {
  color: #e8f0ff; 
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

section#secreferenzen .kasten,
section#secreferenzen .grossbox,
section#secreferenzen .kleinbox {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border-radius: 10px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
  color: #e0e8f0;
  padding: 30px;
  transition: background 0.4s ease, transform 0.4s ease;
}

section#secreferenzen .kasten:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
} 
*/

section#secueber {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  height: auto;
  background-image: radial-gradient(circle 610px at 5.2% 51.6%, rgba(5, 8, 114, 1) 0%, rgba(7, 3, 53, 1) 97.5%);
}

section#secueber.webp {
  /* background-image: url(../bilder/money2.webp);
     */
}

section#secueber.no-webp {
  /* background-image: url(../bilder/money2.jpg);
     */
}

section#seckontakt {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  height: auto;
  background-color: black;
}

section#seckontakt.webp {
  background-position: left top ;
  background-size: auto;
  height: auto;
  background-color: white;
  background-repeat: no-repeat;
  background-image: url(../bilder/schiefekarte3.webp), radial-gradient(circle farthest-corner at 5.6% 54.5%, rgba(39, 101, 174, 1), rgba(3, 20, 97, 1) 84.45%);

}

section#seckontakt.no-webp {
  /* background-image: url(../bilder/refkontakt.jpg);
     */
}

section#secdatenschutz {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  height: auto;
}

section#secdatenschutz.webp {
  background-image: url(../bilder/gericht.webp);
}

section#secdatenschutz.no-webp {
  background-image: url(../bilder/gericht.jpg);
}

.abschlusssatz {
  margin-top: 1.2em;
  font-size: 1em;
  color: #0052BA; /* dein kräftiges Blau */
  text-align: left;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 1px rgba(255,255,255,0.3);
}

/* @media (prefers-color-scheme: dark) {
  .abschlusssatz {
    color: #d0e8ff; 
    text-shadow: 0 1px 1px rgba(0,0,0,0.6);
  }
} */


.datendings {
  margin-top: 120px;
}

.klein {
  font-size: 70%;
  line-height: 1.2em;
}

.telcontainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  border: 1px solid black;
  /* max-width: 615px;
     */
  margin-top: 5px;
  margin-bottom: 10px;
  border-radius: 4px;
  box-shadow: 2px 2px 0px 0px #333;
  font-size: 120%;
  font-weight: 400;
}

.telcontainer a {
  font-weight: normal;
  text-decoration: none;
  padding: 3px;
  color: #ffffff;
}

.telboxli {
  flex: 1 1 auto;
  padding: 14px;
  font-size: 70%;
}

.telboxre {
  flex: 2 1 auto;
  padding: 3px;
  /* border: 1px solid red;
     */
}

.noborder {
  border: none;
}

.noshadow {
  box-shadow: none !important;
}

.errpagecontainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: white;
  width: 70%;
  text-align: center;
}

.errinside {
  margin: auto;
  width: 60%;
  flex: 1 1 auto;
}

.errbox {
  flex: 2 1 auto;
  padding: 3px;
  font-size: 150%;
}

.caption2 {
  margin: 6px auto;
  text-align: center;
  font-size: 80%;
  /* color:#000;
     */
  font-style: italic;
  padding: 0;
  line-height: 1.3em;
  width: 95%;
}
.rechtsfloat {
  float: right;
  margin: 0 0 20px 30px;
  max-width: 300px;
}

.portrait picture,
.portrait img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.portrait figcaption {
  font-size: 0.9em;
  text-align: center;
  margin-top: 6px;
  color: #ccc;
}

.shadow {
  box-shadow: 5px 5px 6px 0 rgba(0, 0, 0, 0.4);
}

.shadow div {
  font-size: 70%;
  font-style: italic;
}

/* https://christianoliff.com/blog/styling-external-links-with-an-icon-in-css/ */
.kasten a[href^="http://"]::after,
.kasten a[href^="https://"]::after {
  content: "";
  width: 13px;
  height: 13px;
  margin-left: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z'/%3E%3Cpath fill-rule='evenodd' d='M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

.kasten.whitetext a[href^="http://"]::after,
.kasten.whitetext a[href^="https://"]::after {
  content: "";
  width: 13px;
  height: 13px;
  margin-left: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z'/%3E%3Cpath fill-rule='evenodd' d='M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

.zoombild {
  transition: transform .3s;
}

.zoombild:hover {
  transform: scale(2.5);
}

.mm-widget-stars-a1eb7b h1 a {
  font-size: 1em !important;
}

.mm-widget-stars-a1eb7b #mm-widget-inner ul li h2 {
  font-size: 24px;
}

.mm-widget-stars-a1eb7b #mm-widget-inner ul>li {
  list-style-type: none;
}

a.nopfeil::after {
  background-image: none !important;
  width: 0px !important;
  height: 0px !important;
  content: none !important;
}

/* .cycle-slideshow img {
    max-width: 90%;
    margin: 20px auto;
    align-self: center;
} */

.dsicon {
  height: 30px;
}

.dsiconcont {
  /* flex-grow: 50 !important;
     align-self: flex-start !important;
     margin-left: 30px;
     */
  /* margin-right: auto;
     margin-left: 30px;
     */
}

.subhead::first-letter {
  font-size: 40px;
  color: #bd8803;
  font-weight: bold;
  line-height: .75;
}

#pfeilnachunten {
  position: fixed;
  bottom: 20px;
  left: 50%;
  width: 60px;
  z-index: 200;
  margin-left: -30px;
}

#pfeilnachunten img {
  width: 60px;
}

/* linkedin */
.linkedin {
  background-color: white;
  padding: 5px 5px 10px 5px;
  height: 30px;
  display: inline-block;
  margin-bottom: 15px;
}


/* https://www.labnol.org/internet/light-youtube-embeds/27941/ */
.youtube-player {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 5px;
}

.youtube-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: transparent;
}

.youtube-player img {
  object-fit: cover;
  display: block;
  left: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  height: auto;
  cursor: pointer;
  -webkit-transition: 0.4s all;
  -moz-transition: 0.4s all;
  transition: 0.4s all;
}

.youtube-player img:hover {
  -webkit-filter: brightness(75%);
}

/* .youtube-player .play {
     height: 72px;
     width: 72px;
     left: 50%;
     top: 50%;
     margin-left: -36px;
     margin-top: -36px;
     position: absolute;
     background: url('//i.imgur.com/TxzC70f.png') no-repeat;
     cursor: pointer;
} */