/* CUSTOM STYLES FOR JOOMLA! CASSIOPEIA */

/* Fonts */

/* poppins-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: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v24-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/poppins-v24-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* poppins-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: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/poppins-v24-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/poppins-v24-latin-600.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* poppins-800 - 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: 'Poppins';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/poppins-v24-latin-800.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/poppins-v24-latin-800.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}


:root {
  --body-font-family: "Poppins"
  --body-font-weight: 400;
  --body-line-height: 1.4;
  --body-font-size: 1.1rem;
  --cassiopeia-color-primary: #607799;
  --cassiopeia-color-link: var(--link-color);
  --cassiopeia-color-hover: var(--link-hover-color);
  --template-link-color: var(--cassiopeia-color-link);
  --link-color: #ff9100;
  --link-color-rgb: 255, 145, 0;
  --link-hover-color: #5f727b;
  --link-hover-color-rgb: 110,137,177;
  --body-color: #333333;
  --body-color-rgb: 51,51,51;
  --border-radius-xl: 1.3rem;
  --primary-light: #b0d0ee;
  --orange: #ff9100;
  --primary: #808080;
  --secondary: #c4c4c4;
  --success: #47874c;
  --info: #555555;
  --warning: #ffaa00;
  --danger: #a13033;
  --light: #f7f7f7;
  --dark: #333333;
  --primary-rgb: 128, 128, 128;
  --secondary-rgb: 196, 196, 196;
  --success-rgb: 71, 135, 76;
  --info-rgb: 85, 85, 85;
  --warning-rgb: 255, 170, 0;
  --danger-rgb: 161, 48, 51;
  --light-rgb: 247, 247, 247;
  --dark-rgb: 51, 51, 51;
  --primary-text-emphasis: #333333;
  --secondary-text-emphasis: #000000;
  --success-text-emphasis: #fff;
  --info-text-emphasis: #fff;
  --warning-text-emphasis: #333333;
  --danger-text-emphasis: #fff;
  --light-text-emphasis: #333333;
  --dark-text-emphasis: #fff;
  --primary-bg-subtle: #e6e6e6;
  --secondary-bg-subtle: #c4c4c4;
  --success-bg-subtle: #47874c;
  --info-bg-subtle: #555555;
  --warning-bg-subtle: #ffaa00;
  --danger-bg-subtle: #a13033;
  --light-bg-subtle: #f7f7f7;
  --dark-bg-subtle: #333333;
  --primary-border-subtle: #757575;
  --secondary-border-subtle: #757575;
  --success-border-subtle: #757575;
  --info-border-subtle: #757575;
  --warning-border-subtle: #757575;
  --danger-border-subtle: #757575;
  --light-border-subtle: #757575;
  --dark-border-subtle: #757575;
  --swiper-theme-color: var(--orange) !important;
}

.pagination {
  --pagination-padding-x: 1rem;
  --pagination-padding-y: 0.7rem;
  --pagination-border-radius: 1rem;
}

/* alert */

.alert {

}

.alert-primary {
  --alert-color: var(--primary-text-emphasis);
  --alert-bg: var(--primary-bg-subtle);
  --alert-border-color: var(--primary-border-subtle);
  --alert-link-color: var(--primary-text-emphasis);
}

.alert-secondary {
  --alert-color: var(--secondary-text-emphasis);
  --alert-bg: var(--secondary-bg-subtle);
  --alert-border-color: var(--secondary-border-subtle);
  --alert-link-color: var(--secondary-text-emphasis);
}

.alert-success {
  --alert-color: var(--success-text-emphasis);
  --alert-bg: var(--success-bg-subtle);
  --alert-border-color: var(--success-border-subtle);
  --alert-link-color: var(--success-text-emphasis);
}

.alert-info {
  --alert-color: var(--info-text-emphasis);
  --alert-bg: var(--info-bg-subtle);
  --alert-border-color: var(--info-border-subtle);
  --alert-link-color: var(--info-text-emphasis);
}

.alert-warning {
  --alert-color: var(--warning-text-emphasis);
  --alert-bg: var(--warning-bg-subtle);
  --alert-border-color: var(--warning-border-subtle);
  --alert-link-color: var(--warning-text-emphasis);
}

.alert-danger {
  --alert-color: var(--danger-text-emphasis);
  --alert-bg: var(--danger-bg-subtle);
  --alert-border-color: var(--danger-border-subtle);
  --alert-link-color: var(--danger-text-emphasis);
}

.alert-light {
  --alert-color: var(--light-text-emphasis);
  --alert-bg: var(--light-bg-subtle);
  --alert-border-color: var(--light-border-subtle);
  --alert-link-color: var(--light-text-emphasis);
}

.alert-dark {
  --alert-color: var(--dark-text-emphasis);
  --alert-bg: var(--dark-bg-subtle);
  --alert-border-color: var(--dark-border-subtle);
  --alert-link-color: var(--dark-text-emphasis);
}

.accordion {
    --accordion-color: var(--body-color);
    --accordion-bg: var(--body-bg);
    --accordion-border-color: var(--body-bg);
    --accordion-border-width: 1px;
    --accordion-border-radius: 0;
    --accordion-btn-padding-x: 1rem;
    --accordion-btn-padding-y: 1rem;
    --accordion-btn-color: var(--body-color);
    --accordion-btn-bg: var(--accordion-bg);
    --accordion-btn-focus-border-color: var(--body-bg);
	--accordion-btn-focus-box-shadow: 0 0 0 0;
    --accordion-body-padding-x: 0;
    --accordion-body-padding-y: 0;
    --accordion-active-color: var(--cassiopeia-color-primary);
    --accordion-active-bg: #F7F7F7;
}

.btn {
    --btn-padding-x: 1.5rem;
    --btn-padding-y: .2rem;
    --btn-border-radius: 50rem;
}

.btn-primary {
  --btn-color: #fff;
  --btn-bg: var(--cassiopeia-color-primary);
  --btn-border-color: var(--cassiopeia-color-primary);
  --btn-hover-color: #fff;
  --btn-hover-bg: var(--cassiopeia-color-primary);
  --btn-hover-border-color: var(--cassiopeia-color-primary);
  --btn-focus-shadow-rgb: 39, 39, 111;
  --btn-active-color: #fff;
  --btn-active-bg: var(--cassiopeia-color-primary);
  --btn-active-border-color: var(--cassiopeia-color-primary);
  --btn-active-shadow: inset 0 3px 5px #00000020;
}

.btn-secondary {
  --btn-color: var(--cassiopeia-color-primary);
  --btn-bg: #fff;
  --btn-border-color: var(--cassiopeia-color-primary);
  --btn-hover-color: #fff;
  --btn-hover-bg: var(--cassiopeia-color-primary);
  --btn-hover-border-color: var(--cassiopeia-color-primary);
  --btn-focus-shadow-rgb: 131, 138, 145;
  --btn-active-color: #fff;
  --btn-active-bg: var(--cassiopeia-color-primary);
  --btn-active-border-color: var(--cassiopeia-color-primary);
  --btn-active-shadow: inset 0 3px 5px #00000020;
}

.btn-outline-primary {
  --btn-color: var(--cassiopeia-color-primary);
  --btn-border-color: var(--cassiopeia-color-primary);
  --btn-hover-color: #fff;
  --btn-hover-bg: var(--cassiopeia-color-primary);
  --btn-hover-border-color: var(--cassiopeia-color-primary);
  --btn-focus-shadow-rgb: 1, 1, 86;
  --btn-active-color: #fff;
  --btn-active-bg: var(--cassiopeia-color-primary);
  --btn-active-border-color: var(--cassiopeia-color-primary);
  --btn-active-shadow: inset 0 3px 5px #00000020;
  --gradient: none;
}

.btn-secondary {
  color: var(--cassiopeia-color-primary);
  background-color: #fff;
  border-color: var(--cassiopeia-color-primary);
  text-decoration: none !important;
}

.btn-secondary:hover {
  color: #fff;
  background-color: var(--cassiopeia-color-primary);
}

.btn-secondary:focus,
.btn-secondary:active {
  color: #fff;
  background-color: var(--cassiopeia-color-primary);
}

.btn-outline-light.blur {
  	background-color: rgba(165, 165, 165, .2) !important; 
    backdrop-filter: blur(20px) !important;
   color: #fff;
}

.btn-outline-light.blur:hover {
  	background-color: #fff !important; 
    backdrop-filter: blur(0px) !important;
    color: #333;
}

.list-group-item {
  border: 0;
}

body {
	letter-spacing: 1px;
	font-family: 'Poppins', sans-serif !important;
	overflow-x: hidden;
	background-color: #fff;
}

* {
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

/* Rounded */

.rounded {
    border-radius: 7px !important;
}

.rounded-2 {
    border-radius: 10px !important;
}

.rounded-3 {
    border-radius: 15px !important;
}

/* Schrift */

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  color: var(--heading-color);
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-style: normal;
}

h1, .h1, h1.halfside {
  font-size: 2rem;
}

@media (width >= 768px) {
  h1.halfside {
  font-size: 2.5rem;
}
}

@media (width >= 1200px) {
  h1, .h1 {
    font-size: 2rem;
  }
  h1.halfside {
  font-size: 4rem;
  }
}

h2, .h2 {
  font-size: 1.6rem;
}

@media (width >= 1200px) {
  h2, .h2 {
    font-size: 1.6rem;
  }
}

h3, .h3 {
  font-size: 1.4rem;
}

@media (width >= 1200px) {
  h3, .h3 {
    font-size: 1.4rem;
  }
}

h4, .h4 {
  font-size: 1.2rem;
}

@media (width >= 1200px) {
  h4, .h4 {
    font-size: 1.2rem;
  }
}

h5, .h5 {
  font-size: 1.1rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.page-header h1{
	margin-bottom: 2rem;
}

.page-header h2 a,
h2 a {
	color: var(--link-color);
    text-decoration: none !important;
}

.page-header h2 a:hover,
.page-header h2 a:focus,
.page-header h2:active,
h2 a:hover
h2 a:focus,
h2:active {
	color: var(--link-hover-color);
    text-decoration: none !important;
}

a, a:hover, a:focus, a:active {
    text-decoration: none;
}

a, button {
    text-underline-offset: .2em;
}

address {
    margin: 0  
}

/* abbr und focus */

abbr[title] {
	text-decoration: none;
	border-bottom: none;
	cursor: help;
}

abbr[title]::after {content: " (" attr(title) ") "}

@media (min-width:1160px) {
   abbr[title] {text-decoration: none; border-bottom: 2px dotted var(--orange);}
   abbr[title]::after {content: "" }
}

textarea:focus,
input:focus {
	outline: none;
}

*:focus {
	outline: none;
}

.site-grid {
	margin-top: 0;
}

/* grid enhancement */

body.wrapper-fluid footer-mod > .grid-child {
  padding-right: 2em;
  padding-left: 2em;
}

@supports (display: grid) {
  .site-grid {
    display: grid;
    grid-template-areas: ". banner banner banner banner ." ". top-a top-a top-a top-a ." ". top-b top-b top-b top-b ." ". top-c top-c top-c top-c ." ". comp comp comp comp ." ". side-r side-r side-r side-r ." ". side-l side-l side-l side-l ." ". bot-a bot-a bot-a bot-a ." ". spec spec spec spec ." ". bot-b bot-b bot-b bot-b ." ". bot-c bot-c bot-c bot-c ." ". speser speser speser speser ." ". bot-d bot-d bot-d bot-d .";
    grid-template-columns: [full-start] minmax(0, 1fr) [main-start] repeat(4, minmax(0, 19.875rem)) [main-end] minmax(0, 1fr) [full-end];
    grid-gap: 0 1em;
  }
  .site-grid > [class^=container-],
  .site-grid > [class*=" container-"] {
    width: 100%;
    max-width: none;
    -webkit-column-gap: 1em;
       -moz-column-gap: 1em;
            column-gap: 1em;
  }
  .site-grid > .full-width {
    grid-column: full-start/full-end;
  }
  @media (min-width: 992px) {
    .site-grid {
      grid-template-areas: ". banner banner banner banner ." ". top-a top-a top-a top-a ." ". top-b top-b top-b top-b ." ". top-c top-c top-c top-c ." ". side-l comp comp side-r ." ". bot-a bot-a bot-a bot-a ." ". spec spec spec spec ." ". bot-b bot-b bot-b bot-b ." ". bot-c bot-c bot-c bot-c ." ". speser speser speser speser ." ". bot-d bot-d bot-d bot-d .";
    }
  }
}

@media (max-width: 991.98px) {
  .container-top-a,
  .container-top-b,
  .container-top-c,
  .container-bottom-a,
  .container-special,
  .container-bottom-b,
  .container-bottom-c,
  .container-specialsearch,
  .container-bottom-d {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .container-top-a > *,
  .container-top-b > *,
  .container-top-c > *,
  .container-bottom-a > *,
  .container-special,
  .container-bottom-b > *,
  .container-bottom-c > *,
  .container-specialsearch > *,
  .container-bottom-d > *  {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }

.container-top-a .grid-child,
.container-top-b .grid-child,
.container-top-c .grid-child,
.container-bottom-a .grid-child,
.container-bottom-b .grid-child,
.container-bottom-c .grid-child,
.container-bottom-d .grid-child,
.footer-mod .grid-child,
.footer .grid-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
.container-footer-mod .grid-child .footer-mod {
    margin: 0.375rem 0;
  }

}

.z-3 {
	z-index:3 !important;
}

.container-header {
	z-index: 1;
    margin: 0 0 20px 0;
	min-height: 150px;
    padding: 0;
	color: #333;
    background-color: transparent;
	background-image: none;
/*	box-shadow: rgba(100, 95, 95, 0.5) 0px 10px 20px -10px; */
}

.container-header .grid-child {
	padding: 0;
}

.container-header-content {
    position: relative;
    z-index: 2;
    background: #8bbad4;
	box-shadow: rgba(100, 95, 95, 0.5) 0px 10px 20px -10px;
}

.container-brandnav {
    position: absolute;
    top: 20px;
    padding: 20px 10px;
    z-index: 200;
    width: 100%;
}

.brandnav-inner {
    position: relative;
    display: flex;
    width: 100%;
    z-index: 12;
    margin: 0 auto !important;
    padding: 10px 25px !important;
    color: #333;
    background-color: #c4e4ff;
    border-radius: 50rem;
    box-shadow: rgba(100, 95, 95, 0.5) 0px 10px 20px -10px;
}

.container-brandnav .navbar-brand {
  z-index: 14;
  padding-top: 1px;
  padding-bottom: 1px;
}

.navbar-brand img {
	max-height: 55px;
	width: auto;
}

.navbar-brand .brand-desc {
	font-size: 1.2rem;
	padding: 0 15px;
    border-left: 1px solid #333;
}

.container-brandnav .navbar-tools {
  align-self: center;
  z-index: 14;
}

.container-brandnav .navbar-tools .brandmenu,
.container-brandnav .navbar-tools .tools {
  display: flex;
  flex-direction: row;
}

.container-nav {
	background-color: #ecebea;
	padding-bottom: 0 !important;	
	box-shadow: rgba(100, 95, 95, 0.5) 0px 10px 20px -10px;
}

.container-nav .grid-child {
	margin-top: 0.5rem;
  	justify-content: center;
}

.container-top-b {
  grid-area: top-b;
  position: relative;
}

.container-top-c {
  grid-area: top-c;
  position: relative;
}

.container-special {
  grid-area: spec;
  position: relative;
}

.container-bottom-c {
  grid-area: bot-c;
  position: relative;
}

.container-specialsearch {
  grid-area: speser;
  position: relative;
}

.container-bottom-d {
  grid-area: bot-d;
  position: relative;
}

.container-top-c > *,
.container-special > *,
.container-specialsearch > *,
.container-bottom-c > *,
.container-bottom-d > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
}

.add-margin-top {
	margin-top: 50px;
}

.no-margin-all {
	margin: -50px 0 -50px 0 !important;
}

/* Footer */

.footer ul {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.footer ul li {
  display: inline-block;  
  margin: 0 10px;
}

.footer ul li a {
  font-size: 14px !important;
  color: #cbcbcb !important;
}

.footer ul li a:hover {
  text-decoration: underline;
  color: #FFFFFF;
}

.footer .footer1 {
  font-size: 14px !important;
  color: #cbcbcb;
}

.footer-mod {
	padding: 50px 20px;
	color: #fff;
}

.container-footer {
	background-color: #333;
	color: #fff;
	margin-top: 0;
}

.container-footer .grid-child {
	padding: 10px 20px;
	margin: 0 auto;
}

.container-footer-mod {
	background-color: #589d36;
	color: #fff;
	margin-top: 0;
	justify-content: start;
}

.container-footer-mod .backpic-full {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
	min-height: 400px !important;
}

.container-footer-mod a {
	color: #ffffff;
}

.container-footer-mod a:hover{
	color: #f7f7f7;
	text-decoration: none;
}

.container-footer-mod .mod-list li a {
    text-decoration: underline;
}

.container-footer-mod .mod-list li a:hover {
    text-decoration: none;
}

.container-footer-skyline {
	background-color: #fff;
	color: #333333;
	margin-top: 100px;
}

.container-footer-skyline .grid-child {
	min-height: 400px;
	align-items: flex-start;
	justify-content: flex-start;
    background-image: url(../images/skyline_neues-schloss.png);
    background-repeat: no-repeat;
    background-position: bottom right;
	background-size: contain;
}

.container-footer {
    background-image: none;
}

.container-banner {
	margin-top: -50px;
}

body > div.container-banner.full-width img .headerpic {
	height: auto;
	width: 100%;
	margin: 0 auto;
	display: block;
}

.container-topbar {
    background: #bec5a4;
	text-align: center;
	font-size: 0.9rem;
    line-height: 1.1rem;
    color: #333;
}

.container-topbar .grid-child {
	padding: 0.4em;
}

.container-topbar a {
    color: #000;
	text-decoration: none;
}

.container-topbar a:hover {
	text-decoration: underline;
}

.container-header .mod-menu.topmenu {
	display: flex;
	justify-content: flex-end;
	margin-right: 25px;
}

.container-header .mod-menu.topmenu > li > a {
	color: #333;
	text-decoration: none;
}

.container-header .mod-menu.topmenu > li > a:hover {
	text-decoration: underline;
}

.mod-menu.topmenu>li:hover:after {
    display: none;
}
@media (width >= 992px) {
    .container-header .mod-menu.topmenu>li:after {
        display: none;
    }
}

.container-banner .backpic-full .own-content {
  overflow: hidden !important;
  justify-content: center;
  text-align: center;
}

.container-component {
  margin-top: 50px;
}

.container-top-a {
  background-color: #fff;
  padding: 30px 15px;
  grid-column: full-start/full-end;
  justify-content: center;
  display: flex;
/*  margin-top: 50px; */
}

.container-top-a .grid-child {
	margin: 50px 0 50px 0;
}

.container-top-b {
	margin-bottom: 30px;
	padding: 30px 15px;
	grid-column: full-start/full-end;
	justify-content: center;
	display: flex;
    background-color: #f0f0f0;
	background-position: 50% 50%;
}

.container-top-b .grid-child {
    margin: 50px 0 50px 0;
    padding: 15px;
    display: flex;
    flex-direction: row;
    align-content: flex-start;
    justify-content: space-around;
    flex-wrap: wrap;
}

.container-top-c {
  background-color: #F0F0F0;
  margin-top: 50px;
  margin-bottom: 30px;
  padding: 30px 15px;
  display: flex;
  grid-column: full-start/full-end;
  justify-content: center;
}

.container-top-c .grid-child {
	margin: 50px 0 50px 0;
}

.container-bottom-a {
  background-color: #F3F3F3;
  padding: 30px 15px;
  grid-column: full-start/full-end;
  justify-content: center;
  display: flex;
  margin-top: 50px;
}

.container-bottom-a .grid-child {
	margin: 50px 0 50px 0;
	flex-direction: column;
}

.container-special {
  margin: 0 0 30px 0;
  padding: 30px 15px;
  grid-column: full-start/full-end;
  justify-content: center;
  display: flex;
}

.container-special .grid-child {
	margin: 50px 0 50px 0;
	flex-direction: column;
}

div.special-wrapper {
	margin-top: 15vh;
	margin-bottom: 20vh;
}

.container-special .backpic-full {
    color: #fff;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 50% 50%;
    background-size: cover;
    background-color: #444;
    margin: 0;
    padding: 0;
}

.backpic-full .backpic-overlay {
	margin: 0;
    padding: 0;
    z-index: 2;
    background: rgba(80, 80, 80, 0.4);
    width: 100%;
    height: 100%;
}

.container-special .backpic-full .backpic-content {
  padding: 180px 30px;
  z-index: 5;
}

.container-bottom-b {
  border-top: 5px solid var(--orange);
  background-color: none;
  padding: 30px 15px;
  grid-column: full-start/full-end;
  justify-content: center;
  display: flex;
  margin-top: 50px;
}

.container-bottom-b .grid-child {
    margin: 50px 0 50px 0;
    display: flex;
    flex-direction: row;
    align-content: flex-start;
    justify-content: space-around;
    flex-wrap: wrap;
}

.container-bottom-c {
  background-color: #f8f0cf;
  padding: 30px 15px;
  grid-column: full-start/full-end;
  justify-content: center;
  display: flex;
  margin-top: 50px;
}

.container-bottom-c .grid-child {
    margin: 50px 0 50px 0;
    display: flex;
    flex-direction: row;
    align-content: flex-start;
    justify-content: space-around;
    flex-wrap: wrap;
}

.container-bottom-d {
  background-color: none;
  padding: 30px 15px;
  grid-column: full-start/full-end;
  justify-content: center;
  display: flex;
  margin-top: 50px;
}

.container-bottom-d .grid-child {
	margin: 50px 0 50px 0;
	flex-direction: column;
}

.active > .page-link, .page-link.active {
    background-color: var(--cassiopeia-color-link);
    border-color: var(--cassiopeia-color-link);
    color: #fff;
}

.margin-right {
	margin-right: 30px !important;
}

.margin-tools-left {
	margin-left: 30px;
}

/* Page Navigation */

nav.pagenavigation {
    margin-top: 50px !important;
}

/* business hours */

.business-hours {
	font-size: 14px;
}

.business-hours .opening {
border-bottom: 1px solid #808080; 
}

.business-hours .all.today,
.business-hours .ind.today {
color: var(--orange);
font-weight:600;
}

/* Rotate */

div.rotate_right-12 {
  float: left;
  transform: rotate(12deg);
}

div.rotate_right-9 {
  float: left;
  transform: rotate(9deg);
}

div.rotate_left-9 {
  float: left;
  transform: rotate(-9deg);
}

div.rotate_left-5 {
  float: left;
  transform: rotate(-5deg);
}

/* 404 */

.container-box404 {
	max-width: 810px !important;
	margin: 0 auto;
}

.animate-spin {
    animation: spin 4s linear infinite;
	transform: rotate(45deg);
}
		
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.page-header h1,
.doubleline h2,
.doubleline h3 {
		text-align: center;
		position: relative;
		text-transform: uppercase;
		margin: 0 0 50px;
		padding: 0 0 12px;
	}

.page-header h1::before,
.doubleline h2::before,
.doubleline h3::before {
    background: var(--link-color);
    height: 4px;
    bottom: -1px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 150px;
    content: " ";
    z-index: 5;
}

.page-header h1::after,
.doubleline h2::after,
.doubleline h3::after {
    background: silver;
    bottom: 0;
    height: 2px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    max-width: 500px;
    content: "";
}

.textspalten {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  column-gap: 30px;
}

nav.mod-breadcrumbs__wrapper {
  margin-bottom: 35px;
  margin-top: -50px !important;
  font-size: 0.9rem;
}

nav.mod-breadcrumbs__wrapper .breadcrumb {
  background-color: #f7f7f7;
  border-radius: 7px;
}

ul.tasks {
  	list-style-type: circle;
  	-webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  	margin-left: 20px;
  -webkit-column-gap: 30px;
	-moz-column-gap: 30px;
	column-gap: 30px;
}

.color-lightgrey {
	padding: 30px;
	background: #F0F0F0;
}

.com-content-category-blog__items {
  margin-top: 35px;
}

/* DPCalendar */

.mod-dpcalendar-upcoming-simple__information a {
	text-decoration: none;
}

.mod-dpcalendar-upcoming-simple__information a:hover {
	text-decoration: underline;	
}

.com-dpcalendar-location__map.dp-location {
	margin-bottom: 50px !important;
}

.com-dpcalendar-event__locations .dp-map {
    width: 100%;
    height: 350px !important;
}

.com-dpcalendar-list .dp-button-bar {
  margin-bottom: 2rem !important;
}

.com-dpcalendar-list .dp-filter__calendars {
  margin-bottom: 2rem !important;
}

.com-dpcalendar-list .dp-filter__form-container {
  margin-top: 3rem;
}

.com-dpcalendar-list .dp-filter__calendars .dp-calendar {
    display: flex;
    align-items: center;
}

.com-dpcalendar-list .dp-filter__calendars .dp-calendar__links {
    margin-top: 0 !important;
	margin-left: 1rem;
}

.mod-dpcalendar-upcoming-simple__information {
  padding-left: 15px !important;
}

.dp-event__title {
	font-size: 1.2rem;
	font-weight: bold;
}

.com-dpcalendar-event__description {
    grid-column: 1 / 4 !important;
    grid-row: 7 / 11 !important;
}

.com-dpcalendar-event__locations {
    grid-row: 11 / 11 !important;
}

.com-dpcalendar-event_small {
    grid-column: 1 / 4 !important;
}

.com-dpcalendar-locations-limited__details {
    display: grid;
    grid-template-columns: auto auto !important;
}

.com-dpcalendar-event__tags-text {
  display: none !important;
}

.com-dpcalendar-list .dp-event__title-dot {
    display: inline-block;
    width: 8px !important;
    height: 20px !important;
    margin-right: 8px !important;
    border-radius: 0 !important;
}

.com-dpcalendar-location .dp-button {
    background-color: var(--cassiopeia-color-primary) !important;
    color: #fff;
    border: 1px solid var(--silver) !important;
}


.com-dpcalendar-location .dp-button:hover {
  background-color: var(--cassiopeia-color-hover) !important;
}

/* Beitragsbild */

.float-center.item-image {
  text-align: center;
}

.right.item-image {
  margin-left: 50px;
  margin-bottom: 20px;
}

.left.item-image {
  margin-right: 50px;
  margin-bottom: 20px;
}

.pic-center {
  text-align: center;
}

.position-sticky {
  position: fixed !important;
  width: 100%;
}

/* Menü Subline */

.menu-subline {
	font-size: 0.9rem;
	line-height: 1.1rem;
}

<!-- swiper -->

.SwiperHeaderFull .swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 150px 0 0 0;
    z-index: 1;
    display: block;
}

.SwiperHeaderFull .swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.SwiperHeaderFull .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 90vh;
    z-index: 1;
    display: flex;
    box-sizing: content-box;
}

.SwiperHeaderFull .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
}

.SwiperHeaderFull .swiper-slide h2 {
	color: #fff;
	font-weight: 800;
}

.SwiperHeaderFull .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover !important;
}

.SwiperHeaderFull .swiper-pagination {
  margin-bottom: 20px;
}

.SwiperHeaderFull .swiper-pagination-bullet {
      width: 25px;
      height: 25px;
      text-align: center;
      line-height: 25px;
      font-size: 14px;
      color: #000;
      opacity: 1;
      background: rgba(0, 0, 0, 0.2);
}

.SwiperHeaderFull .swiper-pagination-bullet-active {
      color: #fff;
      background: var(--swiper-theme-color);
	  width: 35px;
	  height: 35px;
	  line-height: 35px;
	  font-size: 16px;
}

.swiper-button-next,
.swiper-button-prev {
	padding: 40px 25px;
	border-radius: 10px;
    background-color: rgba(185, 185, 185, .2);
    backdrop-filter: blur(7px);
}

.swiper-button-next {
  margin-right: 30px;
  
}

.swiper-button-prev {
  margin-left: 30px;
}

.swiper-button-next:after, .swiper-button-prev:after {
	color: #fff;
}

/* Swiper Collection */

.SwiperCollectionHeader {
	background: #F7F7F7;
	color: white;
	padding: 40px 15px 100px 15px;
	border-radius: 10px;
}

@media (min-width: 991.98px) {
.SwiperCollectionHeader {
		padding: 40px 15px 120px 15px;
	}
}

.SwiperCollection {
	margin-top: -100px;
}

.SwiperCollection button.btn {
	padding: 5px 7px !important;
}

.SwiperCollection .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
}

.SwiperCollection .swiper-slide a {
      border-radius: 10px;
}
	
.SwiperCollection a {
  text-decoration: none;
  color: var(--cassiopeia-color-link);
}

.SwiperCollection .swiper-pagination-bullet {
    width: 25px;
    height: 8px;
	border-radius: 0;
}

.SwiperCollection .swiper-pagination-bullet-active {
	background: #333 !important;
}

.SwiperCollection .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.SwiperCollection .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 8px !important;
}

.SwiperCollection .bg-light {
    background-color: #ecebe9 !important;
}

.SwiperCollection .card-animation {
    cursor: pointer;
}

.SwiperCollection .card-animation .link-animation {
    transform: translate(20px);
    transition: transform .2s;
}

.SwiperCollection .card-animation .button-chevron {
    opacity: 0;
    transition: opacity .2s ease-in-out;
}

.SwiperCollection .card-animation:hover .link-animation {
    transform: translate(0);
}

.SwiperCollection .card-animation:hover .button-chevron {
    opacity: 1;
}

/* Progress ScrollTop */

@media (min-width: 320px) {
    .btn-scroll-top.active-progress {
        opacity: 1;
    }
}

.btn-scroll-top.active-progress {
    transform: translateY(0);
    visibility: visible;
	opacity: 1;
}
.btn-scroll-top,
.btn-scroll-top:after {
    cursor: pointer;
    display: block;
    height: 3rem;
    width: 3rem;
}
.btn-scroll-top {
    background-color: #f7f7f7;
    border-radius: 7px;
    bottom: 80px;
    opacity: 0;
    position: fixed;
    right: 10px;
    transform: translateY(0.75rem);
    transition: all 0.2s linear, margin-right 0s;
    visibility: hidden;
    z-index: 9999;
}

.btn-scroll-top:hover {
    background-color: var(--orange);
	color: #fff;
}

.btn-scroll-top:after {
    color: #333;
	content: "\f062";
    font-family: "Font Awesome 6 Free" !important;
    font-size: 1.3rem;
	font-weight: bold;
    left: 0;
    line-height: 3rem;
    position: absolute;
    text-align: center;
    top: 0;
    transition: all 0.2s linear;
    z-index: 100;
}

.btn-scroll-top:hover:after {
    color: #fff;
}

.btn-scroll-top svg path {
	fill: none;
}

.btn-scroll-top svg.progress-square path {
	stroke: var(--orange);
	stroke-width: 3;
	box-sizing: border-box;
	transition: all .2s linear;
}

/* Color Overlay Teaser */

.color-teaser .card::after {
	content: "";
	background-color: rgba(8, 85, 125, 0.8);
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
}

.color-teaser .card {
	background-image: url('../../../../../images/module/color-overlay-teaser.jpg');
	background-attachment: fixed;
	background-position: 50%;
	background-size: cover;
}

.color-teaser .card-body {
	padding: 80px 0 !important;
	z-index: 1;
}

/* FLAGS */

#flags {
  position: fixed;
  right: 0;
  bottom: 210px;
  text-align: right;
  z-index: 500; }

#flags a {
  float: right;
  clear: both;
  background: #fff;
  display: block;
  height: 59px;
  width: 59px;
  overflow: none;
  margin: 5px 0;
  text-align: center;
  line-height: 58px;
  box-shadow: 0 0 6.5px 1px rgba(0, 0, 0, 0.29);
  color: #bf1616;
}

#flags a i {
  font-size: 20px; }
  
#flags a span {
  font-size: 18px; }

#flags a:hover {
  width: auto;
  background: var(--cassiopeia-color-hover);
  padding: 0 20px 0 20px;
  color: #fff; }

#flags a:hover span {
  display: inline-block;
  padding-left: 20px; }

#flags a span {
  display: none;
  color: #fff;
}
  
/* Versatz */

.versatz-wrapper {
    border-radius: 18px;
	max-width: 1400px;
	margin: 0 auto;
	background: silver;
}

.versatz-wrapper .image {
    margin-bottom: 0;
}

@media (min-width: 767.98px) {
	.versatz-wrapper .image {
		margin-bottom:-150px;
	}
}

/* Container pricing */

.divtable-title {
	font-weight: 600;
	background: var(--cassiopeia-color-primary);
	color: #fff;
}

.accordion-button { 
  font-weight: 600;
  font-size: 1.2rem;
}

.accordion-body a {
	color: var(--cassiopeia-color-link);
}

.accordion-body a:hover {
	color: var(--cassiopeia-color-hover);
	text-decoration: none;
}

/* Accessibility */

.djacc-popup .djacc__openbtn--default  {
	border-radius: 7px !important;
	background: var(--orange) !important;
}

.djacc-opened .djacc-popup.djacc--bottom-left .djacc__openbtn,
.djacc-opened .djacc-popup.djacc--bottom-right .djacc__openbtn,
.djacc-popup.djacc--bottom-left:hover .djacc__openbtn,
.djacc-popup.djacc--bottom-right:hover .djacc__openbtn {
	margin: 0 !important;
    border-radius: 50% !important;
}

/* MegaMenu */

.dj-megamenu-wrapper {
    margin-right: 0;
}

.dj-megamenu-clean {
    margin-right: 0;
 }

.dj-megamenu-clean li a.dj-up_a {
  display: flex !important;
  height: 50px !important;
  padding: 0 10px !important;
  margin: 0 7px;
  font-size: 16px !important;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-transform: none;
  color: #333 !important;
  align-items: center;
}

.dj-megamenu-clean li a.dj-up_a > span {
	height: auto !important;
}

.dj-megamenu-clean li a.dj-up_a:hover {
  color: #333 !important;
}
 
 .dj-megamenu-clean li a.dj-up_a::before{
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  left: 0;
  bottom: -18px;
  background: var(--orange);
  transform: scale3d(0,1,1);
  transform-origin: 50% 50%;
  border-radius: 5px;
}

.dj-megamenu-clean li a.dj-up_a.focus::before,
.dj-megamenu-clean li a.dj-up_a.active::before,
.dj-megamenu-clean li a.dj-up_a:hover::before {
  transform: scale3d(1,1,1);
  transform: scale3d(1,1,1);
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.dj-megamenu-clean li a.dj-up_a.focus,
.dj-megamenu-clean li a.dj-up_a.active {
  color: #333 !important;
}

.dj-megamenu-clean li ul.dj-submenu > li > a {
  font-size: 15px !important;
  line-height: 18px !important;
  padding: 7px !important;
  margin: 10px !important;
  border-radius: 7px;
  border: 2px solid transparent;
}

.dj-megamenu-clean li ul.dj-submenu > li > a:hover,
.dj-megamenu-clean li ul.dj-submenu > li > a.active {
  border: 2px solid var(--orange);
}

.dj-megamenu-clean li:hover > div.dj-subwrap li:hover > div.dj-subwrap,
.dj-megamenu-clean li:hover > div.dj-subwrap li.hover > div.dj-subwrap,
.dj-megamenu-clean li.hover > div.dj-subwrap li:hover > div.dj-subwrap,
.dj-megamenu-clean li.hover > div.dj-subwrap li.hover > div.dj-subwrap {
	top: -10px !important;
	border: 1px solid silver;
	padding: 0 !important;
}

.dj-megamenu-clean li div.dj-subwrap {
    padding: 13px 0 0 0 !important;
}

.dj-megamenu-clean li div.dj-subwrap-in {
	box-shadow: 10px 10px 12px -4px #808080 !important;
    border-radius: 7px !important;
}

.dj-mobile-open-btn {
	margin-right: 20px !important;
}

ul.dj-mobile-light li.dj-mobileitem>a {
    font-size: 0.9rem;
    line-height: 1;
    padding: 15px 10px !important;
}

/* 2nd level */
ul.dj-mobile-light ul li.dj-mobileitem>a {
	padding-left: 25px !important;
}

/* 3rd level */
ul.dj-mobile-light ul ul li.dj-mobileitem>a {
	padding-left: 35px !important;
}

/* 4th level */
ul.dj-mobile-light ul ul ul li.dj-mobileitem>a {
	padding-left: 45px !important;
}

.dj-offcanvas-light .dj-offcanvas-top {
    background: #cde3fd !important;
}

/* Aimy Video */

.AimyVideoEmbedderVideo {
  border: 1px solid silver;
  overflow: hidden;
  background: #F7F7F7;
}

/* Projecthighlight */

	 .projecthighlight-container {
		max-width: 1400px;
		padding: 40px 10px;
	 }
	  
	.projecthighlight_caption {
		position: absolute;
		left: 0.5em;
		width: calc(100% - 1em);
		top: 0px;
	}
	@media (max-width: 768px) {
    .projecthighlight_caption {
        position: relative;
        left: auto;
        width: 100%;
        top: auto;
    }
}
.projecthighlight img {
    width: 100%;
    padding-top: 50px;
}

@media (max-width: 768px) {
    .projecthighlight img {
        padding-top: 0px;
    }
}

	.projecthighlight_caption_inner {
		background-color: #0E6EB2;
		padding: 45px;
		color: #FFFFFF;
		-webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.35);
		box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.35);
	}
	
@media (max-width: 768px) {
    .projecthighlight_caption_inner {
        padding: 35px;
    }
}

/* Products */

.products-wrapper {
    display: block;
    margin: 0 auto;
    padding: 0 20px;
}

.products-item-image {
    display: block;
    width: 100%;
    margin: 0 auto;
}

.products-item-image-wrapper img  {
    overflow-clip-margin: content-box;
    overflow: clip;
	border: 0;
	border-radius: 1rem 1rem 0 0;
}

.products-item {
	margin-bottom: 80px;
}

.products-item + .products-item {
	margin-bottom:100px;
}

.products-item-content {
  position:relative;
  margin-bottom:20px;
}
.products-item-image {
  display:block;
  width:100%;
  margin:0 auto;
}
.products-item-text {
  padding:40px 20px;
  background-color:#ebebeb;
  color:#333333;
}

.products-item-text a {
	text-decoration: none;
	color: var(--cassiopeia-color-primary);
}

.products-item-text a:hover {
	text-decoration: underline;
}

.products-item-headline {
	margin-top: 0;
    margin-bottom: .5rem;
    line-height: 1.5;
	font-size: 1.3rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-style: normal;
    color: #333333;
	}

.products-item-hint {
	font-size:1.375rem;
	font-weight:600;
	margin-top:15px;
	color: var(--cassiopeia-color-primary);
	}

.products-item-link {
	background-color: var(--cassiopeia-color-primary);
	color:#fff;
	display:inline-block;
	padding: .6rem 1rem;
	position:absolute;
	right:30px;
	bottom:0;
    text-decoration: none;
	transform: translateY(50%);
    border-radius: .25rem;
	}

.products-item-link:hover {
	background-color: var(--cassiopeia-color-hover);
	color: #fff;
	}

@media (min-width: 992px){

.products-items {
	margin:0
	}

.products-item+.products-item {
	margin-bottom:100px
	}

.products-item {
    width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
	}
.products-item-image-wrapper {
	width:45%;
	flex-shrink:0;
	flex-grow:0;
	}
	
.products-item-image-wrapper img {
	border-radius: 1rem;
}
.products-item-headline {
	font-size:1.5rem
	}
.products-item-text {
	padding:40px;
	}
.products-item-hint {
	font-size:1.3rem;
	}
.products-item-link {
	right:40px;
	}
}

/* Tabs */

.nav.nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  background: none;
  border: none;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.container-bottom-b .nav-tabs+.tab-content {
	background: #F3F3F3;
}

.nav.nav-tabs .nav-item {
  background: none;
  border: none;
  box-shadow: none;
  -webkit-box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
.nav-link {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.nav.nav-tabs .nav-link {
  margin-bottom: calc(-1 * 1px);
  background: none;
  box-shadow: none ;
  -webkit-box-shadow: none;
  border: none !important;
}

.nav.nav-tabs .nav-link.active {
  color: #333;
  background: none;
  box-shadow: none ;
  -webkit-box-shadow: none;
  border: none;
}

.nav.nav-tabs .nav-link.active:after {
  width: 200px;
  margin-left: -100px;
  left: 50%;
  right: auto;
}

.nav.nav-tabs .nav-item:first-of-type .nav-link,
.nav.nav-tabs .nav-item:last-of-type .nav-link,
.nav.nav-tabs .nav-item:first-of-type .nav-link.active,
.nav.nav-tabs .nav-item:last-of-type .nav-link.active  {
  box-shadow: none ;
  -webkit-box-shadow: none;
  border: none;
}

.tabs-icon {
  display: block;
  padding-bottom: 15px;
  color: #333;
}

.nav.nav-tabs .nav-link.active .tabs-icon {
	  color: var(--cassiopeia-color-primary);
}

.tabs-title {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #333;
  padding-bottom: 10px;
}

.nav-tabs+.tab-content {
  box-shadow: none ;
  -webkit-box-shadow: none;
  border: none;
}

/* BS Team */

.testimonial-card .card-up {
height: 120px;
overflow: hidden;
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem;
}

.testimonial-card .avatar {
width: 110px;
margin-top: -60px;
overflow: hidden;
border: 3px solid #fff;
border-radius: 50%;
}

/* news */

.news {
	background-color: #ede7da;
	padding: 20px;
	font-size: 1.1rem;
}

.news a {
	color: #444;
}

.news a:hover {
	color: var(--cassiopeia-color-hover);
}

/* Suche */

.form-check-input {
  border: 1px solid #333 !important;
}

.com_finder .finder {
  margin-bottom: 50px;
}

.result__title-text {
    font-size: 1rem;
}

.form-control:focus {
	box-shadow: none;
}

.awesomplete > input {
  width: 450px;
}

mark,
.awesomplete mark {
	background: #d9e2eb;
}
.awesomplete li:hover mark {
			background: #003366;
			color: white;
		}

.awesomplete > ul > li:hover {
		background: #d9e2eb;
		color: black;
	}

.awesomplete > ul > li[aria-selected="true"] {
		background: #003366;
		color: white;
	}

.suchbox {
	display: grid;
	justify-content: center;
}

.rotate4 {
	transform: rotate(-4deg);
	padding-left: 50px;
	color: F0F0F0;
}

/* Featured */

@media screen and (min-width: 1024px) {
    .container-wrapper {
        padding: 0 40px;
    }
}
.container-wrapper {
    padding: 0 20px;
}

.featured-container {
    position: relative;
    padding-top: 50px;
    padding-bottom:50px;
}

.featured-header {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

@media screen and (min-width: 1024px) {
    .featured-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 80px;
    }
}

.featured-heading-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

@media screen and (min-width: 1024px) {
    .featured-heading-wrapper {
        gap: 24px;
        align-items: flex-start;
    }
}

.featured-name {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
}

@media screen and (min-width: 1024px) {
    .featured-name {
        font-size: 20px;
    }
}

.featured-title {
    margin: 0;
    font-size: 36px;
	font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.22;
    color: #333;
    letter-spacing: 0.7;
}

@media screen and (min-width: 1024px) {
    .featured-title {
        font-size: 48px;
    }
}

.featured-label {
    max-width: 580px;
    margin: 0;
    line-height: 1.5;
    color: #333;
    text-align: center;
}

@media screen and (min-width: 1024px) {
    .featured-label {
        font-size: 18px;
        text-align: left;
    }
}

@media (max-width: 575.98px) {
  
  .hidden-576 {
	display: none !important;
    }
	.footer ul {
		display: block;
		margin-bottom: 20px;
	}

	.footer ul li {
		display: block;
	}
}

@media (max-width: 791.98px) {

ul.tasks {
   	-webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
	}
  
.right.item-image,
.left.item-image {
  margin-left: 0;
  margin-bottom: 20px;
  text-align: center !important;
  float: none;
	}

.menu-subline {
	font-size: 0.8rem;
	}

.container-special .backpic-full .backpic-content {
  padding: 100px 30px;
  }

}

@media (max-width: 991.98px) {

.hidden-992 {
	display: none !important;
}

.navbar-brand img {
	max-height: 40px;
	width: auto;
}

.navbar-brand .brand-desc {
	font-size: 1rem;
}

.margin-bottom {
	margin-bottom: 0;
}
  
.textspalten {
  -webkit-column-count: 1;
  -moz-column-count: 1;
  column-count: 1;
  column-gap: 30px;
}

.margin-right {
	margin-right: 0;
}
.no-margin-bottom {
	margin-bottom: 0px;
}

.no-margin-top {
	margin-top: 0px;
}

.footer {
  text-align: center !important;
}

.nav.nav-tabs .nav-item {
 margin-top: 20px;
}

#flags {
    display: none;
  }

.news {
	font-size: 1rem;
}

}

@media (max-width: 1023.98px) {

}

@media (max-width: 1191.98px) {

}

@media (max-width: 1288.98px) {

}

@media (max-width: 1399.98px) {

}

/* shape divider */

.upper-modul-borderimage {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
}

.lower-modul-borderimage {
    width: 100%;
    height: 100%;
    display: block;
    position: static;
}

.shape-image-top,
.shape-image-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
	z-index: 10;
}

.shape-image-top img,
.shape-image-bottom img {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 58px;
}

.shape-image-top {
	top: 0;
}

.shape-image-bottom {
    bottom: -2px;
}

