/* CSS Document */

body {
  background-color: var(--bg-body);
  color: var(--color-text);
  font-size: 18px;
  font-family: futura-pt, sans-serif; /*Für Fließtext immer die Futura PT nehmen*/
  font-weight: 400;
  font-style: normal;
}
h1, h2, h3, h4, h5, h6 {
  font-family: active, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
}

.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: swing-king, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
}
a {
  color: var(--color-links);
  text-decoration: none;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}
a:hover {
  color: var(--color-links-hover);
}
.blaue-box {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  display: grid;
  color: #fff;
  align-items: center;
  background-color: #2e58a6;
  padding: 2rem;
}
.box-shadow-top {
  box-shadow: 0 -10px 10px -5px rgba(0,0,0,0.50);
}
.img-nav {
    width: 85%;
    height: auto;
}
.entry-content {
  scroll-behavior: smooth;
  scroll-margin-top: 220px;
}
img {
  filter: var(--img-filter);
}
img[src$=".svg"], img[src$=".icon.svg"] {
  filter: none;
}
.mapsiframe {
  border: 4px solid #fff;
  width: 100%;
  filter: var(--mapsiframe-filter);
}

/* -------------------- Farben BEGINN -------------------- */

.color-01 {
  color: var(--color01); /*blau*/
}
.color-02 {
  color: #80c41c; /*grün*/
}
.color-03 {
  color: #F1F1F1; /*grau*/
}
.color-04 {
  color: var(--color-text); /*schwarz*/
}
.color-05 {
  color: #fff; /*weiß*/
}
.color-06 {
  background-image: linear-gradient(45deg, #80c41c 0%, #2e58a6 100%); /*Verlauf*/
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bg-color-01 {
  background-color: #2e58a6; /*blau*/
}
.bg-color-02 {
  background-color: #80c41c; /*grün*/
}
.bg-color-03 {
  background-color: var(--bg-color03); /*grau*/
}
.bg-color-04 {
  background-color: rgba(0,0,0,0.65); /*schwarz*/
}
.bg-color-05 {
  background-color: var(--bg-body); /*weiß*/
}
.bg-color-06 {
  background-image: linear-gradient(45deg, #80c41c 0%, #2e58a6 100%); /*Verlauf*/
}
.bg-color-07 {
  background-color: #F1F1F1; /*grau*/
  background-size: 50% 100%;
  background-position: center;
}
.gradient-bg {
	background: linear-gradient(-45deg, #45690F, #80c41c, #45690F, #80c41c);
	background-size: 400% 400%;
	animation: gradient 6s ease infinite;
	height: auto;
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.bg-grey {
  animation: slide 3s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, #D9D9D9 50%, #F1F1F1 50%);
  bottom: 0;
  left: -50%;
  opacity: .5;
  position: fixed;
  right: -50%;
  top: 0;
  z-index: -1;
}
.bg-grey2 {
  animation-direction: alternate-reverse;
  animation-duration: 4s;
}
.bg-grey3 {
  animation-duration: 5s;
}
@keyframes slide {
  0% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(25%);
  }
}
.gradient-background {
  background: linear-gradient(-45deg, #52ae32, #86bd40, #52ae32, #86bd40);
  background-size: 400% 400%;
  animation: gradient 6s ease infinite;
  height: auto;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* -------------------- Farben ENDE -------------------- */


/* -------------------- Theme Switch -------------------- */

.checkbox {
  opacity: 0;
  position: absolute;
}
#colorModeLabel.switch {
  background: #212529;
  width: 70px;
  height: 40px;
  border: solid 2px var(--color-navigation, #000);
  border-radius: 50px;
  position: relative;
  padding: 9px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#language_switch.switch {
  background: var(--background-navi, #fff);
  width: 75px;
  height: 40px;
  border: solid 2px var(--color-navigation, #000);
  border-radius: 50px;
  position: relative;
  padding: 7px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fa-moon {
  color: #f1c40f;
}
.fa-sun {
  color: #f39c12;
}
.switch .ball {
  background: rgba(255, 255, 255, 0.8);
  width: 30px;
  height: 30px;
  position: absolute;
  left: 2px;
  top: 3px;
  border-radius: 50%;
  transition: transform 0.2s linear;
}
#language_switch.switch .ball {
  background: rgba(255, 255, 255, 0.8);
  width: 33px;
  height: 33px;
  position: absolute;
  left: 2px;
  top: 1px;
  border-radius: 50%;
  transition: transform 0.2s linear;
}
.checkbox:checked + .switch .ball {
  transform: translateX(30px);
}
.checkbox:checked + #language_switch.switch .ball {
  transform: translateX(33px);
}


/* -------------------- Hintergrundbilder BEGINN -------------------- */

.bg-top-info {
  background-image: url("../images/background/001--619751030.jpg");
  background-size: cover;
  background-position: top;
}
.bg-top-info2 {
  background-image: url("../images/background/007--620924643.jpg");
  background-size: cover;
  background-position: center;
}
.bg-content {
  background-image: url("../images/background/002--580268572.jpg");
  background-size: cover;
  background-position: left;
  background-color: var(--bg-blend-mode2);
  background-blend-mode: var(--blend-mode2);
}
.bg-content2 {
  background-image: url("../images/background/003--580268572.jpg");
  background-size: cover;
  background-position: left;
  background-color: var(--bg-blend-mode2);
  background-blend-mode: var(--blend-mode2);
}
.bg-kontaktformular {
  background-image: url("../images/background/003--580268572.jpg");
  background-size: cover;
  background-position: left;
  background-color: var(--bg-blend-mode2);
  background-blend-mode: var(--blend-mode2);
}
.bg-review {
  background-image: url("../images/background/004--504237933.jpg");
  background-size: cover;
}
.bg-footer {
  background-image: url("../images/background/001--619751030.jpg");
  background-size: cover;
  background-position: top;
}
.bg-footer-end {
  background-image: url("../images/background/001--619751030.jpg");
  background-size: cover;
  background-position: top;
}
.bg-headline {
  background-image: url("../images/background/008--410343897.jpg");
  background-size: cover;
  background-position: center;
  background-color: var(--bg-blend-mode);
  background-blend-mode: var(--blend-mode);
}
.bg-konstanzpruefung {
  height: 400px;
  background-image: url("../images/teaser/003--857367074_769126366.jpg");
  background-size: cover;
  background-position: center;
  background-color: var(--bg-blend-mode);
  background-blend-mode: var(--blend-mode);
}
.bg-konstanz {
  background-image: url("../images/teaser/003--857367074_ 769126366.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat
}
.bg-green {
  background-image: url("../images/background/005--541582905-2.jpg");
  background-size: cover;
  background-position: right;
}

/* -------------------- Hintergrundbilder ENDE -------------------- */



/* -------------------- Border BEGINN -------------------- */

.border-6 {
	border-width: 6px !important;
}
.border-7 {
	border-width: 7px !important;
}
.border-8 {
	border-width: 8px !important;
}
.border-9 {
	border-width: 9px !important;
}
.border-10 {
	border-width: 10px !important;
}

/* -------------------- Border ENDE -------------------- */



/* -------------------- Parallax BEGINN -------------------- */

.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* -------------------- Parallax ENDE -------------------- */



/* -------------------- Scroll Top BEGINN -------------------- */

.scroll-top {
  display: none !important;
  color: #fff;
  font-weight: bold;
  background-color: rgba(43, 43, 43, 0.60);
  right: 140px;
  bottom: 4.5%;
  position: fixed;
  transition: all .35s;
  box-shadow: 1px 0px 2px #333;
  font-size: 0.7rem;
  z-index: 9;
}
.scroll-top:hover {
  color: #1D1D1B;
  text-decoration: none;
}
@media (min-width: 992px) {
  .scroll-top {
    display: block !important;
  }
}

/* -------------------- Scroll Top ENDE -------------------- */



/* -------------------- Top Info BEGINN -------------------- */

.wrappertinfo {
  display: inline-flex;
  margin: 0.5em 0em 0.5em 0em;
}
.wrapinner {
  display: inline-flex;
  font-size: 0.8em;
  text-align: start;
  color: #fff;
}
.wrapinner a {
  color: #fff;
	
}.wrapinner a:hover {
  color: #2e58a6;
}
.wrapout {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 0.5em;
}
.tinfoicon {
  display: inline-flex;
  align-items: center;
}
.icon {
  font-size: 3em;
  width: 1em;
}
@media (min-width: 992px) {
  .wrappertinfo {
    display: inline-flex;
    margin: 0em;
  }
  .wrapinner {
    display: inline-flex;
    font-size: 1em;
  }
  .wrapout {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 0.5em;
  }
  .tinfoicon {
    display: inline-flex;
    align-items: center;
  }
  .icon {
    font-size: 4em;
  }
}
.tinfo {
  display: flex;
  place-content: center space-around;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 992px) {
  .tinfo {
    display: flex;
    flex-direction: row;
    place-content: center space-evenly;
    align-items: center;
  }
  .tinfoicon {
    display: inline-flex;
    align-items: center;
  }
  .icon {
    font-size: 4em;
  }
}
.top-info2.shine {
  position: relative;
  overflow: hidden;
}
.shine:after {
  opacity: 0;
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: linear-gradient(to bottom, rgba(229, 172, 142, 0), rgba(255, 255, 255, 0.5) 50%, rgba(229, 172, 142, 0));
  animation: shine 3s infinite;
}
@keyframes shine {
  0% {
    transform: rotateZ(60deg) translate(-5em, 7.5em);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotateZ(60deg) translate(1em, -9em);
    opacity: 0;
  }
}


/* -------------------- Top Info ENDE -------------------- */



/* -------------------- hr style BEGINN -------------------- */

.hr-style {
  background-image: url(../images/border.svg);
  background-size: contain;
  width: 100%;
  height: 10px !important;
  background-repeat: no-repeat;
  border: none;
  background-color: transparent;
  opacity: 1;
}

/* -------------------- hr style ENDE -------------------- */



/* -------------------- Öffnungszeiten Tabelle BEGINN -------------------- */

.table {
  border-color: #989898;
}
.table .table {
  background-color: transparent;
  color: var(--color-text);
  font-size: 16px;
}
.table-success, .table-success > th, .table-success > td {
  background-color: #80c41c;
  color: #fff;
  font-weight: 400;
}
.table-sm > :not(caption) > * > * {
  padding: 0.25rem;
}

/* -------------------- Öffnungszeiten Tabelle ENDE -------------------- */



/* -------------------- Datenschutz Button BEGINN -------------------- */

.btn-success {
  color: #fff;
  background-color: #80c41c;
  border-color: #80c41c;
}
.btn-success:hover {
    color: #fff;
    background-color: #2e58a6;
    border-color: #2e58a6;
}
.btn-check:focus + .btn-success, .btn-success:focus {
  color: #fff;
  background-color: #2e58a6 !important;
  border-color: #2e58a6 !important;
  box-shadow: 0 0 0 .25rem rgba(176,158,128,0.50) !important;
}
.btn-check:active + .btn-success, .btn-check:checked + .btn-success, .btn-success.active, .btn-success:active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #2e58a6;
  background-image: none;
  border-color: #2e58a6
}
.btn-check:active + .btn-success:focus, .btn-check:checked + .btn-success:focus, .btn-success.active:focus, .btn-success:active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 .25rem rgba(176,158,128,0.50);
}
.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #2e58a6;
  background-image: none;
  border-color: #2e58a6;
}

/* -------------------- Datenschutz Button ENDE -------------------- */



/* -------------------- Inviewport img BEGINN -------------------- */

[data-inviewport] img {
	width: 100%;
	height: 450px;
	object-fit: cover;
	top: 0;
	left: 0;
	opacity: 1;
}

[data-inviewport="zoomout"] { 
  transition: all 10s ease;
  transform: scale(1.3);
}
[data-inviewport="zoomout"].is-inViewport { 
  transform: scale(1);
}

.container-inviewport {
	padding: 0;
	overflow: hidden;
	height: 450px;
}

/* -------------------- Inviewport img ENDE -------------------- */



/* -------------------- List-Style BEGINN -------------------- */

ul.list {
  list-style: none;
}
ul.list {
  list-style: none;
  display: table;
}
ul.list li {
  display: table-row;
  font-size: 1.5rem;
}
ul.list li::before {
  content: "● ";
  color: #80c41c;
  display: table-cell;
  padding-right: 0.75rem;
}

/* -------------------- List-Style ENDE -------------------- */



/* -------------------- BG Diagonal BEGINN -------------------- */

.diagonal {
  height: 150px;
  background-image: var(--diagonal);
  background-size: cover;
  background-position: bottom;
}
.diagonal-2 {
  height: 150px;
  background-image: var(--diagonal2);
  background-size: cover;
  background-position: top;
}

/* -------------------- BG Diagonal ENDE -------------------- */



/* -------------------- Produkt BEGINN -------------------- */


.product .product-btns .btn,
.product .product-btns .btn:before,
.product .product-btns .btn svg {
  transition: all 0.35s;
  transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
}
.product .product-btns .btn:before {
  top: 90%;
  left: -110%;
}
.product .product-btns .btn svg {
  transform: scale(0.8);
}
.product .product-btns .btn.icon:before {
  background: linear-gradient(-45deg, #80c41c 0%, #2e58a6 25%, #80c41c 50%, #2e58a6 75%, #80c41c 100%); 
}
.product .product-btns .btn.icon svg {
  color: linear-gradient(-45deg, #80c41c 0%, #2e58a6 25%, #80c41c 50%, #2e58a6 75%, #80c41c 100%); 
}
.product:focus.product-btns .btn:before ,
.product:hover .product-btns .btn:before {
  top: -10%;
  left: -10%;
}
.product:focus .product-btns .btn svg,
.product:hover .product-btns .btn svg {
  color: #fff;
  transform: scale(1);
}
.product .product-btns {
  height: 90px;
  margin: auto;
  font-size: 0;
  text-align: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.product .product-btns .btn {
  display: inline-flex;
  background-color: var(--bg-body);
  color: var(--color-text);
  width: 90px;
  height: 90px;
  line-height: 90px;
  margin: 0 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 28%;
  box-shadow: 0 5px 15px -5px rgba(0,0,0,0.1);
  opacity: 0.99;
}
.product .product-btns .btn:before {
  content: '';
  width: 120%;
  height: 120%;
  position: absolute;
  transform: rotate(10deg);
}
.product .product-btns .btn svg {
  font-size: 3rem;
  margin: auto;
}
.plus-effect svg {
  animation: puls 3s infinite;
  transition: 3s infinite;
  color: #80c41c;
}
@keyframes puls {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(5px, 0);
    transform: translate(5px, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.btn-outline-primary {
    color: var(--color-btn) !important;
    background-color: transparent !important;
    border-color: var(--border-btn) !important;
}
.btn-outline-primary:hover {
    color: var(--color-white) !important;
    background-color: var(--bg-btn) !important;
    border-color: var(--border-btn) !important;
}

/* -------------------- Produkt ENDE -------------------- */



/* -------------------- Slidershow Multiple Items BEGINN -------------------- */

.carousel-inner .carousel-item .card .card-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .carousel-inner .carousel-item > div {
    display: none;
  }
  .carousel-inner .carousel-item > div:first-child {
    display: block;
  }
}
.carousel-inner .carousel-item.active, .carousel-inner .carousel-item-next, .carousel-inner .carousel-item-prev {
  display: flex;
}
/* medium and up screens */
@media (min-width: 768px) {
  .carousel-inner .carousel-item-end.active, .carousel-inner .carousel-item-next {
    transform: translateX(25%);
  }
  .carousel-inner .carousel-item-start.active, .carousel-inner .carousel-item-prev {
    transform: translateX(-25%);
  }
}
.carousel-inner .carousel-item-end, .carousel-inner .carousel-item-start {
  transform: translateX(0);
}

/* -------------------- Slidershow Multiple Items BEGINN -------------------- */



/* -------------------- OnlineShop BEGINN -------------------- */

.flip-box {
  position: relative;
  opacity: 0;
  display: grid;
  margin: -25% auto 0 auto;
  z-index: 9;
  width: 100%;
  height: auto;
  color: #fff;
  text-align: center;
  background-color: #80c41c;
}
.flip-box.active {
  opacity: 1;
}
.active.flip-box-text {
  animation-name: flip-box-text;
  animation-timing-function: ease-in;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0.35s;
  opacity: 0;
}
@keyframes flip-box-text {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.flip-card {
  width: 100%;
  height: 500px;
  display: none;
}
@media (min-width: 992px) {
  .flip-box {
    width: 50%;
  }
  .flip-card {
    display: block;
  }
}
.flip-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.flip {
  opacity: 0;
}
.flip.active {
  opacity: 1;
}
.active.flip {
  opacity: 1;
  animation-name: flip;
  animation-timing-function: ease-in;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.flip.flip-img1 {
  opacity: 1;
  animation-delay: 0s;
}
.flip.flip-img2 {
  opacity: 1;
  animation-delay: 0.5s;
}
.flip.flip-img3 {
  opacity: 1;
  animation-delay: 1s;
}
.flip.flip-img4 {
  opacity: 1;
  animation-delay: 1.5s;
}
@keyframes flip {
  0% {
    transform: rotateY(0.0turn);
    opacity: 1;
  }
  100% {
    transform: rotateY(-0.5turn);
    opacity: 0.5;
  }
}

/* -------------------- OnlineShop ENDE -------------------- */



/* -------------------- List Progress ANFANG ----------------------- */

ol.clean {
  list-style: none;
  counter-reset: list;
  padding: 0rem;
}
ol.clean li {
  --stop: calc(100% / 5 * var(--i));
  position: relative;
  counter-increment: list;
  max-width: 100%;
  margin: 2rem auto;
  padding: 2rem 1rem 1rem;
  box-shadow: 0.1rem 0.1rem 1.5rem rgba(0, 0, 0, 0.3);
  border-radius: 0.25rem;
  overflow: hidden;
  background-color: var(--bg-body);
}
ol.clean li::before {
  content: '';
  display: block;
  width: 100%;
  height: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #52ae32 var(--stop), #a8a8a7 var(--stop));
}
ol.clean h5 {
  display: flex;
  align-items: baseline;
  margin: 0 0 1rem;
  color: var(--color-text);
}
ol.clean h5::before {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  margin-right: 1rem;
  width: 3rem;
  height: 3rem;
  content: counter(list);
  padding: 1rem;
  border-radius: 50%;
  background-color: #52ae32;
  color: #fff;
}
@media (min-width: 40em) {
  ol.clean li {
    margin: 2rem auto;
    padding: 3rem 2rem 2rem;
  }
  ol.clean h3 {
    font-size: 2.25rem;
    margin: 0 0 2rem;
  }
  ol.clean h3::before {
    margin-right: 1.5rem;
  }
}

/* -------------------- List Progress ANFANG ----------------------- */



/* -------------------- Ordered List ANFANG ----------------------- */

.container-list .list .num {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: 0.25s;
}
.container-list .list .num2 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: 0.25s;
}
.container-list .list .num3 {
  display: flex;
  align-items: center;
  margin: 2rem 0;
  justify-content: flex-start;
  transition: 0.25s;
}
.container-list .list .num4 {
  display: flex;
  align-items: center;
  margin: 2rem 0;
  justify-content: flex-start;
  transition: 0.25s;
}
.container-list .list .num:nth-child(0):before {
  content: '0';
  font-size: 2.5rem;
  font-weight: bold;
  color: #80c41c;
  width: 2.2rem;
  opacity: 0.3;
  transition: 0.25s;
}
.container-list .list .num:nth-child(1):before {
  content: '1';
  font-size: 2.5rem;
  font-weight: bold;
  color: #80c41c;
  width: 2.2rem;
  opacity: 0.3;
  transition: 0.25s;
}
.container-list .list .num:nth-child(2):before {
  content: '2';
  font-size: 2.5rem;
  font-weight: bold;
  color: #80c41c;
  width: 2.2rem;
  opacity: 0.3;
  transition: 0.25s;
}
.container-list .list .num:nth-child(3):before {
  content: '3';
  font-size: 2.5rem;
  font-weight: bold;
  color: #80c41c;
  width: 2.2rem;
  opacity: 0.3;
  transition: 0.25s;
}
.container-list .list .num:nth-child(4):before {
  content: '4';
  font-size: 2.5rem;
  font-weight: bold;
  color: #80c41c;
  width: 2.2rem;
  opacity: 0.3;
  transition: 0.25s;
}
.container-list .list .num:nth-child(5):before {
  content: '5';
  font-size: 2.5rem;
  font-weight: bold;
  color: #80c41c;
  width: 2.2rem;
  opacity: 0.3;
  transition: 0.25s;
}
.container-list .list .num:nth-child(6):before {
  content: '6';
  font-size: 2.5rem;
  font-weight: bold;
  color: #80c41c;
  width: 2.2rem;
  opacity: 0.3;
  transition: 0.25s;
}
.container-list .list .num2:nth-child(1):before {
  content: '7';
  font-size: 2.5rem;
  font-weight: bold;
  color: #80c41c;
  width: 2.2rem;
  opacity: 0.3;
  transition: 0.25s;
}
.container-list .list .num2:nth-child(2):before {
  content: '8';
  font-size: 2.5rem;
  font-weight: bold;
  color: #80c41c;
  width: 2.2rem;
  opacity: 0.3;
  transition: 0.25s;
}
.container-list .list .num2:nth-child(3):before {
  content: '9';
  font-size: 2.5rem;
  font-weight: bold;
  color: #80c41c;
  width: 2.2rem;
  opacity: 0.3;
  transition: 0.25s;
}
.container-list .list .num2:nth-child(4):before {
  content: '10';
  font-size: 2.5rem;
  font-weight: bold;
  color: #80c41c;
  width: 2.2rem;
  opacity: 0.3;
  transition: 0.25s;
}
.container-list .list .num2:nth-child(5):before {
  content: '11';
  font-size: 2.5rem;
  font-weight: bold;
  color: #80c41c;
  width: 2.2rem;
  opacity: 0.3;
  transition: 0.25s;
}
.container-list .list .num3:nth-child(1):before {
  content: '✓';
  font-size: 2.5rem;
  font-weight: bold;
  color: #80c41c;
  width: 2.2rem;
  opacity: 0.3;
  transition: 0.25s;
}
.container-list .list .num3:nth-child(2):before {
  content: '✓';
  font-size: 2.5rem;
  font-weight: bold;
  color: #80c41c;
  width: 2.2rem;
  opacity: 0.3;
  transition: 0.25s;
}
.container-list .list .num3:nth-child(3):before {
  content: '1';
  font-size: 2.5rem;
  font-weight: bold;
  color: #80c41c;
  width: 2.2rem;
  opacity: 0.3;
  transition: 0.25s;
}
.container-list .list .num3:nth-child(4):before {
  content: '2';
  font-size: 2.5rem;
  font-weight: bold;
  color: #80c41c;
  width: 2.2rem;
  opacity: 0.3;
  transition: 0.25s;
}
.container-list .list .num4:nth-child(1):before {
  content: '1';
  font-size: 2.5rem;
  font-weight: bold;
  color: #80c41c;
  width: 2.2rem;
  opacity: 0.3;
  transition: 0.25s;
}
.container-list .list .num4:nth-child(2):before {
  content: '2';
  font-size: 2.5rem;
  font-weight: bold;
  color: #80c41c;
  width: 2.2rem;
  opacity: 0.3;
  transition: 0.25s;
}
.container-list .list .num4:nth-child(3):before {
  content: '3';
  font-size: 2.5rem;
  font-weight: bold;
  color: #80c41c;
  width: 2.2rem;
  opacity: 0.3;
  transition: 0.25s;
}
.container-list .list .num4:nth-child(4):before {
  content: '4';
  font-size: 2.5rem;
  font-weight: bold;
  color: #80c41c;
  width: 2.2rem;
  opacity: 0.3;
  transition: 0.25s;
}
.container-list .list .num4:nth-child(5):before {
  content: '5';
  font-size: 2.5rem;
  font-weight: bold;
  color: #80c41c;
  width: 2.2rem;
  opacity: 0.3;
  transition: 0.25s;
}
.container-list .list .num4:nth-child(6):before {
  content: '6';
  font-size: 2.5rem;
  font-weight: bold;
  color: #80c41c;
  width: 2.2rem;
  opacity: 0.3;
  transition: 0.25s;
}
.container-list .list .num h3 {
  position: relative;
  margin: 0;
  font-size: 0.85rem;
  transition: 0.25s;
}
.container-list .list .num:hover {
  background-color: #fafafa;
}
.container-list .list .num:hover:before {
  opacity: 1;
}
.container-list .list .num:hover h3 {
  left: 1rem;
}
.container-list .list .num2 h3 {
  position: relative;
  margin: 0;
  font-size: 0.85rem;
  transition: 0.25s;
}
.container-list .list .num2:hover {
  background-color: #fafafa;
}
.container-list .list .num2:hover:before {
  opacity: 1;
}
.container-list .list .num2:hover h3 {
  left: 1rem;
}
.container-list .list .num3 h3 {
  position: relative;
  margin: 0 2rem;
  font-size: 0.85rem;
  transition: 0.25s;
}
.container-list .list .num3:hover {
  background-color: #fafafa;
}
.container-list .list .num3:hover:before {
  opacity: 1;
}
.container-list .list .num3:hover h3 {
  left: 1rem;
}
.container-list .list .num4 h3 {
  position: relative;
  margin: 0 2rem;
  font-size: 0.85rem;
  transition: 0.25s;
}
.container-list .list .num4:hover {
  background-color: #fafafa;
}
.container-list .list .num4:hover:before {
  opacity: 1;
}
.container-list .list .num4:hover h3 {
  left: 1rem;
}

/* -------------------- Ordered List ENDE ----------------------- */



/* -------------------- Effekte BEGINN -------------------- */

.tada {
  -webkit-animation: tada 4s ease-in;
  animation: tada 4s ease-in;
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
    transform: scale3d(.9, .9, .9) rotate(-3deg)
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
    transform: scale3d(.9, .9, .9) rotate(-3deg)
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
}
.zoom {
  -webkit-animation: zoom 4s ease-in;
  animation: zoom 4s ease-in;
}
@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes zoom {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* -------------------- Effekte ENDE -------------------- */



/* -------------------- ol cards BEGINN -------------------- */


ol.veterinaer {
  width: min(60rem, 90%);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  list-style: none;
  counter-reset: cardnr;
  justify-content: center;
}
ol.veterinaer li {
  counter-increment: cardnr;
  width: calc(10em - 0.5rem * 2);
  display: grid;
  grid-template:
    "icon"4rem "title"
    "descr"225px;
  margin-inline: 0.5rem;
  margin-bottom: calc(4rem);
  position: relative;
}
ol.veterinaer li .icon, ol.veterinaer li .title, ol.veterinaer li .descr {
  background: var(--bg-body);
  padding-inline: 1rem;
  padding-bottom: 1rem;
}
ol.veterinaer li .icon, ol.veterinaer li .title {
  color: #80c41c;
  text-align: center;
  padding-bottom: 0.5rem;
}
ol.veterinaer li .title, ol.veterinaer li .descr {
  filter: drop-shadow(0.125rem 0.125rem 0.075rem rgba(0, 0, 0, 0.25));
}
ol.veterinaer li .icon {
  width: auto;
  grid-area: icon;
  font-size: 2rem;
  display: grid;
  place-items: center;
  border-radius: 4rem 0 0 0;
  position: relative;
}
ol.veterinaer li .title {
  grid-area: title;
  font-size: 1.1rem;
  font-weight: bold;
}
ol.veterinaer li .descr {
  grid-area: descr;
  font-size: 0.85rem;
  text-align: center;
}
ol.veterinaer li .descr::before {
  content: "";
  width: 2rem;
  height: 1.5rem;
  position: absolute;
  right: 1.5rem;
  top: 100%;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
ol.veterinaer li::after {
  content: counter(cardnr, decimal-leading-zero);
  position: absolute;
  z-index: -1;
  left: calc(0.5rem * -1);
  right: calc(0.5rem * -1);
  top: 4rem;
  bottom: calc(4rem * -1);
  display: flex;
  align-items: flex-end;
  background: #2e58a6;
  background-image: linear-gradient(160deg, rgba(255, 255, 255, 0.25), transparent 25% 75%, rgba(0, 0, 0, 0.25));
  border-radius: 0 0 4rem 0;
  padding: 1rem;
  font-size: calc(4rem - 1rem * 2);
  color: white;
}
ol.veterinaer li::before {
  content: "";
  position: absolute;
  height: 4rem;
  top: calc(100% + 4rem - 2px);
  left: calc(0.5rem * -1);
  right: calc(0.5rem * -1);
  border-radius: 0 4rem 0 0;
  background-image: linear-gradient(#2e58a6, transparent 60%);
  opacity: 0.5;
  filter: blur(2px);
}

/* -------------------- ol cards ENDE -------------------- */



/* -------------------- check cards BEGINN -------------------- */

.card-check {
  width: 100%;
  height: 340px;
  padding: 1em;
  perspective: 1500px;
}
.card-check .content {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.75, 0, 0.85, 1);
}
.more {
  display: none;
}
.more:checked ~ .content {
  transform: rotateY(180deg);
}
.front, .back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  border-radius: 6px;
}
.front .inner, .back .inner {
  height: 100%;
  display: grid;
  padding: 1.5em;
  transform: translateZ(80px) scale(0.94);
}
.front {
  background-color: #fff;
  background-size: cover;
  background-position: center center;
}
.front:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 6px;
  backface-visibility: hidden;
  background: linear-gradient(40deg, rgba(67, 138, 243, 0.7), rgba(128,196,28,0.7));
}
.front .inner {
  grid-template-rows: 5fr 1fr 1fr 2fr 1fr;
  justify-items: center;
}
.front h3 {
  grid-row: 2;
  color: #fff;
  word-break: break-all !important;
  text-transform: none !important;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
.back {
  transform: rotateY(180deg);
  background-color: var(--bg-body);
  border: 2px solid #f0f0f0;
}
.back .inner {
  grid-template-rows: 1fr 2fr 1fr 2fr 14fr 1fr 1fr;
  grid-template-columns: repeat(4, auto);
  grid-column-gap: 0.8em;
  justify-items: center;
}
.back .description {
  grid-row: 5;
  grid-column: 1/-1;
  border-radius: 5px;
  line-height: 1.4em;
  overflow: auto;
  padding-right: 10px;
}
.back .button {
  grid-column: 1/-1;
  justify-self: center;
}
.button {
  grid-row: -1;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  display: block;
  padding: 0 1.5em;
  line-height: 2.9em;
  min-width: 3em;
  background-color: transparent;
  border: solid 2px #fff;
  color: #fff;
  border-radius: 4px;
  text-align: center;
  backface-visibility: hidden;
  transition: 0.3s ease-in-out;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}
.button:hover {
  background-color: #fff;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  text-shadow: none;
  color: #355cc9;
}
.button.return {
  line-height: 3em;
  color: #355cc9;
  border-color: #355cc9;
  text-shadow: none;
}
.button.return:hover {
  background-color: #355cc9;
  color: #fff;
  box-shadow: none;
}

/* -------------------- check cards ENDE -------------------- */



/* -------------------- check animation BEGINN -------------------- */

.wrapper-check {
  display: flex;
  justify-content: center;
  align-items: center;
}
.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #80c41c;
  fill: none;
  animation: stroke 3s cubic-bezier(0.65, 0, 0.45, 1) forwards
}
.checkmark {
  width: 75%;
  height: 75%;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 10% auto;
  box-shadow: inset 0px 0px 0px #80c41c;
  animation: fill 4s ease-in-out 4s forwards, scale 3s ease-in-out 9s both
}
.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 3s cubic-bezier(0.65, 0, 0.45, 1) 8s forwards;
}
@keyframes stroke {
  100% {
    stroke-dashoffset: 0
  }
}
@keyframes scale {
  0%, 100% {
    transform: none
  }
  50% {
    transform: scale3d(1.1, 1.1, 1)
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 200px #80c41c
  }
}

/* -------------------- check animation ENDE -------------------- */



/* -------------------- Beratung BEGINN -------------------- */

.main {
  height: 85vh;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  position: relative;
  justify-content: center;
  align-items: center;
}
.main:before, .main:after {
  content: "";
  display: block;
  position: absolute;
}
.main:before {
  right: 0;
  bottom: -19;
  height: 20em;
  width: 20em;
  border-radius: 30em;
  background: linear-gradient(#2e58a6, #80c41c);
  align-self: flex-end;
  -webkit-animation: gradient-fade 8s ease-in-out 3s infinite alternate;
          animation: gradient-fade 8s ease-in-out 3s infinite alternate;
}
.main:after {
  top: 0;
  left: 30;
  height: 10em;
  width: 10em;
  border-radius: 10em;
  background: linear-gradient(#2e58a6, #80c41c);
  -webkit-animation: gradient-fade-alt 6s ease-in-out 3s infinite alternate;
          animation: gradient-fade-alt 6s ease-in-out 3s infinite alternate;
}
.main__text-wrapper {
  position: relative;
  padding: 2em;
  text-align: center;
}
.main__text-wrapper:after {
  content: "";
  display: block;
  position: absolute;
  width: 10em;
  height: 10em;
  border-radius: 20em;
  background: linear-gradient(#80c41c, #2e58a6);
  -webkit-animation: rotation 7s linear infinite;
          animation: rotation 7s linear infinite;
}

.circle {
  transform: translate(50%, -50%) rotate(0deg);
  transform-origin: center;
}
.circle--ltblue {
  height: 20em;
  width: 20em;
  border-radius: 20em;
  background: linear-gradient(#2e58a6, #3800e7);
}

.backdrop {
  position: absolute;
  width: 100vw;
  height: 100vh;
  display: block;
  background-color: pink;
}

.dotted-circle {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 1;
  -webkit-animation: rotation 38s linear infinite;
          animation: rotation 38s linear infinite;
}

@-webkit-keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes gradient-fade {
  from {
    transform: translate(10%, -10%) rotate(0deg);
  }
  to {
    transform: translate(50%, -50%) rotate(360deg);
  }
}
@keyframes gradient-fade {
  from {
    transform: translate(10%, -10%) rotate(0deg);
  }
  to {
    transform: translate(50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes gradient-fade-alt {
  from {
    transform: translate(-20%, 20%) rotate(0deg);
  }
  to {
    transform: translate(-60%, 60%) rotate(360deg);
  }
}
@keyframes gradient-fade-alt {
  from {
    transform: translate(-20%, 20%) rotate(0deg);
  }
  to {
    transform: translate(-60%, 60%) rotate(360deg);
  }
}

/* -------------------- Beratung ENDE -------------------- */



/* -------------------- Image Grid - Gebrauchtgeneratoren BEGINN -------------------- */ 

.first-img {
  width: 90%;
  height: auto;
  float: right;
  object-fit: cover;
}
.second-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.third-img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .first-img {
    width: 100%;
  }
  .third-img {
    width: 100%;
    height: auto;
  }
} 

/* -------------------- Image Grid - Gebrauchtgeneratoren ENDE -------------------- */ 



/* -------------------- Card Contact BEGINN -------------------- */ 

.card-contact {
  position: relative;
  display: flex;
  min-height: 400px;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.7)), url("../images/background/006--624049877.jpg");
  background-size: cover;
  background-position: top left;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, .125);
  border-radius: 0.25rem;
  box-shadow: 10px -5px 10px rgba(0,0,0,0.50);
}
.card-contact .card-body {
  text-align: center;
}

/* -------------------- Card Contact ENDE -------------------- */ 



/* -------------------- Animation up and down BEGINN -------------------- */

.AnimationUpDown {
  animation: UpDown 2s infinite;
  transition: 2s infinite;
}
@keyframes UpDown {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 5px);
    transform: translate(0, 5px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

/* -------------------- Animation up and down ENDE -------------------- */



/* -------------------- Shake-it BEGINN -------------------- */

.shake-it {
  animation: shakeit 4s ease infinite;
  animation-delay: 1s;
}
@keyframes shakeit {
  5%, 50% {
    transform: scale(1);
  }
  10% {
    transform: scale(0.9);
  }
  15% {
    transform: scale(1.05);
  }
  20% {
    transform: scale(1.05) rotate(-5deg);
  }
  25% {
    transform: scale(1.05) rotate(5deg);
  }
  30% {
    transform: scale(1.05) rotate(-3deg);
  }
  35% {
    transform: scale(1.05) rotate(2deg);
  }
  40% {
    transform: scale(1.05) rotate(0);
  }
}

/* -------------------- Shake-it ENDE -------------------- */



/* -------------------- Margin -------------------- */

.margin-top {
  margin-top: 50px;
}
.margin-bottom {
  margin-bottom: 50px;
}
.margin-y {
  margin: 50px 0px;
}
@media (min-width: 992px) {
  .margin-top {
    margin-top: 100px;
  }
  .margin-bottom {
    margin-bottom: 100px;
  }
  .margin-y {
    margin: 100px 0px;
  }
}

/* -------------------- Login Button -------------------- */

.button-shop {
  color: #fff !important;
  outline: 0;
  border: 3px solid #80c41c;
  cursor: pointer;
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
.button-shop:after {
  content: "";
  background-color: #2e58a6;
  width: 100%;
  z-index: -1;
  position: absolute;
  height: 100%;
  top: 7px;
  left: 7px;
  transition: 0.2s;
}
.button-shop:hover:after {
  top: 0px;
  left: 0px;
}

/* -------------------- Video-Container ----------------------- */

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* -------------------- Video-Container ----------------------- */

.wrapper-CO2 {
  position: relative;
  text-align: center;
  display: grid;
}
.img-CO2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container-CO2 {
  position: relative;
  padding: 3rem;
  width: 100%;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .container-CO2 {
    position: absolute;
    padding: 3rem; 
    width: 40%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}