@charset "utf-8";
/* 
Style "coloured" = Main Colour CD/CI Company
Style "secondary" = Secondary CD/CI Colour (to highlight things, as hover, ..)

Colours:
Stylename | Description | HEX Value | RGB Value
coloured  = blue        = #1273b3   =  rgb 18, 115, 179
secondary = green       = #9bbf2f   =  rgb 155, 191, 47       

bg-green -> green bg, white font
bg-blue -> blue bg, white font
etc.
*/

/* via vendor/bs/css werden more Bootstrap Formats loaded, like 
text-center, text-white, .. added via scss utilities */

/****** Bootstrap 4 *****/
/*
// Extra small devices (portrait phones, less than 576px)
// No media query since this is the default in Bootstrap

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }  
*/


/***** general Setup *****/

/* Google Fonts .. hosted locally */

/* noto-sans-regular - latin NotoSans-Regular.ttf: Copyright 2015-2021 Google LLC. All Rights Reserved. Licensed under the SIL Open Font License, Version 1.1. */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/noto-sans-v27-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/noto-sans-v27-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/noto-sans-v27-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/noto-sans-v27-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/noto-sans-v27-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/noto-sans-v27-latin-regular.svg#NotoSans') format('svg'); /* Legacy iOS */
}
/* noto-sans-700 - latin */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/noto-sans-v27-latin-700.eot');
  src: local(''),
       url('../fonts/noto-sans-v27-latin-700.eot?#iefix') format('embedded-opentype'),
       url('../fonts/noto-sans-v27-latin-700.woff2') format('woff2'), 
       url('../fonts/noto-sans-v27-latin-700.woff') format('woff'), 
       url('../fonts/noto-sans-v27-latin-700.ttf') format('truetype'), 
       url('../fonts/noto-sans-v27-latin-700.svg#NotoSans') format('svg'); 
}
/* Mukta Malar 400 und 700 MuktaMalar-Regular.ttf, MuktaMalar-Bold.ttf: Copyright (c) 2016, Ek Type. All rights reserved. */
/* mukta-malar-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Mukta Malar';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/mukta-malar-v12-latin-regular.woff2') format('woff2'); 
}
/* mukta-malar-700 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Mukta Malar';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/mukta-malar-v12-latin-700.woff2') format('woff2'); 
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* CSS variables to adjust colours centrally */ 
:root {
  --coloured:  #1273b3; /* primary colour */ 
  --secondary: #666; /* secondary colour */
/*** general colours ***/  
  --red:       #ff0000; 
  --green:     #9bbf2f; /* dezenter #bbd2b7; */ 
  --blue:      #abceed; 
  --dark:      #565656; 
  --gray:      #c8c8c8; 
  --white:     #ffffff;
  --black:     #000000;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6,
.col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, 
.col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, 
.col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11,
.col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, 
.col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11,
.col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7,
.col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, 
.col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, 
.col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
  padding-left:0;
  padding-right:0;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

/***needed due to bg image ***/
html, body {
  max-width: 100%;
  height: 100vh;
}

body {
  width: 100%;
	height: 100%;
  background-color: var(--white);
}

html {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
/**** due to bg pic fullsize, otherwise not needed */


body {
  font-family: 'Noto Sans', sans-serif, Arial, Helvetica;
  color: #666;
}

.container-fluid {
  padding-left:0;
  padding-right:0;
}

.h-100 {
  height: 100%!important;
}


/* Limit to FHD on  XXL-Monitors  */
.container-fluid, .row {
  max-width:1920px; 
}

.container {
  width: 100%;
  padding-right: 0; /* 15px; */
  padding-left:  0; /* 15px; */
/*  padding-bottom: 10px;
  padding-top: 10px;  */
  margin-right: auto;
  margin-left: auto; 
  /* override bootstrap */
  --bs-gutter-x: 0; /* 1.5rem; */ 
  --bs-gutter-y: 0;    
}

.pad {
padding-left: 10px;
padding-right: 10px;
}


.row {
/* for BS 4 set to 0, for BS 5 uncomment */ 
  margin-right: 0;
  margin-left: 0;
 
/* bs5 standard =
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
*/ 
/*  padding-top: 20px;
  padding-bottom: 10px;  */
/*  max-width: 100%;  */
}

/* overriding scss defaults */
/* 1140 - 960 - 720 - 540 */
/*
@media (min-width: 1200px) {
  .container { max-width: 1200px; }
}
@media (min-width: 992px) {
  .container { max-width: 992px; }
}
@media (min-width: 768px) {
  .container { max-width: 768px; }
}  
@media (min-width: 576px) {
  .container { max-width: 576px; }
}
*/

/* change order */ 
/*
@media (min-width: 576px) {
  .container { max-width: 90%; }
}
@media (min-width: 768px) {
  .container { max-width: 85%; }
}
@media (min-width: 992px) {
  .container { max-width: 85%; }
}
@media (min-width: 1200px) {
  .container { max-width: 80%; }
}
@media (min-width: 1920px) {
  .container { max-width: 1900px; }
}
*/

/*
@media (min-width: 576px) {
  .container { max-width: unset!important; }
}
@media (min-width: 768px) {
  .container { max-width: unset!important; }
}
@media (min-width: 992px) {
  .container { max-width: unset!important; }
}
@media (min-width: 1200px) {
  .container { max-width: 85%!important; }
}
@media (min-width: 1920px) {
  .container { max-width: 1420px; }
}
*/


/***** Fonts *****/
.big, big {
  font-size: 120%;
  font-weight: 700;
}

.small, small {
  font-size: 70%;
  font-weight: 400;
}

/** coloured and secondary switched because of background in primary colour! **/
/** usually a, h1-h6 = coloured, hover = secondary */
a /* a:visited */ {
  color: var(--dark);    /* secondary */
  text-decoration: none; 
}

/* general, different on coloured bg -> see there */
a:hover, a:focus {
  color: var(--coloured);
}

#navigation a {
  text-decoration: underline; 
  font-weight: 700;
}

#navigation a:hover {
  text-decoration: underline; 
}

#block-bottom a:hover {
text-decoration: none;
}


P {
  font-family: 'Noto Sans', sans-serif, Arial, Helvetica;
}

H1, H2, H3, H4, H5, H6 {
  font-family: 'Noto Sans', sans-serif, Arial, Helvetica;
  font-weight: 800 !important;
  color: var(--coloured); 
}

H1, H2, H3, H4, H5, H6 {
  padding-top: 25px;
  padding-bottom: 5px;
}

/* for projekte boxes */
.card H2 {
padding-top: 7px!important;
}

H1 { font-size: 2rem; }
H2 { font-size: 1.75rem; }
H3 { font-size: 1.50rem; }
H4 { font-size: 1.25rem; }
H5 { font-size: 1.15rem; }
H6 { font-size: 1rem; font-weight: bold;}

@media (min-width: 768px) and (max-width: 991px) {
H1 { font-size: 1.75rem; }
H2 { font-size: 1.50rem; }
H3 { font-size: 1.25rem; }
H4 { font-size: 1.15rem; }
H5 { font-size: 1.05rem; }
H6 { font-size: 1rem; font-weight: bold;}
}

@media (max-width: 767px) {
H1 { font-size: 1.5rem; }
H2 { font-size: 1.25rem; }
H3 { font-size: 1.15rem; }
H4 { font-size: 1.15rem; }
H5 { font-size: 1.05rem; }
H6 { font-size: 1rem; font-weight: bold;}
}


.btn-xl {
  text-transform: uppercase;
  padding: 1.5rem 3rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}

blockquote {
font-size: 2rem;
font-family: 'Mukta Malar', sans-serif, Arial, Helvetica;
}


/*****   Background Colours and Font Colours based on different states   *****/

.coloured, .bg-coloured {
  background-color: var(--coloured);
}

/* Headlines, Text, Links and Hover on coloured background */
.coloured P, .coloured H1, .coloured H2, .coloured H3, .coloured H4, .coloured H5, .coloured H6,
.coloured a, .coloured a:visited, .coloured a:focus, .coloured a:hover, .coloured a:active,
.bg-coloured P, .bg-coloured H1, .bg-coloured H2, .bg-coloured H3, .bg-coloured H4,
.bg-coloured H5, .bg-coloured H6, 
.bg-coloured a, .bg-coloured a:visited, .bg-coloured a:focus, .bg-coloured a:hover, .bg-coloured a:active {
  color: var(--white);
}

/* Headlines, Text, Links and Hover on background in secondary colour */
.secondary P, .secondary H1, .secondary H2, .secondary H3, .secondary H4, .secondary H5, .secondary H6,
.secondary a, .secondary a:visited, .secondary a:focus, .secondary a:hover, .secondary a:active,
.bg-secondary P, .bg-secondary H1, .bg-secondary H2, .bg-secondary H3, .bg-secondary H4,
.bg-secondary H5, .bg-secondary H6, 
.bg-secondary a, .bg-secondary a:visited, .bg-secondary a:focus, .bg-secondary a:hover, .bg-secondary a:active {
  color: var(--white);
}

.bg-white {
  background-color: var(--white);
}
/** slightly white opacity as overlay **/  
.bg-white-opa {
  background-color: rgba(255,255,255,0.6);
}

/* general colours */
.red {
  color: var(--red);
}
.bg-red {
  background-color: var(--red);
  color: var(--white);
}
.bg-red a, .bg-red a:visited {
  color: var(--gray);
}  
.bg-red a:hover, .bg-red a:focus {
  color: var(--black);
}
/* modify #divname to fit "nav id" of outer div container for the navigation */  
#mainnav .bg-red A, #mainnav .bg-red a:visited {
  color: var(--white);
}  
#mainnav .bg-red A:hover, #mainnav .bg-red a:focus {
  color: var(--black);
} 

.blue {
  color: var(--blue); 
}
.bg-blue {
  background-color: var(--blue);
/*  color: var(--white);  */
}
.bg-blue a, .bg-blue a:visited {
/*  color: var(--secondary); */
}  
.bg-blue a:hover, .bg-blue a:focus {
/*  color: var(--dark); */
}
/* modify #divname to fit "nav id" of outer div container for the navigation */  
#mainnav .bg-blue A, #mainnav .bg-blue a:visited {
  color: var(--white);
}  
#mainnav .bg-blue A:hover, #mainnav .bg-blue a:focus {
  color: var(--white);
} 

.green {
  color: var(--green); 
}
.bg-green {
  background-color: var(--green);
  color: var(--white);
}
.bg-green a, .bg-green a:visited {
  color: var(--black);
}  
.bg-green a:hover, .bg-green a:focus {
  color: var(--dark);
}
/* modify #divname to fit "nav id" of outer div container for the navigation */  
#mainnav .bg-green A, #mainnav .bg-green a:visited {
  color: var(--white);
}   
#mainnav .bg-green A:hover, #mainnav .bg-green a:focus {
  color: var(--white);
} 

.black {
  color: var(--black) !important;
}
.bg-black {
  background-color: var(--black);
  color: var(--white);
}
.bg-black a, .bg-black a:visited {
  color: var(--coloured);
}  
.bg-black a:hover, .bg-black a:focus {
  color: var(--white);
}

.white, 
.white P, .white H1, .white H2, .white H3, .white H4, .white H5, .white H6, .white btn {
  color: var(--white);
}

.bg-dark {
  background-color: var(--dark);
}

/** gray = special case, with opacity **/
.bg-gray {
/*  background-color: var(--gray); */
  background: rgb(216, 216, 216); 
  background: rgba(216, 216, 216, .75);
}


.bg-light {
background-color: #ADD8E6!important;
}


#contentarea, .contentarea {
  position: relative;
}

/*#content .row {   /* needed to get rid of "display:flex" via grid.scss, which */
/* display: unset;  /* conflicts the responsive breaking in blog posts / lists  */
                    /* but: shall just affect content area, rest should be flex */
/*  }  */

/* row must be display:flex to have second column (for sidemenu), but then 
blog-items in blog category view don't shrink .. so edited here to fit in */ 
#content .items-row, #content .blog-post, #content .item, 
#content .item-image IMG{
  width: 100%;
  max-width: 90vw;
  height: auto;
}

/* on desktop view sidemeu is right, ordered 1 to be above content on mobile */
@media (max-width: 699px) {
  #contentarea { 
    display: flex; 
    /* Optional, if you want the DIVs 100% width: */ 
    flex-direction: column;
  }
  #contentarea > #sidemenu {
    order: 1;
  }
  #contentarea > #content {
    order: 2;
  }
}

/* set max sizes for images in blog category view (just there,  NOT in article
view etc) => better for text-width next to the images on small devices and 
benefit: bigger images get fitted to same size on thee blog list              */
@media (max-width: 699px) {
  #content .blog .item-image IMG {
    width: 90vw;
    height: auto;
  }
}
@media (min-width: 700px) and (max-width: 749px) {
  #content .blog .item-image IMG {
    max-width: 200px;
    height: auto;
  }
}
@media (min-width: 750px) and (max-width: 1199px) {
  #content .blog .item-image IMG {
    max-width: 250px;
    height: auto;
  }
}
@media (min-width: 1200px) {
  #content .blog .item-image IMG {
    max-width: 100%;
    height: auto;
  }
}

/***** some space around images in articles *****/
/*div[itemprop="articleBody"] IMG.pull-left {
    float: right;
    padding-right: 10px;
}
div[itemprop="articleBody"] IMG.pull-right {
    float: right;
    padding-left: 10px;
}
*/

/*****      more Joomla specific stuff      *****/

/* some space after blog contents before showing next section */
.blog { margin-bottom: 15px; }

/** limit slider size on item-page (referenzen) ***/
.item-page .carousel-item IMG { 
  max-height: 80vh;   /* generally fit to page height */
  max-width:  90vw;   /* if very large screen also fit to page width */
  height: auto;
}

/* set inner area to max. px */
#content {
/*  max-width: 1450px; */
  margin: auto;
}

/* limit width of articles */
div[itemprop="articleBody"]  { max-width: 900px; }

/* in articles (only content area): assign 10px to to right if left-pulled IMG */ 
#content IMG.pull-left {
  /* padding-left: 10px!important; */
  padding-right: 10px!important;
}

/* assign some 10px blank space to the left of images that are pulled right */
#content IMG.pull-right {
  /* padding-left: 10px!important; */
  padding-left: 10px!important;
}

/***** some space around images in J4 articles *****/
/** alternative version to "only for area named=content" limitation as above **/
div[itemprop="articleBody"] IMG.pull-left {
  float: left;
  padding-right: 10px;
}
div[itemprop="articleBody"] IMG.pull-right {
  float: right;
  padding-left: 10px;
}

/*** modules spacing for following modules below / only pos sidemenu ***/
#sidemenu .moduletable, #eventside .moduletable {
  margin-bottom: 30px;
}


/* set values for images in text area */
div[itemprop="articleBody"] IMG.intext {
  width: 250px;
  max-width: 250px;
  height: auto;
}

@media (min-width: 577px) and (max-width: 767px) {
  div[itemprop="articleBody"] IMG.intext {
    width: 175px;
    max-width: 175px;
    height: auto;
  }
}

@media (max-width: 576px) {
  div[itemprop="articleBody"] IMG.intext {
    width: 99%;
    max-width: 99%;
    height: auto;
  }
}


/***** Joomla 4 snip blog css *****/

.blog-items {
  grid-gap: 2em;
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: 1fr;
  margin: 0 0 1em;
} 

.blog-items {
  display: flex;
  /* flex-wrap: wrap; */
  margin-bottom: 1em;
  /* margin-left: -0.5em;
  margin-right: -0.5em; */
  padding: 5px;
  width: 100%;
}

@media (min-width: 992px) {
  .blog-items.columns-2 {
    grid-template-columns: 1fr 1fr;
  }
  .blog-items[class*=" columns-"]>div, .blog-items[class^=columns-]>div {
    flex: 0 1 auto;
    max-width: none;
    width: 47%; /* auto */
  }
}


@media (min-width: 992px) {
  .blog-items.columns-2>div {
    width: 50%;
  }
  .blog-items .blog-item {
    padding: 0;
  }
  .blog-item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0 0.5em 1em;
  }
}


@media (max-width: 991px) {
  .blog-items[class*=" columns-"]>div, .blog-items[class^=columns-]>div {
    flex: 0 1 auto;
    max-width: none;
    width: auto;
}
  .blog-items .blog-item {
    padding: 0;
  }
  .blog-item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0 0.5em 1em;
  }
  .blog-items {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1em;
    padding: 5px;
    width: 100%;
  }
  .blog-item IMG {
    max-width: 100%;
    height: auto;
  }
}


/** joomla UL / LI for articles module to display 3 ..5 .. newest articles **/
/* remove LI type "disc" */
.mod-articles-items UL, .mod-articles-items LI {
    list-style-type: none;
}
/*
ul {
  list-style-image: url('../images/stern.png');
}
*/

ul
{
list-style-type: none;
padding-left: 2rem;
margin: 0;
}
/* unset image and position and padding for #navigation LI later!!! */
li
{
background-image: url('../images/stern.png');
background-repeat: no-repeat;
background-position: 0 .15em;
padding-left: 1.6em;
}

/*** Joomla Modules usually get the custom class, so values like padding, color
     need to be set explicitly again, even if already set in #section areas   */
  
/* some space for items/text in modules */
.custom {
/*  padding-top: 20px; */
  padding-bottom: 20px;
}


[name^="block-start-projekte"] .custom {
padding-bottom: unset!important;
}

.custom P, .custom TR,
.custom H1, .custom H2, .custom H3, .custom H4, .custom H5, .custom H6 {
  padding-left: 25px;
  padding-right: 25px;
}

[name="block-1"] .custom P, [name="block-1"] .custom H2 {
margin-left: -10px;
}


@media (max-width: 1599px) {
[name="block-1"] .custom P, [name="block-1"] .custom H2 {
/* margin-left: -10px!important; */
padding-left: 20px!important;
}
}

#contactdaten .custom P, #contactdaten .custom H4 {
padding-left: 0!important;
}

.custom table {
  margin-left: 25px;
}

/* class "spaced" to add some space between LI items if needed, used in block-7 */
.custom .spaced LI {
padding-bottom: 15px;
}

@media (max-width: 768px) {
  .custom P, .custom TR,
  .custom H1, .custom H2, .custom H3, .custom H4, .custom H5, .custom H6 {
    padding-left: 10px;
    padding-right: 10px;
  }
  #contactmap .custom P, #contactmap .custom H4 {
  padding-left: 10px;
  padding-right: 10px;
  }
  [name^="block-start-"] P, [name^="block-start-projekte"] H2 {     /* set padding for block-start-... like -projekte */
  padding-left: 10px;
  padding-right: 10px;
  }  
}

/* startpage headlines for projekte 1-6 (fix in index) */
  [name^="block-start-projekte"] H2 {     /* set padding for block-start-... like -projekte */
  padding-left: 25px;
  padding-right: 10px;
  }


.text P, .text H1, .text H2, .text H3, .text H4, .text H5, .text H6 {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
}

#footer P, #footer H4 {
  font-weight: 400;
  font-size: 0.9em;
  /* color: var(--gray);  */
}

#footer a {
font-weight: 400;
}


/* remove custom padding for headpic / slider */
#headpic .custom, #slider .custom {
  padding-top: 0; 
  padding-bottom: 0; 
  max-width: 100%;
}

.custom IMG, mySides IMG,
#headpic .custom IMG, #slider .custom IMG {
  max-width: 100%;
  height: auto;
}



/* readmore buttons in blog layout */
.readmore .btn, #contact btn {
  display: inline-block;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid var(--secondary);
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  background-color: var(--green);
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.readmore .btn:hover, #contact btn:hover {
  color: var(--white);
  background-color: var(--coloured);
}

/****** content area styling ******/
/* after end of content -> at end of page above footer */
.footer-logo {
  padding-left: 40px;
  padding-right: 20px;
  padding-top:0;
  margin-top: -15px;
}

.footer-logo IMG {
 /* max-width: 100px;  */
}


#sideinfo {
  position: relative;
  top:   35px;
  right: 55px;
}


/* XXL > Height .. (needed to stretch and fit in div on huge monitors) */
/*
@media (min-height: 1020px) {  
.bg-pic {
  background: url(../images/start-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  background-attachment: fixed;
  -webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
    
}
} 
*/

/*** different background images, each based on selected module position ***/
/***     --> set in index with if else php / depends on given names      ***/
/*** iOS doesnt know "background-attachment: fixed"! so workarond needed ***/

/***** background-images .. normal, large and XXL screens *****/
.start-bg-pic, .other-bg-pic {
  background-image: url(../images/header2.jpg);  /* header-start-1sm.jpg bg-start-1 */
}
.contact-bg-pic {
  background-image: url(../images/19zu9web.jpg); 
}
.mitglied-bg-pic {
  background-image: url(../images/blaugruen.jpg); 
}
.projekte-bg-pic {
  background-image: url(../images/bg-start-2.jpg); 
}

.start-bg-pic, .projekte-bg-pic, .other-bg-pic {
  background-repeat: no-repeat;
/*  background-position: center;   */
  position: relative;
  background-attachment: fixed;
	min-height: 90vh;
	background-size: cover;
	/* background-size: 100%; */
  /*  -webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain; *//*  -webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain; */
	
}


@media (min-width: 992px) {
.mitglied-bg-pic {
  background-image: url(../images/blaugruen.jpg);
  min-height: 35vh; 
}
}

/* das klappt bei iOS .. zwar kein bg-pic covered und fixed, aber wenigstens  */
/* als intro-pic, das dann mit scrollt .. iOS kennt kein backgrd-attmt. fixed */
/* --> im anschluss an die small screens deklariert für die subpages */
/*  
  .start-bg-pic {
background-attachment: unset; 
background-attachment: initial; 
      background: url('../images/bg-start.jpg') center top no-repeat scroll;
      background-size: auto 100vh;
  }
*/



/* bg img small screens */
@media (max-width: 991px) {  
  .start-bg-pic, .other-bg-pic {
    background-image: url(../images/header2.jpg);  /* bg-start-hz.jpg); */
    background-size: cover;
  }
}

@media (max-width: 768px) {  
  .start-bg-pic, .other-bg-pic {
    background-image: url(../images/header2.jpg);  /* bg-start-hz.jpg); */
    background-size: cover;
  }
  .contact-bg-pic {
    background-image: url(../images/19zu9web.jpg);
    background-size: cover; 
  }
  
  .mitglied-bg-pic {
    background-image: url(../images/blaugruen.jpg); 
    background-size: cover;
  }

  .projekte-bg-pic { 
    background-image: url(../images/bg-start-2.jpg); 
    background-size: cover;
  }

  .start-bg-pic, .projekte-bg-pic, .other-bg-pic {
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    background-attachment: unset;
    -webkit-background-size: cover;
  	-moz-background-size: cover;  
  	-o-background-size: cover;
  	background-size: cover;
	  min-height: unset;
    height: 50vh;
    max-height: 50vh;    
  }


  #sideinfo {
    position:absolute; 
    bottom: unset; /* 35px; */ 
    right: 0px;
    left: 0px;
  }
} 

/*** iOS fixes ***/
/* falls iOS erkannt, weil Befehl xx funktioniert, ändere class xxx
@supports (-webkit-overflow-scrolling: touch)
@supports (-webkit-touch-callout: none)
---> sollten beide iOS erkennen, da nur in Safari, aber 
a) klappt nicht und b) obwohl auch Chrome in iOS auf Webkit/Safari basiert,  
kann das zukünfitg nicht mehr zuverlässig sein als Erkennung

@supports not (background-attachment: fixed) --> liefert unter iOS "true", 
obwohl es eben uunter iOS NICHT klappt, "bg-attmt."" mit "fixed" zu verbinden

ergo: man kann nur per JS in der index.php abfragen, ob iOS uund dann Klassen
darauf basiert umschreiben --> siehe head-Bereich auf index.php   */

/* working if iOS would bei detected properly ... 
@supports not (background-attachment: fixed) {
   .start-bg-pic {
     background-attachment: unset; 
     background-attachment: initial; 
     background: url('../images/bg-start.jpg') center top no-repeat scroll;
     background-size: auto 100vh;
  }
}  
@supports (-webkit-overflow-scrolling: touch)  
  .archi-bg-pic {
     background-attachment: unset; 
     background-attachment: initial; 
     background: url('../images/bg-archi.jpg') center top no-repeat scroll;
     background-size: auto 100vh;
  } 
}
*/

/* other approaches if detectioon would work propperly ..
@supports not (background-attachment: fixed) {

.projekte-bg-pic::before {
background-attachment: unset; 
background-attachment: initial; 
  content: ' ';
  display: block;
  background-image: url('../images/bg-projekte.jpg'); 
  background-position: center;
  background-size: cover;
  height: 100vh;
  width: 100vw;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  z-index: -10; /* Das hier ist sehr wichtig! 
}

End iOS based substitutes for background-attachment: fixed */



/* #starthead, #archihead, #projektehead, #svhead, #twphead -> text above bottom */
.bottom40 {
  bottom: 40px;
  position: relative;
  min-height: 75vh;
}

.bottom40 H1 {
  font-size: 3rem;
  font-weight: 700; 
}

.bottom40 H2 {
  font-size: 2rem;
  font-weight: 400;
}
.bottom40 A {
  text-transform: uppercase;
}

@media (max-width: 768px) {  
  .bottom40 H1 {
    font-size: 2.5rem;
    font-weight: 700; 
  }
  .bottom40 H2 {
    font-size: 2rem;
    font-weight: 400; 
  }
}

/*
#starthead, #projektehead, .startheads {
    bottom: 20px;
    position: absolute;
}
*/
.startheads {
  position: relative;
/*  height: 75vh;
  min-height: 65vh; */
  display: flex;
  align-items: flex-end;
  align-content: flex-end;
  justify-content: center;
  text-align: center;
}

@media (max-width: 768px) {
  height: 65vh;
  min-height: 55vh;
}


#custom .bottom40 {
  /* bottom: 20px; */
  display: flex;
}

/* top header text headlines above bg-pic in startheads */
#starthead P, #starthead H1, #starthead H2, #starthead H3,
#projektehead P, #projektehead H1, #projektehead H2, #projektehead H3,
#contentarea .articleBody P, #contentarea .articleBody H1, #contentarea .articleBody H2, #contentarea .articleBody H3,
#contentarea .articleBody H4, #contentarea .articleBody H5, #contentarea .articleBody H6 {
  color: var(--white);
  /* max-width: 65%; */
  margin-left: auto;
  margin-right: auto;
}


/***** sidemenu vertically => .nav needs to be unset from "flex" *****/
#sidemenu .nav {
  display:unset;
}

.start-contactmap-bg {
  background-image: url(../images/osm.jpg); 
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  min-height: 30vh;
  background-size: cover;
}


/* info box above contactmap */ 
.mapbox {
  position: relative;
  left: 40px;
}
.mapbox IMG {
  width: 100%;
}

@media (max-width: 991px) {
  .mapbox {
    left: unset;
    margin-left: 5%;
  }
}

/* projekt box */
.projectbox {
  position: relative;
  margin: 10px;
  max-width: 100%;
}
.projectbox IMG {
  width: 100%;
}

@media (max-width: 991px) {
  .projectbox {
    left: unset;
    margin-left: 5%;
    max-width: 90%!important;
  }
}

@media (max-width: 767px) {
  .projectbox {
    left: unset;
    margin-left: 5%;
    max-width: 90%!important;
  }
}

/* class to set images inside DIVs automatically to responsive */
/* to eliminate need to do it in arcticles manually */
.img-fluid IMG {
  max-width: 100%;
  height: auto;
}


/* static navbar will cover slider/head-pic, so move it down a bit */
#headpic, #slider {
/* margin-top:75px; */
}


.header-logo {
  /* position: fixed; /* deactivate if other menu */
  position: relative;
  left: 0;
/*  right: 20px; /* deactivate if other menu */
/*  top: 30px;  /* usually 0, here lowered for design */
  z-index: 10000;
/* not fixed to left this time due to "centered" class for that area in tpl-index */
  margin-top:0px;
  max-height:  100px;
/* background: url(../img/ecke.png) 0 0 no-repeat;
  background-color:var(--white); 
  border-left: 1px solid rgba(230, 0, 3,.825);
  border-bottom: 1px solid rgba(230, 0, 3,.825); 
  border-bottom-left-radius: 10%!important; */ /* calc(.25rem - 1px); 
  z-index:10000;
*/
}

.header-logo IMG {
  /* height: 95px; */
  max-height:65px;
  width: auto;
}


.links, .left {
  left:0;
  text-align:left;
}

.pull-left {
  float: left!important;
  padding-right: 10px;
}

.rechts, .right {
  right:0;
  text-align:right;
}

.pull-right {
  float: right!important;
  padding-left: 10px;
}

.centered, .center, .pull-center {
  text-align: center;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  align-content: center;
  align-self: center;
  scroll-snap-align: center;
}

/* horizontal and vertical centered via flexbox */
.center-hv {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* border stuff if needed */
.border-left {
  border-left:  1px solid rgba(36,156,227,.825);
}

.border-right {
  border-right:  1px solid rgba(36,156,227,.825);
}

.bordered {
  border:  1px solid rgba(36,156,227,.825);
}

.info { font-style: italic; margin: 1.5em;}

.full {width: 100%; max-width: 100%;}

/***** Section Styling  *****/

.portfolio-item {
  padding: unset;
  margin-bottom: 30px;
  padding-left: 15px;
}

.card-img-top, .card-img-top IMG {
  width: 100%;
  height: auto;
/* border-top-left-radius: calc(.25rem - 1px);
  border-top-right-radius: calc(.25rem - 1px);
*/
}

IMG {
  vertical-align: middle;
  border-style: none; 
  max-width: 100%;
  height: auto;
}

.card-title {
  margin-bottom: .75rem; 
}

.card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: unset; /* var(--white); */  
  border:none;  
  color: var(--secondary)!important;
}

.card-border {
/*  background-clip: border-box;
  border: 1px solid rgba(136,136,136,.825); 
  border-radius: .25rem;
*/
/* shadoow instead of border */  
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

/* Section Projekte End */



/*** Borders ***/
.rounded, .rounded-pill {
  border-radius: 5rem;
}

/* round borders for images */
.rounded-circle {
  border-radius: 10%!important;
}


/*
.navbar {
  background: url(../img/topmenu2.jpg);
  height:220px;
  } 
*/

.header-back {
/* gradient background */
  /* background: -webkit-gradient(linear, left top, left bottom, from(#afafaf), to(#efefef)) fixed; */
  background-image: linear-gradient(rgba(100,100,100,0.8), rgba(239,239,239,0.01)); /* afafaf = 175,175,175 efefef = 239,239,239 */
  width: 100%;
  height: 65px;
}


.header {
  /* margin-top:45px; */
  height: 65px;
  padding-top: unset;
  padding-bottom: unset; 
}

/* expand height for header for vertical navigation */
@media (max-width: 991px) {
  .header { height: 160px;}
  #headpic { margin-top: 0px;}
/* headpic must be set to 0 .. will place section under header then, 
wouldn't shift it 160px below header if not explicitly set */ 
}


.fixed-logo {
  position: fixed;
}


.headerpic {
  clear: both;
  width: 100%;
/* height: 70vh; /* 1000px; */
/*  margin: 0; */
  padding: 0;
/* optional zum Sichtbarmachen */
/* background: #fff; */
  background-size: cover;
/*   background: url(../images/header-q.png) top left;  */ 
  background-size: 100% 100%;
  margin-top: 100px;
}

.header-logo {
clear: both;
width: 100%;
margin: 0;
padding: 0;
}

.header-logo IMG {
padding:0;
}

/* Anpassungen Screens Backgroud-Size, damit nichts zerrt */
@media screen and (max-width:1079px) {
.headerpic {
/* height: 70vh; /* 700px; */
   background-size: auto;
/* background: url(../images/header-h.png) top left;     /* header-start-hz.jpg */
}
}
@media screen and (max-width:991px) {
.headerpic {
/* height:70vh; /* 650px; */
 background-size: auto;
/* background: url(../images/header-h.png) top left;     /* header-start-hz.jpg */
}
}
@media screen and (max-width:893px) {
.headerpic {
/* height:70vh; /* 600px; */
 background-size: auto;
/* background: url(../images/header-h.png) top left;     /* header-start-hz.jpg */
}
}


/*** Slider / Carousel config ***/

/* initial value */
/* .mySlides {
  display:none;
  }
 */

.slide {
  top:0;
  /* padding-bottom: 15px; */
  clear: both;
  /*width: 100%; */
  margin: 0;
  /* padding: 0 0 15px 0; /* t l b r */
}

.slider IMG { /* padding von 5px um Bilder aufheben */
  padding: 0;
}

.sliderbox, .sliderbox IMG {
  /* max-height: 75vh; */
  width:100%;
  align-content: center;
  align-items: center;
  text-align: center;
  -webkit-box-align: center;
  vertical-align: middle;
  align-self: center;
  justify-content: center;
}

.slidebutton {
  position: absolute;
  top: 50%;
}

.carousel-indicators LI {
  background: var(--coloured);
  border-color: var(--coloured);
}

.carousel-item IMG,
.carousel-inner>.item>a>img,
.carousel-inner>.item>img,
.img-responsive,
.thumbnail a>img,
.thumbnail>img{
  display:block;
  max-width:100%;
  height:auto;
}

/* Ende Slider / Carousel */

table td, table td * {
  vertical-align: top;
}

tr:nth-child(even) {
  background-color: var(--gray);
}

tr:hover {
  background-color: var(--coloured); color: white;
}




/*** container size in about section ***/
#themen .container, #contact .container, #referenzen .container, #contactmap .container, #footer .container, #contentarea .articleBody { 
  width: 80%;
}
[name^="block-"] .container, [name^="contact"] .container {     /* set all containers in sections starting with name block- to 80% */
  width: 80%;
}

@media (max-width: 1400px) {
  #contact .container, #contactmap .container, #footer .container, #contentarea .container  {     
    width: 85%;
  }
  [name^="block-"] .container, [name^="contact"] .container {     
    width: 85%;
  }
}

@media (max-width: 1200px) {
  #contact .container, #contactmap .container, #footer .container, #contentarea .container  {     
    width: 95%;
  }
  [name^="block-"] .container, [name^="contact"] .container {     
    width: 95%;
  }
}




#contact P, #contact H1, #contact H2, #contact H3, #contact H4, #contact H5, #contact H6, /* #contact btn */ {
  color: var(--coloured);
}

btn {
  border: 3px solid; 
  border-radius: 5rem;
  padding: 12px 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  position: relative;
  top: 10px;
}

btn {
  color: var(--white);
  background-color: var(--green);
}

btn:hover {
  background-color: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}


btn.white:hover  {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--dark);
}





/* Kontakt-Section Startseite */
/* Inhaltsbereich in Modul auf 70% der normalen Breite setzen */
.70pro, .pro70 {
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}




/* Navigation  */

/* linksbündig */
.ml-auto, .mx-auto {
  margin-left:auto!important; /* --> setzt home links und den rest ab rechts */
}

/* manuell nach links neben home, damit es nicht rechts (auto) unter dem Logo liegt */
/* .navbar-toggler {
  position: absolute;
  right: 50px;
  top:10px;
  }
*/
/* white toggler btn */
.navbar-dark .navbar-toggler-icon {
  background-image: url(../images/toggler.png);
}
/* black toggler btn */
.navbar-white .navbar-toggler-icon {
  background-image: url(../images/toggler-black.png);
}

.navbar-white {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: var(--white);
}

.navbar-custom {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: rgba(184, 32, 43, 0.7);  /*  var-coloured 70% opacity */ 
}

.navbar-custom .navbar-brand,
.navbar-white .navbar-brand,
.navbar-dark .navbar-brand  {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  font-weight: 400;
}

.navbar-custom .navbar-nav .nav-item .nav-link,
.navbar-white .navbar-nav .nav-item .nav-link,
.navbar-dark .navbar-nav .nav-item .nav-link {
  text-transform: uppercase;
  font-size: 1rem;  /* 0.8rem */
  font-weight: 400;
  letter-spacing: 0.1rem;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255,255,255,1);
  }
.navbar-white .navbar-nav .nav-link {
  color: rgba(184, 32, 43, 1); /* primary green */
}

.navbar-custom .navbar-nav .nav-link:hover,
.navbar-white .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:hover {
  color: rgba(136, 136, 136, 1); /* secondary gray */
}

/* nav items shifted from left because of Logo */
.leftspaced {
  left: 225px;
  position: absolute;
}


ul.topnav li a:hover, /* joo */
ul.navbar li a:hover, /* non joo */
ul.navbar-nav li a:hover {
  display: block;
  /* color: var(--coloured); */
  text-align: center;
 /* padding: 10px 10px; */ /* disabled for dj megamenu */
  text-decoration: none;
  -webkit-transition: unset;
  -moz-transition: unset;
  transition: unset;
  line-height: 1;
}

/* non joo */
.navbar-expand-lg .navbar-nav  .nav-link {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}


/** war masthead */




.bg-primary {
  background-color: var(--coloured) !important; 
}
/* !important; */
.btn-primary {
  background-color: var(--green);
  border-color: var(--secondary);
}

.btn-primary:active, .btn-primary:focus, .btn-primary:hover {
  background-color: var(--coloured) !important;
  border-color: var(--coloured) !important;
}

.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(184, 32, 43, 0.5); /* primary */
}

.btn-secondary {
  background-color: var(--green);
  border-color: var(--secondary);
}

.btn-secondary:active, .btn-secondary:focus, .btn-secondary:hover {
  background-color: var(--coloured) !important;
  border-color: var(--coloured) !important; 
}

.btn-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 106, 0, 0.5); /* to  do */
}


@media (max-width: 576px) {
  .display-4 {
    font-size:1.75rem;
  }

  .portfolio-item {
    margin-bottom: 10px;
    padding-left: 5px;
    padding-right:2px;
  }

  .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6,
  .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, 
  .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, 
  .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11,
  .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, 
  .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11,
  .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7,
  .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11,
  .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7,
  .col-xl-8, .col-xl-9, .col-xl-auto {
    width: auto;
    max-width: 100%; 
  }

  .header-logo IMG {
    padding: unset;
    margin: unset;
    position: absolute;
    top: 50px;
    max-width: 120px;
    height: auto;
    left: 250px;
  }

  .navbar-custom, .navbar-white, .navbar-dark {
    padding-top: unset;
  }
}


/* Back to top Button */
#back-top {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 10001;
}

#back-top a {
  width: 51px;
  display: block;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  font-family: 'Noto Sans', sans-serif, Arial, Helvetica;
  text-transform: none;
  text-decoration: none;
  color: var(--gray);
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s;
}

#back-top span {
  width: 51px;
  height: 51px;
  display: block;
  margin-bottom: 7px;
  background: url('../images/up-arrow.png') no-repeat center center;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s;
}


@media (max-width: 991px) {
  #back-top {
    position: fixed;
    bottom: 15px;
    right: 20px;
    z-index: 10001;
  }
    
  .header-logo IMG {
    padding: unset;
    margin: unset;
    position: absolute;
    top: 50px;
    max-width: 120px;
    height: auto;
    left: 250px;
  }

  .navbar-custom, .navbar-white, .navbar-dark {
    padding-top: unset;
  }      
}



/* MODAL */
.modalDialog {
  position: fixed;
  font-family: 'Noto Sans', sans-serif, Arial, Helvetica;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.8);
  z-index: 99999;
  opacity:0;
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  pointer-events: none;
}

.modalDialog:target {
  opacity:1;
  pointer-events: auto;
}

.modalDialog > div {
  width: 90vw;
  max-height: 90vh;
  position: relative;
  margin: 1% auto;
  /*      padding: 5px 20px 13px 20px; */
  border-radius: 10px;
  background: var(--white); /* #fff; */ 
  background: -moz-linear-gradient(#fff, #999);
  background: -webkit-linear-gradient(#fff, #999);
  background: -o-linear-gradient(#fff, #999);
}

.close {
  background: var(--secondary); 
  color: var(--white);
  line-height: 25px;
  position: absolute;
  right: -12px;
  text-align: center;
  top: -10px;
  width: 24px;
  text-decoration: none;
  font-weight: bold;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -moz-box-shadow: 1px 1px 3px #000;
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
}

.close:hover { 
  background: var(--coloured);  
}

/* modal 2 */
.modal {
  display: none;     /* Hidden by default */
  position: fixed;   /* Stay in place */
  z-index: 1;        /* Sit on top */
  padding-top: 10px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;       /* Full width */
  height: 100%;      /* Full height */
  overflow: auto;    /* Enable scroll if needed */
  background-color: rgb(0,0,0);      /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: var(--white);
  margin: auto;
  /* padding: 20px; */
  border: 1px solid var(--dark);
  width: 80%;
}

.modal-row {
  width: 90vw;
  max-height:90vw;
  /* padding: 0 10px 0 10px; */
  display: flex;
}

.modal-image-full {
  width:90vw;
  max-height: 80vh;
  margin: auto auto;
}

.middle {
  text-align: center;
}
/* Modal Ende */


/* padding zwischen den Bildern entfernen .. 3 start bereiche .. here unused */  
#referenzen div {
  padding: unset;
  padding-left: unset;
  padding-right: unset;
  /* margin-left: 10px;
  margin-right: 10px; */
}  

/* sections */
 
 /* Slideshow beneath navigation, adjust top as needed! */
#slider {
  position: relative;
  /*  margin-top: 70px; */
}

.spaced-box {
  padding-top: 25px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
}


@media (max-width: 991px) {
  .half {
    width: 50%;
  }
  .third {
    width:33%;
  }  
}



/***** Formatting Special Elements *****/
 
.display-4, 
.whitefont {
  color: var(--white);
}


/*
#content div[itemprop="articleBody"] P,
.item-page div[itemprop="articleBody"] P {
  padding-left: 10px!important;
  padding-right: 10px!important;
}
*/

/* ANIMATIONS */
/***** CSS Zoom Transition for Icons, DIVs, Images, .. *****/
.zoom { 
  transition: all .2s ease-in-out; 
}

/* zoom whole DIV */
.zoom:hover {
  transform: scale(1.02); 
  -moz-transform: scale(1.02); 
  -webkit-transform: scale(1.02);
}

/* zoom only IMG in DIV with this class */
.zoom-img:hover IMG {
  transform: scale(1.02); 
  -moz-transform: scale(1.02); 
  -webkit-transform: scale(1.02);
}



/***** ##### Fade-in on scroll --> hide initially ##### *****/
/* Script on index.php needed to work */
.hideme { 
  opacity:0;
}


/**************** DJ mega menu and menu vertical in general **********/
/* dj mega menu */
.dj-mobile-open-btn {
  font-size: 3em;
}

/* joomla */
ul.nav.menu.nav-pills.navbar-white.mod-list,
/* non joomla */
.navbar-expand-lg .navbar-nav  .nav-link {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}

#navigation LI, #block-2 LI {
  margin-left: 5px; 
  margin-right: 5px;
/*   text-transform: uppercase;  */
  /* background-color: var(--coloured); */
  z-index:100000;
  /* if UL LI with own images: unset for nav! */
  background-image: none;
  padding-left: unset!important;
}


#navigation LI:hover, #block-2 LI:hover {
  margin-left: unset; 
}  


li.maximenuck.level1 > a {
/* padding: 10px 10px!important; */ 
}

div#maximenuck138 .maximenumobiletogglericonck {
background: unset!important;
}

/* standard: mobile toggle icon is left, jumps to right on click */
/* change this to stay left */
#navigation .maximenumobiletogglericonck {
text-align: left!important; 
}
/*
@media screen and (max-width: 1199px) {
    .maximenumobiletogglericonck {
        display: block!important;
        font-size: 33px!important;
        text-align: left!important; 
        padding-top: 10px!important;
    }
} */

/*
div#maximenuck138 .maximenumobiletogglericonck {
text-align: left!important; 
}
*/
div#maximenuck138 .maximenumobiletogglericonck:after {
border: none;
}


/* footer nav */
/* unset display to override nav class in BS */
.vertical-nav {
  display: unset; 
}


.navigation {
  position: absolute;
  right: 0; 
  padding-left: 25px;
  z-index:10000;
}

.navbar-nav {
  width:100%;
}

.navbar-toggle {
  background-color: var(--secondary);
  float: left;
  margin-right: 50px;
  left: 25px;
}

.navbar-collapse.in {
  overflow: visible;
}

/*** Menu generell ***/
ul.nav.menu {  
  width: 100%;
  top: 5px;
  position: relative; 
  z-index: 100000000; 
}

.icon-bar {
  background-color: var(--white);
  margin: 3px;
  color: var(--white);
  z-index: 10001;
} 

/* Dropdown Menu */



/* Linkfarbe in Navi */
.navbar-nav ul li a:hover  {
  color: var(--white);
}
.navbar-nav li a:hover {
  color: var(--white); 
}

.nav>li>a { 
  padding: 2px 2px;
  color: var(--white);
  font-weight: 400;
}

ul.topnav li a:hover:not(.active) {
  background-color: unset;
 /* color: var(--secondary);  */
}

.nav-pills>li>a {
  border-radius: 0;
}

.nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav-pills>li.active>a:hover {
  background: unset;
  font-weight: 700;
 /* color: var(--dark); */
}

.nav>li>a:focus, .nav>li>a:hover {
  text-decoration: none;
  background-color: var(--secondary);  /* #eee; */
  color: var(--white);
}

/* .nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav-pills>li.active>a:hover {background: #007857; } */

/* Nav in Reihe darstellen */
.nav-pills>li.nav-pills>li {float:left;}

/* Nav untereinander, z.B. bei xs */
.nav-pills>li.nav-pills>li {float:none;} /* funzt net */

/* TOPNAV Vertikal */
ul.topnav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  padding-bottom: 2px;
}

ul.topnav li {float: left;}

ul.topnav li a {
  display: block;
/*  color: var(--coloured); */
  text-align: center;
  padding: 5px 10px;
  text-decoration: none;
}
/*
ul.topnav li a:hover:not(.active) {background-color: var(--coloured); var(--white);}

ul.topnav li a.active {background-color: var(--coloured); color: var(--white);}
*/
ul.topnav li.right {float: right;}


.navigation .nav-pills {
  margin-bottom: 0;
  display: flex;
  justify-content: center;
}


@media all and (max-width: 600px){

  ul.topnav li.right, ul.topnav li {float: none;}
        
}

/* Umbruch Menu auf vertikal für mobile Geräte */
/* funktioniert am Desktop */
@media all and (max-width: 800px){
  
  ul.topnav li.right, ul.topnav li {float: none;}
    
  .navigation .nav-pills {
    margin-bottom: 0;
    display: unset;
    justify-content: center;
  }

/**** nav 
  .nav {
    margin-bottom: unset;
    height: auto;
    z-index: 100000;
    background-color: var(--green);
    }
****/
}


/*** image in front of LI ***/
#sidemenu UL.nav {
  font-size: 20px;
  list-style-image: url('../images/stern.png');
}


/** override nav div after nav/navigation declarations to keep itz sticky **/
#mainnav {
/*  position: fixed;  */
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}



/* simple responsive menu les abres */
div.srm_position {
  position: fixed;
  top: 3px;
  right: 3px;
  opacity: 1;
  z-index: 1000;
}






 
/******** pagination ********/
.icon-angle-left:before {
  content: "<";
  color: black;
}
.icon-angle-double-left:before {
  content: "<<";
  color: black;
}

.icon-angle-right:before {
  content: ">";
  color: black;
}
.icon-angle-double-right:before {
  content: ">>";
  color: black;
}

.page-link:hover .icon-angle-left:before, .page-link:hover .icon-angle-double-left:before,
.page-link:hover .icon-angle-right:before, .page-link:hover .icon-angle-double-right:before {
color: white!important;
}

.page-item.active .page-link {
  background-color: var(--green);
  border-color: var(--coloured);
  color: var(--black);
}
.page-link:hover {
  background-color: var(--coloured);
  border-color: var(--green);
  color: var(--white);
}
.page-link:focus {
    z-index: 2;
    outline: 0;
    /* box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);  */
    box-shadow: 0 0 0 0.2rem var(--light);
}

/* blog pagination */
.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: var(--coloured);
    background-color: #fff;
    border: 1px solid var(--coloured);
}


/*** page navigation .. for example in dj events list ***/
.pagination UL {
  /* display: -ms-flexbox; */
  /* display: unset; */
  padding-left: 0;
  width: 100%;
  list-style: none;
  border-radius: .25rem;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: .5rem 1rem;
}


/* some fancy borders .. */
.pagination LI {
  /*   border: 1px solid #009ee0;
  /* border-radius: 1.25rem; */
  /*   border-block-color: #009ee0;
  /* border-top-left-radius: 50%; */
  /* border-bottom-right-radius: 50%; */
  /*   border-block-end-width: 5px;
  /*   border-block-end-style: solid;
  /* border-block-width: 12px; */
  padding: 10px;
  
  background-image: unset!important;
  
}

/*** end pagination */ 



/*   unused   */



/* alpha60, um den Hintergrund eines Bereiches mit 60% opacity des #008b99 Tons zu haben, dabei aber nicht den ganzen Bereich aufzuhellen, denn die Schrift soll ja voll bleiben **/
/* verwendet bei zeiten und inhalt */ 
.alpha60 {
  /* Fallback for web browsers that don't support RGBa */
  background-color: rgb(0,158,224);
  /* RGBa with 0.6 opacity */
  background-color: rgba(0,158,224, 0.8);   /* 0.6 */
  /* For IE 5.5 - 7  ... just 60% opacity, not colored, just shade of black  */
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
  /* For IE 8*/
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
}

/* equal height columns - pos zeiten als beispiel */
/* Kästen der Zeiten und des Bereiches des Inhalts immer gleich hoch */
.eqWrap {
	display: flex;
}
.eq {
	padding: 10px;
}
.eq:nth-of-type(odd) {
/*	background: white; */
}
.eq:nth-of-type(even) {
/*	background: #008b99; */
/*	opacity:0.5; */
/*	color: #fff; */
}
.eq:nth-of-type(even) A, .eq:nth-of-type(even) A:focus, .eq:nth-of-type(even) A:hover, .eq:nth-of-type(even) A:visited, .eq:nth-of-type(even) H1, .eq:nth-of-type(even) H2, .eq:nth-of-type(even) H3, .eq:nth-of-type(even) H4, .eq:nth-of-type(even) H5, .eq:nth-of-type(even) H6,  .eq:nth-of-type(even) P {
	/* color: #fff; */
}

.equalHMRWrap {
	justify-content: space-between;
	flex-wrap: wrap;
	-webkit-flex: 1; /* Safari 6.1+ */
  -ms-flex: 1; /* IE 10 */ 
  flex: 1;    
}
.equalHMR3 {
	width: 32%;
	margin-bottom: 2%;
}
.equalHMR6 {
	width: 64%;
	margin-bottom: 2%;
}

@media all and (max-width: 576px) {
  .eqWrap {
	  display: unset; 
  }
}

/* Ende Equal Height Columns */


/******* from cassiopeia j4 ******/

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}

/* dropup, dropdown etc */

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn ~ .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* nav, navbar cassio */

.metismenu.menu-horizontal {
  flex: 1 0 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (min-width: 992px) {
  .metismenu.menu-horizontal {
    display: flex;
    flex: 1 1 0%;
    flex-direction: row;
  }
}
.metismenu.menu-horizontal > li {
  position: relative;
}
.metismenu.menu-horizontal .level-1 > ul {
  min-width: 12rem;
}
.metismenu.mod-menu {
  margin: 0;
}
.metismenu.mod-menu .metismenu-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.5em 1em;
  font-size: 1.1rem;
  line-height: 1.5;
}
.metismenu.mod-menu .metismenu-item.parent {
  position: relative;
}
.metismenu.mod-menu .metismenu-item > ul {
  position: absolute;
  top: 100%;
  z-index: 1001;
  display: block;
  padding: 0;
  list-style: none;
  box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.1);
}
.metismenu.mod-menu .metismenu-item > span,
.metismenu.mod-menu .metismenu-item > a,
.metismenu.mod-menu .metismenu-item > button {
  overflow: hidden;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.metismenu.mod-menu .metismenu-item > a:focus,
.metismenu.mod-menu .metismenu-item > button:focus {
  outline: 1px dotted #ced4da;
  outline-offset: 2px;
}
.metismenu.mod-menu .metismenu-item.active > a, .metismenu.mod-menu .metismenu-item.active > button,
.metismenu.mod-menu .metismenu-item > a:hover,
.metismenu.mod-menu .metismenu-item > button:hover {
  text-decoration: underline;
}
.metismenu.mod-menu .metismenu-item::after {
  content: none;
}
.metismenu.mod-menu .metismenu-item:not(.level-1) > ul, .metismenu.mod-menu .metismenu-item:not(.level-2) > ul {
  margin-right: -1em;
}
[dir=rtl] .metismenu.mod-menu .metismenu-item:not(.level-1) > ul, [dir=rtl] .metismenu.mod-menu .metismenu-item:not(.level-2) > ul {
  margin-right: 0;
  margin-left: -1em;
}
.metismenu.mod-menu .metismenu-item.divider:not(.parent) {
  width: 1px;
  padding: 0;
  margin: 0.25em;
  overflow: hidden;
  border-right: 1px solid #ced4da;
}
@media (max-width: 991.98px) {
  .metismenu.mod-menu .metismenu-item.divider:not(.parent) {
    width: auto;
    height: 1px;
    border-bottom: 1px solid #ced4da;
  }
}
.metismenu.mod-menu .mm-collapsing {
  height: 0;
  overflow: hidden;
  transition-timing-function: ease;
  transition-duration: 0.35s;
  transition-property: color, background-color, height, visibility;
}
.metismenu.mod-menu .mm-collapse {
  position: absolute;
  background-color: white;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}
.metismenu.mod-menu .mm-collapse:not(.mm-show) {
  display: none;
}
.metismenu.mod-menu .mm-collapse > li > a {
  display: inline-flex;
}
.metismenu.mod-menu .mm-collapse > li.divider:not(.parent) {
  width: auto;
  height: 1px;
  border-bottom: 1px solid #ced4da;
}
.metismenu.mod-menu .mm-collapse > li.parent .mm-toggler {
  display: inline-flex;
}
.metismenu.mod-menu .mm-collapse > li.parent > ul {
  position: relative;
  top: 0;
  flex-basis: calc(100% + 1em);
  margin-top: 0.5em;
  margin-bottom: -0.5em;
  background-color: rgba(0, 0, 0, 0.03);
  box-shadow: none;
}
.metismenu.mod-menu .mm-toggler {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
  color: currentColor;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: none;
  border: none;
  box-shadow: none;
}
.metismenu.mod-menu .mm-toggler:after {
  width: 0;
  height: 0;
  -webkit-margin-start: 0.5em;
          margin-inline-start: 0.5em;
  content: "";
  border-top: 0.5em solid currentColor;
  border-right: 0.5em solid transparent;
  border-left: 0.5em solid transparent;
  transition: all 0.3s ease-out;
}
.mm-active > .metismenu.mod-menu .mm-toggler:after {
  -webkit-transform: rotateX(-180deg);
          transform: rotateX(-180deg);
}

.metismenu.mod-menu .mm-toggler[aria-expanded=true]:after {
  -webkit-transform: rotateX(-180deg);
          transform: rotateX(-180deg);
}
.metismenu.mod-menu .parent > ul {
  color: #22262a;
}

.sidebar-right .metismenu .mm-collapse,
.sidebar-left .metismenu .mm-collapse {
  position: relative;
  background-color: rgba(0, 0, 0, 0.03);
}
.sidebar-right .metismenu li.parent > ul,
.sidebar-left .metismenu li.parent > ul {
  position: relative;
  top: 0;
  box-shadow: none;
}
@media (max-width: 1199.98px) {
  .sidebar-right .metismenu li.parent > ul,
.sidebar-left .metismenu li.parent > ul {
    width: 100%;
  }
}
.sidebar-right .metismenu .metismenu-item > span,
.sidebar-right .metismenu .metismenu-item > a,
.sidebar-left .metismenu .metismenu-item > span,
.sidebar-left .metismenu .metismenu-item > a {
  white-space: inherit;
}
.sidebar-right .metismenu .metismenu-item.divider:not(.parent),
.sidebar-left .metismenu .metismenu-item.divider:not(.parent) {
  width: auto;
  height: 1px;
  border-bottom: 1px solid #ced4da;
}


mod-menu {
background: #ff0000;
z-index: 100000000;
}

/******* from cassiopeia END *********/


/* transparent bg-pic second-imgae */
/* transparent bg-pic second-imgae */
#firstpic {
  height: 90vh;
}

#secondpic {
  height: 90vh;
}

/***** background-image .. normal, large and XXL screens *****/
.bg-pic_1 {
  background-image: url(../images/header2.jpg);  /* header-start-1sm jpg bg-start-1 jpg */
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  
}

.bg-pic_2 {
  background-image: url(../images/bg-start-2.jpg);  /* jpg */ 
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
}

.bg-pic_3 {
  background-image: url(../images/header2.jpg);  /* bg-start-1.jpg */ 
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
}

/* bg img small screens */
@media (max-width: 991px) {  
.bg-pic_1 {
  background-image: url(../images/header2.jpg);  /* header-start-1sm.jpg); */
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  background-attachment: fixed;
  -webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.bg-pic_2 {
  background-image: url(../images/bg-start-2.jpg);  /* jpg */
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  background-attachment: fixed;
  -webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.bg-pic_3 {
  background-image: url(../images/header2.jpg);  /* bg-start-1.jpg */ 
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  background-attachment: fixed;
  -webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
}
/* XXL > Height .. (needed to stretch and fit in div on huge monitors) */
@media (min-height: 1020px) {  
.bg-pic_1 {
  background-image: url(../images/header2.jpg);  /* header-start-1sm.jpg); */
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  background-attachment: fixed;
  -webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;   
}
.bg-pic_2 {
  background: url(../images/bg-start-2.jpg);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  background-attachment: fixed;
  -webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;   
}
.bg-pic_3 {
  background: url(../images/header2.jpg);  /* bg-start-1.jpg */ 
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  background-attachment: fixed;
  -webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;   
}
} 
 
/* Blogviews einspaltig statt zweispaltig on mobile */
@media (max-width: 576px) {
.cols-2 .column-1 {
    width: 100%;
    float: left;
}

.cols-2 .column-2 {
    width: 100%;
    float: left;
}
}


.cols-3 .column-1 {
    float: left;
    width: 29%;
    padding: 0 5px;
    margin-right: 4%

}

.cols-3 .column-2 {
    float: left;
    width: 29%;
    margin-left: 0;
    padding: 0 5px
}

.cols-3 .column-3 {
    float: right;
    width: 29%;
    padding: 0 5px
}

.items-row {
    overflow: hidden;
    margin-bottom: 10px !important;
}

.column-1,
.column-2,
.column-3 {
    padding: 10px 5px
}

.column-2 {
    width: 55%;
    margin-left: 40%;
}

.column-3 {
    width: 30%
}
 
.blog-more {
    padding: 10px 5px
}
/***** end gnu/gpl snipplets from beez *****/



/******* End J4 multi coloumn blopg layout ******/
.blog-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 1em;
    margin-left: -.5em;
    margin-right: -.5em;
    padding: 0;
    width: 100%
}

@media (min-width: 992px) {
    .blog-items.columns-2>div {
        width:50%
    }

    .blog-items.columns-3>div {
        width: 33.33333%
    }

    .blog-items.columns-4>div {
        width: 25%
    }
}

.blog-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    padding: 0 .5em 1em
}

.boxed .blog-item {
    background-color: #fff;
    -webkit-box-shadow: 0 0 2px rgba(51,57,66,.1),0 2px 5px rgba(51,57,66,.08),0 5px 15px rgba(51,57,66,.08),inset 0 3px 0 var(--cassiopeia-color-primary);
    box-shadow: 0 0 2px rgba(51,57,66,.1),0 2px 5px rgba(51,57,66,.08),0 5px 15px rgba(51,57,66,.08),inset 0 3px 0 var(--cassiopeia-color-primary)
}

.boxed .blog-item .item-content {
    padding: 25px
}

.blog-item .item-image {
    margin-bottom: 15px;
    margin-top: 3px;
    overflow: hidden
}

.boxed .blog-item .item-image {
    margin-bottom: 0
}

@media (min-width: 992px) {
    .image-right .blog-item .item-image {
        -webkit-box-ordinal-group:2;
        -ms-flex-order: 1;
        order: 1
    }
}

.image-bottom .blog-item .item-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    margin-top: -15px;
    order: 1
}

.image-left .blog-item .item-content {
    padding-left: 25px
}

.image-right .blog-item .item-content {
    padding-right: 25px
}

.image-left .blog-item,.image-right .blog-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media (min-width: 992px) {
    .image-left .blog-item,.image-right .blog-item {
        -webkit-box-orient:horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .image-left .blog-item .item-image,.image-right .blog-item .item-image {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 40%;
        flex: 1 0 40%
    }

    .image-left .blog-item .item-content,.image-right .blog-item .item-content {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 60%;
        flex: 1 0 60%
    }
}

.article-info dd {
    padding: 0
}

@supports (display: grid) {
    .blog-items {
        grid-gap:1em;
        display: grid;
        grid-auto-flow: row;
        grid-template-columns: 1fr;
        margin: 0 0 1em
    }

    .blog-items .blog-item {
        padding: 0
    }

    .blog-items[class*=" columns-"]>div,.blog-items[class^=columns-]>div {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        max-width: none;
        width: auto
    }

    @media (min-width: 992px) {
        .blog-items.columns-2 {
            grid-template-columns:1fr 1fr
        }

        .blog-items.columns-3 {
            grid-template-columns: 1fr 1fr 1fr
        }

        .blog-items.columns-4 {
            grid-template-columns: 1fr 1fr 1fr 1fr
        }
    }
}

.blog-items[class*=" masonry-"],.blog-items[class^=masonry-] {
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    display: block
}

.blog-items[class*=" masonry-"] .blog-item,.blog-items[class^=masonry-] .blog-item {
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-bottom: 1em;
    page-break-inside: avoid
}

@media (min-width: 992px) {
    .blog-items.masonry-2 {
        -webkit-column-count:2;
        -moz-column-count: 2;
        column-count: 2
    }

    .blog-items.masonry-3 {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3
    }

    .blog-items.masonry-4 {
        -webkit-column-count: 4;
        -moz-column-count: 4;
        column-count: 4
    }
}

.image-alternate .blog-item:nth-of-type(odd) .item-image {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0
}

.image-alternate.image-left .blog-item:nth-of-type(odd) .item-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    margin-left: 25px;
    margin-right: 0;
    order: 1
}

.image-alternate.image-top .blog-item:nth-of-type(odd) .item-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}
/******* End J4 multi coloumn blopg layout ******/ 

/* Seiten mit reinem Text begrenzen, damit es lesbar bleibt */

@media (min-width: 1600px) { 
.com-content-article {
/* margin-left: 50px;
margin-right: 50px; */
padding-left: 15px;
padding-right: 15px;
}

.com-content-article .item-page {
  margin-left: unset!important;
  margin-right: unset!important;
  padding-left: 15px;
  padding-right: 15px; 
}


.com-content-article__body {
/* margin-left: 25px;
margin-right: 25px */
/*
padding-left: 15px;
padding-right: 15px;
*/
/* max-width: 1000px; */
max-width: 90%;
}

.com-content-article__body UL, .com-content-article__body LI, .com-content-article__body P {
max-width: 90%;
}



.page-header H1 {
margin-left: unset!important;
margin-right: unset!important;
/* padding-left: 15px; */

}

}

/*
@media (min-width: 1200px) and (max-width: 1599px) { 
.com-content-article {
margin-left: 30px;
margin-right: 30px;
}
}
@media (max-width: 1199px) { 
.com-content-article {
margin-left: 15px;
margin-right: 15px;
}
}
*/


/* die Landkreise, sieben derzeit, daher 14% bei FHD, 30% bei small screens */
DIV.partnerlogos {
width: 14%;
}
@media (max-width: 991px) {
DIV.partnerlogos {
width: 30%;
}
}

/* Headline und TExt Block-1 Mitglieder einrücken anch links, damit bündig über Content */
@media (max-width: 991px) {
.nopad
}

.jtcs_item_wrapper {
margin-left: 10px;
margin-right: 10px;
}

.positioncenter.owl-carousel .owl-nav button.owl-prev {
left: -25px;
}
.positioncenter.owl-carousel .owl-nav button.owl-next {
right: -25px;
}
.jt-cs .owl-carousel .owl-nav .owl-next, .jt-cs .owl-carousel .owl-nav .owl-prev {
width: 30px;
height: 30px;
}



.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
color: var(--coloured);
}

.jt-cs .owl-dots span {
border:  2px solid var(--coloured);
}
.jt-cs .owl-dots .active span {
background: var(--coloured);
}


.login-greeting {
margin-bottom: 10px;
}






/* color login button outer elements same way  */
.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback),
.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) .btn-secondary:hover {
background-color: var(--green)!important;
border: unset;
}

/* remove dropdown button arrow  */
/* div#maximenuck138.maximenuckh ul.maximenuck li.maximenuck.level1.parent > a:after, div#maximenuck138.maximenuckh ul.maximenuck li.maximenuck.level1.parent > span.separator:after, div#maximenuck138.maximenuckh ul.maximenuck li.maximenuck.level1.parent > span.nav-header:after, div#maximenuck138.maximenuckh ul.maximenuck li.maximenuck.level1.parent > .maximenuck-toggler:after
Specificity: (1,6,5) */
a.maximenuck::after
 {
    display: none!important;
}





/********* WEG **************/

/* digi showcase mod */
#digi_showcase_carousel UL, #digi_showcase_carousel LI {
background-image:none;
}
