/* CUSTOM STYLES FOR JOOMLA! CASSIOPEIA */

/* Fonts */

/* open-sans-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: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v36-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/open-sans-v36-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* open-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/open-sans-v36-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/open-sans-v36-latin-700.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

:root {
  --body-font-size: 1.1rem;
  --body-line-height: 1.5;
  --cassiopeia-color-primary: #2C5C87;
  --cassiopeia-color-link: #4177aa;
  --cassiopeia-color-hover: #1f4d77;
  --template-link-color: #4177aa;
  --link-color: #4177aa;
  --link-color-rgb: 65, 119, 170;
  --link-hover-color: #1f4d77;
  --link-hover-color-rgb: 31,77,119;
  --body-color: #333333;
  --body-color-rgb: 51,51,51;
  --border-radius-xl: 1.3rem;
  --middle-blue: #4177aa;
  --light-blue: #e6eff7;
  --orange: #ff9100;
  --primary: #e6e6e6;
  --secondary: #c4c4c4;
  --success: #448344;
  --info: #4177aa;
  --warning: #ff9100;
  --danger: #780f2d;
  --light: #f7f7f7;
  --dark: #333333;
  --primary-rgb: 44, 92, 135;
  --secondary-rgb: 196, 196, 196;
  --success-rgb: 68, 131, 68;
  --info-rgb: 65, 119, 170;
  --warning-rgb: 255, 145, 0;
  --danger-rgb: 120, 15, 45;
  --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: #fff;
  --danger-text-emphasis: #fff;
  --light-text-emphasis: #333333;
  --dark-text-emphasis: #fff;
  --primary-bg-subtle: #e6e6e6;
  --secondary-bg-subtle: #c4c4c4;
  --success-bg-subtle: #448344;
  --info-bg-subtle: #4177aa;
  --warning-bg-subtle: #ff9100;
  --danger-bg-subtle: #780f2d;
  --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;
}

.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-primary {
  --btn-color: #fff;
  --btn-bg: var(--cassiopeia-color-primary);
  --btn-border-color: var(--middle-blue);
  --btn-hover-color: #fff;
  --btn-hover-bg: var(--middle-blue);
  --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(--middle-blue);
  --btn-focus-shadow-rgb: 131, 138, 145;
  --btn-active-color: #fff;
  --btn-active-bg: var(--middle-blue);
  --btn-active-border-color: var(--middle-blue);
  --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(--middle-blue);
  --btn-active-border-color: var(--middle-blue);
  --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);
}

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

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

.bg-light-blue {
	background-color: #e6eff7;
}

.text-blue {
  color: var(--cassiopeia-color-primary);
}

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

.site-grid {
	margin-top: 50px;
}

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

a:hover {
	text-decoration: none;
}

/* abbr */

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 #ff9100;}
   abbr[title]::after {content: "" }
}

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

*:focus {
	outline: none;
}

/* 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: 'Open Sans', sans-serif;
  font-weight: 700;
  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 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}

.page-header h2 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}

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

.page-header h2 a:hover,
h2 a:hover {
	text-decoration: underline;
}

address {
    margin: 0  
}

/* grid enhancement */

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

.com-content-category-blog__navigation {
	margin-top: 50px;
}

.com-content-category-blog .blog-items {
    grid-gap: 2rem;
}

@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 ." ". topspec topspec topspec topspec ." ". 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 ." ". 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 ." ". topspec topspec topspec topspec ." ". 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 ." ". bot-d bot-d bot-d bot-d .";
    }
  }
}

@media (max-width: 991.98px) {
  .container-top-a,
  .container-top-b,
  .container-top-special,
  .container-top-c,
  .container-bottom-a,
  .container-special,
  .container-bottom-b,
  .container-bottom-c,
  .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-special > *,
  .container-top-c > *,
  .container-bottom-a > *,
  .container-special,
  .container-bottom-b > *,
  .container-bottom-c > *,
  .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-special .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;
  }

}

.container-header-content {
  position: relative;
  z-index: 12;
  color: #FF0000;
  margin: 0;
}

.container-header .navbar-brand {
  z-index: 14;
}

.container-header .navbar-tools {
  margin-top: 9px;
  z-index: 14;
}

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

.container-header .container-nav {
	background: var(--cassiopeia-color-primary);
	justify-content: center;
    padding-bottom: 0;
	margin-top: 10px;
	color: #FFF;	 
}

.container-header .container-nav .grid-child {
	display: flex;
	justify-content: center;
	padding: 0;
}

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

.container-top-special {
  grid-area: topspec;
  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-bottom-d {
  grid-area: bot-d;
  position: relative;
}

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

.footer {
  margin-top: 0;
  background-color: #1e1e1e;
}

.footer-mod {
	padding: 30px 15px;
	color: #FFFFFF;
}

.footer-mod a {
	color: #FFFFFF;
}

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

.container-footer-mod {
	background-color: #333333;
	color: #fff;
	margin-top: 0;
}
.container-footer-mod .grid-child {
	padding: 0 20px;
	margin: 0 auto;
}

.container-footer-mod .grid-child,
.container-footer-mod.full-width .grid-child {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
	justify-content: center !important;
}

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

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

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

.header {
	border-bottom: 1px solid #808080;
	background-color: #ffffff;
}

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

.container-banner {
    margin: -50px 0 0 0 !important;
}

.container-banner .backpic-full {
    color: #333333;
    margin: -50px 0 0 0 !important;
    padding: 35px 0 0 0 !important;
/*  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../../../../../images/header/bg_header-start.jpg"); */
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 50% 50%;
    background-size: cover;
    background-color: #F0F0F0;
}

.container-topbar {
    background: #F0F0F0;
	font-size: 13px;
    line-height: 20px;
    color: #333333;
}

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

.container-topbar a:hover {
    color: var(cassiopeia-color-hover);
	text-decoration: underline;
}

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

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

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

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

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

.no-margin-bottom {
	margin-bottom: -50px;
}

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

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

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

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

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

.container-top-a .grid-child {
	justify-content: center;
}

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

.container-top-b .grid-child {
  padding: 15px;
}

.container-top-special {
	padding: 30px 15px;
	grid-column: full-start/full-end;
	justify-content: center;
	display: flex;
	background-position: 50% 50%;
}

.container-top-special .grid-child {
  padding: 15px;
  margin: -30px 0 50px 0;
  background-color: #e6e6e6;
  /* background: linear-gradient(30deg, rgba(230,239,247,1) 35%, rgba(203,217,229,1) 65%); */
  border-radius: 7px;
}

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

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

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

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

.container-special .backpic-full {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 50% 50%;
    background-size: cover;
	color: #fff;
	background-color: var(--cassiopeia-color-primary);
	padding: 30px;
}

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

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

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

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

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

.container-bottom-d .grid-child {
	margin: 30px 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: 15px;
}

img .digital-it {
	margin: 0 auto;
}

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

/* Swiper Collection */

.SwiperCollectionHeader {
	background: var(--cassiopeia-color-primary);
	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;
}

/* Partial Border */

div.partial-border {
margin: 0 auto;
padding: 40px;
max-width: 1200px;
background: none;
position: relative;
z-index: 999;
border: 12px solid transparent;
align-items: center;
justify-content: center;
}

div.partial-border::before,
div.partial-border::after  {
content:' ';
width: 15%;
height: calc(100% + 12px);
position: absolute;
top: 0;
z-index: 3;
border-top: 12px solid #fff;
border-bottom: 12px solid #fff;
top:-6px
}
div.partial-border::before {
margin-left:-18px;
left:0;
border-left: 12px solid #fff;
}
div.partial-border::after {
margin-right: -18px;
right:0;
border-right: 12px solid #fff;
}

/* Special */

div.special-wrapper {
    transform: rotate(-3deg);
	margin-top: 15vh;
	margin-bottom: 20vh;
	z-index: 15;
}

div.special-wrapper::before {
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
/*  background: linear-gradient(20deg, rgba(31, 77, 119, 0.5) 0%, rgba(31, 77, 119, 0) 70%); */
}

div.special-wrapper-in {
	overflow: hidden;
	background-color: rgba(185, 185, 185, .1); 
    backdrop-filter: blur(20px);
    border-radius: 10px;
    color: #FFF;  
    word-wrap: break-word;
}

div.special-wrapper-in-light {
	overflow: hidden;
	background-color: rgba(185, 185, 185, .1); 
    backdrop-filter: blur(20px);
    border-radius: 10px;
    color: var(--middle-blue);
}

h1.special {
	font-size: 3.5rem;
	line-height: 1.4;
	color: #fff;
    text-shadow: 1px 1px 2px #333, 0 0 5px #F0F0F0;
	letter-spacing: 4px;
/*	transform: rotate(-5deg); */
	margin-bottom: 50px;
}

div.special-in {
/*  background-color: rgba(185, 185, 185, .2); 
    backdrop-filter: blur(15px);
	border-radius: 10px; */
	max-width: 900px;
}

p.special-sub {
	text-shadow: 1px 1px 2px #333, 0 0 10px #F0F0F0;
	font-size: 1.4rem;
	line-height: 1.2;
}

p.special-text {
	font-size: 1rem;
	line-height: 1.2;
}


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

.mod-breadcrumbs {
	font-size: 0.9rem;
}

.mod-breadcrumbs a {
  color: #2c5c87;
}

/* border-ms */

.center-border-ms h2,
.center-border-ms h3 {
		text-align: center;
		position: relative;
		text-transform: uppercase;
		margin: 0 0 50px;
	}
	
.center-border-ms h2::before,
.center-border-ms h3::before {
			content: '';
			position: absolute;
			width: 150px;
			max-width: 100%;
			height: 3px;
			bottom: -15px;
			background: var(--middle-blue);
		}

.container-bottom-d .center-border-ms h2::before,
.container-bottom-d .center-border-ms h3::before,
.container-footer-mod .center-border-ms h2::before,
.container-footer-mod .center-border-ms h3::before {
		background: #fff;
}

.center-border-ms h2::before,
.center-border-ms h3::before {
			margin-left: -75px;
			left: 50%;
			right: auto;
}
	
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;
}

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

/* Beitragsbild */

.image-center,
.pic-center,
.float-center {
  text-align: center;
}

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

/* Teaser BigPic */

.bigpic-content-wrapper {
   color: #fff;
}

.bigpic-content {
    background: #4177aa;
	margin: -35px 0 30px 0;
    padding: 20px 15px 20px 15px;
}

.bigpic-content .over_headline {
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: normal;
}

.bigpic-media {
	   margin: 0 calc((50% - 50vw) + 10px);
}

.bigpic-media img {
	   display: inline-block;
       vertical-align: middle;
	   width: 100%;
	   height: auto;
       -ms-interpolation-mode: bicubic;
}

@media (max-width: 768px) {
    .container {
        max-width: none !important;
    }
}

@media only screen and (min-width: 768px) {
    .bigpic-content {
        margin-top: 220px !important;
        padding: 40px 30px 30px 40px !important;
        position: relative !important;
    }

	 .bigpic-content::before {
        content: '';
        background: rgba(31, 77, 119, 0.8);
        width: 40px;
        height: 40px;
        position: absolute;
        top: 40px;
        left: -20px;
    }
	.bigpic-media {
       margin-left: calc((-100% / 9* 1) - 2rem* 0) !important; 
       margin-right: calc((-100% / 4* 7) - 2rem* 0) !important;
    }
}

@media only screen and (min-width: 992px) {
    .bigpic-content {
        margin-top: 130px !important;
        padding: 40px 30px 30px 40px !important;
        position: relative !important;
    }

	 .bigpic-content::before {
        content: '';
        background: rgba(31, 77, 119, 0.8);
        width: 40px;
        height: 40px;
        position: absolute;
        top: 40px;
        left: -20px;
    }
	.bigpic-media {
       margin-left: calc((-100% / 4* 0) - 2rem* 0) !important; 
       margin-right: calc((-100% / 4* 2) - 2rem* 0) !important;
    }
}

@media only screen and (min-width: 1200px) {
    .bigpic-content {
        margin-top: 180px !important;
        padding: 80px 40px 40px 60px !important;
		position: relative !important;
    }
	.bigpic-content::before {
        width: 60px;
        height: 60px;
        top: 60px;
        left: -30px;
    }
	.bigpic-media {
        margin-left: calc((-100% / 7* 0) - 2rem* 0) !important;
        margin-right: calc((-100% / 7* 2) - 2rem* 0) !important;
    }
}

/* FLAGS */

#flags {
  position: fixed;
  right: 0;
  top: 300px;
  text-align: right;
  z-index: 1000;
}

#flags a {
  float: right;
  clear: both;
  background: #fff;
  display: block;
  height: 48px;
  width: 58px;
  overflow: hidden;
  margin: 3px 0;
  text-align: center;
  line-height: 48px;
  color: var(--cassiopeia-color-primary);
  border: 1px solid var(--cassiopeia-color-hover);
  border-radius: 7px 0 0 7px;
}

#flags a i {
  font-size: 1.2rem;
}
  
#flags a span {
  font-size: 1rem;
}

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

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

#flags a:hover i {
  color: #fff !important;
}

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

/* .blink {
  animation: blink 1.5s infinite;
}


@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
*/

/* Back to Top */

#back-top {
	position: fixed !important;
	bottom: 80px;
	right: 10px;
	border-radius: 7px;
    box-sizing: border-box;
	padding-top: 11px;
	height: 48px;
	width: 48px;
	color: #FFFFFF;
	background-color: var(--cassiopeia-color-primary);
	border: 2px solid var(--cassiopeia-color-primary);
	text-align: center;

}

.back-to-top-link.visible {
  opacity: 1;
}
.back-to-top-link:hover,
.back-to-top-link:focus {
  color: var(--cassiopeia-color-primary) !important;
  background-color: #FFFFFF !important;
  border-color: var(--cassiopeia-color-primary) !important;
}

/* Language */

#language {
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 10000;
}

div.mod-languages {
  background: var(--cassiopeia-color-primary);
  border-radius: 7px 7px 0 0;
  border: 2px solid var(--cassiopeia-color-link);
  border-bottom: none;
  padding: 5px;
  width: 140px;
  margin-left: -60px;
  text-align: center;
}

div.mod-languages li {
  display: inline-block;
}

div.mod-languages li.lang-active {
  border: 1px solid #333;
}

/* BS Accordion */

h2 .accordion-header {
	
}

.accordion-collapse {
	background: var(--accordion-active-bg);
}

.accordion-button {
	outline: none;
	font-size: 1.2rem;
	font-weight: bold;
}
.accordion-button:hover {
	color: var(--cassiopeia-color-primary);
}
.accordion-item {
	border-bottom: 1px solid #808080;
}

/* business hours */

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

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

/* Accessibility */

.djacc-popup .djacc__openbtn--default  {
	border-radius: 7px !important;
	background: var(--cassiopeia-color-primary) !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;
}
		
/* DJMegaMenu */

.dj-megamenu-clean {

 }

.dj-mobile-open-btn {
  min-width: 105px !important;
}

.dj-megamenu-clean li a.dj-up_a {
  padding: 0 23px !important;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.dj-megamenu-clean li a.dj-up_a::after {
      content: '';
      position: absolute;
      top: 60px;
      height: 3px;
      width: 0%;
      bottom: 0;
      left: 0;
      right: auto;
      pointer-events: none;
      z-index: 500;
}

.dj-megamenu-clean li a.dj-up_a.active::after,
.dj-megamenu-clean li a.dj-up_a:hover::after {
      background: var(--orange);
	  width: 100%;
}

.dj-megamenu-clean li:hover > div.dj-subwrap,
.dj-megamenu-clean li.hover > div.dj-subwrap {
	z-index: 500;
}

.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 {
	z-index: 600;
}

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

.dj-megamenu-clean .dj-badge,
ul.dj-mobile-light li.dj-mobileitem .dj-badge {
  background:rgba(44, 92, 135, 1);
  color:rgba(255, 255, 255, 1);
}

.dj-megamenu-clean li ul.dj-submenu > li > a {
  font-size: 1rem !important;
  line-height: 1.2rem !important;
  padding: 12px !important;
}

.dj-megamenu-clean li a.dj-up_a span.dj-badge,
.dj-megamenu-clean li ul > li > a span.dj-badge,
ul.dj-mobile-light li.dj-mobileitem > a span.dj-badge {
	padding: .2em .3em;
	margin-right: 7px;
}

ul.dj-mobile-light li.dj-mobileitem>a {
	padding: 15px !important;
	font-size: 15px !important;
}

.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: -3px !important;
	border: 3px solid silver;
	padding: 0 !important;
}

.dj-mobile-open-btn.dj-fa-0 .dj-mobile-open-icon::before {
	content: " " !important;
	display: inline-block;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
.dj-mobile-open-btn.dj-fa-0 .dj-mobile-open-icon {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 42px;
}

/* DjMediaTools */

.dj-mslider-in {
	margin-top: -10px !important;
}

.headerslider .dj-slide {
	border-radius: 0 0 25px 25px !important;
}

.startbanner .dj-slide-in {
	border: 5px solid white !important;
}

.dj-mslider a.dj-load-button {
	width: 35px !important;
    height: 15px !important;
    background: transparent !important;
    border: 2px solid var(--orange) !important;
    border-radius: 3px !important;
	opacity: 0.6 !important;
}

.dj-mslider a.dj-load-button-active {
	border: 2px solid var(--orange) !important;
	background: var(--orange) !important;
}

.dj-mslider a.dj-load-button:hover,
.dj-mslider a.dj-load-button-active:hover {
	opacity: 1 !important;
}

/* Versatz */

.versatz-wrapper {
    border-radius: 18px;
	background: #e6e6e6;
}

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

.versatz-wrapper .img-fluid {
		max-height: 600px;
        width: auto;
}

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


/* Dropfiles */

.dropfiles-content.dropfiles-content-default a:not(.download-all):not(.download-selected) {
    transition: none !important;
}

.dropfiles-content, .dropfiles-dropblock-content {
	margin-top: 0 !important;
	}
.dropfiles-content-multi {
    margin-bottom: 0 !important;
	}
.dropfiles-container {
	margin: 0 !important;
	}
.dropfiles-content .dropfiles-categories {
	padding: 0 !important;
	}
.dropfiles-content .dropfiles-categories h2 {
	font-size: 1rem !important;
	color: #333333 !important;
	}
.dropfiles-content-table .mediaTableWrapperWithMenu {
	padding-top: 0 !important;
	}
.mediaTableWrapperWithMenu {
	margin-top: 0 !important;
	padding-top: 0 !important;
	}
.dropfiles-content-table.colstyle .mediaTableMenu {
	margin-top: 15px !important;
	}
.dropfiles-content-table.dropfiles-content .table td {
    padding: 8px 0 8px 5px !important;
	}
.dropfiles-content-table.dropfiles-content .table thead th {
    padding: 5px 0 5px 10px !important;
	font-size: 1rem !important;
	}
.dropfiles-content-table.dropfiles-content .table {
	padding: 0 5px !important;
	}
.dropfiles-content-table.dropfiles-content .table td.file_title a.title {
	color: #333333 !important;
	}
.dropfiles-content-table.dropfiles-content .table td.file_title a.title:hover {
    color: var(--cassiopeia-color-link) !important;
}

/* xmas-edges */

.own.xmas-edges .mod-custom.custom {
	border: 2px solid #E6E6E6;
    background-color: #F7F7F7;
    padding: 80px 80px 80px 190px;
}

.own.xmas-edges .mod-custom.custom:before {
    background-image: url(../images/xmas-zweige-oben.png);
}
.own.xmas-edges .mod-custom.custom:before {
    content: '';
    position: absolute;
    left: 0;
    right: auto;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: top left;
    pointer-events: none;
}

.own.xmas-edges .mod-custom.custom:after {
    background-image: url(../images/xmas-zweige-unten.png);
}

.own.xmas-edges .mod-custom.custom:after {
    left: auto;
    right: 0;
    bottom: 0;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: bottom right;
    pointer-events: none;
}

@media screen and (max-width: 640px) {
	.own.xmas-edges .mod-custom.custom {
    padding: 25px;
}
	
.own.xmas-edges .mod-custom.custom:before,
.own.xmas-edges .mod-custom.custom:after {
	background-image: none;
	}
}

/* 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: 'Open Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #333333;
	}

.products-item-hint {
	font-size:1.375rem;
	font-weight:bold;
	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: #F5F5F5;
}

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

/*
.nav-link {
  display: block;
  text-decoration: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: 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: var(--body-color);
  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;
  background-color: var(--cassiopeia-color-primary);
}

.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-weight: bold;
  font-size: 1.2rem;
  color: #333;
  padding-bottom: 10px;
}

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

/* DJ Catalog */

#djcatalog .djc_items .djc_item_bg,
#djcatalog .djc_related_items .djc_item_bg {
    background-image: none !important;
    background-color: #F7F7F7 !important;
}
#djcatalog .djc_items .djc2_cols_1 .djc_image,
#djcatalog .djc_items .djc2_cols_2 .djc_image {
    margin: 0 25px 10px 0px !important;
}

#djcatalog .djc_subcategory .djc_title h3 {
	font-weight: normal;
	padding: 10px 20px;
	border: 2px solid var(--cassiopeia-color-primary);
}
#djcatalog .djc_subcategory .djc_title h3 a {
	text-decoration: none;
}
#djcatalog .djc_subcategory .djc_title h3 a:hover {
	color: var(--cassiopeia-color-hover);
	text-decoration: underline;
}

.djc_item.mod_djc_item .djc_title h4 {
	margin-bottom: 0.5rem;
}

#djcatalog .djc_item .djc_title h3,
.djc_item.mod_djc_item .djc_title h4 {
	font-weight: normal !important;
}
#djcatalog .djc_item .djc_title h3 a,
.djc_item.mod_djc_item .djc_title h4 a {
	text-decoration: none;
    color: #2c5c87;
}

#djcatalog .djc_item .djc_title h3 a:hover,
.djc_item.mod_djc_item .djc_title h4 a:hover {
	text-decoration: underline;
}

div.mod_djc_item .djc_category_info,
div.mod_djc_item .djc_producer_info,
div.mod_djc_item .djc_price {
    0.9rem !important;
    opacity: 1 !important;
    margin: 10px 0 !important;
}

div.mod_djc_item {
    padding: 10px 20px !important;
    background-color: #F7F7F7 !important;
    margin-bottom: 10px !important;
}

#djcatalog .djc_td_title {
	
}
#djcatalog .djc_td_title a {
	font-size: 1.1rem;
	text-decoration: none;
}
#djcatalog .djc_td_title a:hover {
	text-decoration: underline;
}

#djcatalog .djc_desc_wrap {
	margin-top: 30px;
}

#djcatalog .djc_attributes {
	margin: 50px 0;
}

#djcatalog .djc_location h3{
	font-size: 1.3rem;
}

#djcatalog .djc_map_wrapper {
	margin-top: 50px;
}

#djcatalog .djc_atoz li > a {
	text-decoration: none;
}

#djcatalog .djc_atoz_list li a span {
	background-color: var(--cassiopeia-color-primary) !important;
	background-image: none !important;
}

#djcatalog .djc_atoz_list li span span {
	background-color: var(--cassiopeia-color-primary) !important;
	background-image: none !important;
}

#djcatalog .djc_atoz_list li a:hover span,
#djcatalog .djc_atoz_list li a span.active {
	background-color: var(--cassiopeia-color-hover) !important;
	background-image: none !important;
}

#djcatalog .djc_thumbnails {
    display: flex;
    clear: both;
    align-items: center;
    justify-content: center;
}

/* Suche */

.container-header .mod-finder {
    margin-top: 20px;
}

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

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

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

.awesomplete > input {
    width: 350px;
}

@media (width >= 992px) {
    .awesomplete>input {
        max-width: none;
    }
}

.awesomplete>input {
    max-width: 200px;
}

mark,
.awesomplete mark {
	background: #d9e2eb;
}
.awesomplete li:hover mark {
			background: var(--cassiopeia-color-primary);
			color: white;
		}
.awesomplete > ul {
    background: #FFF !important;
  }
.awesomplete > ul > li:hover {
		background: #FFF;
		color: black;
	}

.awesomplete > ul > li[aria-selected="true"] {
		background: var(--cassiopeia-color-primary);
		color: white;
	}
.awesomplete>ul {
    z-index: 1600 !important;
}

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

.com-finder>*+*, .com-finder__results>*+* {
    margin-top: 2.5em;
}

.form-control {
  color: #333;
  border-color: #555555;
}

textarea,
select,
.form-control:where(input)::placeholder, .uk-input::placeholder {
  color: #000000;
}

/* Footer */

.mod-footer,
.footer-mod {
	font-size: 15px !important;
}

.footer .grid-child {
	padding: 1.5rem .5em;
}

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

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

.footer ul li a {
  font-size: 15px !important;
  text-decoration: underline;
}

.footer ul li a:hover {
  text-decoration: none;
  color: #F0F0F0;
}

.footer .footer1 {
  font-size: 15px !important;
}

/* Teams Profile */

.jmm-team-profiles.default .jmm-name {
		color: inherit;
		font-size: 1em;
		font-weight: bold;
		margin-bottom: 15px;
	}

.jmm-team-profiles.default .jmm-item .jmm-name a {
		text-decoration: none;
		color: #333333;
}
.jmm-team-profiles.default .jmm-item .jmm-name a:hover {
		text-decoration: underline;
		color: var(--cassiopeia-color-hover);
}
.jmm-team-profiles.default .jmm-avatar .square img {
    border-radius: 8px;
}
.jmm-team-profiles.default .jmm-profession {
		font-size: 0.9em;
	}
.jmm-team-profiles.default .jmm-social .jmm-link span.jmm-ico {
		background: var(--cassiopeia-color-primary);
		color: #FFFFFF;
		border: none;
	}
.jmm-team-profiles.default .jmm-item a {
		text-decoration: underline;
		color: var(--cassiopeia-color-primary);
}
.jmm-team-profiles.default .jmm-item a:hover{
		text-decoration: none;
		color: var(--cassiopeia-color-hover);
}
.jmm-team-profiles.default .jmm-social .jmm-link {
		background: #FFFFFF;
		color: var(--cassiopeia-color-primary);
	}
.jmm-team-profiles.default .jmm-social .jmm-link :hover {
		background: #FFFFFF;
		color: var(--cassiopeia-color-hover);
	}
.container-footer-mod .jmm-team-profiles.default .jmm-name {
	color: #F0F0F0 !important;
}
.container-footer-mod .jmm-team-profiles.default .jmm-item a {
		text-decoration: underline;
		color: #FFFFFF;
}
.container-footer-mod .jmm-team-profiles.default .jmm-item a:hover{
		text-decoration: none;
		color: #F0F0F0;
}

/* Aimy Video */

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

.AimyVideoEmbedderVideo p {
  font-size: 16px;
  padding: 15px;
}

/* Mehr Features */

.mehr-features {
	color: #333;
}

.mehr-features .card.card-shadow {
    -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
    box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}

.mehr-features a {
	text-decoration: none;
	color: #333;
}

.mehr-features .card-hover:hover {
	background: #1f4d77;
    background: -webkit-linear-gradient(legacy-direction(to right), #1f4d77 0%, #4177aa 100%);
    background: -webkit-gradient(linear, left top, right top, from(#1f4d77), to(#4177aa));
    background: -webkit-linear-gradient(left, #1f4d77 0%, #4177aa 100%);
    background: -o-linear-gradient(left, #1f4d77 0%, #4177aa 100%);
    background: linear-gradient(to right, #1f4d77 0%, #4177aa 100%);
}

.mehr-features .card-hover:hover .bg-success-grediant {
	  color: #ffffff;
    text-fill-color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.mehr-features .card-hover:hover .mehr-title {
	color: #ffffff;
}

.mehr-features .bg-success-grediant {
	background: #1f4d77;
    background: -webkit-linear-gradient(legacy-direction(to right), #1f4d77 0%, #4177aa 100%);
    background: -webkit-gradient(linear, left top, right top, from(#1f4d77), to(#4177aa));
    background: -webkit-linear-gradient(left, #1f4d77 0%, #4177aa 100%);
    background: -o-linear-gradient(left, #1f4d77 0%, #4177aa 100%);
    background: linear-gradient(to right, #1f4d77 0%, #4177aa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    font-size: 50px;
}

/*
.mehr-features .wrap-mehr-features .card {
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    -webkit-transition: 0.3s ease-out;
}
*/

.mehr-features .wrap-mehr-features .card:hover {
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
}

.mehr-features p.mehr-title {
	font-size: 16px;
}


/* Additional Features */

.jmm-add-features.default .jmm-title {
	line-height: 1.5 !important;
	font-size: 1.3rem !important;
	color: #333333 !important;
	font-weight: bold !important;
}

.jmm-add-features.default .jmm-title a {
	color: var(--cassiopeia-color-link);
	text-decoration: none;
	font-weight: bold !important;
}

.jmm-add-features.default .jmm-title a:hover {
	text-decoration: underline;
	color: var(--cassiopeia-color-hover);
}

.jmm-add-features.default img {
	border-radius: 8px;
}

.jmm-add-features.default.picshadow img {
	border-radius: 8px;
	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

/* Best features */

.jmm-best-features.default .image-col img {
	self-align: end;
}

.jmm-best-features.default .jmm-title {
	font-weight: bold;
	margin: 0 0 10px !important;
}

/* Timeline */

.jmm-timeline.default .jmm-timeline-in {
    border-left: 3px solid var(--secondary) !important;
}

.jmm-timeline.default .jmm-item:before {
	border: 3px solid #fff !important;
}


/* Teaser */

.teaser-wrapper {
	margin: 30px 20px;
}

.teaser-text {
	color: #FFF;
	padding: 30px;
	background-color: var(--cassiopeia-color-primary);
	border-radius: 10px;
	text-align: center;
	font-size: 1.3rem;
	line-height: 1.6rem;
}

/* article body */

.com-content-article__body > p > img {
	display: flex;
	margin: 0 auto;
}

figcaption {
	font-size: 0.8rem;
}

.com-content-article__body,
.category-desc {
	padding: 20px 0 0 0;
}

/* .item-content p {
	font-size: 1.2rem;
}
*/

/* mod_articles_news */

.newsflash-image {
	position: relative;
}
.newsflash-category {
	position: absolute;
	left: 0;
	bottom: 10px;
	background-color: #1f4d77;
	color: #FFF;
	font-weight: 700;
	padding: 5px 15px;
	border-radius: 0 7px 7px 0;
}

.category-title {
	font-size: 0.8rem;
}

.mod-articlesnews-horizontal p.readmore a {
	--btn-padding-y: .25rem;
    --btn-padding-x: .5rem;
    --btn-font-size: .875rem;
    --btn-border-radius: var(--border-radius-sm);
	text-decoration: none;
	display: block;
}

/* Acymailing */

.acym_module_form .acyfield_text input {
    margin: 15px 0;
	min-width: 380px !important;
    padding: 5px 10px;
}

p.acysubbuttons {
  margin: 30px 0 50px 0;
}

/* baform */

a.ba-form-submit-btn {
	text-decoration: none;
}

/* 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-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;
}

.mod-dpcalendar-upcoming-simple .dp-link {
	color: #1f4d77 !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(--middle-blue) !important;
}


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

@media screen and (max-width: 560px) {
	
h1.special {
	font-size: 1.5rem;
	line-height: 1.3;
}

.AimyVideoEmbedderVideo p {
  font-size: 12px;
}

}


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

.hidden-768 {
	display: none !important;
}	
	
#djcatalog .djc_mainimage {
    text-align: center !important;
	}
}

@media (max-width: 791.98px) {
	
.jmm-add-features.default .jmm-description {
    text-align: center;
  }
  
ul.tasks {
   	-webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }

.dropfiles-container .dropfiles-container-table {
    margin-left: 0 !important;
	}

.bereichstitel {
  padding: 20px;
  font-size: 1.5rem;
  }
  
img .digital-it {
	margin: 15px;
}
  
}

@media (max-width: 991.98px) {

.hidden-992 {
	display: none !important;
}
.navbar-brand img {
	max-height: 45px;
	width: auto;
}

.margin-bottom {
	margin-bottom: 0;
}

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

.container-header .mod-menu.topmenu {
	justify-content: center;
	margin-right: 0;
	flex-direction: row;
}

.container-header .mod-menu.topmenu > li > a {
	padding: 0 10px;
}

div.partial-border {
	padding: 20px;
}

div.special-in {
	padding: 15px;
}


p.special-sub {
	font-size: 1.3rem;
}

.footer ul {
  display: block;
  margin-bottom: 20px;
}

.footer ul li {
  display: block;
}

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

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

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

#flags {
    display: none;
  }

.teaser-wrapper {
	margin: 30px 0 0 0;
}
.teaser-text {
	font-size: 1.1rem;
	line-height: 1.3rem;
	padding: 15px;
}

.news {
	font-size: 1rem;
}

.blog-item .item-content {
	text-align: center !important;
}

.blog-item .item-image {
	align-self: center !important;
}

.mehr-features p.mehr-title {
	font-size: 14px;
}

}

@media (max-width: 1288.98px) {

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

.container-header .mod-finder {
    margin-top: 0;
}

.navbar-brand img {
	max-height: 50px;
	width: auto;
}
.container-nav {
	display: none !important;
}

}

@media (max-width: 1191.98px) {

.container-nav {
	display: none !important;
}

}

@media (max-width: 1399.98px) {


}

@media (max-width: 1919.98px) {

.headerslider .dj-slide {
	border-radius: 0 !important;
}

}

