@charset "UTF-8";
/*
    scss variables - @see also bootstrap/_variables.scs
*/
/*--------------------------------------------------------------
# Colors
--------------------------------------------------------------*/
.dwa-box .box-container .box {
  background-color: #003846;
  padding: 20px;
  gap: 20px;
  border: solid 2px;
  border-radius: 20px;
  border-color: rgb(255, 204, 0);
  display: flex;
  flex-direction: column;
}
.dwa-box .box-container .box .image-container {
  position: relative;
}
.dwa-box .box-container .box .image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.dwa-box .box-container .box .image-container .pill {
  background-color: rgb(255, 204, 0);
  line-height: 1.3125;
  border-radius: 60px;
  padding: 8px 16px;
  position: absolute;
  top: 10px;
  left: 10px;
  max-width: calc(100% - 20px);
  font-size: 12px;
}
.dwa-box .box-container .box h2 {
  font-size: 20px;
  color: rgb(255, 204, 0);
  line-height: 1.4;
  font-family: "epSansText bold", sans-serif;
  margin-bottom: 10px;
  font-weight: bold;
}
.dwa-box .box-container .box p {
  color: rgb(255, 255, 255);
  font-family: "epSansText regular", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  hyphens: auto;
}
.dwa-box .box-container .box p:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .dwa-box .box-container .box {
    flex-direction: row;
    gap: 32px;
    align-items: center;
  }
  .dwa-box .box-container .box > * {
    width: 50%;
  }
  .dwa-box .box-container .box h2 {
    font-family: "epSansText regular", sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 120%;
  }
}
.dwa-box.box-color-blue .box {
  border-color: rgb(0, 159, 227);
}
.dwa-box.box-color-blue .box .image-container {
  position: relative;
}
.dwa-box.box-color-blue .box .image-container .pill {
  background-color: rgb(0, 159, 227);
  color: rgb(255, 255, 255);
}
.dwa-box.box-color-blue .box h2 {
  color: rgb(0, 159, 227);
}
.dwa-box.box-color-blue .box p {
  color: rgb(255, 255, 255);
}
.dwa-box.box-color-green .box {
  border-color: rgb(0, 164, 149);
}
.dwa-box.box-color-green .box .image-container {
  position: relative;
}
.dwa-box.box-color-green .box .image-container .pill {
  background-color: rgb(0, 164, 149);
  color: rgb(255, 255, 255);
}
.dwa-box.box-color-green .box h2 {
  color: rgb(0, 164, 149);
}
.dwa-box.box-color-green .box p {
  color: rgb(255, 255, 255);
}

.dwa-textimage .text-box {
  background: rgb(255, 255, 255);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .dwa-textimage .text-box {
    padding: 32px;
    padding-top: 20px;
    width: 66.6%;
    margin-bottom: 0;
  }
}
.dwa-textimage .text-box h2 {
  color: rgb(172, 129, 7);
  margin-bottom: 0;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.1;
  font-family: "epSansText bold", sans-serif;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .dwa-textimage .text-box h2 {
    text-align: left;
    font-size: 32px;
    line-height: 1.4;
    font-family: "epSansText regular", sans-serif;
    font-weight: normal;
  }
}
.dwa-textimage .text-box h2:last-child {
  font-size: 32px;
  font-weight: normal;
}
.dwa-textimage .text-box p {
  color: rgb(0, 36, 50);
  line-height: 1.4;
  font-size: 20px;
}
.dwa-textimage .text-box p:last-child {
  margin-bottom: 0;
}
.dwa-textimage .header {
  background: rgb(255, 255, 255);
  border-radius: 20px;
  padding: 20px;
}
.dwa-textimage .header h2 {
  font-family: "epSansText light", sans-serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.1;
  text-align: center;
  color: rgb(172, 129, 7);
}
@media (min-width: 768px) {
  .dwa-textimage .header h2 {
    text-align: left;
    font-size: 32px;
    line-height: 1.4;
  }
}
.dwa-textimage .image-box {
  margin-top: 40px;
}
.dwa-textimage .image-box img {
  border-radius: 20px;
  max-width: 100%;
  width: 100%;
  height: auto;
}
.dwa-textimage .image-box img:nth-child(2) {
  width: 52%;
  margin-left: calc(48% - 30px);
  margin-top: -30px;
}
@media (min-width: 768px) {
  .dwa-textimage .image-box {
    text-align: center;
    position: relative;
  }
  .dwa-textimage .image-box img {
    width: 56.3%;
  }
  .dwa-textimage .image-box img:nth-child(2) {
    width: 28.47%;
    position: absolute;
    right: 0;
    margin-top: 0;
    bottom: calc(100% - 30px);
  }
}

body {
  background-color: #002432;
  overflow: visible;
}
body .main {
  overflow: visible;
}
body .main .container {
  max-width: 1728px;
}
@media (max-width: 767px) {
  body .main .container {
    padding: 0;
    max-width: 100%;
  }
  body .main .container.header {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  body .main .contact-template-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body .headerlogo {
  margin-top: 67px;
  text-align: center;
  margin-bottom: 54px;
}
body .headerlogo .logo {
  width: 82px;
  height: 51px;
}
@media all and (min-width: 768px) {
  body .headerlogo {
    text-align: left;
    margin-top: 34px;
  }
  body .headerlogo .logo {
    width: 130px;
    height: 80px;
  }
}
body .dwa-introkreis {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  width: 152.83px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #E61C55;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
  line-height: 1.3;
  font-size: 13.8px;
  font-family: "epSansText bold", sans-serif;
  font-weight: bold;
  color: rgb(255, 255, 255);
}
@media (min-width: 768px) {
  body .dwa-introkreis {
    font-size: 20.94px;
    padding: 2px;
    width: 231px;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(50%) translateY(-50%);
  }
}
body #anim-section {
  position: relative;
}
body #anim-section #content-wrapper #block-start {
  height: 100vh;
  position: relative;
}
@media (min-width: 768px) {
  body #anim-section #content-wrapper #block-start {
    height: 60vh;
    padding-top: 30vh;
    padding-left: 20px;
  }
}
body #anim-section #content-wrapper #block-mid {
  padding: 20px;
  position: relative;
  z-index: 1;
}
body #anim-section #content-wrapper #block-mid > section {
  margin-bottom: 300px;
  border-radius: 20px;
}
body #anim-section #content-wrapper #block-mid > section + .customer-advantages-wrapper {
  margin-top: -280px;
}
@media (min-width: 768px) {
  body #anim-section #content-wrapper #block-mid > section {
    margin-bottom: 165px;
  }
  body #anim-section #content-wrapper #block-mid > section + .customer-advantages-wrapper {
    margin-top: -133px;
  }
}
@media (min-width: 768px) {
  body #anim-section #sticky-wrapper {
    width: 50%;
    margin-left: 50%;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 0;
  }
  body #anim-section #sticky-wrapper .lottie {
    position: absolute; /* übereinander legen */
    bottom: 0; /* unten ausrichten */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  body #anim-section #sticky-wrapper .lottie svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom;
    display: block;
    height: auto !important;
  }
  body #anim-section #sticky-wrapper .lottie#lottieHandy svg path[fill="rgb(0,36,50)"] {
    fill: transparent !important;
  }
  body #anim-section #block-end {
    padding-top: 165px;
    padding-left: 20px;
    margin-bottom: 45px;
  }
  body #anim-section #block-end > section {
    margin-bottom: 165px;
  }
  body #anim-section #block-end > section:last-child {
    margin-bottom: 0;
  }
  body #anim-section #content-wrapper {
    width: 50%;
    margin-top: -100vh;
    padding-bottom: 50vh;
  }
}
@media (max-width: 767px) {
  body #anim-section {
    position: relative;
    height: auto;
  }
  body #anim-section #sticky-wrapper {
    margin-top: 360px;
    position: sticky;
    top: 0;
    height: 100vh; /* volle Bildschirmhöhe */
    z-index: 1; /* unterhalb vom Content */
  }
  body #anim-section #sticky-wrapper .lottie {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    width: 100%;
    height: 100%;
  }
  body #anim-section #sticky-wrapper .lottie svg {
    width: auto !important;
    height: 100vh !important;
    margin-left: 50%;
    transform: translateX(-50%) !important;
  }
  body #anim-section #sticky-wrapper .lottie#lottieHandy svg path[fill="rgb(0,36,50)"] {
    fill: transparent !important;
  }
  body #anim-section #content-wrapper {
    position: relative;
    z-index: 2; /* über der Animation */
    padding-bottom: 100vh;
  }
  body #anim-section #content-wrapper #block-start {
    margin-top: -100vh;
    margin-bottom: 100vh;
  }
  body #anim-section #content-wrapper #block-start > section:first-child {
    position: relative;
    top: -305px;
  }
  body #anim-section #content-wrapper #block-start > .dwa-introkreis {
    position: relative;
    top: -260px;
  }
  body #anim-section #content-wrapper #block-end {
    padding-top: 300px;
    margin-bottom: 45px;
  }
  body #anim-section #content-wrapper #block-end > section {
    margin-bottom: 165px;
  }
  body #anim-section #content-wrapper #block-end > section:last-child {
    margin-bottom: 0;
  }
}
body .header {
  text-align: center;
  hyphens: auto;
}
@media (min-width: 768px) {
  body .header {
    text-align: left;
  }
}
body .header h2 {
  color: rgb(255, 255, 255);
  margin-bottom: 0;
}
body .header h3 {
  color: rgb(255, 204, 0);
  font-weight: 300;
  font-family: "epSans light", sans-serif;
  text-transform: none;
  font-size: 35px;
  line-height: 1.5;
  letter-spacing: normal;
  margin-bottom: 0;
}
body .header.with-subheader {
  background: transparent;
  padding: 0;
}
body .header.with-subheader h2 {
  color: rgb(255, 255, 255);
}
body .header.with-subheader h2, body .header.with-subheader h3 {
  line-height: 1.1;
  font-size: 32px;
}
@media (min-width: 768px) {
  body .header.with-subheader h2, body .header.with-subheader h3 {
    font-size: 54px;
  }
}
body .customer-advantages-wrapper {
  padding-top: 20px;
  padding-bottom: 20px;
}
body .customer-advantages-wrapper .col-12 {
  padding-left: 20px;
  padding-right: 20px;
}
body .customer-advantages-wrapper h2 {
  font-size: 20px;
  line-height: 1.2;
  text-align: left !important;
  margin-bottom: 30px;
}
body .contact-template-wrapper {
  margin-top: 80px;
}
body .contact-template-wrapper .contact-section__form__button-wrapper {
  text-align: center;
}
body .contact-template-wrapper .contact-section__form__button-wrapper .btn-primary {
  background-color: rgb(0, 159, 227);
  color: rgb(255, 255, 255);
  font-size: 20.5px;
  padding-top: 10.28px;
  padding-right: 20.55px;
  padding-bottom: 10.28px;
  padding-left: 20.55px;
}
body .benefit-slider-wrapper .container-fluid {
  padding-top: 40px;
  padding-bottom: 40px;
}
body .benefit-slider-wrapper .container-fluid .container {
  padding: 0 40px;
}
body .benefit-slider-wrapper .container-fluid .container .offset-lg-2 {
  margin-left: 0;
}
body .benefit-slider-wrapper .container-fluid .container .offset-lg-2 .swiper-scrollbar {
  left: 50%;
  transform: translateX(-50%);
  top: 30px;
}
body .logo-slider-wrapper {
  padding: 40px 0;
}
body .logo-slider-wrapper .container-fluid {
  padding: 0;
}
body .logo-slider-wrapper .entry-text {
  margin-bottom: 2rem;
}
body .logo-slider-wrapper .container {
  padding: 0 40px;
}
body .logo-slider-wrapper .container .swiperLogosDwa {
  margin-left: 0;
  margin-bottom: 32px;
}
body .logo-slider-wrapper .container .swiperLogosDwa .swiper-slide img {
  max-height: 100px; /* Logo max. 100px hoch */
  max-width: 100%; /* Logo max. so breit wie Slide */
  height: auto; /* Verhältnis beibehalten */
  width: auto;
  object-fit: contain; /* Logo bleibt ungestaucht */
}
body .logo-slider-wrapper .container .swiper-scrollbar {
  display: none !important;
}
body .customer-advantages-wrapper .swiperAdvantages {
  display: block !important;
}
body .customer-advantages-wrapper .swiperAdvantages .card-col {
  width: auto !important;
}
body .dwa-image {
  text-align: center;
}
body .dwa-image img {
  max-width: 50%;
  height: auto;
}

/*# sourceMappingURL=dwaAkku.css.map */
