/*Variablen*/
/*blau*/
/*gelb*/
/*Hintergrund  grau*/
@import "/css/fonts.css";
/* Mixins */
/*css-property,farbe, transparenz*/
/*@include rgbx(background-color,$f1,0.7);*/
/*/Mixins*/
h1 {
  margin-top: 0;
  font-weight: 400;
  border-bottom: 2px solid #f5770f;
  font-size: 33px;
  padding-bottom: 10px;
}
h2 {
  font-weight: 400;
  font-size: 27px;
}
h3 {
  font-weight: 400;
  font-size: 23px;
  margin-bottom: 10px;
}
p {
  margin-bottom: 10px;
}
strong {
  font-weight: 600;
}
.orange {
  color: #f5770f;
}
.text_gross {
  font-size: 60px;
}
.klein {
  font-size: 14px;
}
body {
  font-family: "Exo";
  font-size: 18px;
  background: #b0adad;
  background: linear-gradient(347deg, #b0adad 0%, #6b6b6b 100%);
  color: rgba(0, 0, 0, 0.9);
  margin: 0;
}
.braggadocio {
  font-family: "Braggadocio";
  font-style: italic;
}
header {
  width: 100%;
  max-width: 100%;
  background: #8999bd;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  border-bottom: 1px solid black;
  -webkit-box-shadow: 1px 18px 13px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 18px 13px 1px rgba(0, 0, 0, 0.1);
}
header .outer {
  background: #8999bd;
}
#main {
  width: 100%;
}
.outer {
  width: 1440px;
  max-width: 100%;
  margin: 0 auto;
  background: white;
}
.outer.navi {
  display: flex;
  justify-content: space-between;
}
.outer.sd {
  -webkit-box-shadow: 8px 19px 16px 11px rgba(0, 0, 0, 0.1);
  box-shadow: 8px 19px 16px 11px rgba(0, 0, 0, 0.1);
}
.inner {
  width: 1340px;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 50px;
}
.content {
  padding: 50px 0px;
}
.content ul {
  padding-left: 17px;
  margin: 0;
}
.content ul li {
  /*
			list-style-position: outside;
			list-style-type:none;
			margin-left:10px;
			position:relative;
			&:before
			{
			display:inline-block;
			position:relative;
			top:-4px;

			left:-10px;

			content:'';
			width:5px;
			height:5px;
			background-color:$f2;
		}
			*/
  list-style-type: square;
  margin-bottom: 5px;
}
.content ul li::marker {
  color: #f5770f;
}
.content iframe {
  max-width: 100%;
}
.content a {
  color: initial;
  border-bottom: 1px dotted #f5770f;
}
.content a:hover {
  color: #f5770f;
  transition: color 0.2s;
}
a {
  text-decoration: none;
}
#logo {
  width: 170px;
  padding-top: 15px;
  z-index: 1;
}
#logo img {
  width: 100%;
  height: auto;
}
.errormessage {
  margin-top: 20px;
  background: #8999bd;
  color: white;
  padding: 10px;
}
.errormessage a {
  color: #f5770f;
}
@keyframes in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
#navi {
  width: calc(100% - 250px);
}
#navi a {
  color: white;
  text-decoration: none;
  font-size: 22px;
  padding-right: 20px;
  transition: 0.5s color;
}
#navi a:hover {
  color: #f5770f;
  transition: 0.5s color;
}
#navi nav ul {
  display: flex;
  list-style-type: none;
  justify-content: space-between;
  margin-bottom: 0;
}
#navi nav ul li {
  position: relative;
  padding-bottom: 30px;
  padding-top: 15px;
}
#navi nav ul li.sprachwahl {
  display: flex;
  width: 80px;
  justify-content: space-between;
  align-items: flex-start;
}
#navi nav ul li.sprachwahl img {
  width: 30px;
  height: auto;
}
#navi nav ul li.hasentries:after {
  content: "";
  position: absolute;
  right: -10px;
  top: 25px;
  background-image: url("/grafiken/hasentries_w.png");
  /*background-image:url('/grafiken/hasentries.png');*/
  background-repeat: no-repeat;
  width: 16px;
  height: 10px;
  cursor: pointer;
  transition: 0.5s transform;
}
#navi nav ul li.hasentries .openit {
  display: none;
}
#navi nav ul li:last-of-type a {
  padding-right: 0;
}
#navi nav ul li ul {
  animation-name: out;
  animation-duration: 2s;
  animation-iteration-count: 1;
  display: none;
  -webkit-box-shadow: 1px 5px 9px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 5px 9px 1px rgba(0, 0, 0, 0.1);
  background: #8999bd;
  position: absolute;
  left: 0px;
  min-width: 250px;
  width: 85%;
  padding-left: 0;
}
#navi nav ul li ul li {
  border-bottom: 1px solid #f5770f;
  padding: 10px;
  position: relative;
}
#navi nav ul li ul li a {
  color: white;
  font-size: 18px;
  transition: 0.8s color;
}
#navi nav ul li ul li a:hover {
  color: #f5770f;
  transition: 0.3s color;
}
#navi nav ul li ul li:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
#navi nav ul li:hover ul {
  display: block;
  animation-name: in;
  animation-duration: 0.8s;
  animation-iteration-count: 1;
}
#navi nav ul li:hover:after {
  transform: scaleY(-1);
  transition: 0.3s transform;
}
#navi nav ul li .openit {
  position: absolute;
  right: 28px;
  top: 15px;
}
#navi nav ul li .openit img {
  width: 30px;
  height: auto;
}
#burger {
  display: none;
  cursor: pointer;
  position: absolute;
  right: 25px;
  top: 28px;
  z-index: 10;
  height: 25px;
  width: 40px;
  height: 40px;
  pointer-events: all;
}
#burger.open:before {
  content: none;
}
#burger.open span.linie1 {
  transform: translateY(19px) rotate(45deg);
  width: 30px;
}
#burger.open span.linie2 {
  transform: translateY(0px) rotate(-45deg);
  width: 30px;
  position: absolute;
  top: 1px;
}
#burger:before {
  content: "";
  width: 40px;
  height: 1px;
  background-color: white;
  display: block;
  position: absolute;
  top: 10px;
}
#burger span {
  height: 1px;
  display: block;
  /*margin: 15px 0px;*/
  background-color: white;
  transform: rotate(0deg);
  transition: 0.25s all;
}
#burger span.linie1 {
  width: 40px;
}
#burger span.linie2 {
  margin-top: 18px;
  width: 40px;
}
#burger:hover .linie1, #burger:hover .linie2, #burger:hover:before {
  height: 2px;
  transition: 0.5s all;
}
#burger:hover:after {
  height: 2px;
  transition: 0.5s all;
}
.parallax-window {
  min-height: 500px;
  background: transparent;
}
.pl_mobil {
  display: none;
  min-height: 300px;
  position: relative;
  width: 100%;
  max-width: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.headerimg, .parallax-mirror {
  z-index: 0 !important;
  opacity: 0.8;
}
#hauptgrafik_bg {
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
  background-position: center;
  backdrop-filter: opacity(50%);
}
#blur {
  backdrop-filter: blur(12px) grayscale(75%);
  -moz-backdrop-filter: blur(12px) grayscale(75%);
  -webkit-backdrop-filter: blur(12px) grayscale(75%);
  width: 100%;
  height: 100%;
  position: absolute;
}
#hauptgrafik {
  position: relative;
  width: 750px;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 4px 2px 5px 0px #424242;
  overflow: hidden;
}
.jarallax {
  height: 600px;
  background: #8999bd;
}
#arrowup {
  background: #8999bd;
  width: 40px;
  height: 40px;
  position: fixed;
  z-index: 1;
  right: 15px;
  bottom: 20px;
  display: none;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}
#arrowup img {
  width: 17px;
  height: auto;
}
#container {
  margin-top: 92px;
}
.headerimg {
  position: relative;
}
.headerimg img {
  display: block;
  max-width: 100%;
  height: auto;
}
.headerimg .headertext {
  color: white;
  font-size: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  box-sizing: border-box;
  padding: 55px;
}
.headerimg .headertext p {
  margin: 0;
  padding: 0;
}
.headerimg .headertext .orange {
  /*color:#ffb500c4;*/
  color: #f5770f;
  text-shadow: 1px 1px black;
  font-size: 40px;
}
.headerimg h1 {
  color: #f5770f;
  font-size: 60px;
  margin: 0;
  padding: 0;
  border-bottom: none;
}
#p_uebersicht {
  margin-top: 30px;
}
table {
  width: 100%;
  max-width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}
table.news tr:nth-of-type(odd) {
  background: #ededed;
}
table.news tr th, table.news tr td {
  text-align: left;
  vertical-align: top;
  padding: 8px;
}
.table-scrollable {
  width: 100%;
  max-width: 100%;
  overflow-y: auto;
  margin: 0 0 1em;
}
.table-scrollable::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
}
.table-scrollable::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 3px solid #fff;
  background-color: #8999bd;
}
#content_sprachlinks {
  position: absolute;
  right: 10px;
  margin-top: 5px;
  display: none;
  width: 70px;
  justify-content: space-between;
  align-items: flex-start;
}
#content_sprachlinks img {
  width: 30px;
  height: auto;
}
.box_ct {
  column-gap: 42px;
  row-gap: 42px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
.box_ct .box {
  border-radius: 4px;
  padding-bottom: 25px;
  background-color: #f5770f;
  position: relative;
  min-height: 200px;
  min-width: 240px;
  -webkit-box-shadow: 7px 11px 16px 7px rgba(0, 0, 0, 0.1);
  box-shadow: 7px 11px 16px 7px rgba(0, 0, 0, 0.1);
}
.box_ct .box.sp1 {
  width: 100%;
}
.box_ct .box.sp2 {
  width: calc(50% - 42px);
}
.box_ct .box.sp3 {
  width: calc(33% - 42px);
}
.box_ct .box.sp4 {
  width: calc(25% - 42px);
}
.box_ct .box a {
  text-decoration: none;
  color: black;
  font-weight: 400;
  position: relative;
  transition: all 0.5s;
}
.box_ct .box a:after {
  position: absolute;
  right: -58px;
  top: 6px;
  content: "";
  background-image: url("/grafiken/linkpfeil.png");
  background-size: 35px auto;
  background-repeat: no-repeat;
  width: 40px;
  height: 23px;
  transition: all 0.5s;
}
.box_ct .box a:hover {
  color: #666;
  transition: color 0.5s;
}
.box_ct .box a:hover img {
  transition: transform 0.6s;
  transform: scale(1.05);
}
.box_ct .box .box_head {
  border-radius: 4px 4px 0 0;
  color: white;
  background: #8999bd;
  padding: 9px 5px 9px 20px;
}
.box_ct .box .box_head h3 {
  padding: 0;
  margin: 0;
  font-weight: normal;
  font-size: 21px;
}
.box_ct .box .box_head a {
  color: white;
  border-bottom: none;
}
.box_ct .box .box_img {
  overflow: hidden;
}
.box_ct .box .box_img img {
  max-width: 100%;
  height: auto;
  transition: transform 0.2s;
}
.box_ct .box .box_body {
  padding: 15px 20px 10px 20px;
  color: black;
}
.box_ct .box .box_body h3 {
  margin-top: 0;
}
.box_ct .box .box_link {
  position: absolute;
  bottom: 7px;
  padding: 9px 5px 9px 20px;
}
.box_ct.produkte .box {
  min-height: initial;
  padding-bottom: 0;
}
.box_ct.produkte .box .box_body {
  padding: 17px 10px 12px 20px;
  text-align: center;
}
.box_ct.produkte .box .box_body h3 a {
  border-bottom: none;
  font-weight: 400;
}
.box_ct.produkte .box .box_body h3 a:hover {
  transition: color 0.5s;
  color: #666;
}
.box_ct.produkte .box a:after {
  content: none;
}
.wrongcode {
  position: relative;
}
.wrongcode:after {
  position: absolute;
  right: -58px;
  top: 6px;
  content: "";
  background-image: url("/grafiken/linkpfeil.png");
  background-size: 35px auto;
  background-repeat: no-repeat;
  width: 40px;
  height: 23px;
  transition: all 0.5s;
}
.wrongcode:hover {
  color: black;
  transition: color 1s;
}
.wrongcode:hover:after {
  right: -71px;
  transition: right 0.5s;
}
.download .item {
  margin-bottom: 30px;
}
.download .item a {
  border-bottom: none;
  color: #8999bd;
  transition: 0.3s color;
}
.download .item a:hover {
  color: #f5770f;
  transition: 0.3s color;
}
.download .item .icon {
  width: 20px;
  display: inline-block;
}
.download .item .icon img {
  max-width: 100%;
  height: auto;
}
#formtable {
  padding-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  column-gap: 30px;
}
#formtable .row {
  width: calc(50% - 30px);
  margin-bottom: 20px;
}
#formtable .row .value input[type="text"], #formtable .row .value input[type="email"], #formtable .row .value select, #formtable .row .value textarea {
  margin-top: 10px;
  width: 100%;
  padding: 15px 10px;
  box-sizing: border-box;
  font-size: 16px;
  border: 1px solid #b7b7b7;
  transition: 0.5s all;
}
#formtable .row .value input[type="text"]:focus-visible, #formtable .row .value input[type="email"]:focus-visible, #formtable .row .value select:focus-visible, #formtable .row .value textarea:focus-visible {
  border: 1px solid #676767;
  transition: 0.5s all;
  outline: none;
}
#formtable .row .value input[type="text"]#captchaname, #formtable .row .value input[type="email"]#captchaname, #formtable .row .value select#captchaname, #formtable .row .value textarea#captchaname {
  width: 50%;
}
#formtable .row .value textarea {
  font-family: "Exo";
  height: 400px;
}
#formtable .row .value select {
  padding-bottom: 16px;
}
#formtable .row .value input[type="submit"] {
  padding: 15px 70px;
  box-sizing: border-box;
  font-size: 20px;
  background-color: #f5770f;
  border: 1px solid grey;
}
#formtable .row.full {
  width: calc(100% - 30px);
}
#formtable .row.center {
  text-align: center;
}
.pdflink {
  margin-left: 35px;
  position: relative;
}
.pdflink:before {
  position: absolute;
  left: -35px;
  top: 0;
  content: "";
  width: 30px;
  height: 30px;
  display: inline-block;
  background-image: url("/grafiken/pdf_icon.png");
  background-size: 100% auto;
}
.footer {
  width: 100%;
  background: #8999bd;
}
.footer .inner {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 60px;
}
.footer .inner .ft_col {
  width: calc(25% - 45px);
  color: white;
}
.footer .inner .ft_col a {
  color: white;
}
.footer .inner .ft_col a:hover {
  color: black;
  transition: 0.3s color;
}
#pro_yt_img {
  cursor: pointer;
  max-width: 100%;
  height: auto;
}
