:root {

    /*Colors*/
    --ci-color: #FF8C00;
    --dark-color: #1D1D1B;
    --mid-color: #f8f8f8;
    --light-color: #fff;
    --text-color: #575756;

    /*Fonts*/
    --mainfont: 'Libre Franklin', sans-serif;
}

*{
    scroll-behavior: smooth;
}

/* libre-franklin-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: 'Libre Franklin';
    font-style: normal;
    font-weight: 300;
    src: url('../webfonts/libre-franklin-v18-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* libre-franklin-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: 'Libre Franklin';
    font-style: italic;
    font-weight: 300;
    src: url('../webfonts/libre-franklin-v18-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* libre-franklin-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: 'Libre Franklin';
    font-style: normal;
    font-weight: 400;
    src: url('../webfonts/libre-franklin-v18-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* libre-franklin-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: 'Libre Franklin';
    font-style: italic;
    font-weight: 400;
    src: url('../webfonts/libre-franklin-v18-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* libre-franklin-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: 'Libre Franklin';
    font-style: normal;
    font-weight: 500;
    src: url('../webfonts/libre-franklin-v18-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* libre-franklin-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: 'Libre Franklin';
    font-style: italic;
    font-weight: 500;
    src: url('../webfonts/libre-franklin-v18-latin-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* libre-franklin-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: 'Libre Franklin';
    font-style: normal;
    font-weight: 600;
    src: url('../webfonts/libre-franklin-v18-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* libre-franklin-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: 'Libre Franklin';
    font-style: italic;
    font-weight: 600;
    src: url('../webfonts/libre-franklin-v18-latin-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* libre-franklin-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: 'Libre Franklin';
    font-style: normal;
    font-weight: 700;
    src: url('../webfonts/libre-franklin-v18-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* libre-franklin-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: 'Libre Franklin';
    font-style: italic;
    font-weight: 700;
    src: url('../webfonts/libre-franklin-v18-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }


nav.navbar {
    z-index: 1500;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.75);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 1em 2em;
    font-family: var(--mainfont);
}
@media (max-width: 1180px) {
    nav.navbar {
        padding: 1em;
    }
}
nav.navbar .searchbtn {
    background: transparent;
    border: none;
}
nav.navbar .searchbtn:hover {
    background: transparent;
}
nav.navbar .searchbtn:focus,
nav.navbar .searchbtn:active {
    border: none;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}
nav.navbar .menutoggle {
    margin-right: 5em;
}
nav.navbar .menutoggle .nav-link {
    font-family: "Fira Sans Medium";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
nav.navbar .menutoggle .nav-link::before {
    content: "";
    display: inline-block;
    background-image: url(../style/menutoggle.svg);
    height: 1.5em;
    width: 1.5em;
    background-size: 100%;
    margin-right: 1em;
}
@media (max-width: 1300px) {
    nav.navbar .menutoggle {
        margin-right: unset;
    }
}
nav.navbar .searchtoggle .nav-link {
    font-family: "Fira Sans Medium";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
nav.navbar .searchtoggle .nav-link::before {
    content: "";
    display: inline-block;
    background-image: url(../style/searchblue.svg);
    height: 1.5em;
    width: 1em;
    background-size: 100%;
    margin-right: 1em;
    background-repeat: no-repeat;
    background-position: center;
}
nav.navbar .navbar-brand {
    max-width: 234px;
    width: 20%;
    padding: 0;
}



nav.navbar .navbar-brand img {
    width: 100%;
    height: auto;
}
nav.navbar .navbar-toggler {
    border: none;
    background: transparent;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    margin-left: auto;
}
nav.navbar .navbar-toggler .icon-bar {
    width: 1.25em;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    height: 3px;
    background-color: var(--ci-color);
    display: block;
    position: relative;
}
nav.navbar .navbar-toggler .icon-bar:nth-of-type(2) {
    margin: 0.2em 0;
}
nav.navbar .navbar-toggler:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
}
nav.navbar .navbar-toggler[aria-expanded="true"] {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
}
nav.navbar .navbar-toggler[aria-expanded="true"] .icon-bar:nth-of-type(1) {
    top: 3px;
}
nav.navbar .navbar-toggler[aria-expanded="true"] .icon-bar:nth-of-type(2) {
    margin: 0;
}
nav.navbar .navbar-toggler[aria-expanded="true"] .icon-bar:nth-of-type(3) {
    top: -3px;
}
nav.navbar .navbar-nav {
    margin-right: 1em;
}
@media (max-width: 990px) {
    nav.navbar .navbar-nav {
        margin-right: 0;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
@media (max-width: 768px) {
    nav.navbar .navbar-nav {
        padding: 1em 3em 0 3em;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    #navbarSupportedContent{
        width: 100%;
    }
}
nav.navbar .bold .nav-link {
    font-weight: 600;
}
nav.navbar .nav-link {
    color: var(--dark-color);
    font-family: var(--mainfont);
    font-weight: 400;
}
@media (max-width: 1180px) {
    nav.navbar .nav-link {
        font-size: 0.8em;
    }
}
@media (max-width: 990px) {
    nav.navbar .nav-link {
        padding: 1em 0;
        border-top: 1px solid var(--mid-color);
    }
}
@media (max-width: 768px) {
    nav.navbar .nav-link {
        padding: 1em 0;
        font-size: 1em;
    }
}
nav.navbar .nav-link:hover {
    color: var(--ci-color);
}
nav.navbar .nav-link.active {
    color: var(--ci-color);
}
#search.hidden-search {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}
.bg-blur main,
.bg-blur header,
.bg-blur footer,
.bg-blur nav {
    -webkit-filter: blur(15px);
    filter: blur(15px);
}
.sidebar-menu {
    position: fixed;
    right: -5em;
    top: 50%;
    z-index: 10000;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 0;
}
.sidebar-menu.scrolled {
    opacity: 1;
    right: 0;
}
.sidebar-menu .list-group {
    list-style: none;
}
.sidebar-menu .sidebar-item .btn {
    color: var(--light-color);
    height: 40px;
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-color: var(--dark-color);
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    margin-bottom: 0;
    font-size: 0.8em;
}
.sidebar-menu .sidebar-item .btn:hover {
    background-color: var(--ci-color);
    cursor: pointer;
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 768px) {
    .sidebar-menu {
        display: none;
    }
}
#offcanvasNavi {
    padding-top: 130px;
    width: 100%;
    height: auto;
    overflow-x: scroll;
    padding-left: 5em;
    padding-right: 5em;
}
#offcanvasNavi .offcanvas-header {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    padding: 0em 0 1em 0;
}
#offcanvasNavi .offcanvas-body {
    padding: 0;
    overflow-x: hidden;
}
#offcanvasNavi .kurshead {
    background: var(--ci-color);
    color: var(--light-color);
    padding: 1em;
    font-size: 1em;
    display: block;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 0;
    text-align: center;
}
#offcanvasNavi .kurshead a {
    color: var(--light-color);
}
#offcanvasNavi .kursnav {
    list-style: none;
    margin: 0;
    padding: 0.75em 1em;
}
#offcanvasNavi .kursnav li a {
    padding: 0.25em 0;
    display: block;
    color: #575756;
    font-size: 0.8em;
}
#offcanvasNavi .kursnav li a:hover {
    color: var(--ci-color);
}
#offcanvasNavi .kursnav li a.active {
    color: var(--ci-color);
}
@media (max-width: 1180px) {
    #offcanvasNavi {
        padding-top: 86px;
        padding-left: 1em;
        padding-right: 1em;
    }
}
@media screen and (max-width: 990px) {
    #offcanvasNavi .offcanvas-header {
        padding: 0em 0 1em 0;
    }
}
#menu-hauptmenue {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: relative;
}
.nav-open #menu-hauptmenue {
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
}
.nav-open .navbar-toggler {
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
}
header {
    position: relative;
    z-index: 10;
}
header figure {
    margin-bottom: 0;
    position: relative;
}
header figure img {
    aspect-ratio: 16 / 4;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top center;
    object-position: top center;
}
header figure figcaption {
    position: absolute;
    left: 5em;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    width: 65vw;
    max-width: 70ch;
    color: var(--dark-color);
    text-align: left;
    text-shadow: none;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: clamp(1em, 5vw, 2em);
    border-radius: 0;
}
@media screen and (max-width: 1170px) {
    header figure figcaption {
        padding: 1em;
    }
}
header figure figcaption .h1 {
    font-size: clamp(1.5em, 5vw, 2em);
}
@media screen and (max-width: 768px) {
    header figure figcaption {
        left: 1em;
    }
}
header figure figcaption p {
    max-width: 65ch;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}
header.abouthead {
    background-color: var(--mid-color);
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}
@media screen and (max-width: 768px) {
    header.abouthead .paddingbox {
        padding: 1em;
    }
}
.storerimg {
    position: absolute;
    z-index: 5;
    right: 3%;
    top: 50%;
    max-width: 17vw;
    max-height: 300px;
    -webkit-transform: rotate(-10deg) translateY(-50%);
    transform: rotate(-10deg) translateY(-50%);
    width: auto;
}
@media screen and (max-width: 768px) {
    .storerimg {
        max-width: 125px;
    }
}
main {
    position: relative;
}
.breadcrumb {
    font-size: 0.8em;
    color: #575756;
    padding: 2em 0 0;
    margin: 0;
}
.breadcrumb a {
    color: #575756;
}
.breadcrumb .current-page {
    color: var(--ci-color);
}
.joblist {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.5s ease !important;
    transition: all 0.5s ease !important;
    width: calc(100% + 25px) !important;
}
.joblist .bi {
    color: var(--ci-color);
}
.joblist::after {
    content: "";
    background-color: var(--mid-color);
    height: 2px;
}
.joblist:hover {
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    background-color: var(--mid-color);
}
.joblist:hover .btn {
    background-color: #575756;
}
.kurscontent h1 {
    color: var(--light-color);
}
#startdaten .card .headline {
    font-weight: 300;
    font-size: 1.5em;
}
#kursinformationen .kursinfo .list-group-item {
    border-bottom: 2px solid var(--ci-color);
    background: transparent;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    margin-bottom: 1em;
    padding-left: 0;
}
#kursinformationen .kursinfo .list-group-item:last-child {
    border-bottom: 0;
}
#kursinformationen .kursinfo h2 {
    margin-bottom: 1em;
}
#kursinformationen .kursinfo a {
    font-size: 1em;
}
.ansprechpartner figure img {
    aspect-ratio: 4 / 3 !important;
}
.ansprechpartner .beratername {
    color: var(--ci-color);
}
.ansprechpartner .card-body {
    padding: 1em 2em !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.ansprechpartner .card-body a {
    font-size: 1em;
}
.ansprechpartner .card-body p {
    margin-bottom: 0.5em;
}
ul .list-group-item {
    list-style: none;
    border: 0px;
}
ul .list-item {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    margin-bottom: 10px;
    position: relative;
}
ul .list-item::before {
    content: "";
    width: calc(100vw + 10vmax);
    -webkit-transform: translateX(-5vmax);
    transform: translateX(-5vmax);
    height: 1px;
    background-color: var(--ci-color);
    opacity: 0.25;
    display: block;
}
.kurse h1 {
    color: var(--light-color);
}
.kurse p {
    color: var(--light-color);
}

#student-feedback h2,
#student-feedback h3 {
    color: var(--light-color);
}
#student-feedback p {
    color: var(--light-color);
}
#cta-fragen .infobox {
    display: inline-block;
    color: var(--ci-color);
    background-color: var(--light-color);
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    padding: 1em;
    border-radius: 0;;
    margin-bottom: 2em;
}
#cta-fragen .infobox h5 {
    display: inline-block;
    line-height: 0;
}

#cta-fragen img{
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center center;
}

#cta-fragen img.no-ratio{
    aspect-ratio: unset;
}


#cta-textgroup .button-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
#cta-textgroup .button-group .btn {
    margin-bottom: 1em;
}
#rooms .room {
    margin-bottom: 5em;
}
#rooms .room .fullday::after {
    content: "";
    background-image: url("");
}
#weiterbildungen,
#blogsection {
    position: relative;
    overflow-x: hidden;
}
#weiterbildungen .btn.controller,
#blogsection .btn.controller {
    background: var(--light-color);
    color: var(--ci-color);
}
#weiterbildungen .btn.controller svg,
#blogsection .btn.controller svg {
    height: 25px;
    width: 25px;
}
#weiterbildungen .btn.controller:hover,
#blogsection .btn.controller:hover {
    background: var(--ci-color);
    color: var(--light-color);
}
.single #blogsection {
    overflow-x: hidden;
}
.scrolling-wrapper {
    width: 100vw;
    scroll-behavior: smooth;
}
.scrolling-wrapper::-webkit-scrollbar {
    display: none;
}
@media screen and (max-width: 768px) {
    .scrolling-wrapper {
        width: 100%;
        overflow: initial !important;
    }
    .scrolling-wrapper .card-body {
        padding: 1em 2em 1.5em !important;
    }
    .scrolling-wrapper.flex-nowrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .scrolling-wrapper.flex-nowrap .col-8 {
        width: 100%;
    }
}
#carouselVorteile .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230B2C69'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
#carouselVorteile .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230B2C69'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
#carouselVorteile .carousel-control-next,
#carouselVorteile .carousel-control-prev {
    width: 1em;
}
#standardSearch .row.result {
    padding-left: 20px;
    padding-right: 20px;
    min-height: 120px;
    padding: 1em 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: 1px solid var(--ci-color);
    position: relative;
}
.filterbar {
    background-color: var(--light-color);
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 0;;
}
#list {
    overflow: visible !important;
}
.single .breadcrumb-item + .breadcrumb-item::before {
    margin-top: 0.75em;
}
@media screen and (max-width: 768px) {
    .single .breadcrumb-item + .breadcrumb-item::before {
        display: none;
    }
}
@media screen and (max-width: 768px) {
    .single .breadcrumb-item + .breadcrumb-item {
        padding-left: 0;
    }
}
#comments .comments-title {
    font-size: clamp(2em, 4vw, 2em);
    margin-bottom: 1em;
    text-transform: none;
}
#comments .comment-author {
    margin-bottom: 1em;
}
#comments .comment-list {
    margin-bottom: 5vmax;
}
#comments .comment-list .comment-meta {
    margin-bottom: 1em;
}
#comments .comment-list .comment-meta a {
    font-size: 0.8em;
    font-family: var(--mainfont);
}
@media (min-width: 992px) {
    .modal-lg,
    .modal-xl {
        max-width: 90vw;
    }
}
@media (min-width: 1200px) {
    .modal-lg,
    .modal-xl {
        max-width: 75vw;
    }
}
.milk {
    background: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.profile-section {
    padding-top: 50px;
}
.profile-section-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.profile-section-image img {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    border: 3px solid #003a79;
    aspect-ratio: 1 / 1;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}
.profile-section-details {
    margin-top: 10px;
    text-align: center;
}
.profile-section-details p {
    color: #003a79;
}
.profile-section-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 100%;
}
.profile-section-row-element {
    margin: 15px;
    margin-top: 0;
}
.profile-section-row-element span {
    font-family: var(--mainfont);
    font-weight: 300;
    display: block;
    margin-bottom: 5px;
    color: #003a78;
}
.profile-section-row-element-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 7px;
    align-items: center;
}
.profile-section-row-element-box p {
    font-family: var(--mainfont);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 0;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--light-color);
    background-color: var(--ci-color);
    width: 80px;
    height: 80px;
    border-radius: 100%;
}
.profile-section-row-element-box h3 {
    margin-bottom: 0;
    font-weight: 700;
    font-family: var(--mainfont);
    font-size: 25px;
}
.profile-section-ranks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.profile-section-rank-item {
    width: 100px;
    border-bottom: 7px solid #888888;
    margin-left: 5px;
    margin-right: 5px;
    text-align: center;
}
.profile-section-rank-item-active {
    border-bottom: 7px solid #009be1;
}
.chl-section {
    margin-top: 50px;
}
.chl-section h2 {
    font-size: 25px;
    font-family: var(--mainfont);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.chl-section h2 a {
    font-size: 15px;
    text-decoration: underline;
}
.chl-item {
    width: 100%;
    height: 150px;
    background-size: cover;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    cursor: pointer;
    outline: none;
    -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.18);
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.18);
    border-radius: 7px;
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 10px;
    background-position: center center;
}
.chl-item span {
    color: var(--light-color);
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
}
.chl-item:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition-duration: 0.7s;
    transition-duration: 0.7s;
    background-color: var(--ci-color);
}
.chl-item:hover p {
    -webkit-transition-duration: 0.7s;
    transition-duration: 0.7s;
    background-color: var(--light-color);
    color: var(--ci-color);
}
.chl-item p {
    width: 50px;
    position: absolute;
    height: 50px;
    background-color: var(--ci-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 13px;
    top: 0;
    margin-bottom: 0;
    right: 10px;
    color: var(--light-color);
    margin-top: 10px;
    text-align: center;
}
.chl-item-blur {
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(11, 44, 105, 0.5);
}
.custom-single-post {
    margin-top: 50px;
    margin-bottom: 50px;
}

.acf-button.button.button-primary.button-large,
.get-point-button {
    cursor: pointer;
    outline: none;
    -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.18);
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.18);
    border-radius: 0;
    font-size: 1em;
    margin-bottom: 20px;
    width: 100%;
    border: 0;
    text-transform: uppercase;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    white-space: normal;
    word-break: normal;
    text-align: center;
    padding: 1em;
    background: var(--ci-color);
    margin-top: 2em;
    color: var(--light-color);
    text-decoration: none !important;
}
.acf-button.button.button-primary.button-large:hover,
.get-point-button:hover {
    -webkit-transition-duration: 0.7s;
    transition-duration: 0.7s;
    background: var(--ci-color);
    color: var(--light-color);
}

#hide-field {
    display: none;
}

#fbCarousel img {
    /* aspect-ratio: 49 / 29; */
    max-width: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
	align-self: stretch;
}

#fbCarousel .stoerer{
	position: absolute;
	top: 40px;
	right: 40px;
	background: var(--mid-color);
	color: var(--dark-color);
    font-size: clamp( 12px, 2vw, 22px);
    font-weight: 500;
    text-align: center;
    width: 20vw;
    height: 20vw;
    aspect-ratio: 1 / 1;
    max-width: 250px;
    max-height: 250px;
    padding: .5vw;
	display:flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	overflow:hidden;
	line-height: 1.2;
}

#fbCarousel .carousel-item .inner{
    display: flex;
    gap: 0;
    flex-direction: row;
    background-color: var(--ci-color);
    align-items: center;
}

@media screen and (max-width: 768px){
    #fbCarousel .carousel-item .inner{
        display: flex;
        gap: 0;
        flex-direction: column-reverse;
        background-color: var(--ci-color);
        align-items: start;
    }

    #fbCarousel .stoerer{
        padding: .5em;
        top: 1em;
        right: 1em;
        min-width: 130px;
        min-height: 130px;
    }

    #fbCarousel img {
        max-width: unset;
    }
}


#fbCarousel .btn{
    text-transform: uppercase;
    padding: 1em;
    border: 2px solid var(--dark-color);

    &:hover{
        color: var(--dark-color);
    }
}


#fbCarousel .carousel-caption {
    right: auto;
    left: auto;
    bottom: auto;
    transform: none;
    top: auto;
    max-width: 50%;
    color: var(--dark-color);
    background-color: var(--ci-color);
    text-align: left;
    text-shadow: none;
    padding: 2em;
    border-radius: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1em;
    flex: 0 0 auto;
    width: 45%;
}
#fbCarousel .carousel-caption p {
    max-width: 65ch;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}
#fbCarousel .carousel-caption .h2 {
    font-size: clamp(1.25em, 5vw, 2em);
}
@media screen and (max-width: 990px) {
    #fbCarousel {
        background: var(--mid-color);
    }
    #fbCarousel .carousel-caption {
        /* left: 1em; */
        position: relative;
        -webkit-transform: none;
        transform: none;
        top: auto;
        background: none;
        padding: 1em;
    }
}
@media screen and (max-width: 768px) {
    #fbCarousel {
        background: var(--mid-color);
    }
    #fbCarousel .carousel-caption {
        left: 0em;
        max-width: unset;
        width: 100%;
    }

    #fbCarousel .carousel-caption p {
        max-width: unset;
        -webkit-hyphens: none;
        -ms-hyphens: none;
        hyphens: none;
    }
}
#ctabtns .btn {
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-size: clamp(.6em, .9vw, .9em);
    padding: 1em .5em;
}
@media screen and (max-width: 1400px) {
    #ctabtns .btn {
        padding: .5em 0.5em;
    }
}
@media screen and (max-width: 991px) {
    #ctabtns .btn {
        padding: 1em;
        margin-bottom: 1em;
    }
}
@media screen and (max-width: 769px) {
    #ctabtns .btn {
        margin-bottom: 0.5em;
        padding: 0.5em;
    }
}
#vorteile {
    background-color: var(--mid-color);
}
#vorteile img {
    max-width: 3em;
    margin: 0 auto;
}
#vorteile h3 {
    font-size: 1.25em;
    font-family: var(--mainfont);
    margin-bottom: 0;
}

#vorteile .content p {
    padding: 1em 3em;
}

#vorteile .content ul {
    text-align: left !important;
}


@media screen and (max-width: 990px) {
    
    #vorteile .content p {
        padding: 1em 3em;
    }
}
.slider {
    position: relative;
    padding: 0;
}
.slider button {
    color: var(--ci-color);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.slider button:hover {
    color: var(--ci-color);
}
.slider button:focus {
    color: var(--ci-color);
}
.slider .slick-prev,
.slider .slick-next {
    font-size: 2em;
    width: 1em;
    height: 2em;
}
.slider .slick-prev {
    left: -1em;
}
.slider .slick-next {
    right: -1em;
}
.slider .slick-prev:before,
.slider .slick-next:before {
    color: currentColor;
    display: none;
}
.slider .slick-list {
    position: relative;
    overflow: hidden;
    padding: 0;
}
.slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1em;
}
#news .carousel-inner {
    padding: 1em 0;
}
#news .carousel-control-next,
#news .carousel-control-prev {
    color: var(--ci-color);
    opacity: 1;
    font-size: 3em;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
#news .carousel-control-next:hover,
#news .carousel-control-prev:hover {
    color: var(--ci-color);
}
#news figure {
    margin-bottom: 0;
    position: relative;
}
#news figure figcaption {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--light-color);
    padding: 0.5em;
    font-size: 0.8em;
    color: var(--ci-color);
    font-family: var(--mainfont);
    font-weight: 500;
}
#kurse .row {
    --bs-gutter-x: 2em;
    --bs-gutter-y: 2em;
}
.kurscard {
    padding: 2em;
}

.kurscard .btn {
    text-transform: none;
    padding: 1em;
}
.accordion .accordion-button {
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #575756;
}
.accordion .accordion-button svg {
    margin-right: 1em;
}
.accordion .accordion-button:not(.collapsed),
.accordion .accordion-button:focus,
.accordion .accordion-button:active {
    outline: none;
    background-color: var(--mid-color);
    -webkit-box-shadow: none;
    box-shadow: none;
}
.accordion .accordion-item {
    border: 0px;
    border-top: 2px solid #575756;
}
.accordion .accordion-item:first-child {
    border-top: 2px solid #575756 !important;
}
.accordion .accordion-item:last-child {
    border-bottom: 2px solid #575756 !important;
}
.scrollable-content {
    scroll-behavior: smooth;
}
.scrollable-content::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: #f4f4f4;
}
.scrollable-content::-webkit-scrollbar {
    width: 12px;
    background-color: #f4f4f4;
}
.scrollable-content::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: var(--ci-color);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.scrollable-content::-webkit-scrollbar-thumb:hover {
    background-color: var(--ci-color);
}
.noscrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.noscrollbar::-webkit-scrollbar {
    display: none;
}
@media screen and (max-width: 768px) {
    .noscrollbar {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}
.kursslidebtn{
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 2em;
    font-size: 3em;
    background: none;
    color: var(--ci-color);
    border: none;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.kursslidebtn:hover{
    color: var(--ci-color);
}
@media screen and (max-width: 768px) {
    .kursslidebtn{
        width: 1em;
        font-size: 2em;
    }
}
#kursprev{
    left: -6vw;
}
#kursnext{
    right: -6vw;
}
@media screen and (max-width: 768px) {
    #kursprev {
        left: -0.25em;
    }
    #kursnext {
        right: 0;
    }
   
}
.filter-select {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/></svg>");
    border: 0px;
    background-color: var(--ci-color);
    padding: 1em;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    color: var(--light-color);
}
.filter-select:focus {
    border: 0px;
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
    background-color: var(--ci-color);;
}
.modal .modal-dialog {
    overflow-y: auto !important;
}
.sidebar-menu .sidebar-item .btn {
    border-radius: 0;
}
.select-title {
    --tint: var(--ci-color);
    display: block;
    background: var(--tint) !important;
    color: var(--light-color) !important;
}
.select-title::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}
.select-title.Fachbereich {
    --tint: var(--ci-color);
}
.select-title.Abschluss {
    --tint: #0f3d7f;
}
.select-title.Studiendauer {
    --tint: #145199;
}
.select-wrapper {
    position: relative;
}
.select-wrapper label {
    display: block;
    padding: 0.5em 0;
    border-bottom: 1px solid #575756;
}
.select-wrapper label input {
    margin: 0 0.5em 0 0;
}
.select-wrapper:last-child {
    border-bottom: none;
}
.single-kaderrichtungen .select-wrapper:first-of-type,
.single-kurse .select-wrapper:first-of-type {
    display: none !important;
}
.multiselect-container {
    background: var(--light-color);
    z-index: 10;
    display: none;
    width: 100%;
}
.show + .multiselect-container {
    display: block;
}
#filter {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--bs-gutter-x);
}
#filter:before {
    display: none;
}
#filter .info {
    grid-column: 1 / -1;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.5em;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
#filter .info div {
    width: 100%;
}
#filter .info span {
    --tint: var(--ci-color);
    cursor: pointer;
    background: var(--tint);
    color: var(--light-color);
    padding: 0.25em 0.5em;
    border-radius: 0;
    display: block;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
#filter .info span.Fachbereich {
    --tint: var(--ci-color);
}
#filter .info span.Abschluss {
    --tint: #0f3d7f;
}
#filter .info span.Studiendauer {
    --tint: #145199;
}
#filter .info span::after {
    content: "\00d7";
    background: var(--light-color);
    color: var(--tint);
    margin-left: 0.25em;
    float: right;
    border-radius: 50%;
    width: 1em;
    height: 1em;
    line-height: 1;
    margin: 0.2em 0 0 0.4em;
}
@media screen and (max-width: 767px) {
    #filter {
        grid-template-columns: 1fr;
    }
}
.row {
    -webkit-scroll-snap-type: x mandatory;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
}
.row > * {
    scroll-snap-align: start;
}
.single-kurse h1::after {
    content: "";
    height: 2px;
    width: 50%;
    max-width: 300px;
    background: #575756;
    display: block;
    margin-top: 0.5em;
}
.single-kurse .row.btns,
#cta-fragen .row.btns {
    --bs-gutter-y: 1em;
    --bs-gutter-x: 1em;
}
.single-kurse .row.btns .btn,
#cta-fragen .row.btns .btn {
    padding: 1em;
}
.single-kurse #kursInfos.accordion .accordion-header {
    font-size: 18px;
    margin-bottom: 0 !important;
}
.single-kurse #kursInfos.accordion .accordion-header .accordion-button {
    font-size: 1.5em;
    padding: 1em;
}
@media screen and (max-width: 768px) {
    .single-kurse #kursInfos.accordion .accordion-header .accordion-button {
        padding: 1em 0.25em;
    }
}
.single-kurse #kursInfos.accordion .accordion-item:first-child {
    border-top: none !important;
}
.single-kurse #kursInfos.accordion .accordion-item {
    border-top: 2px solid #d9d9d9;
}
.single-kurse #kursInfos.accordion .accordion-item:last-child {
    border-bottom: none !important;
}
@media screen and (max-width: 768px) {
    .single-kurse #kursInfos.accordion .accordion-body {
        padding: 0.5em;
    }
}
.single-kurse .datebox {
    border-radius: 0;
}
@media screen and (max-width: 768px) {
    .single-kurse .datebox .dateboxinner {
        border-bottom: 2px solid #d9d9d9;
    }
    .single-kurse .datebox .dateboxinner:last-of-type {
        border-bottom: 0px;
    }
}
.single-kurse .datebox .card-header {
    background: var(--dark-color);
    color: var(--light-color);
    text-transform: uppercase;
    font-size: 1em;
    padding: 1.5em;
    border-radius: 0;
    border: 0px;
}
.single-kurse .datebox .accordion .accordion-header {
    font-size: 1em;
}
.single-kurse .datebox .accordion .accordion-header .accordion-button {
    font-size: 1em;
    padding: 1.5em;
    text-transform: capitalize;
}
.single-kurse .datebox .accordion .accordion-item:first-child {
    border-top: none !important;
}
.single-kurse .datebox .accordion .accordion-item:last-child {
    border-bottom: none !important;
}
.single-kurse .datebox .accordion .accordion-item {
    border-top: 2px solid #d9d9d9;
}
.single-kurse .datebox .accordion .accordion-body {
    background: #d9d9d933;
    padding: 1.5em;
}
.single-kurse .datebox .accordion .accordion-button:not(.collapsed),
.single-kurse .datebox .accordion .accordion-button:focus,
.single-kurse .datebox .accordion .accordion-button:active {
    background: var(--light-color);
}
.multiselect-container {
    padding: 1em;
    border: 0;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.multiselect-container li {
    border-bottom: 1px solid #575756;
    padding: 0.5em 0;
}
.multiselect-container li input {
    margin-right: 0.5em;
}
.multiselect-container li a label {
    padding: 0.5em;
}
.multiselect-container > li > a > label {
    padding: 0.5em;
}
button.multiselect {
    width: 100%;
    overflow: hidden;
}
#kostendirekt table,
.accordion table{
    min-width: 600px;
    border: none !important;
    margin-bottom: 2em;
}

.kurscard .accordion table{
    min-width: 100%;
    border: none !important;
    margin-bottom: 2em;
}

@media screen and (max-width: 768px) {
    #kostendirekt tr,
    .accordion table tr{
        width: 100% !important;
        display: flex;
        gap: 1em;
        padding: .5em;
        height: auto !important;
        border-bottom: 2px solid var(--light-color);
        bottom: 0.5em;
    }
    #kostendirekt tr:last-of-type,
    .accordion table tr:last-of-type{
        border-bottom: 0px solid var(--light-color);
    }
    #kostendirekt tr td,
    .accordion table tr td{
        width: auto !important;
        height: auto !important;
        display: inline-block;
        flex: 1;
        text-align: left !important;
    }
    #kostendirekt tr td:last-of-type,
    .accordion table tr td:last-of-type {
        width: auto !important;
        height: auto !important;
        display: inline-block;
        flex: 1;
        text-align: left !important;
    }

    #kostendirekt table,
    .accordion table{
        margin-bottom: 1em;
        width: 100% !important;
        min-width: unset;
    }
}

@media screen and (max-width: 600px) {

    #kostendirekt table,
    .accordion table{
        font-size: .8em;
    }
   
    #kostendirekt tr td:first-of-type ,
    .accordion table td:first-of-type{
        width: 60% !important;
        flex: auto;
    }
    #kostendirekt tr td:last-of-type,
    .accordion table tr td:last-of-type {
        width: 30% !important;
        flex: auto;
    }
        

   
}

#weiterbildungen .card img {
    height: auto;
    width: auto;
}
.storerimg {
    height: auto;
}
img[src*="adswizz"] {
    display: none;
}
footer {
    background-color: var(--dark-color);
    background-image: url(../style/logocross-white.svg);
    background-position: top left;
    background-size: 65px auto;
    background-repeat: no-repeat;
    color: var(--light-color);
}



footer .logo {
    max-width: 30%;
}
footer a {
    color: var(--light-color);
}
footer a:hover {
    color: var(--ci-color);
}
footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
footer .wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor {
    color: var(--light-color);
}
.marquee {
    --gap: 1rem;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    gap: var(--gap);
}
.marquee__content {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}
.marquee img {
    width: 150px !important;
    height: auto !important;
    display: inline-block;
    aspect-ratio: 16 / 9;
    -o-object-fit: contain;
    object-fit: contain;
    padding: 1em;
    -o-object-position: center center;
    object-position: center center;
    -webkit-animation: fade-in 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
    animation: fade-in 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.marquee a:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}
@-webkit-keyframes scroll {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(calc(-100% - var(--gap)));
        transform: translateX(calc(-100% - var(--gap)));
    }
}
@keyframes scroll {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(calc(-100% - var(--gap)));
        transform: translateX(calc(-100% - var(--gap)));
    }
}
@media (prefers-reduced-motion: reduce) {
    .marquee__content {
        -webkit-animation-play-state: paused !important;
        animation-play-state: paused !important;
    }
}
.enable-animation .marquee__content {
    -webkit-animation: scroll 50s linear infinite;
    animation: scroll 50s linear infinite;
}
.marquee--reverse .marquee__content {
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}
.marquee--hover-pause:hover .marquee__content {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
.marquee--fit-content {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
}
.marquee--pos-absolute .marquee__content:last-child {
    position: absolute;
    top: 0;
    left: 0;
}
.enable-animation .marquee--pos-absolute .marquee__content:last-child {
    -webkit-animation-name: scroll-abs;
    animation-name: scroll-abs;
}
@-webkit-keyframes scroll-abs {
    from {
        -webkit-transform: translateX(calc(100% + var(--gap)));
        transform: translateX(calc(100% + var(--gap)));
    }
    to {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes scroll-abs {
    from {
        -webkit-transform: translateX(calc(100% + var(--gap)));
        transform: translateX(calc(100% + var(--gap)));
    }
    to {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}


/*Formats*/

body {
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-color);
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    font-family: var(--mainfont);
    font-weight: 400;
}

hr {
    margin: 2em 0;
}


@media screen and (max-width: 1200px) {
    body {
        overflow-x: hidden;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-color);
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}
h1 b,
h1 strong,
h2 b,
h2 strong,
h3 b,
h3 strong,
h4 b,
h4 strong,
h5 b,
h5 strong,
h6 b,
h6 strong {
    font-family: var(--mainfont);
    font-weight: 500;
}
h1,
.h1 {
    font-family: var(--mainfont);
    font-size: clamp(1.5em, 5vw, 2.5em);
    line-height: 1em;
    margin-bottom: 1em;
}
h1 b,
h1 strong,
.h1 b,
.h1 strong {
    font-family: var(--mainfont);
    font-weight: 500;
}

.h2 {
    font-family: var(--mainfont);
    font-size: clamp(1.5em, 5vw, 2.5em);
    line-height: 1em;
}
h2 b,
h2 strong,
.h2 b,
.h2 strong {
    font-family: var(--mainfont);
    font-weight: 500;
}

.h3 {
    font-family: var(--mainfont);
    font-weight: 300;
    font-size: clamp(1.25em, 3vw, 1.67em);
    line-height: 1.2em;
}

.h4 {
    font-family: var(--mainfont);
    font-weight: 500;
    font-size: clamp(1em, 5vw, 1.44em);
    line-height: 1.23em;
}

.h5 {
    font-family: var(--mainfont);
    font-weight: 600;
    font-size: 1em;
    line-height: 1.55em;
}

.h6 {
    font-family: var(--mainfont);
    font-weight: 600;
    font-size: 0.78em;
    line-height: 1.21em;
}

a {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    text-decoration: none;
    color: var(--ci-color);
}

a:hover {
    color: var(--ci-color);
}

b,
strong {
    font-family: var(--mainfont);
    font-weight: 500;
    font-style: normal;
}
.current-menu-item a {
    color: var(--ci-color);
}
.current-page {
    color: var(--ci-color);
}
.btn,
.wp-block-button__link,
.wp-block-file .wp-block-file__button {
    font-size: 1em;
    background: var(--dark-color);
    background-size: 300% auto;
    border: none;
    border-radius: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    color: var(--light-color);
    padding: 0.5em 1em;
}

.btn:hover,
.wp-block-button__link:hover,
.wp-block-file .wp-block-file__button:hover {
    background: var(--ci-color);
    text-decoration: none;
    color: var(--light-color);
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
}
.btn:focus,
.wp-block-button__link:focus,
.wp-block-file .wp-block-file__button:focus {
    text-decoration: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    background-color: var(--ci-color);;
    color: var(--light-color);
}
.btn.selected,
.wp-block-button__link.selected,
.wp-block-file .wp-block-file__button.selected {
    text-decoration: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    background-color: var(--mid-color);
    color: var(--light-color);
}
.btn.outlined,
.wp-block-button__link.outlined,
.wp-block-file .wp-block-file__button.outlined {
    background-image: none;
    background: transparent;
    border: 2px solid var(--dark-color);
    color: var(--dark-color)  !important;
}
.btn.outlined:active,
.wp-block-button__link.outlined:active,
.wp-block-file .wp-block-file__button.outlined:active {
    background-color: var(--dark-color);
    color: var(--light-color) !important;
}
.btn.outlined:hover,
.wp-block-button__link.outlined:hover,
.wp-block-file .wp-block-file__button.outlined:hover {
    background-color: var(--dark-color);
    color: var(--light-color) !important;
}
.btn.green,
.wp-block-button__link.green,
.wp-block-file .wp-block-file__button.green {
    background-color: var(--ci-color);
}
.btn.light,
.wp-block-button__link.light,
.wp-block-file .wp-block-file__button.light {
    background-color: var(--ci-color);;
}
.paddingbox {
    padding: 5vmax;
}
@media screen and (max-width: 768px) {
    .paddingbox {
        padding: 2em 0.5em;
    }
}
.padding-x {
    padding-left: 5vmax;
    padding-right: 5vmax;
}
@media screen and (max-width: 768px) {
    .padding-x {
        padding-left: 0.5em;
        padding-right: 0.5em;
    }
}
.padding-y {
    padding-top: 5vmax;
    padding-bottom: 5vmax;
}
@media screen and (max-width: 768px) {
    .padding-y {
        padding-top: 0.5em;
        padding-bottom: 0.5em;
    }
}
.overflow-x {
    overflow-x: auto;
}
.overflow-y {
    overflow-y: hidden;
}

.btn-transparent {
    background-color: transparent;
    background-image: none;
}
.btn-ci {
    background-color: var(--ci-color) !important;
    background-image: none;
}
.btn-ci:hover {
    background-color: var(--dark-color) !important;
}

.blockbtn {
    position: absolute;
    inset: 0;
    z-index: 2;
}
main .container-fluid.full {
    max-width: unset;
}
.sticky-top {
    top: 5em;
}
@media screen and (max-width: 768px) {
    .sticky-top {
        top: auto;
    }
}
.modal {
    z-index: 1502;
}
.modal .modal-dialog {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 576px) {
    .modal .modal-dialog {
        max-width: 90vw;
    }
}
.modal .modal-dialog .modal-content {
    border-radius: 0;
    border: 0px;
    background: transparent;
}
.modal .modal-dialog .modal-content .modal-header {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    border-color: var(--ci-color);
}
.modal .modal-dialog .modal-content .modal-header .logo {
    background-color: var(--light-color);
    padding: 1em 2em !important;
    min-width: 250px;
    max-width: 350px;
}
.modal .modal-dialog .modal-content .modal-header .logo img {
    max-width: 250px;
}
.modal .modal-dialog .modal-content .modal-header .btn-close {
    background-color: var(--light-color);
    padding: 1em;
    opacity: 1;
    background-size: 0.5em;
    margin: 0;
    border-radius: 0;
}
.modal .modal-dialog .modal-content .modal-body {
    background-color: var(--light-color);
    padding: 2em !important;
}
.smallcontent {
    max-width: 1400px;
    margin: 0 auto;
}
.modal-backdrop {
    background-color: var(--ci-color);
    z-index: 1501;
}
figure img {
    max-width: 100%;
    height: auto;
}
figure img.noaspect {
    aspect-ratio: unset !important;
}
.hentry .card {
    padding: 2em;
}
.wp-block-buttons .wp-block-button .wp-block-button__link {
    background-color: var(--ci-color);
}
.wp-block-buttons .wp-block-button .wp-block-button__link:hover {
    background-color: var(--dark-color);
}
.wp-block-column.card {
    background: transparent !important;
}
.wp-block-column.card::after {
    display: none;
}
.wp-block-column.card h3 {
    color: var(--dark-color) !important;
}
.wp-block-column.card p {
    color: #575756 !important;
}
.wp-block-column.card:hover h3 {
    color: var(--ci-color) !important;
}
.wp-block-column.card:hover p {
    color: var(--dark-color) !important;
}
@media screen and (max-width: 768px) {
    .sticky-top {
        position: relative !important;
    }
}
.btn-group .btn.selected {
    background-color: var(--ci-color);
    color: var(--light-color);
}
#fbflow {
    --bs-gutter-x: 2em;
    --bs-gutter-y: 2em;
}
.contentborder {
    position: relative;
}
.contentborder::before {
    content: "";
    position: absolute;
    left: -1.5em;
    height: 100%;
    width: 2px;
    top: 0;
    background-color: #575756;
}
@media screen and (max-width: 990px) {
    .contentborder::before {
        display: none;
    }
}
.card {
    -webkit-box-shadow: 0px 4px 4px 0px #00000040;
    box-shadow: 0px 4px 4px 0px #00000040;
    border: 0px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border-radius: 0;
}
.card img {
    aspect-ratio: 16 / 9;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0;
}
.card h3 {
    font-family: var(--mainfont);
    font-weight: 500;
    color: var(--dark-color);
    font-size: 1.25em;
    text-align: left;
    min-height: 2.5lh;
    margin-bottom: .25em !important;
}

.ansprechpartner.card h3{
    min-height: unset;
}

.card .inner {
    -webkit-box-shadow: 0px 4px 4px 0px #00000040;
    box-shadow: 0px 4px 4px 0px #00000040;
    padding: 1em;
    width: calc(100% - 2em);
    margin: -4em auto 1em;
    background: var(--light-color);
    text-align: left;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    min-height: 230px;
    font-size: .8em;
    flex-direction: column;
    align-items: stretch;

    p{
        min-height: 5lh;
    }
}
.card a {
    font-family: var(--mainfont);
    font-weight: 500;
    color: var(--dark-color);
    text-align: center;
}

.card a.btn {
    color: var(--light-color);
    text-transform: uppercase;
    font-size: .8em;
}

.ansprechpartner.card a.btn{
    font-size: 1em;
}

.card:hover {
    cursor: pointer;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.card:hover .inner {
    margin: -5em auto 2em;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
    .card h3 {
        font-size: 1em;
    }
}
.gform_wrapper {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    pointer-events: none;
    opacity: 0.5;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}
body.fullyloaded .gform_wrapper {
    pointer-events: all;
    opacity: 1;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}
.gform_wrapper.gravity-theme input[type="color"],
.gform_wrapper.gravity-theme input[type="date"],
.gform_wrapper.gravity-theme input[type="datetime-local"],
.gform_wrapper.gravity-theme input[type="datetime"],
.gform_wrapper.gravity-theme input[type="email"],
.gform_wrapper.gravity-theme input[type="month"],
.gform_wrapper.gravity-theme input[type="number"],
.gform_wrapper.gravity-theme input[type="password"],
.gform_wrapper.gravity-theme input[type="search"],
.gform_wrapper.gravity-theme input[type="tel"],
.gform_wrapper.gravity-theme input[type="text"],
.gform_wrapper.gravity-theme input[type="time"],
.gform_wrapper.gravity-theme input[type="url"],
.gform_wrapper.gravity-theme input[type="week"],
.gform_wrapper.gravity-theme select,
.gform_wrapper.gravity-theme textarea {
    border: 0;
    -webkit-box-shadow: 0px 4px 20px #0000001a;
    box-shadow: 0px 4px 20px #0000001a;
    padding: 1em !important;
    font-size: 1em !important;
    font-size: 18px !important;
    border-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border-bottom: 2px solid var(--ci-color);
    width: 100%;
    margin-bottom: 1em !important;
}
.gform_wrapper.gravity-theme input[type="color"]:focus,
.gform_wrapper.gravity-theme input[type="date"]:focus,
.gform_wrapper.gravity-theme input[type="datetime-local"]:focus,
.gform_wrapper.gravity-theme input[type="datetime"]:focus,
.gform_wrapper.gravity-theme input[type="email"]:focus,
.gform_wrapper.gravity-theme input[type="month"]:focus,
.gform_wrapper.gravity-theme input[type="number"]:focus,
.gform_wrapper.gravity-theme input[type="password"]:focus,
.gform_wrapper.gravity-theme input[type="search"]:focus,
.gform_wrapper.gravity-theme input[type="tel"]:focus,
.gform_wrapper.gravity-theme input[type="text"]:focus,
.gform_wrapper.gravity-theme input[type="time"]:focus,
.gform_wrapper.gravity-theme input[type="url"]:focus,
.gform_wrapper.gravity-theme input[type="week"]:focus,
.gform_wrapper.gravity-theme select:focus,
.gform_wrapper.gravity-theme textarea:focus {
    border-bottom-color: #575756;
    background-color: var(--mid-color);
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none;
}
.gform_wrapper.gravity-theme select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 1em !important;
    font-size: 1em !important;
    border-bottom: 2px solid var(--ci-color);
    width: 100%;
    margin-bottom: 1em !important;
    position: relative;
    background-image: url(../style/arrow-down.svg);
    background-position: 99% center;
    background-size: 0.5em;
    background-repeat: no-repeat;
}
.gfield_consent_label {
    display: inline;
}
.ginput_container {
    padding-top: 1em;
}
.gfield_consent_label a {
    color: #575756;
    text-decoration: underline;
}
.gfield-choice-input {
    width: 1.5em;
    height: 1.5em;
}
.gform_footer .button {
    min-width: 50%;
    width: 100%;
}
.gform_footer .button span {
    color: var(--light-color);
}
input[type="checkbox"] {
    -webkit-appearance: checkbox !important;
    -moz-appearance: checkbox !important;
    appearance: checkbox !important;
}
.gform_wrapper.gravity-theme .gfield input.large,
.gform_wrapper.gravity-theme .gfield select.large {
    padding: 1em;
}
.gform_wrapper .gchoice {
    display: inline-block;
    width: 24%;
}

.gform_wrapper .gchoice_1_91_0,
.gform_wrapper .gchoice_1_91_1,
.gform_wrapper .gchoice_1_92_0,
.gform_wrapper .gchoice_1_92_1{
    width: 49%;
}

@media screen and (max-width: 768px) {
    .gform_wrapper .gchoice {
        display: block;
        width: 100%;
        margin-bottom: 1em;
    }
}
.gform_wrapper input[type="radio"] {
    display: none !important;
}
.gform_wrapper input[type="radio"] label {
    position: relative;
    cursor: pointer;
    margin-bottom: 1em;
    margin-top: 1em;
}
.gform_wrapper input[type="radio"] + label:before {
    content: "+";
    display: inline-block;
    -webkit-box-shadow: 0px 4px 20px #0000001a;
    box-shadow: 0px 4px 20px #0000001a;
    width: 1.5em;
    height: 1.5em;
    font-size: 1.2em;
    font-weight: bolder;
    line-height: 1.2em;
    text-align: center;
    margin: -4px 8px 0 8px;
    vertical-align: middle;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    color: var(--light-color);
    border-radius: 50%;
    background-color: var(--light-color);
    border: 2px solid var(--ci-color);
}
@media screen and (max-width: 768px) {
    .gform_wrapper input[type="radio"] + label:before {
        margin-left: 0;
    }
}
.gform_wrapper input[type="radio"]:hover + label {
    position: relative;
}
.gform_wrapper input[type="radio"]:hover + label:before {
    color: var(--ci-color);
}
.gform_wrapper input[type="radio"]:checked + label {
    position: relative;
}
.gform_wrapper input[type="radio"]:checked + label:before {
    background-color: var(--ci-color);
    color: var(--light-color) !important;
}
.gform_wrapper .titlefield input {
    font-family: var(--mainfont);
    font-weight: 700;
    color: var(--ci-color);
}
.gform_wrapper .gdatepicker_with_icon {
    width: 100% !important;
}
.gform_wrapper .ginput_container_time {
    max-width: 50% !important;
    min-width: 48% !important;
}

.gform_wrapper.gravity-theme .gform_validation_errors>h2{
    font-size: 1em !important;
    margin-bottom: 0 !important;
}

#commentform label {
    font-family: var(--mainfont);
    font-weight: 700;
    margin-bottom: 0.5em;
}
#commentform input[type="text"],
#commentform input[type="number"],
#commentform input[type="tel"],
#commentform input[type="email"],
#commentform textarea {
    border: 0;
    -webkit-box-shadow: 0px 4px 20px #0000001a;
    box-shadow: 0px 4px 20px #0000001a;
    padding: 1em !important;
    font-size: 1em !important;
    font-size: 18px !important;
    border-radius: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border-bottom: 3px solid var(--ci-color);
    width: 100%;
    margin-bottom: 1em !important;
}
#commentform input[type="text"]:focus,
#commentform input[type="number"]:focus,
#commentform input[type="tel"]:focus,
#commentform input[type="email"]:focus,
#commentform textarea:focus {
    border-bottom-color: #575756;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none;
}
#commentform input[type="submit"] {
    font-size: 1em;
    font-family: var(--mainfont);
    font-weight: 700;
    background: var(--ci-color);
    color: var(--light-color);
    border: none;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding: 1.5em;
    border-radius: 0;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    min-width: 50%;
}
#commentform input[type="submit"]:hover {
    text-decoration: none;
    background-color: #575756;
    color: var(--light-color);
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
}
#commentform input[type="submit"]:focus {
    text-decoration: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}
#commentform .comment-form-author,
#commentform .comment-form-email {
    display: block;
    float: left;
    width: calc(50% - 1em);
}
#commentform .comment-form-email {
    margin-left: 2em;
}
.blocked {
    pointer-events: none;
}
.gsection {
    margin: 2em 0;
}
.gform_wrapper.gravity-theme .ginput_container_date input {
    width: 100% !important;
}
.gform_wrapper.gravity-theme .gfield_label {
    margin-bottom: 0em;
}
.gform_wrapper.gravity-theme .gfield {
    margin-bottom: 1em;
}
.gform_wrapper.gravity-theme #field_submit input,
.gform_wrapper.gravity-theme .gform_footer input {
    width: 100%;
    display: block !important;
    font-size: 1em;
    background: var(--ci-color);
    border: none;
    border-radius: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    color: var(--light-color);
    padding: 1em;
}
.gform_wrapper.gravity-theme #field_submit input:hover,
.gform_wrapper.gravity-theme .gform_footer input:hover {
    background: var(--ci-color);;
    text-decoration: none;
    color: var(--light-color);
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
    background-position: right center;
}
.gform_wrapper.gravity-theme #field_submit input[disabled="disabled"],
.gform_wrapper.gravity-theme .gform_footer input[disabled="disabled"] {
    opacity: 0.5;
    background: var(--ci-color);
    color: var(--light-color) !important;
}
.form-control {
    font-size: 1em;
    padding: 1em;
}
.form-control:focus {
    background: var(--mid-color);
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: var(--ci-color);
}


/*Trustlogos*/

.trustlogos {
    padding: 6em 2em;
}

.trustlogos img {
    aspect-ratio: 16 / 9;
    object-fit: contain;
    margin: 0 auto;
    max-height: 100px;
    max-width: 100%;
    width: auto;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    transition: all .3s ease-in-out;
}

.trustlogos img:hover {
    aspect-ratio: 16 / 9;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}


/*Footer 2025*/

.greyback{
    background-color: #0000001A;

}

#block-8{
    margin-top: auto;
}

footer P:last-of-type{
    margin-bottom: 0 !important;
}

footer .wp-block-columns {
    margin-bottom: 0!important;
}

/*Scrolled*/
.scrolled nav.navbar .navbar-brand {
    max-width: 100px;
}


/*News*/

#news .card{
    min-height: 90%;
}

#news .card .btn {
    margin-top: auto;
    position: absolute;
    bottom: -2em;
    padding: 1.5em;
    text-transform: none;
    font-weight: 400;
    left: var(--bs-card-spacer-x);
}

#news .card:hover .btn{
    background-color: var(--ci-color);
}


#news .card h3{
    font-size: 1.15em;
}

#news .card-body{
    font-size: .8em;
}

.newsslidebtn{
    aspect-ratio: 1 / 1;
    padding: 1em;
    margin-right: 1em;
}

.regsize{
    padding: 1em;
}

.arrow::after, .wp-block-button__link::after, .wp-block-file .wp-block-file__button::after {
    content: '\F138';
    font-family: "bootstrap-icons";
    margin-left: .5em;
    top: 3px;
    display: inline-block;
    position: relative;
}

@media (min-width: 1400px) {
    .newsspacer{
        width: calc((100vw - 1320px) / 2 - 2em);
    }
}


dialog#popover{
	background: rgba(255, 140, 0, 0.8);
	
	position: fixed;
	flex-direction: column;
	justify-content: center;
	inset: 0;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	width: 100svw;
	width: 100dvw;
	height: 100svh;
	height: 100dvh;
	max-width: 100vw;
	max-height: 100vh;
	border:none;
	padding: var(--bs-gutter-x,.75rem);
	margin: 0;

	div{
		max-width: 1320px;
		margin: 0 auto;
		background: #fff;
		flex: 0;
		width: 100%;
		min-height: 0;
		position: relative;
		overflow: hidden;

		button{
			position: absolute;
			top: 0;
			right: 0;
			background: none;
			border: none;
			font-size: 2em;
			color: #000;
			background: #fff;
			height: 40px;
			width: 40px;
			display: flex;
			justify-content: center;
			align-items: center;
			outline: none;

		}
		iframe{
			width: 100%;
			height: 100%;
			border: none;
		}
		svg{
			position: absolute;
			width: 100px;
			height: 100px;
			left: calc(50% - 50px);
			top: calc(50% - 50px);
		}
	}
}
dialog#popover[open] {
	display: flex;
	animation: showDialog 0.5s ease forwards;
	
	div{
		animation: showDialogContent 0.75s ease forwards;
	}
}
dialog#popover[closing] {
	animation: hideDialog 0.5s ease forwards;
	div{
		animation: hideDialogContent 0.25s ease forwards;
	}
}
dialog#popover::backdrop{
	display:none;
}

.dialogoopen{
    overflow: hidden;
}

@keyframes showDialog {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes showDialogContent {
	0% {
		flex: 0;
	}
	100% {
		flex: 1;
	}
}
@keyframes hideDialog {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes hideDialogContent {
	0% {
		flex: 1;
	}
	100% {
		flex: 0;
	}
}


nav.navbar .mainlink .nav-link::before{
    content: '';
    width: 3em;
    height: 1.5em;
    background-image: url(../style/ausbildung.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin-right: .5em;
    position: absolute;
    left: -3em;
    top: .5em;
}

nav.navbar .mainlink .nav-link{
  color: var(--ci-color);
  position: relative;
  margin-right: 3em;
}

nav.navbar .mainlink .nav-link:hover{
    color: var(--dark-color);
  }


/*NEWS*/

#singlenews{
    max-width: 990px;
    margin: 0 auto;
}

/*Kacheln*/

#kurseshortcode{
    margin-left: calc(-.5* var(--bs-gutter-x));
    margin-right: calc(-.5* var(--bs-gutter-x));
}

/*Testimonial*/



.testimonial{
    display: flex;
    flex-direction: column;
    align-items: center;

    figure{
        z-index: 2;
        img{
            border-radius: 50%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            object-position: center center;
            width: 200px;
        }
    }

   h3{
    font-size: 1em;
    color: var(--ci-color);
    margin-top: auto;
   }

   .testimonial-inner{
     margin-top: -5em;
     padding-top: 6em !important;
     height: 100%;
     display: flex;
     flex-direction: column;
   }
}

/*Kontakt*/

.map{
    aspect-ratio: 16 / 9;
    filter: grayscale(1);
    width: 100%;
    height: auto;
}

/*Footer*/

footer{
    position: relative;

    & .beratung{
        position: fixed;
        right: 0;
        bottom: -5em;
        z-index: 5;
        transition: all 0.5s ease;
        font-size: 1.125em;
        z-index: 100;

    }
} 

.scrolled footer .beratung{
      bottom: 30%;
}

@media screen and (max-width: 768px){
    footer {
        background-image: none;

        .wp-block-columns{
            gap: 2em;
            margin-bottom: 3em !important;
        }

        #block-8{
            margin-top: 3em;
        }
    }

    .scrolled footer .beratung{
        bottom: 0;
        bottom: var(--bannerheight) !important;
    }

}



/*Helpers*/

.is-position-sticky{
    top: 120px !important;
}


.kachelsection{

    gap: 2em;

    .slidewrap{
        .row{
            padding: .5em 0 !important;
        }
    }

    figure{
        height: 100%;
        margin-bottom: 0;

        img{
            height: 100%;
        }
    }

    .kurscard .accordion table{
        min-width: 100%;
        border: none !important;
        margin-bottom: 2em;
        font-size: .8em;

        tr{
            display: flex;
        }
    }

    .kurscard .accordion table tr{
        width: 100% !important;
        display: flex;
        gap: 1em;
        padding: .5em;
        height: auto !important;
        border-bottom: 2px solid var(--light-color);
        bottom: 0.5em;
    }
    .kurscard .accordion table tr:last-of-type{
        border-bottom: 0px solid var(--light-color);
    }
    .kurscard .accordion table tr td{
        width: auto !important;
        height: auto !important;
        display: inline-block;
        flex: 1;
        text-align: left !important;
    }
    .kurscard .accordion table tr td:last-of-type {
        width: auto !important;
        height: auto !important;
        display: inline-block;
        flex: 1;
        text-align: left !important;
    }

    .kurscard .accordion table{
        margin-bottom: 1em;
        width: 100% !important;
        min-width: unset;
    }
}

@media screen and (max-width: 990px){
    .kachelsection{
        flex-direction: column;
    }
}


.iconbox{
    gap: 2vw;
    flex-wrap: wrap !important;

    .wp-block-media-text__media img, .wp-block-media-text__media video{
        max-width: 4em;
    }

    .wp-block-media-text__content{
        p{
            line-height: 1.25;
            margin-bottom: 0;
        }
    }
}

@media screen and (max-width: 990px){
    .iconbox{
        .wp-block-column{
            min-width: 45%;
        }
    }
}


.imagebox{

    gap: 2vw;
    flex-wrap: wrap !important;

    figure{
        border-radius: .5em;
        box-shadow: 0px 4px 4px 0px #00000040;
        transition: all 0.2s;;

        img{
            border-top-left-radius: .5em;
            border-top-right-radius: .5em;
            width: 100% !important;
            max-width: unset;
        }

        figcaption{
            padding: 1em;
            margin: 0;
            font-size: .8em;
        }

        &:hover{
            box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
        }
    }
}

@media screen and (max-width: 990px){
    .imagebox{
        .wp-block-column{
            min-width: 45%;
        }
    }
}

@media screen and (max-width: 768px){


    .accordion-body table{
        width: 100% !important;
    }

    .accordion-body table td{
        width: 70% !important;
        height: auto !important;
        display: inline-block;
    }

    .accordion-body table td:nth-of-type(){
        width: 29% !important;
        height: auto !important;
        display: inline-block;
    }
}


@media (min-width: 768px) and (max-width: 990px)  {
    .container, .container-md, .container-sm {
        max-width: 100%;
    }
}


/*Submenu*/

nav{
    .dropdown-menu{
        border-radius: 0;
        border: 0;
        padding: 0;
        background: var(--ci-color);
        margin-top: 1.1em !important;
        min-width: unset;

        .dropdown-item{
            padding: 1em;
            border-top: 1px solid var(--light-color);
            color: var(--light-color);

            &:hover{
                background-color: var(--dark-color);
            }

            &.active{
                background-color: var(--dark-color);
            }
        }

        li{
            &:first-of-type{
                .dropdown-item{
                    border-top: 0px;
                }
            }
        }
    }
}

@media screen and (max-width: 768px){
    nav {
        & .dropdown-menu {
            margin-top: 0 !important;

            & li {
                .dropdown-item {
                    hyphens: auto;
                    white-space: normal;
                }
                
            }
        }
    }
}

/*Swiper*/

.swiper{
    padding-bottom: 3em !important;
}

.swiper-button-next,
.swiper-button-prev{
    background: var(--dark-color);
    color: var(--light-color) !important;
    padding: 1em;
    aspect-ratio: 1 / 1;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    bottom: 0 !important;
    top: auto !important;

    &::after{
        font-size: 1em !important;
    }
}

.swiper-button-prev{
    left: calc( 50% - 3em) !important;
}
.swiper-button-next{
    right: calc( 50% - 3em) !important;
}


/*PopUp*/
.wp-popup{

    background-color: rgb(29, 29, 27, .8);
  
    .wp-popup-content{
  
      max-width: 768px;
      padding:0;
  
      .wp-popup-close{
        color: var(--ci-color);
        padding: 1em;
      }
  
      .wp-popup-inner{
        padding: 2em;

        background: rgba(255, 255, 255, .3);


        p.has-accent-color{
            color: var(--ci-color) !important;
        }

        .wp-block-columns{
            gap: 2em !important;
        }
      }
    }
  
  }

  @media screen and (max-width:800px){
    .wp-popup{
        .wp-popup-content{
      
          max-width: 90%;

          .wp-popup-close{
            color: var(--ci-color);
            padding: .5em;
          }
      

          .wp-popup-inner{
    
            

            .wp-block-columns{
                gap: 1em !important;
            }

            
          }
        }
      
      }
  }

   /*KursIcons*/

  .kursshorts{
    margin: 3em 0;

    text-align: center;

    --borderstyle: 1px solid #D9D9D9;

    .col-md-4{

         &:nth-of-type(2){
            border-left: var(--borderstyle);
            border-right: var(--borderstyle);
        }

    }

    .icon{
        text-align: center;
        margin-bottom: .5em;

       
    }
    svg{
        width: 50% !important;
        max-width: 80px;
        margin-bottom: 1em;
        height: auto !important;
        fill: var(--ci-color);
    }
    
    .heading{
        font-size: 1.25em;
        font-weight: 400;
        color: var(--dark-color);
        margin-bottom: 0;
    }
}

@media screen and (max-width: 768px){

    .kursshorts{
        margin: 2em 0;

        .col-md-4{
            margin-bottom: 2em;

             &:nth-of-type(2){
                border-top: var(--borderstyle);
                border-bottom: var(--borderstyle);
                border-left:0;
                border-right: 0;
                padding: 2em 0;
            }
        
        }

        svg{
            margin-bottom: 1em;
        }
    }
}




.frontbanner{
	--ci: var(--c-main);
	--light: var(--c-dark);
	--dark: var(--c-dark);

	/* margin-top: 100px; */

	padding: 1em 0;
	background: var(--ci);
	color: var(--light);
	text-align: center;
}

.frontbanner *{
	color: var(--light);
}

.frontbanner :last-child{
	margin-bottom: 0;
}

.frontbanner a{
	text-decoration: underline;
	color: var(--light) !important;
}

.frontbanner .text-align-right{
	text-align: right;
}

.frontbanner .btn{
	background: var(--dark);
	border-radius: 100px;
  padding: .5em 1em;
	text-align: center;
	font-size: .8em;
	border: 1px solid var(--dark);
	font-weight: 500;
	color: var(--light);
	transition: all .3s ease-in-out;
    box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, .1);
}

.frontbanner .btn:hover{
	background: var(--light);
	color: var(--dark);
}

@media screen and (max-width: 768px){
	.frontbanner .text-align-right{
		text-align: center;
		margin-top: 2em;
	}
	
	.frontbanner p{
		text-align: center;
	}

}