@charset "UTF-8";
:root {
  --orange: #f28a00;
  --green: #268287;
  --gray: #4d4d4d;
  --black: #1c1f21;
  --lightgray: #dedede;
  --orange-dark: #CF7600;
  --space: 50px;
}
@media (min-width: 992px) {
  :root {
    --space: 80px;
  }
}

/* roboto-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/roboto-v48-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-300italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: italic;
  font-weight: 300;
  src: url("../fonts/roboto-v48-latin-300italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v48-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/roboto-v48-latin-italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/roboto-v48-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-500italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: italic;
  font-weight: 500;
  src: url("../fonts/roboto-v48-latin-500italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/roboto-v48-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-600italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: italic;
  font-weight: 600;
  src: url("../fonts/roboto-v48-latin-600italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-v48-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/roboto-v48-latin-700italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

strong {
  font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
}
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
  font-weight: 500;
}

body h1, body h2, body h3, body h4 {
  margin-bottom: 0.6em;
}

* + h1,
* + h2,
* + h3,
* + h4,
* + h5,
* + h6 {
  margin-top: 2rem;
}

.page-title h1 {
  margin-bottom: 0 !important;
}

.text-xl {
  font-size: 23px;
  line-height: 1.5em;
  font-weight: 300;
}

.text-xs {
  font-size: 15px;
  line-height: 1.4em;
  font-weight: 300;
}

body p a {
  text-decoration: none;
}
body p a:hover {
  text-decoration: underline;
  color: var(--orange-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

/* Header */
/* Logo-Größe für SVGs anpassen */
.masthead .branding {
  width: 25%;
  position: absolute;
  top: -23px;
}
.masthead .branding img {
  width: auto;
  height: 110px;
  max-width: 100%;
  top: 0;
  transition: width 0.2s ease, height 0.2s ease; /* smooth Übergang */
}

.masthead.sticky-off .branding {
  height: 226px; /* topbar 46 + header 100 + padding 80 */
  position: absolute;
  top: -46px;
}

.masthead.sticky-on .branding img {
  height: 86px;
}

.masthead-mobile .mobile-header-bar .mobile-branding a img {
  height: 50px;
  width: auto;
}
@media (min-width: 779px) {
  .masthead-mobile .mobile-header-bar .mobile-branding a img {
    height: 100px;
  }
}

@media (min-width: 779px) {
  .masthead-mobile.sticky-mobile-on .mobile-header-bar .mobile-branding a img {
    height: 60px;
  }
}

.masthead,
.masthead-mobile {
  box-shadow: none !important;
}

.masthead.sticky-on,
.masthead-mobile.sticky-mobile-on {
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.07) !important;
}

.top-bar .mini-widgets.right-widgets {
  flex: 0 0 auto;
  width: max-content;
  position: relative;
  display: inline-flex;
  background-color: #dedede;
  padding: 0;
}
.top-bar .mini-widgets.right-widgets:after {
  content: "";
  position: absolute;
  top: 0;
  right: -100vw;
  bottom: 0;
  left: 0;
  background: #dedede;
  z-index: -1; /* liegt hinter dem Inhalt */
}
.top-bar .mini-widgets.right-widgets:before {
  content: "";
  position: absolute;
  top: 0;
  left: -30px; /* wie weit nach links überstehend */
  width: 80px; /* Breite des schrägen Bereichs */
  height: 100%;
  background: #dedede;
  transform: skewX(-30deg); /* Neigung einstellen */
  z-index: -1;
}
.top-bar .mini-widgets.right-widgets .text-area p {
  display: flex;
  align-items: center;
}
.top-bar .mini-widgets.right-widgets .text-area p img {
  display: block;
  padding-top: 2px;
  padding-left: 7px;
}

.mobile-mini-widgets-in-menu .text-area p {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.mobile-mini-widgets-in-menu .text-area p img {
  display: block;
  padding-top: 2px;
  padding-left: 7px;
}
.mobile-mini-widgets-in-menu .soc-ico.show-on-second-switch {
  --bg-size: 35px;
}
.mobile-mini-widgets-in-menu .soc-ico.show-on-second-switch a:not(:hover) .soc-font-icon {
  color: #fff !important;
}
.mobile-mini-widgets-in-menu .soc-ico.show-on-second-switch a {
  width: var(--bg-size);
  height: var(--bg-size);
}
.mobile-mini-widgets-in-menu .soc-ico.show-on-second-switch a .soc-font-icon {
  font-size: 20px;
  line-height: var(--bg-size);
}
.mobile-mini-widgets-in-menu .soc-ico.show-on-second-switch a::after,
.mobile-mini-widgets-in-menu .soc-ico.show-on-second-switch a::before {
  width: var(--bg-size);
  height: var(--bg-size);
}

.mini-wpml div {
  padding: 0;
}
.mini-wpml div ul {
  --pad: 8px;
}
.mini-wpml div ul li a {
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.mini-wpml div ul li.wpml-ls-current-language a {
  font-weight: 600;
}
.mini-wpml div ul li:not(.wpml-ls-current-language) a:hover {
  color: var(--orange);
  opacity: 1;
}
.mini-wpml div ul li:first-child a {
  padding-left: 0;
}
.mini-wpml div ul li:last-child a {
  padding-right: 0;
}
.mini-wpml div ul li:not(:last-child) a::after {
  content: "|";
  display: inline-block;
  transform: translateX(var(--pad));
  color: var(--black);
}

section.hero-wrapper { /* section */
  padding-top: 0;
  padding-bottom: 0;
  z-index: 50;
  overflow: visible !important;
  margin-bottom: 20px;
}
section.hero-wrapper .hero-content > .vc_column-inner { /* Text-Spalte */
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 779px) {
  section.hero-wrapper .hero-content > .vc_column-inner {
    padding-top: 30px;
    padding-bottom: 0px;
    padding-right: 10px;
  }
}
@media (min-width: 992px) {
  section.hero-wrapper .hero-content > .vc_column-inner {
    padding-top: 50px;
    padding-bottom: 20px;
    padding-right: 30px;
  }
}
section.hero-wrapper .overlap-up > .vc_column-inner {
  margin-top: -50px;
  padding-top: 0 !important;
}
@media (min-width: 779px) {
  section.hero-wrapper .overlap-up > .vc_column-inner {
    margin-top: -80px;
    padding-bottom: 20px;
  }
}
@media (min-width: 992px) {
  section.hero-wrapper .overlap-up > .vc_column-inner .wpb_single_image {
    padding-right: 100px;
  }
}
@media (min-width: 1200px) {
  section.hero-wrapper .overlap-up > .vc_column-inner .wpb_single_image {
    padding-right: 150px;
  }
}

.home section.hero-wrapper {
  margin-bottom: 0;
}

@media (min-width: 779px) {
  .page-title.solid-bg {
    margin-top: 46px;
  }
}
@media (min-width: 993px) {
  .page-title.solid-bg {
    margin-top: 80px;
  }
}

.ult-video {
  margin: 0 !important;
}

.main-nav,
.mini-widgets {
  max-height: 100px;
}

/* margins + paddings */
section {
  padding-bottom: var(--space);
}

.top-space {
  padding-top: var(--space);
}

.bottom-space {
  padding-bottom: var(--space);
}

/* Content */
.dark-bg {
  background-color: var(--black);
}

.green-bg {
  background-color: var(--green);
}

.light-bg {
  background-color: var(--lightgray);
}

.dark-bg,
.green-bg {
  color: #fff;
}
.dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg h4, .dark-bg h5, .dark-bg h6,
.dark-bg p, .dark-bg li, .dark-bg blockquote, .dark-bg cite,
.dark-bg small, .dark-bg span,
.green-bg h1,
.green-bg h2,
.green-bg h3,
.green-bg h4,
.green-bg h5,
.green-bg h6,
.green-bg p,
.green-bg li,
.green-bg blockquote,
.green-bg cite,
.green-bg small,
.green-bg span {
  color: #fff;
}
.dark-bg h1 a, .dark-bg h2 a, .dark-bg h3 a, .dark-bg h4 a, .dark-bg h5 a, .dark-bg h6 a,
.dark-bg p a, .dark-bg li a, .dark-bg blockquote a, .dark-bg cite a,
.dark-bg small a, .dark-bg span a,
.green-bg h1 a,
.green-bg h2 a,
.green-bg h3 a,
.green-bg h4 a,
.green-bg h5 a,
.green-bg h6 a,
.green-bg p a,
.green-bg li a,
.green-bg blockquote a,
.green-bg cite a,
.green-bg small a,
.green-bg span a {
  color: var(--orange);
  transition: color 0.3s ease-in-out;
}
.dark-bg h1 a:hover, .dark-bg h2 a:hover, .dark-bg h3 a:hover, .dark-bg h4 a:hover, .dark-bg h5 a:hover, .dark-bg h6 a:hover,
.dark-bg p a:hover, .dark-bg li a:hover, .dark-bg blockquote a:hover, .dark-bg cite a:hover,
.dark-bg small a:hover, .dark-bg span a:hover,
.green-bg h1 a:hover,
.green-bg h2 a:hover,
.green-bg h3 a:hover,
.green-bg h4 a:hover,
.green-bg h5 a:hover,
.green-bg h6 a:hover,
.green-bg p a:hover,
.green-bg li a:hover,
.green-bg blockquote a:hover,
.green-bg cite a:hover,
.green-bg small a:hover,
.green-bg span a:hover {
  color: var(--orange-dark);
}
.dark-bg ul li, .dark-bg ol li,
.green-bg ul li,
.green-bg ol li {
  color: #fff;
}
.dark-bg hr,
.green-bg hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.dark-bg pre, .dark-bg code,
.green-bg pre,
.green-bg code {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.orange-bg {
  color: var(--black);
  background-color: var(--orange);
}
.orange-bg h1, .orange-bg h2, .orange-bg h3, .orange-bg h4, .orange-bg h5, .orange-bg h6,
.orange-bg p, .orange-bg li, .orange-bg blockquote, .orange-bg cite,
.orange-bg small, .orange-bg span {
  color: var(--black);
}
.orange-bg ul li, .orange-bg ol li {
  color: var(--black);
}

/* Offer Box */
.offer-box .vc_column-inner {
  background-color: var(--lightgray);
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.offer-box .vc_column-inner .wpb_content_element {
  margin-bottom: 0;
}
.offer-box .vc_column-inner .offer-header {
  padding: 20px;
  background-color: var(--black);
  position: relative;
}
.offer-box .vc_column-inner .offer-header h3 {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .offer-box .vc_column-inner .offer-header h3 {
    padding-right: 85px;
  }
}
.offer-box .vc_column-inner .offer-header p {
  position: absolute;
  top: -30px;
  right: 20px;
  width: 65px;
  height: 65px;
  padding: 10px;
  aspect-ratio: 1/1;
  color: #fff;
  background-image: url(../../images/balloon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.4em;
}
.offer-box .vc_column-inner .offer-header p strong {
  font-size: 1.5em;
}
@media (min-width: 1200px) {
  .offer-box .vc_column-inner .offer-header p {
    top: -40px;
    width: 70px;
    height: 70px;
  }
}
.offer-box .vc_column-inner .offer-content {
  padding: 20px;
}
.offer-box .vc_column-inner a.offer-link.dt-btn-link {
  padding: 0 20px 25px 20px !important;
}

a.dt-btn-link {
  font-size: 18px !important;
}
a.dt-btn-link > i {
  font-size: 20px !important;
}

.text-padding {
  padding-left: 12px;
  padding-right: 12px;
}

.flip-boxes {
  padding: 20px;
}
.flip-boxes .flip-box-wrap {
  margin-bottom: 10px !important;
}
.flip-boxes .flip-box-icon {
  margin-bottom: 15px !important;
}
.flip-boxes h3.flipbox_heading {
  font-weight: 500 !important;
  font-size: 16px !important;
  text-transform: uppercase;
  margin-top: 0 !important;
}
@media (min-width: 992px) {
  .flip-boxes h3.flipbox_heading {
    font-size: 18px !important;
  }
}
.flip-boxes .ifb-flip-box-section-content p {
  font-size: 15px !important;
  line-height: 1.5em !important;
}
@media (min-width: 992px) {
  .flip-boxes .ifb-flip-box-section-content p {
    font-size: 16px !important;
  }
}
.flip-boxes .vc_column-inner {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

/* Slanted orange Box */
.triangle-overflow {
  overflow: visible !important;
  position: relative !important;
  z-index: 1 !important;
}

.triangle-section {
  overflow: visible !important;
}

.slanted-box {
  position: relative;
}
.slanted-box .vc_column-inner {
  padding-top: 50px;
}
@media (min-width: 992px) {
  .slanted-box .vc_column-inner {
    padding-top: 80px;
    padding-left: 100px !important;
  }
}
@media (min-width: 1200px) {
  .slanted-box .vc_column-inner {
    padding-top: 50px;
    padding-left: 80px !important;
  }
}
.slanted-box::before {
  position: absolute;
  display: block;
  content: "";
  background: var(--orange);
  width: 2000px;
  height: calc(100% + var(--space));
  left: -100px;
  bottom: calc(var(--space) * -1);
}
@media (min-width: 992px) {
  .slanted-box::before {
    bottom: calc(var(--space) * -1);
    left: -200px;
    width: 10000px;
    height: 20000px;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
  }
}
@media (min-width: 1200px) {
  .slanted-box::before {
    left: -200px;
  }
}
.slanted-box h1, .slanted-box h2, .slanted-box h3, .slanted-box h4, .slanted-box h5, .slanted-box h6, .slanted-box p {
  color: var(--black);
}
@media (min-width: 992px) {
  .slanted-box h1, .slanted-box h2, .slanted-box h3, .slanted-box h4, .slanted-box h5, .slanted-box h6, .slanted-box p {
    text-align: right;
  }
}

/* Footer */
#bottom-bar .mini-nav ul li {
  font-size: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
}

@media screen and (max-width: 850px) {
  #bottom-bar .mini-nav ul {
    display: block !important;
  }
  #bottom-bar .mini-nav .menu-select {
    display: none;
  }
}
footer #bottom-bar.logo-center .wf-container-bottom {
  flex-direction: column-reverse;
  gap: 20px;
  color: #9f9f9f;
}
footer #bottom-bar.logo-center .wf-container-bottom li a .menu-item-text {
  text-decoration: none;
}
footer #bottom-bar.logo-center .wf-container-bottom li a .menu-item-text:hover {
  text-decoration: none;
  color: var(--orange);
}
footer #bottom-bar.logo-center .wf-container-bottom li.current-menu-item .menu-item-text {
  text-decoration: none;
  color: var(--orange);
}

footer .widget {
  margin-bottom: 15px !important;
}

footer .widget_presscore-contact-info-widget .soc-ico {
  text-align: right;
  transform: translateY(15px);
}
@media (max-width: 950px) {
  footer .widget_presscore-contact-info-widget .soc-ico {
    margin: 10px 0;
    text-align: center;
    transform: translateY(0);
  }
}
footer .widget_presscore-contact-info-widget .soc-ico a::after, footer .widget_presscore-contact-info-widget .soc-ico a::before {
  width: 47px;
  height: 47px;
}
footer .widget_presscore-contact-info-widget .soc-ico a {
  margin: 0 7px;
  width: 47px;
  height: 47px;
  line-height: 47px;
  color: var(--black);
}
footer .widget_presscore-contact-info-widget .soc-ico a .soc-font-icon {
  font-size: 27px;
  color: var(--black) !important;
}
footer .widget_presscore-contact-info-widget .soc-ico a::before {
  background-color: #fff;
}
footer .widget_presscore-contact-info-widget .soc-ico a:hover::after {
  opacity: 1;
  background-color: var(--orange);
}

footer ul.menu {
  display: flex;
  flex-direction: row;
  gap: 25px;
  flex-wrap: wrap;
}
@media (max-width: 950px) {
  footer ul.menu {
    justify-content: center;
    column-gap: 15px;
    row-gap: 0;
  }
}
footer ul.menu li,
footer ul.menu li:first-child {
  border-width: 0 !important;
  margin: 0;
  padding: 10px 0 0 0;
}
footer section:last-child {
  margin-top: -10px;
}
@media (max-width: 950px) {
  footer section:last-child {
    margin-top: 0;
    text-align: center;
  }
}

/* Hero Carousel */
/* Minimal Fade-In/Out, falls animate.css fehlt */
.owl-animated {
  animation-duration: 0.7s;
  animation-fill-mode: both;
}

.fadeIn {
  animation-name: owlFadeIn;
}

.fadeOut {
  animation-name: owlFadeOut;
}

@keyframes owlFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes owlFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.js-fade-carousel .slide-caption {
  color: var(--orange) !important;
  font-size: 35px;
  font-weight: 500;
}

.js-fade-carousel {
  margin-bottom: 50px;
}
.js-fade-carousel .dt-owl-item {
  position: relative;
}
.js-fade-carousel .dt-owl-item .slide-caption {
  position: absolute;
  bottom: 0px;
  right: 30px;
  z-index: 2;
  text-align: center;
  padding: 0;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .js-fade-carousel .dt-owl-item .slide-caption {
    right: 0;
    padding: 10px 15px;
  }
}
@media (min-width: 1200px) {
  .js-fade-carousel .dt-owl-item .slide-caption {
    bottom: 20px;
  }
}
.js-fade-carousel .dt-owl-item .slide-caption p {
  color: var(--orange) !important;
  font-size: 40px;
  line-height: 1em;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 992px) {
  .js-fade-carousel .dt-owl-item .slide-caption p {
    font-size: 70px;
  }
}
@media (min-width: 1200px) {
  .js-fade-carousel .dt-owl-item .slide-caption p {
    font-size: 100px;
  }
}
.js-fade-carousel .dt-owl-item img {
  display: block;
  width: 100%;
  height: auto;
}
.js-fade-carousel .dt-owl-item .wpb_single_image {
  padding-bottom: 55px;
}
@media (min-width: 1200px) {
  .js-fade-carousel .dt-owl-item .wpb_single_image {
    padding-bottom: 0px;
  }
}
@media (min-width: 992px) {
  .js-fade-carousel .dt-owl-item .wpb_single_image,
  .js-fade-carousel .owl-dots {
    padding-right: 100px;
  }
}
@media (min-width: 1200px) {
  .js-fade-carousel .dt-owl-item .wpb_single_image,
  .js-fade-carousel .owl-dots {
    padding-right: 150px;
  }
}

/* Program Sections */
.program-section .program-title {
  background-color: var(--black);
}
.program-section .program-title .wpb_content_element {
  margin-bottom: 10px;
  margin-top: 10px;
}
.program-section .program-title h2, .program-section .program-title h3 {
  color: var(--orange);
  font-weight: 600;
  font-size: 27px;
  text-transform: uppercase;
}
.program-section .program-infos .vc_column-inner,
.program-section .program-facts .vc_column-inner {
  padding-top: 15px;
  padding-bottom: 25px;
}
.program-section .program-infos {
  background-color: var(--lightgray);
}
.program-section .program-facts {
  background-color: #f1f1f1;
}
.program-section ul {
  list-style: none !important;
  padding-left: 0;
  margin-left: 0 !important;
}
.program-section ul li {
  position: relative;
  padding-left: 1.5em;
}
.program-section ul li::before {
  font-family: "Font Awesome 6 Free"; /* oder deine Icon-Font */
  font-weight: 900;
  content: "\f00c"; /* Font Awesome Check Icon */
  position: absolute;
  left: 0;
  color: var(--green);
}

/* Kontakt Spalte */
.kontakt-col .kontakt-titel .vc_column-inner > .wpb_wrapper {
  background-color: var(--black);
  padding: 15px 20px;
}
.kontakt-col .kontakt-titel .vc_column-inner > .wpb_wrapper h5 {
  color: #fff;
}
.kontakt-col .kontakt-info .vc_column-inner > .wpb_wrapper {
  display: flex;
  flex-direction: column-reverse;
  background-color: var(--lightgray);
  padding: 30px 20px;
  gap: 10px;
}
@media (min-width: 992px) {
  .kontakt-col .kontakt-info .vc_column-inner > .wpb_wrapper {
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }
}
.kontakt-col .kontakt-info .vc_column-inner > .wpb_wrapper .wpb_text_column .wpb_wrapper {
  display: block;
}
.kontakt-col .kontakt-info .vc_column-inner > .wpb_wrapper .wpb_single_image {
  max-width: 50%;
}
@media (min-width: 992px) {
  .kontakt-col .kontakt-info .vc_column-inner > .wpb_wrapper .wpb_single_image {
    max-width: 30%;
  }
}

/* Formulare */
.forminator-field-section {
  background-color: var(--black);
  margin: 15px 7px 0;
  padding: 17px !important;
}
.forminator-field-section h2 {
  font-size: 16px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.forminator-field-group {
  margin-bottom: 20px !important;
}/*# sourceMappingURL=style.css.map */