@charset "utf-8";
/*
Theme Name: debleu 2023 v2.0
Version: Master 2.0 / 22.11.2022
Author: debleu.de
Author URI: https://debleu.de/
*/
/* ----------------------------- Reset default browser CSS --- */

html, body, main, header, footer, div, span, applet, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    position: relative;
    border: 0;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}
html {
    box-sizing: border-box;
    overflow-y: scroll;
}
article, aside, details, figcaption, figure, footer, header, main, nav, section {
    display: block;
}
figure {
    line-height: 0;
}
ul {
    list-style: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
caption, th, td {
    font-weight: normal;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: "";
}
blockquote, q {
    -ms-hyphens: none;
    hyphens: none;
    quotes: none;
}
:focus {
    outline: transparent;
}
a {
    background-color: transparent;
}
a:hover, a:active {
    outline: 0;
}
a img {
    border: 0;
}
*, *:before, *:after {
    box-sizing: border-box;
}
/* ------------------------------------------------ Global --- */
html {
    height: 100%;
    -webkit-tap-highlight-color: transparent;
}
body {
    min-height: 100%;
    flex-direction: column;
}
/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
body {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.site-main {
    /* for nav mobile overlay */
    position: unset;
    
    height: 100%;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 40px;
}
.site-main::after {
    content: "";
    clear: both;
    display: table;
    table-layout: fixed;
}
.footer {
    margin-top: auto;
    flex-shrink: 0;
}
.full-width {
    max-width: 1920px;
    margin: 0 auto;
}
.pb-gallery-items.full-width {
    padding-right: 5px;
    padding-left: 5px;
}
.content-width {
    margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px;
    max-width: 1360px;
}

@media (min-width: 630px) {
	.content-width {
		padding-right: 30px;
		padding-left: 30px;
	}
}
/*  ------------------------------------------- Typography --- */
html {
    font-size: 62.5%;
}
body, button, input, select, textarea, p {
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
       -moz-osx-font-smoothing: grayscale;
    font-style: normal;
    -webkit-text-size-adjust: none;
            text-size-adjust: none;
}
p {
    word-wrap: break-word;
    hyphens: auto;
    padding-bottom: 10px;
}
em, i {
    font-style: italic;
}
h1, h2 {
	padding-top: 15px;
    padding-bottom: 15px;
}
h1:first-of-type{
    padding-top: 0;
}
h3, h4, h5, h6 {
	padding-top: 10px;
	padding-bottom: 10px;
}
a {
    text-decoration: underline;
    background-color: transparent;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
    text-decoration-color: #6ad2da;
}
ol li {
    padding-bottom: 10px;
}
.center {
    text-align: center;
}
/* ----------------------------------------------- Buttons --- */
.go-back {
    padding-top: 30px;
    padding-bottom: 30px;
}
a.back {
    clear: both;
    display: inline-block;
    text-decoration: none;
}
.read-more {
    padding-bottom: 0;
    margin-bottom: 10px;
    display: inline-block;
    text-decoration: none;
}
a.button {
    text-align: center;
    padding: 9px 30px;
    display: block;
    margin: 20px 0 0 0;
    text-decoration: none;
    font-size: 2.3rem;
    line-height: 1.2;
    width: 100%;
    text-decoration: none;
}
/* -------------------------------------------- Text Anker --- */
a.anker {
    width: 1%;
}
/* -------------------------------- Hoch- und Tiefstellung --- */
sub, sup {
    font-size: 60%;
    line-height: 0;
    vertical-align: baseline; 
}
sub {
    bottom: -0.25rem; 
}
sup {
    top: -0.6em;
    padding-left: 0.2rem;
    padding-right: 0.1rem;
}
/* ------------------------------------------------- Align --- */
.hcenter {
    text-align: center;
}
/* ------------------------------------------------ Tables --- */
table {
    width: 100%;
    /*margin: 0 0 15px 0;*/
    border-collapse: collapse;
}
th, td {
    border-bottom: 1px solid #ccc;
    padding: 5px;
    vertical-align: top;
}
.table-scrollable {
  width: 100%;
  overflow-y: auto;
  /*margin: 0 0 10px 0;*/
}
.table-scrollable + p,
.table-scrollable + h2,
.table-scrollable + h3 {
    padding-top: 30px;
}
.table-scrollable::-webkit-scrollbar {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
}
.table-scrollable::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 3px solid #fff;
  background-color: rgba(0, 0, 0, .3);
}
/* --------------------------------------- Fade-in content --- */
@-webkit-keyframes fadein {
    0% { opacity:0; }
    /* 30% { opacity:0; } */
    100% { opacity:1; }
}
@-moz-keyframes fadein {
    0% { opacity:0; }
    /* 30% { opacity:0; } */
    100% { opacity:1; }
}
@keyframes fadein {
    0% { opacity:0; }
    /* 30% { opacity:0; } */
    100% { opacity:1; }
}
.fadein {
    animation: 2000ms ease 0s normal forwards 1 fadein;
}

/* ------------------------- Move content slide up on load --- */
/* @-webkit-keyframes slideUp {
  0% {
	transform: translate3d(0, 80px, 0);
    visibility: visible;
	opacity:0; 
  }
  100% {
	transform: translate3d(0, 0, 0);
	opacity:1; 
  }
}
@-moz-keyframes slideUp {
  0% {
	transform: translate3d(0, 80px, 0);
    visibility: visible;
	opacity:0; 
  }
  100% {
	transform: translate3d(0, 0, 0);
	opacity:1; 
  }
}
@keyframes slideUp {
  0% {
	transform: translate3d(0, 80px, 0);
    visibility: visible;
	opacity:0; 
  }
  100% {
	transform: translate3d(0, 0, 0);
	opacity:1; 
  }
}
.row-1 {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: slideUp;
    animation-delay: 0.5s;
} */
/* ----------------------- Content slide in if in viewport --- */
.slidein-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
.slidein {
    opacity: 0;
    transform: translateY(80px);
    -webkit-transition: all 600ms ease-in-out;
            transition: all 600ms ease-in-out;
}
.slidein:nth-child(2) { transition-delay: 0.1s; }
.slidein:nth-child(3) {	transition-delay: 0.2s; }
.slidein:nth-child(4) {	transition-delay: 0.3s; }
.slidein:nth-child(5) {	transition-delay: 0.4s; }
.slidein:nth-child(6) {	transition-delay: 0.5s; }
.slidein:nth-child(7) {	transition-delay: 0.6s; }
.slidein:nth-child(8) {	transition-delay: 0.7s; }
.slidein:nth-child(9) {	transition-delay: 0.8s; }
.slidein:nth-child(10) { transition-delay: 0.9s; }
.slidein:nth-child(11) { transition-delay: 1s; }
.slidein:nth-child(12) { transition-delay: 1.1s; }

/* ----------------------------------------------- Flexbox --- */
.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
    
	justify-content: flex-start;
}
.flex-vcenter { -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
.flex-hcenter { justify-content: center; }
.flex-around { justify-content: space-around; }
.flex-end { justify-content: flex-end; }
.flex-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap;}

/* ----------------------------------------------- Images --- */
figure {
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
   @-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
        @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.wp-caption {
	max-width: 100% !important;
	width: auto !important;
    margin: 30px 0;
}
.wp-caption .size-thumbnail {
    margin: 7px 30px 0 0;
}
.wp-caption img {
    margin: 0;
}
.wp-caption-text {
    font-size: 95%;
    color: #797979;
    line-height: 1.3;
    margin: 5px 0 0 0;
}
img.aligncenter {
    display: block;
    margin: 0 auto;
}

/* ---------------------------------------------- Topimage --- */
@-webkit-keyframes fadeinhead {
    0% { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes fadeinhead {
    0% { opacity:0; }
    100% { opacity:1; }
}
@keyframes fadeinhead {
    0% { opacity:0; }
    100% { opacity:1; }
}
#topimage {
    animation: 2s ease 0s normal forwards 1 fadeinhead;
    width: 100%;
    padding-bottom: 50px;
}
#topimage .topimage {
    width: 100%;
}
#topimage .topimage img {
    height: auto;
    width: 100%;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
	align-self: center;
}
#topimage .size-content { /* --- from ACF topimage width --- */
    max-width: 1300px;
    margin: 0 auto;
}
#topimage figure, #swiper figure {
    overflow: hidden;
}
.page-title h1 {
    padding-bottom: 0;
}
/*@media (min-width: 1230px) and (min-height: 768px) {
}*/
@media (min-width: 1360px) {
    #topimage .topimage img {
        width: 1920px;
    }
}

/*	-------------------------------------------- Slideshow --- */
.pb-slideshow {
    overflow: hidden!important;
}
.pb-slideshow header h2 {
    font-size: 2.2rem;
	padding-bottom: 30px;
    padding-top: 0;
}
.swiper-slide {
    overflow: hidden;
}
.swiper-slide .wrap {
	cursor: grab;
}
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
    background: transparent;
    border: 2px solid #b8b8b8;
    opacity: 1;
    border-radius: 50%;
}
.swiper-pagination-bullet-active {
    background-color: #646464!important;
    border: 2px solid #646464!important;
}
.pb-slideshow-images .swiper-container.one-img.content-width {
    max-width: 1300px;
    padding-right: 0;
    padding-left: 0;
}
.swiper-navigation {
    display: flex;
    justify-content: center;
}
.swiper-pagination {
    top: 20px;
    position: relative;
    width: unset!important;
}
#topimage .swiper-navigation {
    text-align: center;
    height: 0;
}
#topimage .swiper-pagination {
    top: 0;
}
.swiper-button-prev, 
.swiper-button-next {
    min-width: 50px;
    position: relative;
    inset: unset;
    color: rgb(0 0 0 / 50%);
    margin-top: 12px;
}
.swiper-button-next:after {
    content: "next";
}
.swiper-button-prev:after {
    content: "prev";
}
.swiper-button-next:after, 
.swiper-button-prev:after {
    font-size: 2.4rem;
    color: #555;
}
.pb-slideshow-images .content-width.swiper-container {
    max-width: 1300px;
}
/* ------------------------ Black + White Slideshow Images --- */
.pb-slideshow-images.black-white img {
    -webkit-filter: grayscale(100%) contrast(150%);
    filter: grayscale(100%) contrast(1.5);
    transition: all .3s;
}
.pb-slideshow-images.black-white figure:hover img {
    transform: scale(1.075);
    -webkit-filter: unset;
    filter: unset;
}
/*	----------------------------------- Slideshow with text--- */
.pb-slideshow-with-text .slide-copy {
    padding-top: 15px;
}
.pb-slideshow-with-text .slide-copy.bg-color {
    padding: 15px 20px 20px 20px;
}
.pb-slideshow-with-text .slide-img {
    text-align: center;
}
.pb-slideshow-with-text .slide-img a {
    cursor: zoom-in;
}
.pb-slideshow-with-text .slide-logo {
    max-width: 200px;
    margin-bottom: 20px;
}
.pb-slideshow-with-text .text-block {
    max-width: 800px;
    padding-bottom: 40px;
}
@media (min-width: 690px) {
    .pb-slideshow-with-text .swiper-slide > .wrap {
        gap: 40px;
        justify-content: space-between;
    }
    .pb-slideshow-with-text .slide-img, 
    .pb-slideshow-with-text .slide-copy {
        flex-basis: calc((100% - 40px) / 2);
    }
    .pb-slideshow-with-text .slide-copy.order-first {
        padding: 15px 0 20px 0;
    }
    .pb-slideshow-with-text .slide-copy.order-second {
        padding: 15px 20px 20px 0;
    }
    .slide-copy.order-first, 
    .slide-img.order-first {
		order: 1;
	}
	.slide-copy.order-second, 
    .slide-img.order-second {
	    order: 2;
	}
    .pb-slideshow-with-text .swiper-slide > .wrap.bg-color {
        padding: 20px;
    }
    .pb-slideshow-with-text .slide-copy.order-first.bg-color,
    .pb-slideshow-with-text .slide-copy.order-second.bg-color {
        padding: 15px 0 0 0;
    }
    .pb-slideshow-with-text .slide-copy.order-first.bg-color {
        padding: 15px 0 0 20px;
    }
}
/*------------------------------------ Text Overlay Slider  ---*/
.slider-content.fade.outside {
    display: block;
    padding: 20px;
    margin-top: -140px;
}
.slider-content.fade {
    display: none;
}
.fade .swiper-slide .slider-content {
    opacity: 0;
}
.fade .swiper-slide.swiper-slide-active .slider-content {
    opacity: 1;
    transition-property: opacity;
    transition-duration: 1s;
}
.slider-content .slider-headline,
.slider-content .slider-subline {
    display: inline-block;
    z-index: 1;
    padding: 5px 20px 5px 10px;
    margin: 0 0 10px 0;
    background-color: var(--clr-5);
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    max-width: min-content;
}
.slider-content .slider-headline span { 
    font-size: clamp(2.8rem, 5vw, 4rem);
    line-height: 1.1;
}
.slider-content .slider-subline span { 
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    line-height: 1.3;
}
.slider-content .slider-headline::after,
.slider-content .slider-subline::after {
    content: " ";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--clr-5);
    transform-origin: bottom left;
    -ms-transform: skew(-30deg, 0deg);
    -webkit-transform: skew(-30deg, 0deg);
    transform: skew(-30deg, 0deg);
}
.slider-content .slider-text {
    max-width: 570px;
    margin-top: 30px;
    font-size: 1.8rem;
    line-height: 2;
}
.slider-content .slider-text span {
    display: block;
    padding-top: 10px;
}
.slider-content a {
    text-decoration: none;
}
.slider-content .readmore {
    font-size: 1.4rem;
	text-transform: uppercase;
	font-weight: bold;
}
.slider-content .readmore span {
	font-weight: normal;
}
.slider-content-arrows {
	top: 40%;
}
@media (min-width: 700px) {
    .slider-content.fade.outside {
        display: none;
    }
    .slider-content.fade {
        display: block;
    }
    .slider-content {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: transparent!important;
	}
    .slider-content .wrap {
        
        display: flex;
        align-items: center;
        height: 100%;
        width: 100%;
        max-width: 1360px;
        margin: auto;
        padding: 30px;
    }
    .slider-content .wrap {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        padding-top: 100px;
    }
	.slider-content-arrows {
		top: 50%;
	}
    .slider-content .slider-headline,
    .slider-content .slider-subline {
        display: block;
    }
    .slider-content .slider-subline {
        max-width: max-content;
    }
}
@media (min-width: 840px) {
    .slider-content .wrap {
        justify-content: center;
    }
    .slider-content .slider-headline,
    .slider-content .slider-subline {
        max-width: max-content;
    }
}
/*------------------------------------------------ kenburns ---*/
@-webkit-keyframes kenburns {
    0% { transform:  scale(1, 1); }
    50% { transform: scale(1.13, 1.13); }
    100% { transform: scale(1, 1); }
}
@-moz-keyframes kenburns {
    0% { transform:  scale(1, 1); }
    50% { transform: scale(1.13, 1.13); }
    100% { transform: scale(1, 1); }
}
@keyframes kenburns {
    0% { transform: scale(1, 1); }
    50% { transform: scale(1.13, 1.13); }
    100% { transform: scale(1, 1); }
}
.kenburns {
    transform-origin: 50% 50% 0px;
    animation: 40s linear 0s normal forwards 1 kenburns;
}

/* ---------------------------------- WF Magnific Lightbox --- */
.mfp-container {
    padding-left: 20px;
    padding-right: 20px;
} 
@media (max-width: 900px) {
    .mfp-container {
        padding-left: 20px;
        padding-right: 20px;
    }  
}
img.mfp-img {
	opacity:0;
    animation: fadeIn ease-in 1;
    animation-fill-mode: forwards;
    animation-duration: 1s;
}
.mfp-bg {
    opacity: 0.95;
    filter: alpha(opacity=95);
    background-color: #05080a;
}
.mfp-bottom-bar {
    padding: 4px 0 0 0;
}
.mfp-counter {
    top: 6px;
    right: 0;
}
.mfp-title, .mfp-description {
    font-size: 1.5rem;
    line-height: 1.4;
	padding-right: 60px;
    padding-bottom: 5px;
    color: #b3b3b3; 
}
.mfp-description {
    padding-bottom: 20px; 
}
.mfp-arrow-right:after, .mfp-arrow-right .mfp-a, .mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
   display: none;
} 
.mfp-arrow {
    width: 100px;
    height: 60px;
}
.mfp-arrow-right:before, .mfp-arrow-right .mfp-b, .mfp-arrow-left:before, .mfp-arrow-left .mfp-a {
    content: "";	
	background-repeat: no-repeat;
    border: 0;
    display: block;
    width: 60px;
    height: 60px;
	margin: 0;
}
.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20id%3D%22next%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20680.3%20680.3%22%3E%0D%0A%20%20%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%2230%22%20stroke-linecap%3D%22round%22%20stroke-miterlimit%3D%2210%22%20d%3D%22M226.8%2098.5l226.7%20229.2L226.8%20552%22/%3E%0D%0A%3C/svg%3E%0D%0A');
}
.mfp-arrow-left:before, .mfp-arrow-left .mfp-a {
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20id%3D%22Ebene_1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20680.3%20680.3%22%3E%0A%20%20%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%2230%22%20stroke-linecap%3D%22round%22%20stroke-miterlimit%3D%2210%22%20d%3D%22M453.5%20552L226.8%20322.8%20453.5%2098.5%22/%3E%0A%3C/svg%3E%0A');
    margin-left: 30px;
}
/* -------------------------------- Breadcrumb Navi Custom --- */
 .breadcrumb {
    font-size: 1.4rem;
    color: #999;
    padding-bottom: 30px;
    padding-top: 20px;
}
.breadcrumb a {
    color: #5a5a5a;
}
.breadcrumb a:hover {
    color: #000000;
}

/* ---------------------------------------------- 404 Page --- */
#error-site {
    text-align: center;
    background-image: url(../images/oops-wBG.svg);
    /*background-image: url(../images/oops-sBG.svg);*/
    background-repeat: no-repeat;
    background-position: top center;
    margin: 200px 0 100px 0;
}
#error-site .error-404-headline {
    font-size: 3rem;
    font-weight: bold;
    line-height: inherit;
    margin: 0;
    color: #949494;
}
#error-site .error-404-headline strong {
    display: block;
    font-size: 10rem;
    color: #717171;
    height: 123px;
}
#error-site .error-404-subline {
    font-weight: 400;
    color: #000;
    padding: 20px 0 80px 0;
    margin: 0;
}

/* ------------------------------------ iFrames responsive --- */
.res-map {
    overflow: hidden;
    width: 100%;
    height: auto;
}
.res-map { 
    padding-bottom: 36%; 
}
.res-map iframe {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

/* ------------------------------------------------ Header --- */
.header-site, .header-wrap {
    width: 100%;
}
/* --- Only for slide in header --- */
/*.header-site {
    position: absolute;
    z-index: 3;
	top: 0;
}*/
/*@media (min-width: 630px) {
    .header-site {
        position: fixed;
    }
    .scroll-up .header-site { 
        position: fixed;
        top: 0;
        transition: transform 0.4s;
    }
    .scroll-down .header-site {
        position: fixed;
        transform: translate3d(0, -100%, 0); 
    }
}*/

/* ----------------------------------------- Site Branding --- */
.site-branding {
    position: absolute;
}
.site-branding.corp {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.site-branding figure, .site-branding a.text {
    display: flex;
    justify-content: center;
    height: 100%;
}
.site-branding a.text {
    flex-direction: column;
    flex-wrap: wrap;
}
.site-branding h1, .site-branding h2 {
    transition: all 0.5s ease;
}
.hidden {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    margin: 0;
}

/* ------------------------------------------------ Overlay ---*/
.nav-overlay { 
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: none;
    background: #000;
    opacity: 0.6;
    filter: alpha(opacity=60);
    text-decoration: none;
}

/* -------------------------------------------------- Icons ---*/
.nav-top-icons {
    position: absolute;
    width: 26px;
    height: 26px;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    cursor: pointer;
}
.nav-icons {
    position: absolute;
}
.nav-icons.show svg {
    display: block;
    height: 26px;
    width: 26px;
    cursor: pointer;
    /*stroke: #fff;*/
    stroke-width: 16px;
    stroke-linecap: round;
    transition: transform .2s, opacity .2s;
    transform-origin: center center;
}
.nav-icons.hide svg {
    height: 0;
    width: 0;
}
/*.nav-icons.show svg {
    transform: rotate(90deg);
}*/
.nav-icons.hide svg {
    transform: rotate(-90deg);
}

/* ---------------------------------------- Language Switch ---*/
.topnavi .language-switch {
    padding-left: 30px;
    top: 8px;
}
.language-switch a {
    font-size: 1.8rem;
    padding: 8px 10px 8px 10px;
	color: #000;
}
.language-switch a.active {
    font-family: var(--typobold);
    color: var(--clr-main);
}
.language-switch span {
    color: #000;
}
.nav-mobile .language-switch {
    width: 100%;
    padding: 15px 30px 17px 30px;
    background-color: #2e495e;
}
.nav-mobile .language-switch a {
    font-size: 2rem;
	color: #fff;
}
.nav-mobile .language-switch span {
    color: #fff;
}

/* ------------------------------------------- Navi Mobile --- */
/*.nav-top-icons {
    display: none;
}*/
.nav-mobile {
    position: absolute;
    z-index: 2;
    right: 0;
	width: 100%;
    display: none;
}
@media (min-width: 400px) {
    .nav-mobile {
    	max-width: 340px;
    }
}
.nav-mobile .nav-head {
    display: block;
    padding: 30px 0 0 0;
    font-size: 2.2rem;
    width: 100%;
    color: #fff;
}
.nav-mobile ul {
    background: var(--clr-menu);
    text-decoration: none;
    padding: 20px 20px 20px;
    width: 100%;
}
.nav-mobile ul li {
    border-bottom: 1px solid rgb(255 255 255 / 50%);
}
.nav-mobile ul li a:hover {
    color: #fff;
    background-color: var(--clr-menu-dark);
}
.nav-mobile ul li:last-of-type {
	border-bottom: 0 none;
}
.nav-mobile ul li a {
    display: block;
    padding: 10px 0 10px 10px;
    color: #fff;
    font-size: 1.8rem;
    line-height: 1.4;
    text-decoration: none;
    transition: all .3s;
}
.nav-mobile ul li.menu-item-has-children > a {
    margin-right: 45px;
}
.nav-mobile ul li a:hover,
.nav-mobile ul li a:active,
.nav-mobile ul li.current-menu-item > a {
    background-color: rgb(255 255 255 / 12%);
}

/* ---------------------------------------- Submenu Mobile --- */
.nav-mobile ul ul.sub-menu {
    padding: 0 0 0 10px;
	display: none;
}
.nav-mobile ul.sub-menu li,
.nav-mobile ul li.menu-item-has-children ul.sub-menu li:last-of-type a {
    border-bottom: none;
}
.nav-mobile > ul > li > ul li {
    border-top: 1px solid rgb(255 255 255 / 50%);
}
.nav-mobile > ul > li > ul li a::before {
    content: "»";
    padding-right: 4px;
    opacity: 0.6;
}
.sub-menu-button {
    position: absolute;
    display: block;
    width: 45px;
    height: 45px;
    right: 0;
    top: 0;
    cursor: pointer;
    padding: 11px 10px 0;
	border-left: 1px solid rgb(255 255 255 / 50%);
    /*border-right: 1px solid rgb(255 255 255 / 50%);*/
}
.sub-menu-button::before, 
.sub-menu-button::after {
    content: "";
    display: block;
    width: 15px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 21px;
    right: 5px;
    opacity: 1;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: opacity .3s, background .3s, -webkit-transform .3s;
    transition: opacity .3s, background .3s, -webkit-transform .3s;
    transition: transform .3s, opacity .3s, background .3s;
    transition: transform .3s, opacity .3s, background .3s, -webkit-transform .3s;
}
.sub-menu-button.open::after {
    -webkit-transform: translateX(-50%) rotate(0);
            transform: translateX(-50%) rotate(0);
    opacity: 0;
}
.sub-menu-button::after {
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
}

/* ----------------------------------------------- Topnavi --- */
/*[href="#"] {
  pointer-events: none;
}*/
.topnavi {
    position: absolute;
    bottom: 11px;
    right: 15px;
}
.topnavi > ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0;
}
.topnavi > ul > li > a {
    display: inline-block;
    font-size: 1.6rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.1rem;
    padding: 8px 15px;
}
.topnavi > ul > li > a::after {
    content: "";
    display: block;
    width: 30px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}
.topnavi > ul > li > a:hover::after,
.topnavi > ul > li.current-menu-item > a::after,
.topnavi > ul > li.current-menu-ancestor > a::after,
.topnavi > ul > li.current-page-ancestor > a::after {
    border-bottom: 2px solid var(--clr-main);
    width: 100%;
}

/* --------------------------------------- Second level*/

/* if 2nd level -> only link with #, up and down with js */
.topnavi ul > li > .sub-menu {
    position: absolute;
    display: none;
    margin-left: -20px;
    width: 240px;
    z-index: 1;
}
.topnavi ul li ul li a {
    display: block;
    font-size: inherit;
    padding: 10px 20px;
    text-decoration: none;
}
.topnavi ul li.menu-item-has-children > a {
    margin-right: 0;
}

/* -------------------------------- Subnavi on Page--- */
#subnavi {
    padding-bottom: 40px;
}
#subnavi .subnavi {
    border: 1px solid #e2e0dc;
    padding: 10px 10px 10px 20px;
    border-top: 0 none;
    cursor: pointer;
}
#subnavi .subnavi p {
    padding: 0;
}
#subnavi .subnavi .icon-close, 
#subnavi .subnavi .icon-open {
    cursor: pointer;
    position: absolute;
    z-index: 10;
    right: 15px;
    top: 14px;
    width: 20px;
    display: none;
}
#subnavi .subnavi .icon-close svg.sub-icon-close, 
#subnavi .subnavi .icon-open svg.sub-icon-open {
    stroke: #333232;
    fill: transparent;
    stroke-width: 16;
}
#subnavi .subnavi.open .icon-open, 
#subnavi .subnavi .icon-close,
#subnavi .subnavi-menu {
    display: none;
}
#subnavi .subnavi.open .icon-close, 
#subnavi .subnavi .icon-open {
    display: block;
}
#subnavi .subnavi-menu ul {
    padding: 0 0 0 20px;
    border: 1px solid #e2e0dc;
    border-top: 0 none;
}
#subnavi .subnavi-menu ul li {
    display: block;
    border-bottom: 1px solid #e2e0dc;
    opacity: 1;
    padding: 14px 0;
    margin-right: 25px;
}
#subnavi .subnavi-menu ul li:last-of-type {
    border-bottom: 0 none;
    margin-right: 0;
}
#subnavi .subnavi-menu ul li a {
	text-decoration: none;
    color: #333;
    display: block;
}
#subnavi .subnavi-menu ul li:hover a {
    color: #000;
}
@media (min-width: 570px) {
    #subnavi .subnavi {
       display: none;
    }    
    #subnavi .subnavi-menu {
       display: block;
    }
    #subnavi .subnavi-menu ul {
		padding: 0;
		border: 0 none;
	}
	#subnavi .subnavi-menu ul li {
        display: inline-block;
        border-bottom: 0 none;
    }
}

/* -------------------------------- debleu Content Builder --- */
/* ----------------------------------------------------------- */
/* ----------------------------------------------------------- */
.admin-info {
    position: absolute;
    display: none;
    /* display: block; */
    text-align: left;
    left: 40px;
    width: 300px;
    top: 0;
    z-index: 1000;
    border-top: 1px solid #ccc;
    padding: 10px 20px 10px 0;
}
/*.pb-image .admin-info,
.pb-slideshow-images .admin-info,
.pb-slideshow-with-text .admin-info {
    background-color: hsl(0deg 0% 100% / 70%);
}*/
.text-color-light .admin-info {
    color: #fff;
}
/* ------------------------------------------------ Global --- */
.pb-row {
    position: relative;
}
.pb-row .bg-color {
    padding-top: 50px;
    padding-bottom: 50px;
}
/* if has background-color plus topline and Headline */
.pb-row .bg-color-padd-bot-1 {
    padding-bottom: 90px;
}
.pb-row.pb-teaser-with-text .bg-color-padd-bot-1 {
    padding-bottom: 150px;
}
/* if has background-color and only headline */
.pb-row .bg-color-padd-bot-2 {
    padding-bottom: 118px;
}
.pb-row.pb-slideshow-images .bg-color-padd-bot-2 {
    padding-bottom: 68px;
}
.pb-teaser, 
.pb-news-block,
.pb-cards .card {
    box-shadow: 0px 3px 6px #23232236;
    margin-bottom: 0;
    background-color: #fff;
}
.section-headline.text-center {
    text-align: center;
}
.pb-text p:last-of-type,
.block-text p:last-of-type {
    padding-bottom: 0;
}
.pb-text p:last-of-type + ul,
.block-text p:last-of-type + ul {
    padding-top: 10px;
}
.pb-row.bgc-padd + .pb-row.bgc-padd .bg-color {
    padding-top: 0;
}
.pb-row.pb-header.bgc-padd .bg-color {
    padding-top: 50px!important;
}

/* ----------------------------- Section gaps top + bottom --- */
:root {
    --pad-top-mobile:  25px;
    --pad-bot-mobile:  25px;
    --pad-top-desktop: 50px;
    --pad-bot-desktop: 50px;
}
.pb-row.top-0 { padding-top: 0; } 
.pb-row.bot-0 { padding-bottom: 0; }
.pb-row.top-10 { padding-top: 5px; } 
.pb-row.bot-10 { padding-bottom: 5px; }
.pb-row.top-20 { padding-top: 10px; } 
.pb-row.bot-20 { padding-bottom: 10px; }
.pb-row.top-30 { padding-top: 15px; } 
.pb-row.bot-30 { padding-bottom: 15px; }
.pb-row.top-40 { padding-top: 20px; } 
.pb-row.bot-40 { padding-bottom: 20px; }
.pb-row.top-50 { padding-top: 25px; } 
.pb-row.bot-50 { padding-bottom: 25px; }
.pb-row.top-60 { padding-top: 30px; } 
.pb-row.bot-60 { padding-bottom: 30px; }
.pb-row.top-70 { padding-top: 35px; } 
.pb-row.bot-70 { padding-bottom: 35px; }
.pb-row.top-80 { padding-top: 40px; } 
.pb-row.bot-80 { padding-bottom: 40px; }
.pb-row.top-90 { padding-top: 45px; } 
.pb-row.bot-90 { padding-bottom: 45px; }
.pb-row.top-100 { padding-top: 50px; } 
.pb-row.bot-100 { padding-bottom: 50px; }

@media (min-width: 768px) and (min-height: 768px) {
    .pb-row.top-0 { padding-top: 0; } 
    .pb-row.bot-0 { padding-bottom: 0; }
    .pb-row.top-10 { padding-top: 10px; } 
    .pb-row.bot-10 { padding-bottom: 10px; }
    .pb-row.top-20 { padding-top: 20px; } 
    .pb-row.bot-20 { padding-bottom: 20px; }
    .pb-row.top-30 { padding-top: 30px; } 
    .pb-row.bot-30 { padding-bottom: 30px; }
    .pb-row.top-40 { padding-top: 40px; } 
    .pb-row.bot-40 { padding-bottom: 40px; }
    .pb-row.top-50 { padding-top: 50px; } 
    .pb-row.bot-50 { padding-bottom: 50px; }
    .pb-row.top-60 { padding-top: 60px; } 
    .pb-row.bot-60 { padding-bottom: 60px; }
    .pb-row.top-70 { padding-top: 70px; } 
    .pb-row.bot-70 { padding-bottom: 70px; }
    .pb-row.top-80 { padding-top: 80px; } 
    .pb-row.bot-80 { padding-bottom: 80px; }
    .pb-row.top-90 { padding-top: 90px; } 
    .pb-row.bot-90 { padding-bottom: 90px; }
    .pb-row.top-100 { padding-top: 100px; } 
    .pb-row.bot-100 { padding-bottom: 100px; }
}


/*.pb-4-cards.text-color-light .bg-color{
    position: relative;
    padding-top: var(--pad-top-mobile);
    padding-bottom: var(--pad-bot-mobile);
}
@media (min-width: 768px) and (min-height: 768px) {
    .pb-4-cards.text-color-light .bg-color {
        padding-top: var(--pad-top-desktop);
        padding-bottom: var(--pad-bot-desktop);
    }
}*/

.section-headline h1,
.section-headline h2 {
    padding-top: 0;
    padding-bottom: 0;
}
.block-text h2:first-of-type,
.block-text h3:first-of-type {
    padding-top: 0;
}
.block-text h2 + h3 {
    padding-top: 0;
}
.section-headline .topline {
    padding-bottom: 20px;
}
.section-headline + .block-text {
    padding-top: 30px;
}
.pb-gallery .section-headline {
    padding-bottom: 40px;
}
.text-col1 .content + .shortcode {
    padding-top: 40px;
}
.pb-row.bg-color a.btn-light, 
.pb-row.bg-color a.btn-dark {
    margin: 35px 0 0 0;
}
.pb-latest-news .content {
    margin-bottom: 40px;
}
.pb-teaser-text-wrap h2 {
    padding-top: 20px;
    padding-bottom: 8px;
}
@media (min-width: 768px) and (min-height: 768px) {
	.pb-text-2-col header h2 + .content .block-text h2 {
		padding-bottom: 0;
		margin-bottom: -10px;
	}
}

/*----------------------------------------------- Shortcode ---*/
.shortcode {
    margin-top: 30px;
}

/*---------------------------------------------------- Text ---*/

/*---------------------------------------------- Text 1 Col ---*/
.pb-text.text-col1 .block-text p + h2:first-of-type,
.pb-text.text-col1 .block-text p + h3:first-of-type {
    padding-top: 15px;
}
.pb-text.text-col1 .content ul + h3:first-of-type {
    padding-top: 10px;
}
.pb-text .block-text h2:first-of-type,
.pb-text .block-text h3:first-of-type {
    padding-top: 0;
}
.pb-text .block-text p + h2:first-of-type,
.pb-text .block-text p + h3:first-of-type {
    padding-top: 10px;
}
/* if there is no h2 on top */
.pb-text .block-text.text-1 p + h2:first-of-type { 
    padding-top: 15px;
}
.pb-text .block-text.text-2 h2:first-of-type {
    padding-top: 15px;
}
.pb-text .block-text.text-2 h3:first-of-type {
    padding-top: 10px;
}
@media (min-width: 700px) {
    .pb-text .block-text.text-2 h2:first-of-type,
    .pb-text .block-text.text-2 h3:first-of-type {
        padding-top: 0;
    }
}
/*--------------------------------------------------- Cards ---*/
.pb-cards .cards {
    width: 100%;
}
.pb-cards .cards .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px 20px 20px;
}
.pb-cards .cards .card .text-block {
    flex-basis: 100%;
    width: 100%; 
}
.pb-cards .bg-color .card {
    background-color: rgba(255,255,255,0.5)
}
.pb-cards .card a.btn-light {
    margin-top: 20px;
}
:root {
    --clr-drk-green: #004420;
    --clr-lines:     #c35b00;
}

/* ----------------------- Cards Accordion --- */
.pb-cards .cards.acc .card {
    box-shadow: none;
    padding: 0;
    background-color: transparent;
}
.pb-cards .cards .acc-block {
    width: 100%;
    flex-direction: column;
    align-content: center;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0px 3px 6px #23232236;
}
.pb-cards .cards .acc-block .acc-headline {
    display: flex;
    flex-basis: 100%;
    align-items: center;
    cursor: pointer;
}
.pb-cards .cards .acc-block .acc-icon {
    flex-basis: 25%;
}
.pb-cards .cards .acc-block .acc-icon figure {
    min-width: 60px;
    max-width: 120px!important;
}
.pb-cards .cards .acc-block .acc-head {
    flex-basis: 75%;
}
.pb-cards .cards .acc-block h3.acc-head {
    padding: 5px 45px 10px 10px;
}
.pb-cards .cards .acc-block .panel {
    margin-top: 10px;
    padding: 20px 10px 20px 10px;
}
.pb-cards .cards .acc-block .panel li {
    padding: 3px 0;
    text-indent: -12px;
}
.pb-cards .cards .acc-block .panel li::before {
    content: "_";
    padding-right: 5px;
    color: var(--clr-lines);
}
.pb-cards .cards .acc-block .acc-arrow-wrap {
    position: absolute;
    display: flex;
    top: 0;
    bottom: 0;
    right: 10px;
    align-items: center;
}
.pb-cards .cards .acc-block svg.acc-arrow {
    height: 26px;
    stroke: #555;
    stroke-width: 18px;
    fill: none;
    transition: transform .5s;
}
.pb-cards .cards .acc-block svg.acc-arrow:hover { 
    stroke: #000;
}
.pb-cards .cards .acc-block .acc-headline.open svg.acc-arrow {
    transform: rotate(180deg);    
}
.pb-cards .cards .acc-block .acc-headline svg.acc-arrow .svg-box {
    stroke: transparent;    
}
@media (min-width: 560px) {
    .pb-cards .cards .acc-block .panel {
        padding: 20px 20px 20px 45px;
    }
}
@media (min-width: 768px) and (min-height: 768px) {
    .pb-cards .card {
        padding: 0 30px 30px 30px;
    }
}
/*-------------------------------- Text Colors light & dark ---*/

.text-color-light h1, .text-color-light h2, .text-color-light h3, 
.text-color-light h4, .text-color-light h5, .text-color-light h6, 
.text-color-light p, .text-color-light li, .text-color-light .topline {
    color: rgb(255 255 255 / 1);
}
.text-color-light a {
    color: rgb(255 255 255 / 0.80);
	text-decoration-color: #87B4E9;
}
.text-color-light a:hover {
    color: #fff;
}
.pb-row .content.text-color-light li:before {
    content: "»";
    color: #fff;
}
/*--------------------------------------------------- Quota ---*/
.pb-quota .quota-text {
    padding-bottom: 0;
}
/*-------------------------------------------- Image & Text ---*/
.content-wrap {
    display: flex;
    flex-direction: column;
}
.pb-text-and-image .block-text h2,
.pb-text-and-image .block-text h3 {
    padding: 20px 0 15px 0;
}
.pb-text-and-image .block-img a {
    display: block;
}
.pb-text-and-image .block-text {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    /*justify-content: center;*/
    justify-content: flex-start;
}
.pb-text-and-image .full-width.bg-color {
    padding: 20px 0;
}
.pb-text-and-image .content-width > .bg-color {
    padding: 20px;
}
.pb-text-and-image .order-first { order: 1; }
.pb-text-and-image .order-second { order: 2; }
.pb-text-and-image .block-img.order-second { order: 1; }
.pb-text-and-image .block-text.order-first { order: 2; }

@media (min-width: 768px) and (min-height: 768px) {
    .content-wrap {
        display: flex;
        flex-direction: row;
    }
	.pb-text-and-image .content-width.bg-color,
    .pb-text-and-image .content-width.bg-color .block-text {
		padding: 10px;
	}
	.pb-text-and-image .block-img.order-second { 
        order: 2; 
    }
    .pb-text-and-image .block-text.order-first { 
        order: 1;
    }
}
/*--------------------------------------------------- Image ---*/
.pb-image.no-headline {
    padding-top: 0;
    padding-bottom: 0;
}
.pb-image .two-third-width {
    max-width: calc((100% - 20px) / 3 * 2);;
}
.pb-image .two-third-width.right {
    margin: 0 0 0 auto;
}
.pb-image .two-third-width.center {
    margin: 0 auto;
}
/*@media (min-width: 768px) and (min-height: 768px) {
    .bg-color + .pb-image,
    .pb-row:last-of-type.pb-image {
        padding-bottom: 50px;
    }
}*/
    
/*-------------------------------------------- PDF Download ---*/
.pb-pdf-download .text-block {
    padding-bottom: 30px;
}
.pb-pdf-download .wrap {
    display: flex;
    flex-wrap: wrap;
}
.pb-pdf-download .block-pdf {
    width: 100%;
}
.pb-pdf-download a.button-pdf {
    display: flex;
	font-size: 1.5rem;
    color: #555;
	background-color: #eeece7;
    padding: 8px 20px 8px 12px;
}
.pb-pdf-download a.button-pdf:hover {
	background-color: #94918d;
	color: #fff;
}
.pb-pdf-download svg.icon-pdf {
    display: block;
    height: 30px;
    width: 30px;
    margin-right: 15px;
}
.pb-pdf-download .button-pdf span {
    display: block;
    width: calc(100% - 40px);
    padding-top: 2px;
}
@media (max-width: 991px) {
    .pb-pdf-download .gap2 .col2 {
        flex-basis: 100%;
    }
}
/* -------------------------------------------- Accordions --- */
.pb-accordion .text-block {
    padding-bottom: 40px;
}
.pb-accordion .text-block h2:first-of-type,
.pb-accordion .text-block h3:first-of-type {
    padding-top: 0;
}
.accordion {
    margin-bottom: 15px;
    padding-right: 20px;
    padding-left: 20px;
    background-color: #fff;
    box-shadow: 0px 3px 6px #23232236;
}
.accordion h2 {
    width: calc(100% - 60px);
    font-size: 2.4rem;
    padding: 21px 0;
    cursor: pointer;
    font-family: var(--typoregular);
}
.accordion h2 span {
    display: block;
    position: absolute;
    right: -100px;
    top: 0;
    width: 80px;
    height: 100%;
}
.accordion h2.acc-headline::before, 
.accordion h2.acc-headline::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background-color: #0f0f0f;
    position: absolute;
    top: 50%;
    right: -70px;
    opacity: 1;
    z-index: 1;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    -webkit-transition: opacity .3s, background .3s, -webkit-transform .3s;
            transition: opacity .3s, background .3s, -webkit-transform .3s;
            transition: transform .3s, opacity .3s, background .3s;
            transition: transform .3s, opacity .3s, background .3s, -webkit-transform .3s;
}
.accordion h2.acc-headline.open::after {
    -webkit-transform: translateX(-50%) rotate(0);
            transform: translateX(-50%) rotate(0);
    opacity: 0;
}
.accordion h2.acc-headline::after {
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
}
/*.accordion h2.acc-headline.open {
    font-family: var(--typobold);
    color: var(--clr-main);
}*/
.panel {
    display: none;
    padding-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
}
.text-color-light .accordion {
    border-bottom: 1px solid rgba(255,255,255,0.80);
}
.text-color-light .accordion::before, 
.text-color-light .accordion::after {
    background-color: rgba(255,255,255,0.80);
}
@media (min-width: 600px) {
    .accordion {
        padding-right: 40px;
        padding-left: 40px;
    }
}
/*------------------------------------- Nav teaser with text---*/
.pb-teaser {
    overflow: hidden;
}
.pb-teaser a {
    text-decoration: none;
	display: block;
}
.pb-teaser-img {
    overflow: hidden!important;
}
.pb-teaser figure, .pb-news-block figure {
    transition: transform 0.5s;
}
.pb-teaser:hover figure, .pb-news-block:hover figure {
    transform: scale(1.075);
}
.pb-teaser-text-wrap {
    padding-right: 20px;
}
.pb-news-text-wrap h2, 
.pb-news .wrap h2 {
    text-transform: none;
    letter-spacing: 0;
    padding-top: 0;
}
.pb-teaser-text-wrap.color {
    padding: 0 20px 20px 20px;
}
/*-------------------------------------- Nav Teaser Overlay ---*/
.pb-teaser.black-teaser .titel {
    position: absolute;
    padding: 0 20px;
    top: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    margin: 0;
    width: 100%;
    height: 100%;
    text-align: center;
}
.pb-teaser.black-teaser .wrap {
    width: 100%;
}
.pb-teaser.black-teaser:hover a .titel {
    opacity: 1;
}
.pb-teaser.black-teaser h2 {
    /*font-size: 22px;*/
    font-size: 2.2rem;
    color: #FFF;
}
.pb-teaser.black-teaser h2 span {
    text-align: center;
    display: block;
    /*font-size: 60px;*/
    font-size: 6rem;
}
.pb-teaser.black-teaser h3 {
    /*font-size: 14px;*/
    font-size: 1.4rem;
    color: #FFF;
}
.pb-teaser.black-teaser .darken {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: #333331;
    opacity: 0;
    transition: opacity 0.5s ease-in;
}
.pb-teaser.black-teaser:hover .darken {
    opacity: 0.8;
    transition: opacity 1s ease;
}
/* ------------------------------------------------ Filter --- */
/*.filter {
    display: inline-block;
    margin-bottom: 30px;
}
.filter-menu {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
@media (min-width: 600px) {
    .filter-menu {
        flex-direction: row;
    }
}
.filter.filter-customer {
    margin-right: 30px;
}
.filter,
.filter-label,
.filter-list,
.filter-option {
    width: 100%;
}
.filter-label {
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    box-shadow: 0px 3px 6px #23232236;
}
.filter-label::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 15px;
    border: solid #696969;
    border-width: 0 2px 2px 0;
    display: block;
    padding: 3px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
.filter-label.active {
    background-color: var(--clr-main);
    color: #fff;
    font-family: var(--typobold);
    letter-spacing: .05rem;
}
.filter-list {
    position: absolute;
    z-index: 1;
    padding-bottom: 10px;
    background-color: #fff;
    box-shadow: 0px 3px 6px #23232236;
}
.filter-option {
    display: block;
    padding: 5px 20px;
    cursor: pointer;
}
.filter-option:hover {
    color: #fff;
    background-color: var(--clr-main);
}*/
/* ----------------------------------------------- Gallery --- */
.gallery a {
    cursor: zoom-in;
}
section header + .debleu-cb .row-1.pb-gallery {
    padding-top: 50px;
}
.pb-gallery + .pb-gallery h2 {
    padding-top: 40px;
}
.gallery-item {
    font-size: 0;
    overflow: hidden;
}
.gallery-item .wrap {
    height: 100%;
}
.gallery-item a {
    display: block;
	text-decoration: none;
    cursor: -webkit-zoom-in;
	cursor: zoom-in;
}
.gallery-item figure {
    overflow: hidden;
}
.gallery-item figure.img-sw img {
	-webkit-filter: saturate(10%);
	filter: saturate(10%);
}
.gallery-item a figure img {
    transition: all 0.5s 0s;
    transform: scale(1, 1);
}
.gallery-item:hover a figure img {
    transition: all 0.5s 0s;
    transform: scale(1.1, 1.1);
	-webkit-filter: none;
			filter: none;
}
.gallery-item .wp-caption {
    margin: 0;
    padding: 10px 15px 10px 0;
}
/*---------------------------------- Text & Icons 4 cloumns ---*/
/*.pb-text-and-icons .card {
    flex-basis: calc(100% - 1px);
    padding: 50px 30px 50px 30px;
    margin-bottom: 2px;
}
.pb-text-and-icons .card .wrap {
    min-height: 200px;
}
.pb-text-and-icons .card h2 {
    padding-top: 0;
}
.pb-text-and-icons .card figure {
    padding-top: 40px;
    bottom: 0;
    width: 160px;
    margin: 0 auto;
}
@media (min-width: 640px) {
	.pb-text-and-icons .card {
		flex-basis: calc(50% - 1px);
		margin-right: 1px;
        flex-shrink: 1;
        flex-grow: 1;
	}
	.pb-text-and-icons .card:nth-of-type(n2+0) {
		margin-right: 0;
	}
}
@media (min-width: 1280px) {
	.pb-text-and-icons .card {
		flex-basis: calc(25% - 1px);
	}
    .pb-text-and-icons .card:nth-of-type(n4+0) {
		margin-right: 0;
	}
}*/
/* ------------------------------------- 4 Cards with Text --- */
.pb-4-cards .main-text {
    padding-bottom: 40px;
}
.pb-4-cards .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
}
.pb-4-cards .card .wrap {
    width: 100%;
}
.pb-4-cards .card .image-block {
    display: flex;
    justify-content: center;
}
.pb-4-cards .card.col2 .image-block figure {
    min-width: 160px;
}
/*.pb-4-cards .card .image-block + .text-block {
    padding-top: 20px;
    padding-bottom: 10px;
}*/
.pb-4-cards .card .text-block h2:first-of-type,
.pb-4-cards .card .text-block h3:first-of-type {
    padding-top: 0;
}
/*.pb-4-cards.bg-lightblue .card .image-block {
    display: flex;
    justify-content: center;
    background-color: var(--clr-4);
    box-shadow: 0px 3px 6px #23232236;
}*/
.pb-4-cards .text-5 {
    padding-top: 40px;
}
.pb-4-cards .text-5 + .btn-block {
    padding: 0 0 30px 0;
}
/*.numb-green {
    font-size: 4.5rem;
    color: var(--clr-main);
    font-family: var(--typobold);
    line-height: 1;
}*/
.icon-border-green .image-block {
    margin-bottom: 20px;
}
.pb-4-cards .card .text-block h2,
.pb-4-cards .card .text-block h3 {
    font-family: var(--typoregular);
}
.pb-4-cards .text-block-flex {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}
.pb-4-cards .card .btn {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

@media (min-width: 600px) {
    .pb-4-cards .cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .pb-4-cards .card {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        padding-bottom: 0;
    }
    .pb-4-cards .cards.col2 {
        flex-direction: column;
    }
    .pb-4-cards .card.col2 .wrap {
        display: flex;
        /*margin-bottom: 40px;*/
        align-items: flex-start;
    }
    .pb-4-cards .cards.col2 .image-block {
        margin-right: 30px;
    }
    .pb-4-cards .card.col4 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .pb-4-cards .card .image-block + .text-block h2:first-of-type {
        padding-top: 10px;
    }
}
@media (min-width: 992px) {
    .icon-border-green .cards {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .pb-4-cards .cards.col2 {
        flex-direction: row;
    }
}
/* ------------------------------------------- Latest News --- */
.pb-news + .pb-image {
    padding-top: 0;
    margin-top: -30px;
    margin-bottom: 30px;
}
.pb-latest-news .text-block {
    padding-bottom: 40px;
    /*text-align: left;*/
}
.pb-latest-news .text-block h2:first-of-type,
.pb-latest-news .text-block h3:first-of-type {
    padding-top: 0;
}
.pb-news-block h2 {
    padding-top: 0;
}
.pb-news-block a.news-archive-link {
    text-align: center;
    display: table;
	background-color: #d8d7d0;
    margin: auto;
    padding: 4px 30px 5px;
	transition: background-color 100ms, color 300ms;
}
.pb-news-block a.news-archive-link:hover {
    background-color: #464543;
    color: #fff;
}
@media (min-width: 768px) {
	.pb-news-block a.news-archive-link {
        width: calc(100% / 3);
    }
}
/*	----------------------------------------- News Archive --- */
.pb-news-archive .pb-news-block {
    display: none;
}
.pb-news-archive .pb-news-block.selected {
    display: block;
}
@media (min-width: 600px) {
    .pb-news-block.selected.col3:nth-child(3) {
         display: none; 
    }
}
@media (min-width: 768px) {
    .pb-news-block.selected.col3:nth-child(3) {
        display: block;
    }
}
.pb-news-archive .content {
    padding-bottom: 30px;
}
.pb-news .text-wrap {
    padding: 30px 40px 25px 40px;
}
.pb-news .date,
.single-news .date {
    color: var(--clr-main);
}
/* ---------------------------- Categories Filter */

/*.pb-news-archive .filter-categories {
    max-width: 630px;
}
.pb-news .cat-names {
    margin-bottom: 20px;
}
.pb-news .cat-names p,
.pb-news .cat-names li{
    color: var(--clr-main);
    padding: 0;
    line-height: 1.3;
}
.pb-news .cat-names .cat-list-title,
.pb-news .date span {
    font-family: var(--typobold);
    text-transform: uppercase;
    letter-spacing: .05rem;
    padding-bottom: 3px;
}
.pb-news .cat-names .cat-list-item span:last-of-type {
    display: none;
}*/


/* -------------------------------------------- Pagination --- */
.pagination {
    padding-top: 20px;
}
.page-numbers.current, a.page-numbers {
    display: inline-block;
    padding: 5px 10px;
    border-bottom: 1px solid #555;
    margin: 10px 5px 10px 0;
    text-decoration: none;
}
.page-numbers.current {
    border-bottom: 3px solid #555;
}
a.page-numbers:hover {
    border-bottom: 3px solid #000;
}
/*------------------------------------------------- Kontakt ---*/
.pb-contact .content {
    display: flex;
    flex-direction: column;
}
/* .pb-contact .google-map {
    -webkit-filter: brightness(100%) saturate(0%) contrast(1);
            filter: brightness(100%) saturate(0%) contrast(1);
} */
@media (min-width: 992px) {
    .pb-contact .content {
        flex-direction: row;
    }
    .pb-contact .google-map {
        width: 60%;
        transition: width .5s;
    }
    .pb-contact .contact-block {
        width: 40%;
        transition: width .5s;
    }
}
@media (min-width: 1360px) {
    .pb-contact .google-map {
        width: 68%;
    }
    .pb-contact .contact-block {
        width: 32%;
    }
}
/* ------------------------------------------------ Single --- */
.date-cat {
    padding-top: 50px;
}
.date-cat-wrap {
    display: flex;
}
.date-cat-wrap p {
    padding-bottom: 0;
    color: var(--clr-main);
}
.date-wrap {
    padding-right: 30px;
}
.date-title, .cat-list-title {
    font-family: var(--typobold);
}
.date-cat-wrap .cat-list-item span:last-of-type {
    display: none;
}

/* ---------------------------------------- Columns & Gaps --- */
.gap1, .gap4 {
    gap: 10px;
}
.gap2 {
    gap: 20px;
}
.gap3 {
    gap: 30px;
}
@media (min-width: 600px) {
    
    .gap1 .col2, .gap1 .col3, .gap1 .col4, .gap1 .col5, .gap1 .col7 { 
        flex-basis: calc((100% - 10px) / 2);
    }    
    .gap2 .col2, .gap2 .col3, .gap2 .col4, .gap2 .col5, .gap2 .col7 { 
        flex-basis: calc((100% - 20px) / 2);
    }    
    .gap3 .col2, .gap3 .col3, .gap3 .col4, .gap3 .col5, .gap3 .col7 { 
        flex-basis: calc((100% - 30px) / 2);
    }
    
    .gap1 .card.col3,
    .gap2 .card.col3,
    .gap3 .card.col3 { 
        flex-basis: 100%;
    }
}
@media (min-width: 650px) {
    
    .gap1 .card.col4 { flex-basis: calc((100% - 10px) / 2); }
    .gap2 .card.col4 { flex-basis: calc((100% - 20px) / 2); }
    .gap3 .card.col4 { flex-basis: calc((100% - 30px) / 2); }
}
@media (min-width: 768px) and (min-height: 768px) {
    
    .gap1 .col5, .gap1 .col7 { 
        flex-basis: calc((100% - 20px) / 3); 
    }
    .gap2 .col5, .gap2 .col7 { 
        flex-basis: calc((100% - 40px) / 3); 
    }
    .gap3 .col5, .gap3 .col7 { 
        flex-basis: calc((100% - 60px) / 3); 
    }
            
    .gap1 .col4 { flex-basis: calc((100% - 20px) / 3); }
    .gap2 .col4 { flex-basis: calc((100% - 40px) / 3); }
    .gap3 .col4 { flex-basis: calc((100% - 60px) / 3); }

    .gap4 {
        gap: 40px;
    }    
    .gap4 .col2 { 
        flex-basis: calc((100% - 40px) / 2);
    } 
    .gap4 .col3 { 
        flex-basis: calc((100% - 80px) / 3);
    }
}

@media (min-width: 768px) {
    
    .gap1 .card.col3 { flex-basis: calc((100% - 10px) / 2); }
    .gap2 .card.col3 { flex-basis: calc((100% - 20px) / 2); }
    .gap3 .card.col3 { flex-basis: calc((100% - 30px) / 2); }
    
    .gap1 .card.col4 { flex-basis: calc((100% - 10px) / 2); }
    .gap2 .card.col4 { flex-basis: calc((100% - 20px) / 2); }
    .gap3 .card.col4 { flex-basis: calc((100% - 30px) / 2); }
}
@media (min-width: 992px) {
    
    .gap1 .col3 { flex-basis: calc((100% - 20px) / 3); }
    .gap2 .col3 { flex-basis: calc((100% - 40px) / 3); }
    .gap3 .col3 { flex-basis: calc((100% - 60px) / 3); }
    
    .gap1 .col5 { flex-basis: calc((100% - 40px) / 5); }
    .gap2 .col5 { flex-basis: calc((100% - 80px) / 5); }
    .gap3 .col5 { flex-basis: calc((100% - 120px) / 5); }
    
    .gap1 .col7 { flex-basis: calc((100% - 60px) / 7); }
    .gap2 .col7 { flex-basis: calc((100% - 120px) / 7); }
    .gap3 .col7 { flex-basis: calc((100% - 180px) / 7); }
}
@media (min-width: 1100px) {
    
    .gap1 .col4 { flex-basis: calc((100% - 30px) / 4); }
    .gap2 .col4 { flex-basis: calc((100% - 60px) / 4); }
    .gap3 .col4 { flex-basis: calc((100% - 90px) / 4); }
}

@media (min-width: 1230px) {
    
    .gap1 .card.col4 { flex-basis: calc((100% - 30px) / 4); }
    .gap2 .card.col4 { flex-basis: calc((100% - 60px) / 4); }
    .gap3 .card.col4 { flex-basis: calc((100% - 90px) / 4); }
        
    .gap1 .card.col3 { flex-basis: calc((100% - 20px) / 3); }
    .gap2 .card.col3 { flex-basis: calc((100% - 40px) / 3); }
    .gap3 .card.col3 { flex-basis: calc((100% - 60px) / 3); }
}
/* ---------------------------- End debleu Content Builder --- */
/* ----------------------------------------------------------- */
/* ------------------------------------------------ Footer --- */
.footer {
    width: 100%;
    overflow: hidden;
}
/* -------------------------------------------- Footer One --- */
.footer-one {
    padding-top: 45px;
    padding-bottom: 30px;
    color: #ccc;
}
.footer-one .main-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.footer-one .company-wrap {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}
.footer-one .company.box {
    width: 290px;
}
.footer-one .company li {
    color: #fff;
    border: 0 none;
    font-size: 1.8rem;
}
.footer-one .company ul li a {
    color: #fff;
    text-decoration: none;
    padding-top: 10px;
    display: block;
	text-indent: 0;
    padding-left: 0;
    font-size: 1.8rem;
}
.footer-one .company li.company-phone a {
    letter-spacing: .25rem;
}
.footer-one .company-fax {
    padding-top: 10px;
}
.footer-one .company svg.company-icon {
	fill: rgb(255 255 255 / 100%);
    height: 20px;
    width: 20px;
    padding-right: 5px;
	padding-top: 5px;
}
.footer-one .company .company-name {
    font-size: 150%;
	color: #fff;
}
.footer-one .company .company-subline {
	padding-bottom: 10px;
	color: #fff;
}
.footer-one .nav-topline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.8rem;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-one .company-open-hours {
    width: 170px;
}
.footer-one .company-open-hours p:nth-of-type(2) {
    color: #fff;
    padding-top: 8px;
}
.footer-one .company-open-hours span {
    width: 70px;
    display: inline-block;
}
.footer-one .nav-wrap {
	display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-one .footer-navi .wrap {
    display: flex;
    flex-direction: column;
}
.footer-one .navi ul {
    display: flex;
    flex-direction: column;
}
.footer-one .navi ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-one .navi ul li a {
    color: #ccc;
    text-decoration: none;
    display: inline-table;
    padding-top: 6px;
    padding-bottom: 6px;
    width: 100%;
}
.footer-one .navi ul li a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 8px;
    border-style: solid;
    border-width: 6px 0 6px 6px;
    border-color: transparent transparent transparent rgb(255 255 255 / 60%);
}
.footer-one .navi ul li:hover a {
    color: #fff;
}
.footer-one .navi ul li.current-menu-item a {
    color: #fff;
}
.footer-one .footer-logo {
    display: block;
    max-width: 200px;
    margin-bottom: 20px;
    margin-right: 40px;
}
@media (min-width: 720px) {
    .footer-one .main-wrap {
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
    }
    .footer-one .footer-navi .wrap {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
}

@media (min-width: 992px) {
    .footer-one .main-wrap {
        flex-direction: row;
        justify-content: space-between;
        gap: 30px;
    }
    .footer-one .nav-wrap {
        flex-direction: row;
    }
    .footer-one .footer-navi .wrap {
        flex-direction: row;
        gap: 40px;
    }
}
@media (min-width: 1300px) {
    .footer-one .company-wrap {
        flex-direction: row;
    }
}
/* -------------------------------------------- Footer Two --- */
/*.footer-two {
    padding-top: 20px;
    padding-bottom: 30px;
}
.footer-two .navi {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.footer-two .navi ul {
    display: flex;
    flex-direction: row;
    gap: 15px;
}
.footer-two .navi li::after {
    content: "·";
    padding-left: 15px;
    color: #B3B3B3;
}
.footer-two a {
    color: #B3B3B3;
}
.footer-two a:hover,.footer-two a:active {
    color: #fff;
}*/
/*-------------------------------------------- Social Icons ---*/
#social-box {
    display: flex;
    gap: 20px;
}
#social-box a {
    display: inline-block;
    text-decoration: none;
}
#social-box a img {
    height: 28px;
}
.social-link {
    display: flex;
    align-items: center;
    line-height: 1.4;
}
.social-link svg.social-icon {
    width: 40px;
}
.social-link svg.social-icon .social-bg {
    fill: #828282;
}
.social-link svg.social-icon .social-fg {
    fill: #fff;
}
.social-link:hover svg.social-icon .social-bg {
    fill: #fff;
}
.social-link:hover svg.social-icon .social-fg {
    fill: #828282;
}
.corp-mobile.has-icon svg.icon,
.corp-fax.has-icon svg.icon {
    fill: #000;
    stroke: none;
}
.corp-text {
    display: block;
    text-decoration: none;
}
.corp-street {
    margin-bottom: 15px;
    line-height: 1.6;
}
svg.icon.icon-quota {
    width: 40px;
    fill: var(--clr-main);
}
.corp-text.motto {
    padding: 0;
    text-transform: uppercase;
    letter-spacing: .1rem;
    line-height: 1.3;
    font-size: 2.2rem;
}
.corp-name {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 2.4rem;
}
.footer .has-icon svg.icon {
    stroke: #fff;
}
.footer .corp-text {
    color: #fff;
}
.footer .corp-text span {
    width: 70px;
    display: inline-block;
}
.footer .corp-street {
    margin-bottom: 0;
}
@media (min-width: 992px) {
    #social-box {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}
/*----------------------------------------------- Go to Top ---*/
.top-wrap,.side-block-wrap {
    width: 50px;
    height: 50px;
    bottom: 60px;
}
.top-wrap {
    display: none;
    position: absolute;
    right: 30px;
    
    /* Out of canvas under 1422px */
    /* right: -2000px;  */
}
.side-block-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 100;
    background-color: var(--clr-main);
    text-align: center;
    font-size: 1.2rem;
    border-radius: 50%;
}
.icons.to-top-icon {
    width: 30px;
    top: 2px;
}
a.top-icon {
    display: block;
}
.icon-outline {
    fill: none;
    stroke: #fff;
    stroke-width: 14px;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
}
.side-block-wrap:hover .icon-outline {
    stroke: #fff;
    transition: stroke 0.5s;
}
.side-block-wrap:hover {
    background-color: var(--clr-menu-dark);
    transition: background-color 0.5s;
}
@media (min-width: 1422px) and (min-height: 768px) {
    .top-wrap {
        display: none;
    }
}
/*----------------------------------------------- Copyright ---*/
#copyright {
    padding: 10px 30px 20px 30px;
    width: 100%;
    text-align: center;
    line-height: 1.2;
}
#copyright a {
    font-size: 80%;
    text-decoration: none;
}
/*  ------------------------------------------------ DSGVO --- */
.dsgvo-mark {
    background: #4b4c4e;
    padding: 0 20px;
    margin: 10px 0 0 0;
}
.dsgvo-copy, .dsgvo-copy a {
    color: #767676;
    text-decoration: none;
    font-size: 90%;
}

/* -------------------------------------- Impressum debleu --- */
.debleu-imprint {
    padding-top: 10px;
}
.debleu-imprint a {
    text-decoration: none;
    border: 0;
}
.debleu-logo {
    display: block;
    height: 120px;
    background-image: url(../images/debleu-kommunikation-design-login.svg);
    background-repeat: no-repeat;
    margin: 20px 0;
}

/* ---------------------------------------- Video Controls --- */
.mejs-inner {
    position: relative;
    height: 100%;
}
.mejs-controls {
    position: absolute;
    bottom: 0;
}
.mejs-layers {
    height: 100%;
}
.mejs-container, .mejs-container .mejs-controls, 
.mejs-embed, .mejs-embed body {
    background: transparent!important; 
}
.mejs-overlay-button {
    opacity: 1;
}
.mejs-time { color: #b2b2b2!important; }
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current, 
.mejs-controls .mejs-time-rail .mejs-time-loaded { 
    background: rgb(255 255 255 / 20%)!important; 
}
.mejs-controls .mejs-time-rail .mejs-time-current { 
    background: #ff0000!important; 
}
.mejs-volume-current, .mejs-volume-handle { 
    background: #ff0000!important; 
}
.mejs-time-total { margin: 9px 0 0!important; }
.mejs-time-buffering, 
.mejs-time-current, 
.mejs-time-hovered, 
.mejs-time-loaded, 
.mejs-time-marker, 
.mejs-time-total { height: 3px!important;
}
.mejs-button>button { 
    background: transparent url(../images/debleu-video-controls.svg)!important; 
}
.mejs-fullscreen-button>button { background-position: -80px 0!important; }
.mejs-mute>button { background-position: -60px 0!important; }
.mejs-unmute>button { background-position: -40px 0!important; }
.mejs-fullscreen-button, .mejs-time-float-corner { display: none!important; }
.mejs-volume-button>.mejs-volume-slider { 
    background: rgb(50 50 50 / 12%)!important; 
}
.mejs-time-handle, .mejs-time-handle-content { border: 0 none!important; }
.mejs-time-handle-content { background: #ff0000!important; width: 5px!important; }
.mejs-time-float { background: #eee; border: 1px solid #b2b2b2!important; color: #111; height: 16px!important; }

/* ------------------------------------ Admin bar frontend --- */
#wp-admin-bar-updates, #adminbarsearch, #wp-admin-bar-comments, #wp-admin-bar-new-user, #wp-admin-bar-switch-off, #wp-admin-bar-wp-logo, #wp-admin-bar-appearance, #wp-admin-bar-switch-off, #wpfooter, #password, .postbox-header .handle-order-higher, .postbox-header .handle-order-lower, a.dashicons.dashicons-admin-generic.acf-hndle-cog.acf-js-tooltip, #wp-admin-bar-edit-profile, .user-generate-reset-link-wrap, .application-passwords {
    display: none;
}