@charset "UTF-8";
/*
@font-face {
  font-family: 'thesans_bold';
  font-display: fallback;
  src: url('../fonts/thesans_bold.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
} */
@font-face {
  font-family: "BankGothicMediumBT";
  font-display: fallback;
  src: url("../fonts/bankgothic-md-bt/BankGothicMediumBT.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/*
	
// das ist noch in arbeit, im momment auskommentiert
body #main-content .et_pb_text_inner h1 { 
	color: $color-text!important;
}
*/
/* Desktop */
/* Footer */
/* Hamburger  */
/* Blog btn */
.fott {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}
body.no-divi #wp-admin-bar-et-use-visual-builder {
  display: none;
}
body.wp-admin .fott {
  position: relative;
  clip: initial;
  -webkit-clip-path: initial;
  clip-path: initial;
  overflow: hidden;
  height: auto;
  width: auto;
  padding: 5px 10px;
  background: #999;
  opacity: 0.5;
  border: 1px #f00 dashed;
}
body.wp-admin .fott:before {
  content: "Ist fott !!!";
  display: block;
  font-size: 16px;
  font-size: 16px;
  text-transform: none;
  line-height: normal;
  letter-spacing: normal;
  font-weight: bold;
  animation-name: animation_blink;
  animation-timing-function: ease-in;
  animation-duration: 2s;
  animation-iteration-count: 7;
}
@keyframes animation_blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
.ytVideoBgWrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.nobr {
  white-space: nowrap;
}
.teilen {
  height: 40px;
  padding: 0 27px;
  line-height: 40px;
  text-align: center;
  font-size: 15px;
  margin-bottom: 0px;
  position: absolute;
  bottom: -40px;
  background: #b5040f;
  color: #FFF;
  z-index: 11;
  right: 0px;
}
.teilen:hover {
  background: #bf0a12;
}
#main-header .container {
  position: initial;
}
/* scrolldown  */
#scrollpfeilwrap {
  position: fixed;
  z-index: 9;
  bottom: 15px;
  text-align: center;
  height: 60px;
  width: 100%;
  background: transparent;
}
#pfeilNachUntenWrap {
  z-index: 1;
  border-bottom: 20px;
  left: 50%;
  top: 0;
  bottom: 15px;
  width: 90px;
  margin-left: -45px;
  text-align: center;
  position: absolute;
}
#pfeilNachUnten {
  position: absolute;
  left: 0;
  top: 0;
}
/* bullets-liste */
ul.custom-bullets {
  padding-left: 0;
  padding-bottom: 0;
}
.custom-bullets li {
  padding-left: 0;
  list-style: none;
  line-height: 1.4em;
  margin-bottom: 1.2em;
  font-size: inherit;
  padding-left: 2em;
  position: relative;
}
.custom-bullets li ul {
  margin-top: 1.2em;
  margin-bottom: 0;
}
.custom-bullets li:last-child {
  margin-bottom: 0em;
}
.custom-bullets li::before {
  height: 1.3em;
  width: 1.3em;
  background: url(./img/bulletpoint_red.svg);
  background-repeat: no-repeat;
  border-radius: 100%;
  display: inline-block;
  content: "";
  margin-right: 15px;
  position: absolute;
  left: 0;
  top: 1px;
}
.custom-bullets.white li::before {
  background: url(./img/bulletpoint-2.svg);
}
/* nur ueber 980 */
@media only screen and (min-width: 980px) {
  /* das letzte element in der col nachunten */
  .btn-bottom .et_pb_column {
    display: flex;
    flex-flow: column nowrap;
  }
  .btn-bottom .et_pb_column .et_pb_button_module_wrapper {
    margin-top: auto !important;
    padding-top: 50px !important;
  }
}
/*
	Variante 2 wie oben .btn-bottom
	.last_element_bottom
	die classe in der row einfügen und spalten ausgleichen klicken
*/
.last_element_bottom .et_pb_column {
  display: flex;
  flex-direction: column;
}
.last_element_bottom .et_pb_column div:last-child {
  margin-top: auto;
}
/***
 * Animationen 
 ***/
.puls {
  animation: pulsieren 2s ease-in-out 3s infinite alternate;
  -webkit-animation: pulsieren 2s ease-in-out 3s infinite alternate;
  -moz-animation: pulsieren 2s ease-in-out 3s infinite alternate;
}
@-webkit-keyframes pulsieren {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@-moz-keyframes pulsierenButton {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes pulsierenButton {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.updown {
  -moz-animation: hochrunter 1s infinite alternate;
  -webkit-animation: hochrunter 1s infinite alternate;
  animation: hochrunter 1s infinite alternate;
}
@-webkit-keyframes hochrunter {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}
@-moz-keyframes hochrunter {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}
@keyframes hochrunter {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}
/* nur unter 980 */
@media (max-width: 980px) {
  /* divi spalten reihenfolge selber aendern */
  /* variante 1 - Manuel sortieren */
  /*** diese Klasse der ROW geben  ***/
  /*** und mit diesen Klassen anordnen ***/
  /*** add margin to last column ***/
  /* variante 2 - automatisch sortieren bei zweispalten */
  .no-tb {
    display: none;
  }
  .custom_row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    /* Safari 6.1+ */
    flex-wrap: wrap;
  }
  .first-on-mobile {
    -webkit-order: 1;
    order: 1;
  }
  .second-on-mobile {
    -webkit-order: 2;
    order: 2;
  }
  .third-on-mobile {
    -webkit-order: 3;
    order: 3;
  }
  .fourth-on-mobile {
    -webkit-order: 4;
    order: 4;
  }
  .custom_row:last-child .et_pb_column:last-child {
    margin-bottom: 30px;
  }
  .spalten-tausch, .mobile-turnaround-2cols {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    /* Safari 6.1+ */
    flex-wrap: wrap;
  }
  .spalten-tausch > div:last-child, .mobile-turnaround-2cols > div:last-child {
    -webkit-order: 1;
    order: 1;
  }
  .spalten-tausch > div:first-child, .mobile-turnaround-2cols > div:first-child {
    -webkit-order: 2;
    order: 2;
  }
}
@media (max-width: 767px) {
  /* variante 2 - automatisch sortieren bei zweispalten */
  .no-sm {
    display: none;
  }
  .sm-spalten-tausch, .sm-turnaround-2cols {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    /* Safari 6.1+ */
    flex-wrap: wrap;
  }
  .sm-spalten-tausch > div:last-child, .sm-turnaround-2cols > div:last-child {
    -webkit-order: 1;
    order: 1;
  }
  .sm-spalten-tausch > div:first-child, .sm-turnaround-2cols > div:first-child {
    -webkit-order: 2;
    order: 2;
  }
}
/* DIVI Menu schublade 100% width */
@media (max-width: 980px) {
  #main-header .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding-left: 0px;
    padding-right: 0px;
    box-sizing: border-box;
  }
  #top-header .container {
    width: 90%;
  }
}
.et_header_style_left .logo_container {
  width: 90%;
}
@media (max-width: 567px) {
  #top-header .container a {
    display: block;
    padding: 3px 0;
  }
}
/* Datenschutz ect... */
#main-content .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
/* zeilen breite */
.et_pb_row {
  width: 90%;
}
body.home .parallax_wrap .et_pb_row {
  width: 100%;
}
.parallax_wrap {
  overflow: hidden;
}
.parallax_wrap .et_pb_image_wrap, .parallax_wrap img {
  width: 100%;
  max-width: none;
}
/* hamburger menu vergrössern */
.mobile_menu_bar.et_pb_header_toggle {
  width: 60px;
}
.mobile_menu_bar:before, .et_toggle_slide_menu:after {
  font-size: 60px;
}
.et_toggle_slide_menu:after {
  left: -60px;
}
#main-content .container:before {
  background: none;
}
#sidebar {
  display: none;
}
#left-area {
  width: 100%;
  padding: 23px 0px 50px 0px !important;
  float: none !important;
}
/***
 * sonstige allgemaine 
 ***/
/* responsive h2 im banner  */
/*
@media (min-width: 981px) and (max-width: 1680px) { 
	.et_pb_module.et_pb_text_1 .et_pb_text_inner h2 {
		font-size: 3vw;
	}
}
*/
/* form btn center */
.et_contact_bottom_container {
  float: none;
}
.et_contact_bottom_container .et_pb_contact_submit.et_pb_button {
  margin: 0 auto;
}
/* blog */
.et_pb_row .more-link {
  background: #ce8e1d;
  color: #fff;
  padding: 7px 25px;
  margin-top: 20px;
  display: block;
  text-align: center;
  -webkit-transition: all 500ms ease 0s;
  -moz-transition: all 500ms ease 0s;
  -o-transition: all 500ms ease 0s;
  transition: all 500ms ease 0s;
}
.et_pb_row .more-link:hover {
  background: #bc821a;
  color: #fff;
}
@media (max-width: 980px) {
  .et_pb_blurb_content {
    max-width: 100%;
  }
}
/* footer */
/*
#left-area ul, 
.entry-content ul, 
.et-l--header ul, 
.et-l--body ul,
.et-l--footer ul,
.comment-content ul,
body.et-pb-preview #main-content .container ul {
    list-style-type: none;
    padding: 0;
    line-height: inherit;
}
*/
#sitemap-sektion .separator {
  font-size: 22px;
  margin-bottom: 5px;
  color: white;
  text-transform: uppercase;
}
#sitemap-sektion a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}
#sitemap-sektion a:hover {
  color: white;
}
#sitemap-sektion #smap-item-491 > .separator {
  display: none;
}
@media (min-width: 981px) {
  #sitemap-sektion #kontakt-sitemap-nav, #sitemap-sektion #smap-item-818 {
    text-align: right;
  }
}
/* 
	produkte liste in 4 spalten 
	DIVI Grid nachgebaut
*/
#produkte-sitemap-nav #smap-item-491 > .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#produkte-sitemap-nav #smap-item-491 > .sub-menu > li {
  margin-bottom: 30px;
  width: 100%;
}
@media (min-width: 480px) {
  #produkte-sitemap-nav #smap-item-491 > .sub-menu > li {
    float: left;
    width: 47.25%;
    margin-right: 5.5%;
  }
  #produkte-sitemap-nav #smap-item-491 > .sub-menu > li:last-child {
    margin-right: 0 !important;
  }
}
@media (max-width: 980px) {
  #produkte-sitemap-nav #smap-item-491 > .sub-menu > li:nth-child(even) {
    margin-right: 0 !important;
  }
}
@media (min-width: 981px) {
  #produkte-sitemap-nav #smap-item-491 > .sub-menu > li {
    width: 20.875%;
  }
  #produkte-sitemap-nav #smap-item-491 > .sub-menu > li:last-child {
    margin-right: 0 !important;
  }
}
@media (min-width: 980px) {
  #menu-rechtliches li {
    float: left;
    padding-right: 15px;
  }
}
#menu-rechtliches li.copy span {
  margin-bottom: 0px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: none;
}
@media (min-width: 980px) {
  #menu-rechtliches li.wDesign {
    float: right;
    padding-right: 0;
  }
}
/*
	templatte
*/
/* CCD BTN Style */
.ccd-caption-content .btn {
  color: #0c2848 !important;
  border-radius: 100px;
  letter-spacing: 4px;
  font-size: 20px;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  background-color: #f15bb5;
  padding: 15px 40px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.ccd-caption-content .btn:hover {
  color: #f15bb5 !important;
  letter-spacing: 2px;
  background-image: initial !important;
  background-color: #ffffff !important;
}
/* datenschutz */
.datenschutz h3, .datenschutz h4 {
  font-weight: bold;
  margin-top: 1.5em;
}
.datenschutzPlugin {
  margin-bottom: 2em;
}
.kontaktdatenWrap {
  margin-bottom: 1.5em;
}
/**/
.pt-100 {
  padding-top: 100px;
}
/* ohne DIVI seiten
.single-post #main-content,
.et_full_width_page  #main-content {

	padding: 120px 0;

	@media (max-width: 767px) {
		padding: 95px 0 50px 0;
	}
}
*/
.fadein {
  opacity: 0;
  -webkit-transition: opacity 1000ms ease 0s;
  -moz-transition: opacity 1000ms ease 0s;
  -o-transition: opacity 1000ms ease 0s;
  transition: opacity 1000ms ease 0s;
}
@media (max-width: 576px) {
  .fadein {
    opacity: 1;
  }
}
.fadein.visible {
  opacity: 1;
}
/* DIVI Frontbuilder aktiv */
.et-fb-root-ancestor .fadein {
  opacity: 1;
}
/* ========== KUNDEN Anpassugen =============== */
