/********** Template CSS **********/
:root {
    --primary: #E88F2A;
    --secondary: #FAF3EB;
    --light: #FFFFFF;
    --dark: #2B2825;
}


/* Schriftarten lokal einbinden */
  /* open-sans */


  @font-face {
    font-family: 'Open Sans'; 
    src: url('../fonts/opensans-regular.ttf');
    font-style: normal;
    font-weight: 400;
   }

  @font-face {
    font-family: 'Open Sans';
    src:   url('../fonts/opensans-semibold.ttf');
    font-style: normal;
    font-weight: 600;
   }

  @font-face {
    font-family: 'Oswald-Light';
    src: url('../fonts/oswald-light.ttf');
    font-style: normal;
    font-weight: 300;
    }


  @font-face {
    font-family: 'Oswald';
    src: url('../fonts/oswald-medium.ttf');
    font-style: normal;
    font-weight: 500;
    }


  @font-face 
    {
    font-family: 'Oswald'; 
    src: url('../fonts/oswald-semibold.ttf'); 
    font-style: normal;
    font-weight: 600;
   }


  @font-face 
    {
    font-family: 'Oswald';
    src: url('../fonts/oswald-bold.ttf');
    font-style: normal;
    font-weight: 700;

   }

@font-face 
    {
    font-family: 'Pacifico';
    src: url('../fonts/pacifico-regular.ttf');  
    font-style: normal;
   }


.font-secondary {
    font-family: 'Pacifico', cursive;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary {
    color: #FFFFFF;
}

.border-inner {
    position: relative;
}

.border-inner * {
    position: relative;
    z-index: 1;
}

.border-inner::before {
    position: absolute;
    content: "";
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    background: none;
    border: 1px solid var(--light);
    z-index: 0;
}

.btn-square {
    width: 40px;
    height: 40px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 50px;
    height: 50px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 0;
    border-radius: 0;
    z-index: 99;
}

.navbar-dark .navbar-nav .nav-link {
    font-family: 'Oswald', sans-serif;
    padding: 30px 15px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--light);
    outline: none;
    transition: .5s;
}

.ueberschrift-plattformen {
    font-size: 24px;
    font-family: 'Oswald', sans-serif;
    padding: 30px 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--light);
    outline: none;
    transition: .5s;
    }
a.ex1:hover {
    color: #E88F2A !important;
    }

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        padding: 10px 0;
    }
    .two-box-border-correction {
        margin-top: 130px; 
    }
}

.hero-header {
    background: url(../images/hero.png) top right no-repeat;
    background-size: cover;
}

@media (max-width: 600px) {
.hero-header {
    background: url(../images/hero-mobil.png) top right no-repeat;
    background-size: cover;
}
    
    
    
    
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 10px;
    left: 50%;
    bottom: 0;
    margin-left: -30px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 180px;
    height: 2px;
    left: 50%;
    bottom: 4px;
    margin-left: -90px;
    background: var(--primary);
}


/*** Section Title Über uns ***/
.section-title-about {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title-about::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 5px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title-about::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 6px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title-about.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title-about.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}

/* About Ende */


/*** About ***/
.about-experience {
    position: absolute;
    width: 100%;
    height: 100%;
    right: -45px;
    bottom: -45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* About Ende */



/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs, .big-accordion {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.faqs .row, .big-accordion {
    position: relative;
}

.faqs .row::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: calc(50% - .5px);
    background: #fdbe33;
}

.faqs #accordion-1, .big-accordion {
    padding-right: 15px;
}

.faqs #accordion-2 {
    padding-left: 15px;
}

@media(max-width: 767.98px) {
    .faqs .row::after, .big-accordion .row::after {
        display: none;
    }
    
    .faqs #accordion-1,
    .faqs #accordion-2, 
    .big-accordion {
        padding: 0;
    }
    
    .faqs #accordion-2 {
        padding-top: 15px;
    }
}

.faqs .card, .big-accordion .card {
    margin-bottom: 15px;
    border: none;
    border-radius: 0;
}

.faqs .card:last-child, .big-accordion .card:last-child {
    margin-bottom: 0;
}

.faqs .card-header, .big-accordion .card-header {
    padding: 0;
    border: none;
    background: #FAF3EB;
}

.card-header {
    padding: 0;
    border: none;
    background: #ffffff;
}

.faqs .card-header a {
    display: block;
    padding: 10px 25px;
    width: 100%;
    color: #2B2825;
    font-size: 16px;
    line-height: 40px;
    border: 1px solid rgba(0, 0, 0, .1);
    transition: .5s;
}

.big-accordion .card-header a {
    display: block;
    padding: 10px 45px;
    width: 100%;
    color: #2B2825;
    font-family: oswald;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    border: 3px solid rgba(0, 0, 0, .1);
    transition: .5s;
}

.big-accordion .card-header a:hover {background-color: #2B2825; color:#FFFFFF; }

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"] {
    background: #E88F2A;
}

.big-accordion .card-header [data-toggle="collapse"][aria-expanded="true"] {
    background: #E88F2A;
}

.faqs .card-header [data-toggle="collapse"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f067";
    float: right;
    color: #E88F2A;
    font-size: 12px;
    font-weight: 900;
    transition: .5s;
}

.big-accordion .card-header [data-toggle="collapse"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f067";
    float: right;
    color: #E88F2A;
    font-size: 24px;
    font-weight: 900;
    transition: .5s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f068";
    float: right;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 900;
    transition: .5s;
}

.big-accordion .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f068";
    float: right;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 900;
    transition: .5s;
}

.faqs .card-body {
    padding: 20px 25px;
    font-size: 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-top: none;
}

.big-accordion .card-body {
    padding: 20px 25px;
    font-size: 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-top: none;
}


   /* Box mit grauen Rahmen (nutzbar für Accordions) */
    
    .boxtarStart {
        border: 5px solid #f0f0f0;
        border-radius: 18px;
    }
    /* tar... Ist der Platz wo der Content hin kommt */
    
    /* Klasse für das kleinere Accordion */
    .tarStart {
        position: relative;
        text-align: left;
        font-size: 20px;
        padding: 15px 20px;
        border: none;
        outline: none;
        cursor: pointer;
        width: auto;
        -webkit-transition: .3s ease-in-out all;
        transition: .3s ease-in-out all;
        -o-transition: .3s ease-in-out all;
    }
    
    /* Klasse für die geöffnete Variante vom kleineren Accordion */
    .tarStartOffen {
        position: relative;
        text-align: left;
        font-size: 20px;
        padding: 15px 20px;
        border: none;
        outline: none;
        cursor: pointer;
        width: auto;
        -webkit-transition: .3s ease-in-out all;
        transition: .3s ease-in-out all;
        -o-transition: .3s ease-in-out all;
    }

    .tarStartOffen h2{
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .taralles.is-open {background-color: white;}

    /* hover Effekt für das kleinere Accordion*/
    .is-open,
    .tarStart:hover,
    .tarStartOffen:hover {
        background: #f0f0f0;
        -webkit-transition: .1s ease-in-out all;
        transition: .1s ease-in-out all;
        -o-transition: .1s ease-in-out all;
    }
    
    .taralles {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        max-height: 0;
        overflow: hidden;
        -webkit-transition: .0s ease-in-out;
        transition: .0s ease-in-out;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
    }
    /* .taralles .ul-content1 {
        margin-left: 8px;
    } */

    .taralles p {
        padding:20px;
    }
    .taralles h3 {
        margin-top: 20px;
        margin-left: 20px;
        padding-right: 20px;
        margin-bottom: 20px;
    }
    
    .tartermineundzeiten {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        width: 100%;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        justify-content: space-between;
    }







/* ====== FAQs Ende ====== */



.service::after,
.contact::after {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% - 45px);
    top: 135px;
    left: 0;
    background: linear-gradient(rgba(43, 40, 37, .9), rgba(43, 40, 37, .9)), url(../images/service.jpg) center center no-repeat;
    background-size: cover;
    z-index: -1;
}





.contact::after {
    background: linear-gradient(rgba(43, 40, 37, .5), rgba(43, 40, 37, .5)), url(../images/bg.jpg) center center no-repeat;
    background-size: cover;
}

.bg-offer {
    background: linear-gradient(rgba(43, 40, 37, .9), rgba(43, 40, 37, .9)), url(../images/offer.jpg) center center no-repeat;
    background-size: cover;
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
    filter: blur(5px)
}

.team-item .team-overlay {
    transition: .5s;
    opacity: 0;
}

.team-item:hover .team-overlay {
    opacity: 1;
}

.testimonial-carousel .owl-dots {
    height: 45px;
    margin-top: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 2px;
    width: 10px;
    height: 25px;
    background: #DDDDDD;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    height: 45px;
    background: var(--primary);
}

.testimonial-carousel .owl-item .testimonial-item {
    opacity: .1;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    opacity: 1;
}

.bg-img {
    background: linear-gradient(rgba(43, 40, 37, .5), rgba(43, 40, 37, .5)), url(../images/bg.jpg) center center no-repeat;
    background-size: cover;
}



/*** Service ***/
.service-item {
    background: var(--secondary);
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--secondary) !important;
}


/*******************************/
/******* Experience CSS ********/
/*******************************/
.experience {
    position: relative;
    padding: 45px 0 15px 0;
}

.experience .timeline {
    position: relative;
    width: 100%;
}

.experience .timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: #E88F2A;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.experience .timeline .timeline-item {
    position: relative;
    background: inherit;
    width: 50%;
    margin-bottom: 30px;
}

.experience .timeline .timeline-item.left {
    left: 0;
    padding-right: 30px;
}

.experience .timeline .timeline-item.right {
    left: 50%;
    padding-left: 30px;
}

.experience .timeline .timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 48px;
    right: -8px;
    background: #ffffff;
    border: 2px solid #E88F2A;
    border-radius: 16px;
    z-index: 1;
}

.experience .timeline .timeline-item.right::after {
    left: -8px;
}

.experience .timeline .timeline-item::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: 46px;
  right: 10px;
  z-index: 1;
  border: 10px solid;
  border-color: transparent transparent transparent #dddddd;
}

.experience .timeline .timeline-item.right::before {
  left: 10px;
  border-color: transparent #dddddd transparent transparent;
}

.experience .timeline .timeline-date {
    position: absolute;
    width: 100%;
    top: 44px;
    font-size: 16px;
    font-weight: 600;
    color: #E88F2A;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.experience .timeline .timeline-item.left .timeline-date {
    text-align: left;
    left: calc(100% + 55px);
}

.experience .timeline .timeline-item.right .timeline-date {
    text-align: right;
    right: calc(100% + 55px);
}

.experience .timeline .timeline-text {
    padding: 30px;
    background: #ffffff;
    position: relative;
    border-right: 5px solid #dddddd;
    box-shadow: 0 0 60px rgba(0, 0, 0, .08);
}

.experience .timeline .timeline-item.right .timeline-text {
    border-right: none;
    border-left: 5px solid #dddddd;
}

.experience .timeline .timeline-text h2 {
    margin: 0 0 5px 0;
    font-size: 22px;
    font-weight: 600;
}

.experience .timeline .timeline-text h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
}

.experience .timeline .timeline-text p {
    margin: 0;
    font-size: 16px;
}

@media (max-width: 767.98px) {
    .experience .timeline::after {
        left: 8px;
    }

    .experience .timeline .timeline-item {
        width: 100%;
        padding-left: 38px;
    }
    
    .experience .timeline .timeline-item.left {
        padding-right: 0;
    }
    
    .experience .timeline .timeline-item.right {
        left: 0%;
        padding-left: 38px;
    }

    .experience .timeline .timeline-item.left::after, 
    .experience .timeline .timeline-item.right::after {
        left: 0;
    }
    
    .experience .timeline .timeline-item.left::before,
    .experience .timeline .timeline-item.right::before {
        left: 18px;
        border-color: transparent #dddddd transparent transparent;
    }
    
    .experience .timeline .timeline-item.left .timeline-date,
    .experience .timeline .timeline-item.right .timeline-date {
        position: relative;
        top: 0;
        right: auto;
        left: 0;
        text-align: left;
        margin-bottom: 10px;
    }
    
    .experience .timeline .timeline-item.left .timeline-text,
    .experience .timeline .timeline-item.right .timeline-text {
        border-right: none;
        border-left: 5px solid #dddddd;
    }
}


/* ===== Über uns - Skill Effekte ==== */


.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 2s;
}


.about::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #E88F2A;;
}


/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.feature .col-md-6 {
    height: 100%;
}

.feature .feature-img {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.feature .feature-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 70%;
    top: 30%;
    left: 0;
    border: 30px solid;
    border-image: repeating-linear-gradient( 45deg, rgba(0,0,0,.05), rgba(0,0,0,.05) .5%, rgba(0,0,0,.1) .5%, rgba(0,0,0,.1) 1%) 30;
    z-index: 1;
}

.feature .feature-img:hover::after {
    border-image: repeating-linear-gradient( 45deg, rgba(0,0,0,.1), rgba(0,0,0,.1) .5%, rgba(0,0,0,.05) .5%, rgba(0,0,0,.05) 1%) 30;
}

.feature .feature-img img {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    margin: 0 0px 30px 30px;
    z-index: 2;
}

@media (max-width: 767.98px) {
    .feature .feature-img {
        margin-bottom: 45px;
    } 
    .circled {width: 80%; align-content: center; align-items:center; margin-right: auto; margin-left: auto; margin-bottom:20px;} 
    .trenner {content:" "; clear:both; display:block;}
}

@media (min-width: 767.98px) {
.zertflow {float:right;}
}



/* === SL Ergänzungen === */

div.mt-20 h2, div.mt-20 h3 {margin-top:30px !important}
div.mt-3rem h2 {margin-top:3rem !important; ; margin-bottom:2rem !important;}

/* ===== Faktenbox ===== */

.kat1 {width: 175px; display:inline-block; margin-bottom: 5px;  color: #00589C; vertical-align: top;}
.kat2 {display:inline-block; margin-bottom: 10px;}

.terminbox {background-color:#F0F0F0; border-radius: 15px; padding:25px; border: solid 5px #232F3F;}
.terminbox2 {background-color: #6C757D; width: 100%; padding-left: 25px; padding-top: 5px; padding-bottom: 5px; font-size: 1.5rem; font-weight: bold; color: white; border-radius: 1px; }
.terminbox2a {border: 2px solid silver; border-top:0px; background-color: #FFFFFF; width: 100%; padding: 25px; /*box-shadow: 6px 4px 8px -2px; border-radius: 12px;*/ font-size: 1.5rem; color: #232F3F; }
.displayflex1, .displayflex7 {display: flex; display: -webkit-flex;}

/* ==== GRID-SYSTEM ==== */

.border, .border * {border: 1px solid #91C4FF;}

.container-system2 {width:100%; margin-left: auto; margin-right: auto;}
.row-system2::after {content: ""; clear:both; display: block;}
[class*='ncol-'] {float:left; min-height:1px;}
.ncol-1-system2 { width: 16.666%; }
.ncol-2-system2 { width: 33.333%; }
.ncol-3-system2 { width: 50%; }
.ncol-6-system2 { width: 100%; }

/* ==== WICHTIGE BREAKPOINTS ==== 
320 Pixel (iPHone Hochformat)
480 Pixel (iPhone Querformat)
768 Pixel (iPad Hochformat)
1024 Pixel (iPad Querformat)
1200 Pixel (Laptop)
>1200 Pixel (großer Endgeräte)
*/

@media (max-width: 1024px) { 
    .ncol-1-system2 { width: 33.333%; }}
@media (max-width: 768px) { 
    .ncol-1-system2 { width: 50%; }
    .ncol-2-system2 { width: 100%;}
    .ncol-3-system2 { width: 100%;}
}
@media (max-width: 480px) { 
    .ncol-1-system2 { width: 100%; }
    .ncol-2-system2 { width: 100%;}
    .ncol-3-system2 { width: 100%;}
}

/* ==== Akkordeon von alter Webseite ==== */

 /*--------------------------------------------------- Großes Accordion mit h2, h3, h4, und h5, überschriften möglich --------------------------------------*/
    
    .inhalte {
        border-radius: 18px;
        border: 5px solid #f0f0f0
    }
    
    .inhalte p {
        margin: 24px;
    }
    
    .inhalte h2, .inhalte h3, .inhalte h4, .inhalte h5 {
        margin: 24px;
    }

    .inhaccordion {
        overflow: hidden;
        max-height: 0px;
    }
    
    .inhaccordion .ul-content-haken {
        margin-right: 18px;
        margin-left: -22px;
    }
    
    .inhaccordion .ul-content1 {
        margin-left: -15px;
    }
    
    .inhaccordion .responsive-video {
        margin: 20px;
    }
    
    .inhcrossRotate {
        height: 24px;
        float: right;
        cursor: pointer;
        margin-top: 1px;
        -webkit-transition: 0.1s ease-in-out;
        transition: 0.1s ease-in-out;
    }
    
    .inhalteueber {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        cursor: pointer;
    }
    
    .inhalteueber:hover {
        background: #f0f0f0
    }
    
    .inhalte .is-open {
        background: #f0f0f0 !important
    }
    
    .inhactive {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }



/* ==== Listen ====  */
.orange-dreieck { list-style-type: "▶ "; list-style-position: outside; padding:0px; margin-left:18px;}
.orange-dreieck > li::marker {color: #F19000;}
.dunkelgraues-dreieck { list-style-image: url('../images/dunkelgraues-dreieck-klein.png'); list-style-position: outside; padding:0px; margin-left:50px; }
.orangenes-dreieck { list-style-image: url('../images/orangenes-dreieck-klein.png'); list-style-position: outside; padding:0px; margin-left:15px; }
.orangenes-dreieck > li {margin-top:20px;}
li5px > li {margin-bottom: 5px;}


/* Bild für die bunten Boxen */
.boxpic { max-width:100%; height:auto;}
.abstand15px {margin-left:15px;}
.abstand30px {margin-left:30px;}
.abstand50px {margin-left:50px;}


div.ncol-3-system2 > img.boxpic :nth-child(even) {margin-bottom: 100px !important;}

.dotted {
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-color: #2B2825;
  font-weight: bold;
}



.circled { 
float: left;
width: 450px;
height: 450px;
border-radius: 50%;
margin-right: 25px;
shape-outside: circle(50%) margin-box;    
} 


    /* Container Styling */
    .braintrust-bonus {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        margin-bottom: 50px;
    }

    /* Image Styling */
    .braintrust-bonus img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }

    /* Text Container Styling */
    .braintrust-bonus .text-container {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    /* Responsive Styling */
    @media (min-width: 600px) { /* Angepasster Breakpoint für kleinere Bildschirme */
        .braintrust-bonus img {
            width: 33.33%; /* Bild bleibt bei 1/3 der Breite */
            height: 100%; /* Höhe wird automatisch angepasst */
            padding-top:28px;
        }

        .braintrust-bonus .text-container {
            width: 66.67%;
            padding-left: 30px;
        }
    }

    @media (min-width: 1024px) { /* Standard Desktop-Ansicht */
        .braintrust-bonus {
            flex-wrap: nowrap; /* Verhindert Zeilenumbruch bei genügend Platz */
        }
    }
   
    .tab {
        text-align: center; /* Zentriert Inhalte innerhalb der Tab-Box */
        margin: 20px;
    }

    .circled.boxpic {
        width: 100%; /* Bild passt sich der Breite des Containers an */
        max-width: 500px; /* Maximale Breite des Bildes */
        height: auto; /* Höhe wird automatisch berechnet, um Proportionen zu bewahren */
        border-radius: 50%; /* Rundes Bild, falls erforderlich */
        object-fit: cover; /* Verhindert Verzerrung, füllt den Container proportional */
        transition: transform 0.3s ease; /* Sanfte Übergänge bei Hover */
    }

    .circled.boxpic:hover {
        transform: scale(1.05); /* Vergrößert das Bild leicht beim Hover */
    }



    @media (max-width: 768px) {
        .tab {
            padding: 10px; /* Etwas Platz auf kleineren Bildschirmen */
        }
    .trenner {
        margin: 20px 0;
        border-top: 2px solid #ddd; /* Trenner-Styling */
        width: 80%; /* Breite des Trenners */
        margin-left: auto;
        margin-right: auto;
    }
        .circled.boxpic {
            max-width: 100%; /* Volle Breite auf kleineren Geräten */
        }
    }
  