/*************************************************************************************
* Allgemeine Definitionen
*************************************************************************************/

html {
    overflow-y: scroll; scroll-behavior: smooth;
}

/* HTML5 display-role reset fuer alte Browser */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,Co
menu,
nav,
section,
img {
    display: block;
}

ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    empty-cells: show;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

/* RESET & BASICS (Inspired by E. Meyers) */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
/* sub, sup, */
tt,
var,
center,
dl,
dt,
dd,
ul,
li,
fieldset,
form,
label,
legend,
caption,
tfoot,
thead,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    font: inherit;
    font-size: 100%;
}

/* PROJECT FONTS, LICENSE: /css/webfonts/LICENSE.txt */
@font-face {
    font-family: 'Roboto';
    src: url('/css/webfonts/roboto-light.eot');
    src: url('/css/webfonts/roboto-light.eot?#iefix') format('embedded-opentype'),
        url('/css/webfonts/roboto-light.woff2') format('woff2'),
        url('/css/webfonts/roboto-light.woff') format('woff'),
        url('/css/webfonts/roboto-light.ttf') format('truetype'),
        url('/css/webfonts/roboto-light.svg#robotolight') format('svg');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/css/webfonts/roboto-regular.eot');
    src: url('/css/webfonts/roboto-regular.eot?#iefix') format('embedded-opentype'),
        url('/css/webfonts/roboto-regular.woff2') format('woff2'),
        url('/css/webfonts/roboto-regular.woff') format('woff'),
        url('/css/webfonts/roboto-regular.ttf') format('truetype'),
        url('/css/webfonts/roboto-regular.svg#robotoregular') format('svg');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/css/webfonts/roboto-bold.eot');
    src: url('/css/webfonts/roboto-bold.eot?#iefix') format('embedded-opentype'),
        url('/css/webfonts/roboto-bold.woff2') format('woff2'),
        url('/css/webfonts/roboto-bold.woff') format('woff'),
        url('/css/webfonts/roboto-bold.ttf') format('truetype'),
        url('/css/webfonts/roboto-bold.svg#robotobold') format('svg');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/css/webfonts/roboto-black.eot');
    src: url('/css/webfonts/roboto-black.eot?#iefix') format('embedded-opentype'),
        url('/css/webfonts/roboto-black.woff2') format('woff2'),
        url('/css/webfonts/roboto-black.woff') format('woff'),
        url('/css/webfonts/roboto-black.ttf') format('truetype'),
        url('/css/webfonts/roboto-black.svg#robotoblack') format('svg');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'RobotoCond';
    src: url('/css/webfonts/robotocondensed-bold.woff2') format('woff2'),
        url('/css/webfonts/robotocondensed-bold.woff') format('woff'),
        url('/css/webfonts/robotocondensed-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/*************************************************************************************
* 
*************************************************************************************/

body {
    width: 100%;
    height: 100%;
    margin: 0;
    border: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 1;
    color: var(--black);
    text-align: center;
    background: var(--grey-light);
	overflow-x: hidden;
}

strong,
b {
    font-weight: 600;
    font-family: inherit;
}

em,
i {
    /*font-family: 'Roboto', sans-serif;*/
}


/* Standards */
* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

sup,
sub {
    line-height: 0px !important;
    font-size: 50%;
}

ul.NoBullet {
    list-style: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

img,
form {
    overflow: hidden;
}

input,
textarea,
select {
    outline: 0;
    border: 0;
}

hr,
.Hidden {
    display: none;
}

.Show {
    display: block;
}

.Clear {
    margin: 0;
    width: auto;
    height: auto;
    clear: both;
    display: block;
}

.Space {
    margin: 0;
    width: auto;
    height: 1.25em;
}

.SpaceS {
    height: 0.75em;
}

.SpaceM {
    margin-bottom: 1em;
}

.SpaceL {
    margin-bottom: 3em;
}

.SpaceXL {
    margin-bottom: 4em;
}

.Last {
    margin-right: 0 !important;
}

.NoWrap {
    white-space: nowrap;
    color: inherit !important;
}

.NoMargin {
    margin: 0 !important;
}

.NoMarginTop {
    margin-top: 0 !important;
}

.NoMarginBottom {
    margin-bottom: 0.15em !important;
}

.NoPadding {
    padding: 0 !important;
}

.NoBorder {
    border: 0 !important;
}

.NoBorderRight {
    border-right: 0 !important;
}

.NoDec {
    text-decoration: none;
}

a.NoDec:hover {
    text-decoration: underline;
}

.NoLink {
    pointer-events: none;
    cursor: default;
    color: inherit;
    text-decoration: none;
}

.PaddingBox {
	padding: 0.95em 1.375em 0 1.375em;
}

.PaddingL {
	padding: 2em 3em 0em 3em !important;
}

.PaddingXL {
	padding: 4em 6em 0em 6em !important;
}

.Center {
    text-align: center;
}

.Center img {
    margin-left: auto;
    margin-right: auto;
}

.FloatLeft {
    float: left !important;
}

.FloatRight {
    float: right !important;
}

.BorderTop {
    margin-top: 1.25em !important;
    padding-top: 0.95em;
    border-top: 1px dotted var(--black);
}

.Width25 {
    width: 22.75% !important;
}

.Width30 {
    width: 27.5% !important;
}

.Width33 {
    width: 31.65% !important;
}

.Width40 {
    width: 37% !important;
}

.Width45 {
    width: 45% !important;
}

.Width50 {
    width: 48.75% !important;
}

.Width55 {
    width: 55% !important;
}

.Width60 {
    width: 60% !important;
}

.Width66 {
    width: 65.75% !important;
}

.Width70 {
    width: 70% !important;
}

.Width75 {
    width: 74.15% !important;
}

.Width90 {
    width: 95% !important;
}

.Width100 {
    width: 100% !important;
}

.ColumnPlain.Width25 {
    width: 25% !important;
}

.ColumnPlain.Width33 {
    width: 33.333% !important;
}

.ColumnPlain.Width40 {
    width: 40% !important;
}

.ColumnPlain.Width50 {
    width: 50% !important;
}

.ColumnPlain.Width60 {
    width: 60% !important;
}

.ColumnPlain.Width66 {
    width: 66.666% !important;
}

.ColumnPlain.Width75 {
    width: 75% !important;
}

.ColumnPlain.Width90 {
    width: 90% !important;
}

.Clearfix:before,
.Clearfix:after {
    content: " ";
    display: table;
}

.Clearfix:after {
    clear: both;
}

.Clearfix {
    *zoom: 1;
}

input,
textarea,
select,
button {
    font-family: 'Roboto', sans-serif;
}

textarea,
button,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="button"],
input[type="image"],
input[type="submit"],
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border: none;
}

select {
    width: 100%;
    background: url(/img/icon_select.png) right center no-repeat;
    background-size: 2.25rem auto;
    background-repeat: no-repeat;
}

select[multiple] {
    height: auto;
    background-image: none;
}

select::-ms-expand {
    display: none;
}

/* Mobile Elemente ausblenden */
#MobileMenue,
#MobileNav,
.MobileSearch,
.MobileCart,
.MobileProductTitle {
    display: none;
}


/* Links */

a {
    color: var(--red-dark);
    text-decoration: underline;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: all 200ms ease;
}

a:hover {
    color: inherit;
    text-decoration: underline;
}

.TextLink {
    color: var(--red-dark) !important;
    text-decoration: underline;
    font-weight: 400 !important;
}

a:hover .TextLink {
    color: var(--red-dark) !important;
    text-decoration: underline;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: all 200ms ease;
}

.Content a:hover {
    opacity: .65;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: all 200ms ease;
}

.Content a:hover img,
.Sidebar a:hover img {
    opacity: .90;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: all 200ms ease;
}

.LinkBack a {
    text-decoration: underline;
    font-family: 'RobotoCond';
    font-weight: 700;
    font-size: 115%;
}

.LinkBack a span {
    display: inline-block;
}

.LinkBack a:before {
    content: "<  ";
    line-height: 0;
}

.LinkBox {
    display: block;
    color: inherit;
    text-decoration: none;
}

.LinkBox:hover {
    opacity: .75;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: all 200ms ease;
    text-decoration: none;
}

.LinkAll {
    float: right;
    margin-left: 0.5em !important;
    margin-top: 0.875em !important;
}

a.Container {
    display: block;
    text-decoration: none;
}

a.Container p {
    color: var(--black);
}

a.Container:hover {
    text-decoration: none;
}




/* Colors ORIG: */
:root {
  --black: 					#1a1a1a;
  --white: 					#ffffff; 
  --red:					#d20000;
  --cyan:					#2db8d2;
  --orange:					#97bf29;
  --green:					#97bf29;
  --purple:					#885ea0;
}

/* Colors AAA: */
:root {
  --black: 					#1a1a1a;
  --white: 					#ffffff;
  --grey-lighter:			#f8f8f8;
  --grey-light:				#f5f5f5;
  --grey:					#dbdbdb;
  --grey-medium:			#b7b7b7;
  --grey-dark:				#575757;
  --grey-darker:			#555555;
  --red:					#d20000;
  --red-dark:				#a00000;
  --cyan:					#2db8d2;
  --cyan-dark:				#168195;
  --cyan-darker:			#095e6c;
  --orange:					#e3680f;
  --orange-dark:			#c45300;
  --orange-darker:			#8c3b00;
  --green:					#97bf29;
  --green-dark:				#5f8000;
  --green-darker:			#476000;
  --purple:					#885ea0;
  --purple-dark:			#744391;
}

.Color00 {
    color: var(--white) !important;
}

.Color01 {
    color: var(--red) !important;
}

.Color02 {
    color: var(--cyan-dark) !important;
}

.Color03 {
    color: var(--orange-dark) !important;
}

.Color04 {
    color: var(--green-dark) !important;
}

.Color05 {
    color: var(--purple-dark) !important;
}

.Color10 {
    color: var(--black) !important;
}

.Color11 {
    color: var(--grey-dark) !important;
}

.BgColor00 {
    background-color: var(--white);
}

.BgColor01 {
    background-color: var(--red);
    color: var(--white) !important;
}

.BgColor01 a {
    color: var(--white) !important;
}

.BgColor02 {
    background-color: var(--cyan-dark);
    color: var(--white) !important;
}

.BgColor02 a {
    color: var(--white) !important;
}

.BgColor03 {
    background-color: var(--orange-dark);
    color: var(--white) !important;
}

.BgColor03 a {
    color: var(--white) !important;
}

.BgColor04 {
    background-color: var(--green-dark);
    color: var(--white) !important;
}

.BgColor04 a {
    color: var(--white) !important;
}

.BgColor05 {
    background-color: var(--purple);
    color: var(--white) !important;
}

.BgColor05 a {
    color: var(--white) !important;
}

.BgColor10 {
    background-color: var(--black);
}

.BgColor11 {
    background-color: var(--grey-dark);
}

.BgColor12 {
    background-color: var(--grey-light);
}

.BorderColor01 {
    border-color: var(--red);
}

.BorderColor02 {
    border-color: var(--cyan);
}

.BorderColor03 {
    border-color: var(--green);
}

.BorderColor04 {
    border-color: var(--orange);
}

.BorderColor05 {
    border-color: var(--purple);
}


h1.Color01,
h2.Color01,
h3.Color01,
h4.Color01,
p.Color01,
span.Color01 {color: var(--red-dark) !important;}

/* Shadows: */

.Shadow {
    box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.025);
    -webkit-box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.025);
    -moz-box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.025);
    -o-box-shadow: inset 0px 7px 10px 0px rgba(0, 0, 0, 0.05);
}

/* IE 10 + 11 */
/*
_:-ms-lang(x), .CLASS01, .CLASS02 {}	
/*

/*************************************************************************************
* Container
*************************************************************************************/

.Wrap {
    margin: 0 auto;
    padding: 0 20px 0 20px;
	width: 100%; 
	max-width: 1740px;
    position: relative;
    text-align: left;
    clear: both;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
	height: 11.5em;
    text-align: center;
    background: var(--white);
    z-index: 3;
}

header .Wrap {
    height: 100%;
    overflow: visible;
}

footer {
    clear: both;
    position: relative;
    text-align: center;
}

footer .Wrap {
    height: 100%;
}

#MainMenue {
    position: relative;
    background: var(--white);
}

#SectionMenue {
    position: relative;
    overflow: hidden;
}

.ContentRow {
    text-align: center;
    overflow: hidden;
	background: var(--white);
}

.WrapButtonLink	{
	margin-bottom: 0 !important;
}


/*************************************************************************************
 Header
*************************************************************************************/


/* -----------------------------------------------------------------------------------
 Logo 
----------------------------------------------------------------------------------- */

header .Logo {
    position: absolute;
    left: 1.75em;
    top: 1.175em;
    width: auto;
    height: 5.25em;
	overflow: visible; 
    background: var(--white);
}

header .Logo a {
    display: block;
    width: 100%;
    height: 100%;
}

header .Logo a img {
    position: absolute;
    top: -50%;
    bottom: -50%;
    left: 0;
    margin: auto;
    width: auto;
    height: 77%;
}


/* -----------------------------------------------------------------------------------
 Logo 100 Jahre
----------------------------------------------------------------------------------- */

header .Logo100 {
    left: 1.25em;
    top: 1.25em;
    width: 39em;
}

header .Logo100 a img {
    height: 83%;
}

/* -----------------------------------------------------------------------------------
 Main Menue
----------------------------------------------------------------------------------- */

.NavBar {}

/* ContactLinks */

.NavBar .ContactLinks {
    float: right;
    margin-top: 2.5em;
}

.NavBar .ContactLinks a {
    float: left;
    display: block;
    margin: 0 0.75em 0 0;
    text-decoration: none;
}

.NavBar .ContactLinks a:hover {
    color: var(--red-dark) !important;
}

.NavBar .ContactLinks a span {
    display: none;
}

.NavBar .ContactLinks .LinkHotline {
    margin-top: 0;
	margin-right: 1.5em; 
	padding: 0 0 0 1.15em;
    font-size: 140%;
    font-family: 'RobotoCond';
    font-weight: 700;
	line-height: 2.05;
	background-size: .75em auto;
	background-position: left 0.675em;
}

.NavBar .ContactLinks .LinkMail {
    padding: 0;
	width: 1.625em;
    height: 3em;
	background-size: 1.375em auto;
    background-position: center center;
}

.NavBar .ContactLinks .LinkMail span {
    display: none;
}

.NavBar .ContactLinks .LinkAddress {
    padding: 0;
	margin-right: 1.5em;
    width: 1.5em;
    height: 3em;
	background-size: 1.125em auto;
    background-position: center center;	 
}

/* -----------------------------------------------------------------------------------
 Main Menue: Nav
----------------------------------------------------------------------------------- */

.NavBar nav {
    position: absolute;
    left: 0;
    top: 7.5em;
    width: 100%;
    z-index: 100;
    padding: 0 20px 0 20px;
}

.NavBar nav > ul {}

.NavBar nav .Cat {
    float: left;
    /* position: relative; */
    height: 100%;
    width: 19%;
}

.NavBar nav .Cat05 {
    width: 24%;
}

.NavBar nav .Cat .CatLink {
    display: block;
    position: relative;
    height: 100%;
	min-height: none;
    padding: 0;
    font-family: 'RobotoCond';
    font-weight: 700;
    font-size: 142%;
	line-height: 2.45; 
    color: var(--black);
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
	border-bottom-width: .9rem;
	border-style: solid;
}

.NavBar nav .Cat .CatLink span {
    padding-bottom: 0.045em;
}

.NavBar nav .Cat .mainNavHover {
	min-height: 5.125rem;
	border-bottom-width: 1.375rem;
    z-index: 21;
	transition: min-height 0ms ease;
	-webkit-transition: min-height 0ms ease;
	-moz-transition: min-height 0ms ease;
	-o-transition: min-height 0ms ease;
}

.NavBar nav .Cat .mainNavHover span {
    border-bottom: 1px solid;
}

/* bei dyn. Ausklapp-Navi evtl. hinzufügen: ", .NavBar nav li a.mainNavHover" */
.NavBar nav .Cat a.CatLink.Active {
    min-height: 5.125rem;
	border-bottom-width: 1.375rem;
	-webkit-transition: all 0ms ease;
	-moz-transition: all 0ms ease;
	-o-transition: all 0ms ease;
	transition: all 0ms ease;
}

.NavBar nav .Cat a.CatLink.Active span {
  border-bottom: 1px solid;
}


.NavBar nav .Cat01 .CatLink {
   border-color: var(--red);
}

.NavBar nav .Cat01 .CatLink:hover,
.NavBar nav .Cat01 .CatLink.Active {
   color: var(--red-dark);
}

.NavBar nav .Cat02 .CatLink {
    border-color: var(--cyan);
}

.NavBar nav .Cat02 .CatLink:hover,
.NavBar nav .Cat02 .CatLink.Active {
   color: var(--cyan-dark);
}

.NavBar nav .Cat03 .CatLink {
    border-color: var(--orange);
}

.NavBar nav .Cat03 .CatLink:hover,
.NavBar nav .Cat03 .CatLink.Active {
   color: var(--orange-dark);
}

.NavBar nav .Cat04 .CatLink {
    border-color: var(--green);
}

.NavBar nav .Cat04 .CatLink:hover,
.NavBar nav .Cat04 .CatLink.Active {
   color: var(--green-dark);
}

.NavBar nav .Cat05 .CatLink {
    border-color: var(--purple);
}

.NavBar nav .Cat05 .CatLink:hover,
.NavBar nav .Cat05 .CatLink.Active {
   color: var(--purple-dark);
}

/* Main Menue: SubNav */

.NavBar nav .SubCat {
    position: absolute;
    left: 20px;
    top: 4.25em;
    margin: 0 0 0 0;
    padding: 2em 0 3.25em 0;
    width: calc(100% - 2.125em);
    min-height: 9em;
    background: var(--white);
    z-index: 20;
    -webkit-box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.15);
}

.NavBar nav .SubCat li {
    float: left;
    margin: 0 0 0 1.5em;
    width: 23%;
    overflow: hidden;
}

.NavBar nav .Cat01 .SubCat li {
    /*width: 22.15%; */
}

.NavBar nav .SubCat a {
    font-size: 100%;
	line-height: 1.5;
    padding: 0.75rem 0 0.6rem 0.15rem;
    text-decoration: none;
    color: inherit;
}

.NavBar nav .SubCat a:hover {
    color: var(--red-dark);
    background-color:  var(--grey-lighter);
}

.NavBar nav .SubCat .SubCatLink {
    display: block;
    font-weight: 600;
    border-bottom: 1px dotted var(--black);
}

.NavBar nav .SubCat .SubCatLink .Flag {
    display: inline-block;
	font-size: .675rem;
    font-weight: 600;
	color: var(--white);
	background: var(--grey-darker);
    padding: 0 .625em;
	line-height: 2;
	border-radius: 3em;
	letter-spacing: .05em;
	margin-left: .5em;
	transform: translateY(-.2em);
}

.NavBar nav .SubCat .SubCatNav {
    margin: 0.25em 0 0 0;
    display: none;
}

.NavBar nav .SubCat .SubCatNav li {
    margin: 0;
    width: 100%;
    float: none;
}

.NavBar nav .SubCat .SubCatNav a {
    line-height: 1.77;
}

.NavBar nav .SubCat .SubCatNav a:hover {
    text-decoration: underline;
}

.NavBar nav .SubCat li.Active a {
	color: var(--red-dark);
}

.NavBar nav .SubCat li.Active a:hover {
	background-color:  var(--grey-lighter);
}


/* Main Menue: 2. SubNav */

.NavBar nav .SubCat .SubCatNav2 {
    display: none;
}

/* -----------------------------------------------------------------------------------
 Section Menue
----------------------------------------------------------------------------------- */

.NavBarSection {
    background: red;
    overflow: hidden;
}

.NavBarSection ul {
    margin: 0;
    padding: 0;
    list-style: none outside none;
}

.NavBarSection li {
    float: left;
    margin: 0 2.25em 0 0;
    padding: 2em 0 2em 0;
    text-align: left;
}

.NavBarSection li a {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    border: 0px none;
    color: var(--red-dark);
    font-weight: 600;
    text-decoration: none;
}

.NavBarSection li a:hover {
    color: green;
    text-decoration: none;
}

.NavBarSection li a.Active {
    color: green;
    text-decoration: none;
}

.NavBarSection li a.Active:hover {
    color: green;
    text-decoration: none;
}

/* -----------------------------------------------------------------------------------
 Fix Nav
----------------------------------------------------------------------------------- */

#FixNavBar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border: 1px solid red;
    z-index: 20;
}

#FixNavBar .Logo {
    height: 100%;
}

#FixNavBar .SocialMediaLinks,
#FixNavBar .Search {
    display: none;
}

#FixNavBar .NavBarTop {
    position: static;
    height: 1.85em;
    background: var(--black);
    overflow: hidden;
}

#FixNavBar .NavBarTop .MetaNav li a {
    line-height: 2.75;
}

#FixNavBar .NavBarTop .LinkHotline {
    font-size: 95%;
}

#FixNavBar .NavBarTop .LinkMail {
    font-size: 85%;
    line-height: 2.25;
}

#FixNavBar .NavBar {
    position: static;
    height: 3.75em;
    background-color: var(--white);
}

#FixNavBar .NavBar nav {
    top: 0.75em;
    height: 100%;
}

#FixNavBar .NavBar nav > ul {
    height: 3em;
}

#FixNavBar .NavBar nav li a {
    line-height: 2.75;
}

#FixNavBar .NavBar nav ul ul {
    top: 3.75em;
}

#FixNavBar .NavBar nav ul ul li a {
    line-height: 3;
}

#FixNavBar .NavBarSection {
    display: block;
    position: static;
}

#FixNavBar .NavBarSection li {
    float: left;
    margin: 0 2.25em 0 0;
    padding: 0.85em 0 0.85em 0;
    text-align: left;
}

#FixNavBar .Cart {
    top: 0.725em;
}

#FixNavBar .NavBarSection {
    display: block;
    position: static;
}

#FixNavBar .NavBarSection li {
    float: left;
    margin: 0 2.25em 0 0;
    padding: 0.85em 0 0.85em 0;
    text-align: left;
}

/* -----------------------------------------------------------------------------------
 Search
----------------------------------------------------------------------------------- */

.Search {
    position: absolute;
	top: 2.375em; 
	right: 28em;
    text-align: left;
    overflow: hidden;
    z-index: 1;
    width: 23.25em;
}

.Search .SearchField {
    overflow: hidden;
}

.Search .SearchField input[type="text"] {
    width: 100%;
    padding: 1em 10% 0.2em 0;
    color: var(--black);
    background-color: var(--white);
    font-family: 'Roboto', sans-serif;
    border: none;
	border-bottom: 1px solid var(--grey-medium);
}

.Search .SearchField input[type="text"]:focus {
    color: var(--black);
	border-bottom: 1px solid var(--black);
	box-shadow: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-o-box-shadow: none;
}

.Search .SearchButton {
    position: absolute;
    top: 1px;
    right: 1px;
    width: 2.75em;
    height: auto;
    overflow: hidden;
	text-align: right;
}

.Search .SearchButton input[type="image"] {
    padding: 1.425em 0.35em 0.45em 0;
    width: 2em;
}


/* -----------------------------------------------------------------------------------
 International
----------------------------------------------------------------------------------- */

.International {
    float: right;
    position: relative;
    margin: 2.375em .375em 0 -0.225em;
    width: 7.5em;
    height: 3em;
    font-family: 'Roboto', sans-serif; 
    font-weight: 400;
    cursor: default;
    background: var(--white);
}

.International > a {
    display: block;
    position: absolute;
    left: 0.35em;
    top: 0;
    z-index: 1000;
    padding: 0.5em 1.675em 0 0.15em;
    line-height: 2.35;
    color: var(--black);
    text-decoration: none;
    -moz-transition: none;
    -webkit-transition: none;
    -o-transition: color 0 ease-in;
    transition: none;
    background: url(/img/caret-down-fill-red.svg) no-repeat right 1.15em;
    background-size: 1.15em auto;
}

.International a:hover span {
    color: var(--grey-dark);
}

.InternationalExpanded {
    position: absolute;
    top: 0;
    right: -0.5em;
    padding: 2.5em 0 0 0;
    width: 110%;
    z-index: 101;
	border: 1px dotted var(--black);
}

.InternationalExpanded p {
    padding: 0 0 1em 0.75em;
    font-family: 'Roboto';
    font-weight: 400;
    background: var(--white);
}

.InternationalExpanded a {
    display: block;
    color: var(--red-dark);
    line-height: 2;
    text-decoration: none;
}

.InternationalExpanded a:hover {
	color: var(--grey-dark);
	text-decoration: underline;
}

/*************************************************************************************
* Minified Header
*************************************************************************************/
											
header.Minified {
    height: 5.85em;
    -webkit-box-shadow: 0px 0px 17px -7px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0px 0px 17px -7px rgba(0, 0, 0, 0.5);
	box-shadow: 0px 0px 17px -7px rgba(0, 0, 0, 0.5);
}

header.Minified #MainMenue .Logo {
    top: .25em;
	height: 2.75em; 
    left: 1.5em;
}

header.Minified #MainMenue .Logo img {
	image-rendering: -webkit-optimize-contrast;
}

header.Minified #MainMenue .Logo100 {
    height: 3.75em;
    left: 1.5em;
    top: .1em;
}

header.Minified #MainMenue .NavBar nav {
   top: 3.35em;
}

header.Minified #MainMenue .NavBar nav li a {
    font-size: 110%;
    line-height: 1.85;
}

header.Minified #MainMenue .NavBar nav li a:hover {}

header.Minified #MainMenue .NavBar nav .Cat a.CatLink span {
    border: 0;
}

header.Minified #MainMenue .NavBar nav .Cat a.CatLink:hover {
    text-decoration: underline;
}

header.Minified #MainMenue .NavBar nav .Cat .mainNavHover,
header.Minified #MainMenue .Cat a.CatLink.Active:hover {
    min-height: 2.5em;
	border-bottom-width: .85rem;
}

header.Minified #MainMenue .NavBar nav .SubCat {
    top: 2.5em;
}

header.Minified #MainMenue .NavBar nav .SubCat a {
	font-size: 100%;
	line-height: 1.5;
}

header.Minified #MainMenue .Cat a.CatLink  {
    border-bottom-width: .5rem;
}

header.Minified #MainMenue .Cat a.CatLink.Active {
    min-height: auto;
    text-decoration: underline;
}

header.Minified .Search {
	top: -.425em;
	width: 18em;
}

header.Minified .NavBar .ContactLinks {
    margin-top: -.25rem;
}

header.Minified .NavBar .International {
	margin-top: -.3rem;
}

header.Minified #SectionMenue {
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.15);
}

header.Minified .NavBarSection {
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.15);
}

header.MinifiedHidden {
	margin-top: -6.5em;
}

/* Minified Transition */

.MinifiedTransition {
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

header .NavBarSection li {
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

header.Minified .NavBarSection li {
    padding: 0.35em 0 0 0;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

header.Minified .NavBarSection li a {
    padding: 1em 0 0.75em 0;
}

header.Minified .Cart {
    top: 0;
}

/*************************************************************************************
* Content Grid
*************************************************************************************/

.PageContent {
    border: 1px solid var(--grey);
    border-top: 0;
    margin-bottom: 1.75em;
    background: var(--white);
}

.Content {
    position: relative;
    width: 100%;
}

.ContentMain {
    float: right;
    position: relative;
    padding: 2.5em 4em 5em 0;
    width: 66%;
}

.ContentMain .ColumnMain {
    float: left;
    margin-right: 0;
    width: 70%;
}

.ContentMain .ColumnRight {
    float: right;
    margin-right: -1.5em;
    width: 26%;
}

.Sidebar {
    float: left;
    position: relative;
    padding: 2em 1.375em 3em 1.375em;
    width: 30%;
    border: 0;
    overflow: hidden;
}

/* -----------------------------------------------------------------------------------
 Columns
----------------------------------------------------------------------------------- */

/* Column with MarginRight */

.Column {
    display: block;
    float: left;
    margin: 0 2.5% 1.75em 0;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
}

/* Column without MarginRight */

.ColumnPlain {
    display: block;
    float: left;
    margin: 0 0 3% 0;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
}

.Box {
	border: 1px dotted var(--black);
    padding: 0.95em 1.375em 0 1.375em;
    background: var(--white);
    position: relative;
}

.ColumnBg {
    margin-bottom: 0.875em;
    padding: 1.15em 1.15em 0.25em 1.25em;
    background-color: var(--grey-light);
}

.ColumnPic img {
    margin: 0 0 1.575em 0;
    width: 100%;
    height: auto;
}

/*************************************************************************************
* Page Pics
*************************************************************************************/

.PagePic {
    height: 17em;
    width: 100%;
    margin-left: 0;
    position: relative;
    overflow: hidden;
}

.PagePic img {
    position: absolute;
    top: 0;
    height: auto;
    margin: auto;
    width: 100%;
}

.PagePic span {
    position: absolute;
    top: 0;
    left: 0;
    height: 0.75em;
    width: 100%;
    background: var(--black);
    opacity: 0.45;
    z-index: 1;
	display: none;
}

.PagePicThumbnail {
	float: left;
	margin-right: 1.5em;
	position: relative;
}

.PagePicThumbnail div {
	height: 0;
	padding-bottom: 90%;
}

.PagePicThumbnail img {
	position: absolute;
    top: 50%;
    height: auto;
    margin: auto;
    width: 100%;
	transform: translateY(-50%);
}

.PageLogoRow {
	margin-top: 3em;
	height: 5em;
	display: flex;
}

.PageLogoRow > div {
	height: 100%;
	margin-right: 2em;
}

.PageLogoRow > div img {
	height: 100%;
	width: auto;
}



/*************************************************************************************
* Content Rows
*************************************************************************************/

/* RowTop */
.RowTop {
    margin-top: 11em;
}

/* RowNews */
.RowNews .h1 {
    margin: .375em 0 .25em 0;
	text-align: center;
}

.RowNews .h2 {
    margin: 0 0 1.5em 0;
    font-size: 170%;
	text-align: center;
}

.RowNews .ButtonLink {
    margin-top: 1.5em;
}

.RowNews .ColumnPic {
    margin-top: 0.25em;
}

.RowNews .ColumnPic img {
    margin: 0;
}

.RowNews .Column {
    margin-top: 0;
}

/* RowGoogleMaps */
.RowGoogleMaps {
    margin-top: -5rem;
}

/* RowSposoring */
.RowSponsoring .BoxSponsoring {
    padding: 0.85em 1.25em 2.5em 1.25em;
    background: var(--red);
}

.RowSponsoring .BoxSponsoring:hover {
	background: var(--red-dark);
    opacity: 1 !important;
}

.RowSponsoring .BoxSponsoring .TitleBox {
    margin-top: -0.15em;
    font-family: 'RobotoCond';
    font-weight: 700;
    font-size: 190%;
    color: var(--white);
    text-transform: uppercase;
    text-align: center;
    line-height: 1.5;
}

.RowSponsoring .BoxSponsoring p {
    color: var(--white);
}

.RowGoogleMaps .consent-container-gmaps {
    width: 100%;
    height: 24.95em;
    margin-bottom: 2.5%;
    padding: 0;
    float: none;
    overflow: none;
}

.RowGoogleMaps .consent-container-gmaps iframe {
    width: 100%;
    height: 25em;
}


/*************************************************************************************
* Content Boxes
*************************************************************************************/

.Content .Box p,
.Content .Box ul,
.Content .Box ol,
.Content .Box h2,
.Content .Box h3 {
    margin: 0 0 1.5em 0;
}

.Content .Box ul,
.Content .Box ol {
	margin-left: 1.385em;
}

.Content .Box p, 
.Content .Box ul, 
.Content .Box ol, 
.Content p, 
.Content ol, 
.Content ul		{line-height: 1.5;}

.Content .Box h3,
.Content .Box .h1,
.Content .Box .h2, 
.Content .Box .h3	{line-height: 1.5;}

.Content .Box h4 {
    line-height: 1.5;
    margin: 0;
}

.BoxJobs, 
.BoxNewsRegional,
.BoxNewsGermany,
.BoxCourses							{height: auto; overflow: hidden;}

.BoxJobs .TitleBox,
.BoxNewsRegional .TitleBox,
.BoxShortNews .TitleBox,
.BoxNewsGermany .TitleBox			{font-size: 260%; line-height: 1.3; margin-bottom: 2.5rem !important; letter-spacing: -.0125em;}

.BoxJobs .ButtonLink,
.BoxNewsRegional .ButtonLink,
.BoxShortNews .ButtonLink,	
.BoxNewsGermany .ButtonLink			{margin: .825em 0 0 0;}

.BoxNewsRegional .ContainerLink		{margin-bottom: 0;}												
.BoxNewsRegional h3,
.BoxNewsRegional .h3 				{margin-bottom: .5rem !important; font-size: 142%; line-height: 1.3; font-family: 'RobotoCond'; font-weight: 700;}		

.BoxShortNews						{padding: 0; border: none; float: right; min-height: auto !important;}
.BoxShortNews .TitleBox				{text-align: center;}
.BoxShortNews .InnerWrap			{padding-top: 2rem; border: 1px dotted var(--black); overflow: hidden;}
.BoxShortNews .InnerWrap .ContainerLink	{padding: 2rem 2rem 1rem 2rem;}
.BoxShortNews .h2					{margin-bottom: 2rem !important; text-align: center; font-size: 170%; line-height: 1.3;}
.BoxShortNews .Pic					{margin-bottom: 2rem !important;}
.BoxShortNews .WrapButtonLink		{text-align: center;}
.BoxShortNews .ButtonLink			{margin-top: 2em;}

.BoxNewsGermany						{padding: 0; margin-bottom: 0; border: none; min-height: auto !important;}
.BoxNewsGermany .TitleBox			{text-align: center;}
.BoxNewsGermany h4					{margin-bottom: .325rem !important; font-size: 142%; line-height: 1.3; font-family: 'RobotoCond'; 
									font-weight: 700;}
.BoxNewsGermany .TextLink			{display: block;}
.BoxNewsGermany .ContainerNews		{padding-top: 1em; 
									-webkit-column-count: 2;
									-moz-column-count: 2;
									column-count: 2;
									-webkit-column-gap: 6rem;
									-moz-column-gap:  6rem;
									column-gap:  6rem;
									width: 100%;}
.BoxNewsGermany .ContainerNews	.ContainerLink			{width: 100%;  page-break-inside: avoid; break-inside: avoid-column; 
														-webkit-column-break-inside: avoid; overflow: hidden}
.BoxNewsGermany .WrapButtonLink		{text-align: center; margin-bottom: 1rem !important;}

/* Wenn Temporär ohne News-Anzeige: */
.BoxNewsGermany .WrapButtonLink							{margin-top: -1.5rem !important;}



.BoxNews a.ContainerLink p {
    margin-bottom: 1.375em;
}

.BoxJobs {
	padding: 0;
	margin-right: 6rem;
	border: none; 
	width: calc(50% - 3rem) !important; 
}

.BoxJobs .consent-container-youtube {
    margin-bottom: 2rem;
}

.BoxJobs a.ContainerLinkBg {
	min-height: auto;
}

.BoxJobs a.ContainerLink p {
    margin-bottom: 0;
}

.BoxJobs iframe											{margin-bottom: 1rem;}




.BoxNewsRegional {
	padding: 0; 
	border: none; 
	width: calc(50% - 3rem) !important; 
	margin-right: 6rem;
}

.BoxSocialMedia {
    padding-bottom: 1.375em;
}

.BoxSocialMedia .TitleBox {
    font-size: 145%;
}

.BoxAboutUs .Pic {
    margin: 0.25em 0 1em 0;
    width: 100%;
    height: auto;
}

.BoxAboutUs .BoxLinks {
    font-family: 'RobotoCond';
    font-weight: 700;
    font-size: 108%;
}

.BoxAboutUs .BoxLinks a {
    display: inline-block;
    margin-right: 0.75em;
}

.BoxContact p {
    margin-left: 0.75em;
}

.BoxContact .Pic {
    position: relative;
    margin: 0 0 1em .5em;
    width: 10.5em;
    height: 10.5em;
    border: 1px solid var(--grey);
    overflow: hidden;
    border-radius: 10.5em;
    -webkit-border-radius: 10.5em;
    -moz-border-radius: 10.5em;
}

.BoxContact .Pic img {
    height: auto;
    width: 100%;
    position: absolute;
    left: -50%;
    right: -50%;
    top: -50%;
    bottom: -50%;
    margin: auto;
}

.ColumnRight .BoxContact {
    float: none;
    margin: 0;
    border: 0;
    padding: 0;
    overflow: hidden;
}

.ColumnRight .BoxContact .ColumnPic {
    margin-bottom: 0.575em;
}

.ColumnRight .BoxContact .TitleBox {
    font-size: 160%;
    margin-bottom: 0.675em !important;
}

.BoxCertifications {
    margin-bottom: 0.95em;
}

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

.BoxCertifications .ColumnPic img {
    width: 8em;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

/* RowGrid */
.ContentRow.RowGrid00,
.ContentRow.RowGrid01,
.ContentRow.RowGrid02,
.ContentRow.RowGrid04 {margin-top: .75em; padding-top: 5em; padding-bottom: 4em; background-color: var(--white);}

/* RowGrid00 */
.RowGrid00 .BoxShortNews {
    min-height: 78.75em;
}

.RowGrid00 .BoxShortNews .ContainerLink {
	padding-top: 1.5em;
	padding-bottom: .375em;
	border-top: 1px dotted var(--black);
}

.RowGrid00 .BoxShortNews .ContainerLink:first-of-type {
	border-top: none;
	padding-top: 0;
}

.RowGrid00 .BoxShortNews .Pic {
    width: 100%;
	max-width: 380px;
    margin: 0 auto 1em auto;
    overflow: hidden;
    position: relative;
}

.RowGrid00 .BoxShortNews .Pic img {
    width: 100%;
    height: auto;
}

.RowGrid00 .BoxShortNews .ContainerLink p {
    font-weight: 600;
}

.RowGrid00 .BoxShortNews .ContainerLink .TextLink {
   display: block;
}

.RowGrid00 .LinkTitleBox {
    width: 48.25%;
    float: left;
}

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

.RowGrid00 .BoxSocialMedia {
    height: 9.915em;
    float: right;
    width: 48.25%;
}

.RowGrid00 .BoxCourses {
    width: 100% !important;
    min-height: 22.5em;
    padding-bottom: .5em;
}

.RowGrid00 .BoxAboutUs,
.RowGrid00 .BoxNewsRegional {
    min-height: 40.85em;
    padding-bottom: 0.75em !important;
}

.RowGrid00 .BoxJobs,
.RowGrid00 .BoxNewsGermany {
    min-height: 27em;
}

/* RowGrid01 */
.RowGrid01 .BoxSocialMedia {
    height: 11.35em;
}

.RowGrid01 .BoxCourses {
    min-height: 22.25em;
    padding-bottom: 1.15em;
}


.RowGrid01 .BoxJobs,
.RowGrid01 .BoxNewsRegional {
    min-height: auto !important;
    padding-bottom: 0 !important;
}

.RowGrid01 .BoxAboutUs,
.RowGrid01 .BoxNewsGermany {
    min-height: 36em;
}

/* RowGrid02 */
.RowGrid02 .BoxSocialMedia {
    height: 11em;
}

.RowGrid02 .BoxCourses {
    min-height: 27em;
    padding-bottom: 1.15em;
}

.RowGrid02 .BoxCertifications {
    height: 15em;
    overflow: hidden;
}

/* RowGrid03 */
.RowGrid03 .BoxCertifications,
.RowGrid03 .BoxContact {
    height: 17.5em;
}

.RowGrid03 .BoxCertifications .ColumnPic img {
    width: 10.25em;
}

.RowGrid03 .BoxContact .ColumnPic {
    padding-left: 1em;
}

.RowGrid03 .BoxContact .Pic {
    float: left;
}

.RowGrid03 .BoxContact .Text {
    width: 55%;
    float: right;
}

/* RowGrid04 */
.RowGrid04 {
	margin-bottom: -8em; 
	margin-top: 0;
}

.RowGrid04 .BoxSocialMedia {
    height: 9.8em;
}

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

/* RowQuicklinks */
.RowQuicklinks {
	background-color: var(--white); 
	padding-bottom: 1.5em;
}

.RowQuicklinks .Column {
	margin-right: 6rem; 
	width: calc(33% - 3.75rem) !important;
}

.RowQuicklinks .ColumnPic .Pic {
    height: 13.65em;
    width: 100%;
    position: relative;
    overflow: hidden;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: all 200ms ease;
}

.RowQuicklinks .ColumnPic .Pic img {
    width: 100%;
    height: 100%;
	object-fit: cover;
}

.RowQuicklinks .ColumnPic .TitleLink {
    margin: 0;
    padding: 0 0.85em 0 0.85em;
    font-family: 'RobotoCond';
    font-weight: 700;
    font-size: 142%;
    line-height: 2.25;
	text-align: center; 
	text-transform: none;
}

.RowQuicklinks .ColumnPic .h4 {
	display: block; 
	margin-top: 0;
	margin-bottom: .75rem; 
	font-size: 180%; 
	line-height: 1.333; 
	font-family: 'RobotoCond'; 
	font-weight: 700; letter-spacing: -.0125em;
}

.RowQuicklinks .ColumnPic .Box {
    padding: 1.25em 0 1.5em 0;
    min-height: auto;
	border: none;
	-webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: all 200ms ease;
}

.RowQuicklinks .ColumnPic .Box p {
    display: inline;
}

.RowQuicklinks a.LinkBox:hover {
    opacity: 1;
}

.RowQuicklinks a.LinkBox:hover .TitleLink.BgColor01 {
    background-color: var(--red-dark);
}

.RowQuicklinks a.LinkBox:hover .Pic,
.RowQuicklinks a.LinkBox:hover .Box {
    opacity: .65;
}

/*************************************************************************************
 Content
*************************************************************************************/

/* -----------------------------------------------------------------------------------
 Content: Title, Text, Lists
----------------------------------------------------------------------------------- */

.Content p,
.Content ol,
.Content ul {
    line-height: 1.5;
    margin: 0 0 1.5em 0;
}

.Content ul {
    margin-left: 1.385em;
    list-style-position: outside;
    list-style-type: disc;
}

.Content ul li {
    margin: 0;
}

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

.Check {
    background: transparent url("/img/icon_check.png") no-repeat 0.5em 0.375em;
    background-size: 1em auto;
}

h2.Check {
    padding: 0 0 1em 1.75em;
}

ul.Check {
    list-style-type: none;
}

ul.Check li {
    padding: 0 0 0 2em;
    background: transparent url("/img/icon_check.png") no-repeat 0.5em 0.375em;
    background-size: 1em auto;
}

h1,
.h1 {
    margin: 0 0 0.5em 0;
    font-family: 'RobotoCond', sans-serif;
    font-weight: 700;
    font-size: 260%;
    line-height: 1.5;
    color: var(--black);
}

h2,
.h2 {
    margin: 2em 0 1em 0;
    font-family: 'RobotoCond', sans-serif;
    font-weight: 600;
    font-size: 145%;
    line-height: 1.5;
}

h3,
.h3 {
    margin: 0 0 0.75em 0;
    font-family: 'Roboto';
    font-weight: 600;
    font-size: 100%;
    line-height: 1.5;
}

h4,
.h4 {
    margin: 0;
    font-family: 'Roboto';
    font-weight: 600;
    font-size: 100%;
    line-height: 1.5;
}

h1 a,
h2 a,
h3 a,
h4 a {
    color: inherit;
    text-decoration: none;
}

h3.SpecialSize {
	margin-top: 2.25rem;
	font-size: 117%;
	font-weight: 600;
}

.TitleBox {
    margin: 0 0 0.85em 0 !important;
    font-family: 'RobotoCond';
    font-weight: 700;
    font-size: 170%;
    line-height: 1.5;
}

.TitleBox a:hover {
	text-decoration: none;
}


.TitleBorder {
    color: #9c9c9c;
}

.TextInfo {
    color: var(--grey-dark);
}

.TextReference {
    color: var(--grey-dark);
}

.TextSizeS {
    font-size: 90%;
}

.TextPic {
    margin: -0.75em 0 1.75em 0;
    font-size: 90%;
    color: #adadad;
}



.Red {
    color: var(--red);
}

.Row100Jahre .Content .Box .h1 {
    margin-top: .2em;
    margin-bottom: 1.25em;
    line-height: 1.5;
}

.Row100Jahre .Content .Box .h2 {
    line-height: 1.5;
}


.Row100JahreVideos {
    overflow: visible;
	padding-top: .5em;
}

.Row100JahreVideos .Content {
    position: relative;
    overflow: visible;
    padding-top: 1.25em;
    padding-bottom: 2.5em;
	margin-bottom: 0;
}

.Row100JahreVideos .SlickSlider {
    padding: .25em .5em 0 .5em;
}

.Row100JahreVideos .SlickSlider .Link {
    transform: scale(0.85);
}

.Row100JahreVideos .SlickSlider p {
    padding-top: .75em;
    margin-bottom: 0;
}

.Row100JahreVideos .WrapVideo {
    text-align: center;
    padding: 0 .75em;
}

.Row100JahreVideos .consent-placeholder-container .consent-placeholder .consent-placeholder-wrap {
	padding-top: 0;
	padding-bottom: 0;
}

.Row100JahreVideos .consent-placeholder-container .consent-placeholder p {
	padding-top: 0;
	font-size: 14px;
}

.Row100JahreVideos .consent-placeholder-container .consent-placeholder-youtube button {
	font-size: 15px;
}

/* Pics */

.PicPerson img {
	border: 1px solid var(--grey);
}

.PicPerson p {margin-top: .75em;}

.PicPerson.Center {
	margin-left: auto;
	margin-right: auto;
	float: none;
}

.PicPerson.Center img {
	margin-left: auto;
	margin-right: auto;
	float: none;
}

.Width50 .PicPerson.Center img {
	width: 65%;
}

/* Slick Slider */

.SlickSlider {
    overflow: visible;
    position: relative;
}

.SlickSlider .Link {
    display: block;
    position: absolute;
    top: 50%;
	transform: translateY(-50%);
    margin: auto !important;
    z-index: 1;
    width: 3.05em;
    height: 3.05em;
    -webkit-transition: opacity 500ms;
    -moz-transition: opacity 500ms;
    -o-transition: opacity 500ms;
    transition: all 500ms;
}

.SlickSlider .Link a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    opacity: 0;
}

.SlickSlider .LinkBack {
    left: -3em;
    background: var(--black) url("/img/icon_slider-left.png") no-repeat center center;
    background-size: 90% auto;
    opacity: .60;
}

.SlickSlider .LinkBack:hover {
    left: -3.35em;

}

.SlickSlider .LinkNext {
    right: -3em;
    background: var(--black) url("/img/icon_slider-right.png") no-repeat center center;
    background-size: 90% auto;
    opacity: .60;
}

.SlickSlider .LinkNext:hover {
    right: -3.35em;

}

.SlickSlider .Link a span {
    display: none;
}

/* -----------------------------------------------------------------------------------
 Content: Module
----------------------------------------------------------------------------------- */

.Content hr {
    margin: 2.5em 0 2.5em 0;
    display: block;
    border: medium none;
    height: 1px;
    color: var(--black);
    background-color: var(--black);
}

.Content hr.Dotted {
    height: 1px;
    color: transparent;
    background-color: transparent;
    border-top: 1px dotted var(--black);
}

.Stopper {
    position: absolute;
    overflow: hidden;
    z-index: 1;
}

.Stopper span {
    display: none;
}

.ContentText {
    width: 85%;
}

.ContentPic {
    margin-bottom: 2em;
}

.ContentPic img {
    max-width: 100%;
}

.Content .PicContainer {
    text-align: center;
}

.Content .PicContainer img {
    display: inline-block;
    float: none;
}

.Content .ContainerBg {
    padding: 1.15em 1.15em 1.15em 1.25em;
    margin: 0 0 1.25em 0;
    background-color: var(--grey-light);
    overflow: hidden;
}

.Content .ContainerBorderTop {
    padding: 1em 0 1em 0;
    margin: 1em 0 0 0;
    border-top: 1px solid var(--black);
}

.Content .ListContainerBorder {
    border-bottom: 1px solid var(--black);
    overflow: hidden;
}

.Content .ListContainerBorder > div {
    padding: 1.25em 0 1.375em 0;
    border-top: 1px solid var(--black);
}

.Content .ListContainerBorder p {
    margin-bottom: 0;
}

.Content .TextIconContainer {
	display: flex;
	flex-direction: row;
	padding: 1.25em;
	margin-bottom: 2em;
	border: 1px dotted var(--black);
}

.Content .TextIconContainer .TextIcon {
	margin-right: .625em;
}

.Content .TextIconContainer p {
	margin-bottom: 0;
}

.Content .TextIconContainer img {
	width: 1.375em;
	height: auto;
}

.Content .consent-container-gmaps {
    width: 100%;
    height: 20em;
    margin-top: 2em;
}

.Content .consent-container-gmaps iframe {
    width: 100%;
    height: 100%;
}

/* -----------------------------------------------------------------------------------
 Content: PageNav
----------------------------------------------------------------------------------- */

.Content .PageNav {
    float: right;
    overflow: hidden;
    text-align: center;
    padding: 0;
}

.Content .PageNavTop {
    margin: -1em 0 1.5em 0;
}

.Content .PageNavBottom {
    margin: 1.575em 0 0 0;
}

.Content .PageNav p {
    margin: 0;
    line-height: 2;
}

.Content .PageNav .Status {
    float: left;
    white-space: nowrap;
}

.Content .PageNav .LinkBack,
.Content .PageNav .LinkNext {
    display: block;
    float: left;
    padding: 0.25em 0.7em 0 0.7em;
    font-weight: 600;
    text-align: left;
    color: var(--white);
    background: var(--red);
    text-decoration: none;
}

.Content .PageNav .LinkBack {
    margin-right: 1.25em;
}

.Content .PageNav .LinkNext {
    margin-left: 1.25em;
}

.Content .PageNav .LinkBack:before {
    content: "<  ";
    line-height: 0.85;
    font-weight: 400;
    font-size: 150%;
}

.Content .PageNav .LinkNext:after {
    content: "  >";
    line-height: 0.85;
    font-weight: 400;
    font-size: 150%;
}

.Content .PageNav p.LinkBack,
.Content .PageNav .LinkBack span {
    display: none;
}

.Content .PageNav p.LinkNext,
.Content .PageNav .LinkNext span {
    display: none;
}

.Content .PageNav .Current {
    float: left;
    padding: 0.3em 0 0.2em 0;
    white-space: nowrap;
    text-align: center;
    text-transform: uppercase;
}

/* -----------------------------------------------------------------------------------
Content Nav
----------------------------------------------------------------------------------- */

/* Content Nav: Liste 1. SubNav-Ebene */
.ContentNav {
    margin-top: 2.5em;
}

.ContentNav h2 {
    margin-bottom: 0;
    padding-bottom: 1rem;
    font-size: 142%;
    border-bottom: 1px dotted var(--black);
}

.ContentNav h2.Color01,
.ContentNav h2.Color02,
.ContentNav h2.Color03,
.ContentNav h2.Color04,
.ContentNav h2.Color05 {
	position: relative;
	padding-left: 2.35rem;
}

.ContentNav h2.Color01:before,
.ContentNav h2.Color02:before,
.ContentNav h2.Color03:before,
.ContentNav h2.Color04:before,
.ContentNav h2.Color05:before {
	content: ' ';
	position: absolute; 
	top: .55rem;
	left: 0;
	display: block;
	width: .875em; 
	height: .875em;
}

.ContentNav h2.Color01:before {
	background-color: var(--red);
}

.ContentNav h2.Color02:before {
	background-color: var(--cyan);
}

.ContentNav h2.Color03:before {
	background-color: var(--orange);
}

.ContentNav h2.Color04:before {
	background-color: var(--green);
}

.ContentNav h2.Color05:before {
	background-color: var(--purple);
}



.ContentNav ul {
    list-style: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.ContentNav ul li {
    margin: 0 !important;
    padding-left: 0;
}

.ContentNav a {
    display: block;
    text-decoration: none;
    color: var(--black);
    padding: 0.75rem 0 0.675rem 0.15rem;
    margin: 0;
    border-bottom: 1px dotted var(--black);
    background: var(--white) url(/img/icon_arrow-right-red-dark.png) 100% center no-repeat;
    background-size: auto 1.125rem;
}

.ContentNav a:hover {
    background-color:  var(--grey-lighter);
    background-position: 101% center;
}

.ContentNav .CatLink {
    display: none;
}

.ContentNav .SubCat {
    display: block !important;
    font-size: 100%;
}

.ContentNav .SubCat a:hover {
    color: var(--red-dark);
    opacity: 1;
}

.ContentNav .SubCat .SubCatLink {
    display: block;
    font-weight: 600;
}

.ContentNav .SubCat .SubCatNav li {
    font-weight: 400;
}

.ContentNav .SubCat .SubCatNav {
    display: none;
}

/* Content Nav: Liste 1. Nav-Ebene */
.ContentNavCatList {
    margin-top: 2.5em;
}

.ContentNavCatList h2 {
    text-transform: none;
    padding-bottom: 1.5em;
}

.ContentNavCatList .CatLink {
    display: block;
	position: relative;
    padding: 0.65rem 0 0.65rem 2.95rem;
    font-size: 142%;
    font-family: 'RobotoCond';
    font-weight: 700;
    text-decoration: none;
	background-image: url(/img/icon_arrow-right-red.png);
}

.ContentNavCatList .CatLink:hover {
    opacity: 1;
}

.ContentNavCatList .CatLink:before {
   content: ' ';
	position: absolute; 
	top: 1.175rem;
	left: .5rem;
	display: block;
	width: .875em; 
	height: .875em;
}

.ContentNavCatList  .Cat01 .CatLink:before {
	background-color: var(--red);
}

.ContentNavCatList  .Cat02 .CatLink:before {
	background-color: var(--cyan);
}

.ContentNavCatList .Cat03 .CatLink:before {
	background-color: var(--orange);
}

.ContentNavCatList .Cat04 .CatLink:before {
	background-color: var(--green);
}

.ContentNavCatList .Cat05 .CatLink:before {
	background-color: var(--purple);
}



.ContentNavCatList .Cat01 .CatLink {
    color: var(--red-dark);
}

.ContentNavCatList .Cat02 .CatLink {
    color: var(--cyan-dark);
}

.ContentNavCatList .Cat03 .CatLink {
    color: var(--orange-dark);
}

.ContentNavCatList .Cat04 .CatLink {
    color: var(--green-dark);
}

.ContentNavCatList .Cat05 .CatLink {
    color: var(--purple-dark);
}

.ContentNavCatList .SubCat {
    display: none !important;
}

/* Content Nav: Liste 2. SubNav-Ebene */
.ContentNavSubCatList h2 {
    text-transform: none;
}

.ContentNavSubCatList .SubCat > li {
    display: none;
}

.ContentNavSubCatList .SubCat li.Active {
    display: block;
}

.ContentNavSubCatList .SubCat li.Active .SubCatLink {
    display: none;
}

.ContentNavSubCatList .SubCat li.Active .SubCatNav {
    display: block;
}

.ContentNavSubCatList .SubCat li.Active .SubCatNav2 {
    display: none;
}

/* Content Nav: Liste 3. SubNav-Ebene */
.ContentNavSubCat2List h2 {
    text-transform: none;
}

.ContentNavSubCat2List .SubCat > li {
    display: none;
}

.ContentNavSubCat2List .SubCat li.Active {
    display: block;
}

.ContentNavSubCat2List .SubCat li.Active .SubCatLink {
    display: none;
}

.ContentNavSubCat2List .SubCat li.Active .SubCatNav {
    display: block;
}

.ContentNavSubCat2List .SubCat li.Active .SubCatNav > li {
   display: none;
}

.ContentNavSubCat2List .SubCat li.Active .SubCatNav > li.Active {
   display: block;
}

.ContentNavSubCat2List .SubCat li.Active .SubCatNav > li.Active > a {
   display: none;
}

.ContentNavSubCat2List .SubCat li.Active .SubCatNav2 {
    display: block;
}

/* Content Nav: Sitemap */
.ContentNavSitemap {
    margin-top: 2.5em;
}

.ContentNavSitemap h2 {
    text-transform: none;
    padding-bottom: 1.5em;
    border-bottom: 0;
}

.ContentNavSitemap a {
    margin-top: -1px;
    padding-left: 1em;
    padding-right: 3em;
    border: 1px dotted var(--black);
}

.ContentNavSitemap .Cat {
    margin-bottom: 3.5em !important;
}


.ContentNavSitemap .CatLink {
	position: relative;
    display: block;
    padding: 0.75rem 0 0.75rem 3.5rem;
    font-size: 142%;
    font-family: 'RobotoCond';
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    background-color: var(--white);
    background-image: url(/img/icon_arrow-right-red.png)
}

.ContentNavSitemap .CatLink:hover {
    opacity: 1;
    background-color: inherit;
    text-decoration: underline;
}

.ContentNavSitemap .CatLink:before {
	content: ' ';
	position: absolute; 
	top: 1.25rem;
	left: 1rem;
	display: block;
	width: .875em; 
	height: .875em;
}

.ContentNavSitemap .Cat01 .CatLink:before {
		background-color: var(--red);
}

.ContentNavSitemap .Cat02 .CatLink:before {
	background-color: var(--cyan);
}

.ContentNavSitemap .Cat03 .CatLink:before {
	background-color: var(--orange);
}

.ContentNavSitemap .Cat04 .CatLink:before {
	background-color: var(--green);
}

.ContentNavSitemap .Cat05 .CatLink:before {
	background-color: var(--purple);
}

.ContentNavSitemap .Cat01 .CatLink {
    color: var(--red-dark);
}

.ContentNavSitemap .Cat02 .CatLink {
    color: var(--cyan-dark);
}

.ContentNavSitemap .Cat03 .CatLink {
    color: var(--orange-dark);
}

.ContentNavSitemap .Cat04 .CatLink {
    color: var(--green-dark);
}

.ContentNavSitemap .Cat05 .CatLink {
    color: var(--purple-dark);
}

.ContentNavSitemap .SubCat {
    background: var(--grey-light);
}

.ContentNavSitemap .SubCat .SubCatNav {
    display: block;
    margin-left: 2.5em !important;
    margin-bottom: 0;
}

.ContentNavSitemap .SubCat .SubCatNav2 {
    display: block;
    margin-left: 2.5em !important;
    margin-bottom: 0;
}

/* -----------------------------------------------------------------------------------
 Content: Link Module
----------------------------------------------------------------------------------- */

/* Link-Modul: Link Top */

.LinkTop {
    display: block;
    display: none;
    position: fixed;
    top: 50%;
    right: 1em;
    margin-left: 530px;
    width: 65px;
    height: 65px;
    background: var(--black) url(/img/icon-top.png) center center no-repeat;
    background-size: 100% auto;
    z-index: 1;
    opacity: 0.5;
}

/* Link-Modul: SocialMedia Links */

.SocialMediaLinks a {
    float: left;
    display: block;
    width: 2.75em;
    height: 2.75em;
    margin-right: 0.85em;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center center;
}

.SocialMediaLinks a:hover {
    opacity: .85;
}

.SocialMediaLinks a span {
    display: none;
}

.SocialMediaLinks .Link01 {
    background-image: url(/img/icon_facebook.png);
}

.SocialMediaLinks .Link02 {
    background-image: url(/img/icon_twitter.png);
}

.SocialMediaLinks .Link03 {
    background-image: url(/img/icon_youtube.png);
}

.SocialMediaLinks .Link04 {
    background-image: url(/img/icon_instagram.png);
}

/* Link-Modul: AnchorNav */

.AnchorNav {
    margin-left: 0 !important;
    margin-bottom: 0 !important;
    overflow: hidden;
    list-style-type: none !important;
}

.AnchorNav a {
    display: inline-block;
    padding: 0.15em 0 0.15em 1.45em;
    font-size: 145%;
    line-height: 1.333;
    font-family: 'RobotoCond';
    color: var(--black);
    text-decoration: none;
    background: url(/img/icon_arrow-bottom-red-dark.png) left 0.3em no-repeat;
    background-size: 1.05em auto;
    font-weight: 600;
}

.AnchorNav a:hover {
    background-position: left 0.45em;
}

.AnchorAim {
    position: relative;
}

.AnchorAim a {
    position: absolute;
    top: 0;
}

/* Link-Modul: TabNav */

.TabNav {
    margin-bottom: 2.5em;
}

.TabNav ul {
    display: block;
    margin: 2em 0 0 0;
    padding: 0;
    height: 2.25em;
    font-size: 145%;
    font-family: 'RobotoCond';
    text-align: left;
    border-bottom: 1px solid var(--grey-medium);
    overflow: visible;
}

.TabNav ul li {
    display: block;
    position: relative;
    padding-left: 0;
    margin: 0 0 0 0;
    height: 98.5%;
    margin: 0;
    border: 0;
    float: left;
}

.TabNav ul li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 1.65em 0 1.65em;
    line-height: 2.25em;
    border: 1px solid var(--white);
    border-bottom: 0;
    text-decoration: none;
}

.TabNav ul li a.Active {
    height: 2.25em;
    font-weight: 600;
    background: var(--white);
    border: 1px solid var(--grey-medium);
    border-bottom: 0;
    color: var(--black);
    cursor: default;
}

.TabNav ul li a.Active:hover {
    opacity: 1;
}

/* Link Modul: ButtonLink */

.ButtonLink {
    display: block;
    margin: 0.375em 0 0 0;
    padding: 0.45em 0.85em 0.45em 0.85em;
    text-align: center;
    font-size: 125%;
    font-family: 'RobotoCond';
    font-weight: 700;
    line-height: 1.5;
    color: var(--white);
    text-decoration: none;
	text-transform: none;
    background: var(--red);
}

.ButtonLink:hover {
    color: var(--white);
	background: var(--red-dark);
	text-decoration: none;
    opacity: 1 !important;
    -webkit-transition: opacity 200ms ease-in-out;
    -moz-transition: opacity 200ms ease-in-out;
    -o-transition: opacity 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

a.Button.BgColor01:hover	{background-color: var(--red-dark);}
a.Button.BgColor02:hover	{background-color: var(--cyan-darker);}
a.Button.BgColor03:hover	{background-color: var(--orange-darker);}
a.Button.BgColor04:hover	{background-color: var(--green-darker);}
a.Button.BgColor05:hover	{background-color: var(--purple-dark);}

.ButtonLink.InlineBlock	{
	display: inline-block;
}

.Center .ButtonLink {
    margin-left: auto;
    margin-right: auto;
}

/* Link Modul: ContainerLink */

a.ContainerLink {
    text-decoration: none;
    display: block;
    overflow: hidden;
}

a.ContainerLink p,
a.ContainerLink h2,
a.ContainerLink h3,
a.ContainerLink h4 {
    color: var(--black);
}

a.ContainerLinkBg {
    display: block;
    min-height: 6.25em;
    padding: 1em 1em 1em 1em;
    margin: 0 0 0.85em 0;
    background-color: var(--grey-light);
}

/* Link Modul: Contact Link Hotline */

.LinkHotline {
    display: inline-block;
    margin-top: -0.15em;
    padding: 0 0 0 1.075em;
    font-weight: 700;
    font-family: 'RobotoCond';
    font-size: 144%;
    line-height: 1.85;
    background: url(/img/telephone-fill-red.svg) left center no-repeat;
    background-size: 0.75em auto;
    text-decoration: none;
    white-space: nowrap;
    color: var(--black);
}

.LinkHotline:hover {
    text-decoration: none;
}

/* Link Modul: Contact Link E-Mail */

.LinkMail {
    display: inline-block;
    padding: 0 0 0 1.85em;
    text-decoration: none;
    font-weight: 600;
    line-height: 2.5;
	background: url(/img/envelope-fill-red.svg) .12em .05em no-repeat; 
	background-size: auto 1.07em;
}

/* Link Modul: Contact Link E-Mail */

.LinkContact {
    margin-top: -1em;
    padding: 0 0 0 1.85em;
    line-height: 2;
    background: url(/img/envelope-fill-red.svg) .12em .05em no-repeat; 
	background-size: auto 1.07em;
}

/* Link Modul: Contact Link Address */

.LinkAddress {
    display: inline-block;
    padding: 0 0 0 1.85em;
    text-decoration: none;
    background: url(/img/geo-alt-fill-red.svg) left 0.25em no-repeat;
    background-size: 1.15em auto;
}

.LinkAddress span {
    padding: 0 1em 0 0;
    white-space: nowrap;
}

/* Link Modul: GoogleMaps Link */

.LinkMaps {
    padding: 0 0 0 1.85em;
	background: url(/img/geo-alt-fill-red.svg) .12em .05em no-repeat; 
	background-size: auto 1.07em;
}

/* Link Modul: Expand */

.LinkExpand {
    padding: 0 0 0 1.25em;
    background: url(/img/icon_expand.png) left 0.25em no-repeat;
    background-size: 0.8em auto;
}

.LinkExpandClose {
    padding: 0 0 0 1.25em;
    background: url(/img/icon_expand-close.png) left 0.25em no-repeat;
    background-size: 0.85em auto;
}

/* Link Modul: More/Arrow Link */

.LinkMore {
    display: inline-block;
    padding: 0 0 0 1.15em;
    background: url(/img/icon_arrow-right-red-dark.png) 0.15em 0.475em no-repeat;
    background-size: 0.75em auto;
}

ul.LinkIcon {
    list-style: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.LinkIcon a {
    display: inline-block;
	max-width: 100%;
    padding: 0 0 0 1.25em;
    background: url(/img/icon_arrow-right-red-dark.png) 0.2em 0.45em no-repeat;
    background-size: 0.75em auto;
	word-wrap: break-word;
}

.LinkIconRight {
    padding: 0 1.35em 0 0;
    text-decoration: none;
    background-position: right 0.375em !important;
}

.LinkIconRight.LinkMaps {
	background-position: right 0.2em !important;
}

.LinkIconRight.LinkMore {
    background-position: 101.5% 0.4em;
    background-size: 0.8em auto;
}

/* Link Modul: Box Title Link */

.LinkTitleBox {
    height: 4.5em;
    padding-bottom: 0.825em;
    margin-bottom: 0.95em;
    background: var(--white) url(/img/icon_arrow-right-red.png) 99% center no-repeat;
    background-size: auto 1.25em;
}

.LinkTitleBox:hover {
    background-position: 101% center;
}

.LinkTitleBox span {
    display: block;
}

/* Link Modul: Course Link */

.LinkDate {
    display: block;
    margin-bottom: 1em;
}

.LinkDate .Date {
    float: left;
    width: 4em;
    height: 4em;
    margin-top: 0.275em;
    padding-top: 0.325em;
    background: var(--red);
    text-decoration: none !important;
}

.LinkDate .Date:hover {
    background: var(--red-dark);
    opacity: 1 !important;
}

.LinkDate .Date span {
    display: block;
    text-align: center;
    color: var(--white);
}

.LinkDate .Date span.DateD {
	margin-top: -.125rem;
    font-size: 160%;
    font-weight: 600;
    line-height: 1.5;
}

.LinkDate .Date span.DateM {
	margin-top: -.25em;
    font-size: 135%;
	font-weight: 600;
	font-family: 'RobotoCond';
}

.LinkDate .Text {
    margin: 0 !important;
    float: right;
    width: 88.5%;
}

.LinkDate .CourseCat {
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

.LinkDate .CourseCat:hover {
    text-decoration: underline;
}

.LinkDate .CourseCat.Color01 {
    color: var(--red-dark) !important;
}

.LinkDate .CourseCat.Color02 {
    color: var(--cyan-darker) !important;
}

.LinkDate .CourseCat.Color03 {
    color: var(--orange-darker) !important;
}

.LinkDate .CourseCat.Color04 {
    color: var(--green-darker) !important;
}

.LinkDate .CourseText {
    color: var(--black);
    text-decoration: none;
}

.LinkDate .CourseText:hover strong {
    text-decoration: underline;
}

/*************************************************************************************
 Content: Project Contents
*************************************************************************************/


/* -----------------------------------------------------------------------------------
 Content: Leichte Sprache
----------------------------------------------------------------------------------- */

.ContentEasyToRead {
    margin-top: 2.25em;
}

.ContentEasyToRead h2,
.ContentEasyToRead .h2 {
    margin-top: 0;
    margin-bottom: 0.4em;
    line-height: 1.5;
}

.ContentEasyToRead p,
.ContentEasyToRead ol,
.ContentEasyToRead ul {
    line-height: 2.222;
    margin: 0 0 2em 0;
}

.ContentEasyToRead .ColumnPic {
    position: relative;
    float: right;
    margin-bottom: 1.5em;
    overflow: hidden;
}

.ContentEasyToRead .ColumnPic img {
    margin: 0px auto;
    width: 100% !important;
	max-width: 225px;
    height: auto;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border: 1px solid var(--grey-medium);
}


/* -----------------------------------------------------------------------------------
 Content: Policy Statement
----------------------------------------------------------------------------------- */

.ContentPolicyStatement	.Width60					{padding-left: 1.5em;}



/* -----------------------------------------------------------------------------------
 Content: Board + Assessors
----------------------------------------------------------------------------------- */

.ContentBoard {
    padding-bottom: 0;
}

.ContentBoard hr {
	margin-bottom: 0;
}

.ContentBoard h2 {
	margin-top: 1.175em;
}

/* Zweispaltigkeit Doppelspitze */
.ContentBoard .WrapInner .ContainerBg:nth-child(1),
.ContentBoard .WrapInner .ContainerBg:nth-child(2)  {
	float: left;
	width: calc(50% - .5em);
	min-height: 33em;
	margin-bottom: 2.5em;
	display: flex;
	flex-direction: column;
}

.ContentBoard .WrapInner .ContainerBg:nth-child(1) .ColumnPic.PicPerson,
.ContentBoard .WrapInner  .ContainerBg:nth-child(2) .ColumnPic.PicPerson {
	margin-left: auto;
	margin-right: auto !important;
	min-width: 228px;
	margin-bottom: 1.5em;
}

.ContentBoard .WrapInner .ContainerBg:nth-child(1) .ColumnPic.PicPerson p,
.ContentBoard .WrapInner .ContainerBg:nth-child(2) .ColumnPic.PicPerson p {
	margin-bottom: 0;
}

.ContentBoard .WrapInner .ContainerBg:nth-child(1) .ColumnPic.PicPerson > div,
.ContentBoard .WrapInner .ContainerBg:nth-child(2) .ColumnPic.PicPerson > div {
	position: relative;
	height: 0;
	padding-bottom: 140%;
	overflow: hidden;
}

.ContentBoard .WrapInner .ContainerBg:nth-child(1) .ColumnPic.PicPerson > div img,
.ContentBoard .WrapInner .ContainerBg:nth-child(2) .ColumnPic.PicPerson > div img {
	position: absolute; 
	width: 100%; 
	height: 100%; 
	object-fit: cover; 
	object-position: 50% 50%;
}

.ContentBoard .WrapInner .ContainerBg:nth-child(1) .Column.Width70,
.ContentBoard .ContainerBg:nth-child(2) .Column.Width70 {
	width: 100% !important;
}

.ContentBoard .WrapInner .ContainerBg:nth-child(1)
	{margin-right: 1em;}


.ContentBoard .WrapInner .ContainerBg:nth-child(3)  {
	float: none;
	width: 100%;
}


/* /Zweispaltigkeit Doppelspitze */


.ContentBoard .ContainerBg p {
    margin-bottom: 0.75em;
}

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

.ContentBoard .ColumnPic {
    float: right;
}

.ContentBoard .ColumnPic img {
    margin-bottom: 0.5em;
    border: 1px solid var(--grey);
}

.ContentBoard .SocialMediaLinks a,
.ContentTeam .SocialMediaLinks a {
    padding: 0 0 0 1.85em;
    width: auto;
    height: auto;
    background-size: 1.3em auto;
    background-position: left 0.15em;
}

.ContentBoard .LinkExpand,
.ContentBoard .LinkExpandClose {
    padding: 0 0 0 1.85em;
    background-position: 0.25em 0.25em;
}

.ContentBoard .ContentExpand hr.Dotted {
    margin-top: 0.75em;
    margin-bottom: 1em;
}

.ContentBoard .ContentExpand h2 {
    margin-top: 0.5em;
    margin-bottom: 1em;
}

.ContentAssessors .ContainerBg {
    margin-top: 1px;
}

.ContentAssessors .ContainerBg p {
    margin-bottom: 0;
}

.ContentAssessors .ContainerBg p {
    margin-bottom: 0;
}

.ContentAssessors .Width50 {
    width: 40% !important;
}

/* -----------------------------------------------------------------------------------
 Content: Team
----------------------------------------------------------------------------------- */

.ContentTeam {
    padding-bottom: 1.5em;
}

.ContentTeam h2 {
    margin-top: 1.175em;
}

.ContentTeam hr {
    margin-bottom: 0;
}

.ContentTeam .ContainerBg p {
    margin-bottom: 0;
}

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

.ContentTeam .ColumnPic {
    float: right;
}

.ContentTeam .ColumnPic img {
    margin-bottom: 0;
    border: 1px solid var(--grey);
}

/* -----------------------------------------------------------------------------------
 Content: Angebote
----------------------------------------------------------------------------------- */

.ContentAngebote .ColumnPic {
    margin-bottom: 2em;
}

.ContentAngebote .PicContainer {
    padding: 1.5em 0 2.5em 0;
    overflow: hidden;
}

.ContentAngebote .PicContainer img {
    width: 15%;
    height: auto;
    margin: 0 5% 1em 0;
    float: left;
}

.ContentAngebote .PicContainer img:last-child {
    margin-right: 0;
}

/* -----------------------------------------------------------------------------------
 Content: Ortsvereine
----------------------------------------------------------------------------------- */

.ContentOrtsvereine .ContainerBg p {
    margin-bottom: 0.75em;
}

/* -----------------------------------------------------------------------------------
 Content: Jobs
----------------------------------------------------------------------------------- */

.ContentJobs .ContainerLinkBg {
    padding-bottom: 0;
    overflow: hidden;
}

.ContentJobs .ContainerLinkBg p {
    margin-bottom: 1em;
}

/* -----------------------------------------------------------------------------------
 Content: Press
----------------------------------------------------------------------------------- */

.ContentPress .ContainerBg {
    padding-bottom: 0;
    overflow: hidden;
}

.ContentPress .ContainerBg > p {
    margin-bottom: 1em;
}

.ContentPress .ContainerBg .Date {
    display: inline-block;
    padding-right: 0.45em;
    margin-right: 0.25em;
    background: url(/img/pix_color00.gif) right 0.25em no-repeat;
    background-size: 1px 1.15em;
}

.ContentPress .TextExpanded {
    display: block;
    margin-top: -1em;
}

.ContentPress .ContainerBg .ContainerLink {
   color: var(--black);
}


/* -----------------------------------------------------------------------------------
 Content: Kitas
----------------------------------------------------------------------------------- */

.ContentKita .Flag img {
    width: 60%;
    height: auto;
    margin: 0.5em auto 0.5em auto;
}

.ContentKita .ContainerLeft {
    float: left;
    width: 68%;
}

.ContentKita .ContainerRight {
    float: right;
    margin-top: -0.25em;
    margin-left: 0;
    width: 30%;
}

.ContentKita .ContainerRight .ColumnPic {
    margin-bottom: 0;
}

.ContentKita .ContainerRight .ColumnPic img {
    margin-bottom: 0.5em;
    border: 1px solid var(--grey);
}

.ContentKita .ContainerRight .Flag {
    margin-bottom: 0.75em;
    border: 1px solid var(--grey);
    width: 100%;
}

.ContentKita .ContainerRight .Flag img {
    width: 55%;
    height: auto;
    margin: 0.25em auto 0 auto;
}

.ContentKita .ContainerRight .Certification {
    margin-bottom: 0.75em;
    border: 1px solid var(--grey);
    width: 100%;
    padding: 0.75em 0.65em 0 0.75em;
    overflow: hidden;
}

.ContentKita .ContainerRight .Certification img {
    float: left;
    width: 47%;
    height: auto;
}

.ContentKita .ContainerRight .Certification img.Last {
    float: right;
}

.ContentKita .ContainerRight .Certification p {
    margin: 0.5em 0 0.5em 0;
    text-align: center;
    font-size: 80%;
}

.ContentKita .ContainerRight .ButtonLink {
    width: 100%;
    font-size: 100%;
    padding: 0.85em 0.5em 0.85em 0.5em;
}

.ContentKita .ContainerRow {
	display: flex;
	align-items: center;
    margin-top: 0;
	margin-bottom: 2em;
    margin-left: 0;
	padding: 1em 2em 1em 2em;
	border: 1px dotted var(--black);
    width: 100%;
}

.ContentKita .ContainerRow .WrapButtonLink	{
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.ContentKita .ContainerRow .ButtonLink	{
	margin-top: 0;
	white-space: nowrap;
	display: inline-block; 
	font-size: 115%; 
	width: auto; 
	margin-left: -12%;
}

.ContentKita .ContainerRow .Flag {
	width: 33%;
	float: left;
    margin-bottom: 0.75em;
}

.ContentKita .ContainerRow .Flag img {
    width: 64%;
    height: auto;
    margin: 0 auto 0 auto;
}

.ContentKita#tabContent2 hr.Dotted {
	margin-bottom: -1.25em;
}


/* 2 Siegel */
/*
.ContentKita .ContainerRow .Certification {
	width: 31%;
	max-width: 16em;
	float: left;
    margin-bottom: 0.5em;
    padding: 0.75em 0.65em 0 0.75em;
    overflow: hidden;
}

.ContentKita .ContainerRow .Certification img {
    float: left;
    width: 47%;
    height: auto;
}

.ContentKita .ContainerRow .Certification img.Last {
    float: right;
}

.ContentKita .ContainerRow .Certification p {
    margin: 0.5em 0 0 0;
    text-align: center;
    font-size: 80%;
	white-space: nowrap;
}


/*


/* 1 Siegel */
.ContentKita .ContainerRow .Certification {
	width: 18%;
	max-width: 10em;
	float: left;
    margin-bottom: 0;
    padding: 0.5em 0.65em 0 0.75em;
    overflow: hidden;
}

.ContentKita .ContainerRow .Certification img {
    float: left;
    width: 100%;
    height: auto;
}

.ContentKita .ContainerRow .Certification img.Last {
    float: right;
}

.ContentKita .ContainerRow .Certification p {
    margin: 0.5em 0 0 0;
    text-align: center;
    font-size: 80%;
	white-space: nowrap;
}

.ContentKita .LinkMaps {
    margin: -1.375em 0 2em 0;
}

.ContainerPano {
    position: relative;
    margin: 0.5em 0 2em 0;
    width: 100%;
    overflow: hidden;
}

.ContainerPano a {
    display: block;
    height: 22.75em;
    position: relative;
}

.ContainerPano img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: auto;
    margin: auto;
}

.ContainerPano p.Title {
    position: absolute;
    display: block;
    left: 0;
    bottom: 0;
    padding: 0.65em 0.65em 0.6em 0.75em;
    width: auto;
    height: auto;
    margin: 0 0 1.625em 1.25em;
    background: url(/img/bg_slider-text.png) left top repeat;
    background-size: 100% 100%;
    overflow: hidden;
    font-size: 180%;
    line-height: 1.5;
    color: var(--white);
    z-index: 1;
}

.ContainerPano p.Title .Icon {
    display: block;
    float: right;
    margin: 0 0.25em 0 0.825em;
    width: 3.1em;
    height: 1.5em;
    background: url(/img/icon_pano.png) center center no-repeat;
    background-size: 100% auto;
}

/* -----------------------------------------------------------------------------------
 Content: News
----------------------------------------------------------------------------------- */

.ContentNews {
    padding-top: 0.175em;
    border-bottom: 1px solid #A0A0A0;
}

.ContentNews .Container {
    margin: 0.25em 0 0 0;
    padding: 1.5em 0 1em 0;
    border-top: 1px solid #A0A0A0;
    overflow: hidden;
}

.ContentNews .Container .h2 {
    color: var(--black);
    margin: 0.25em 0 0.75em 0;
}

.ContentNews .Container p {
    margin: 0;
}

.ContentNews .ColumnPic {
    position: relative;
    margin: 0.25em 0 0.75em 0;
    overflow: hidden;
}

.ContentNews img {
    margin: auto;
    width: 100%;
    height: auto;
}

.ContentNews .Date {
    margin: 0;
    color: var(--grey-dark);
}

.ContentNewsDetail {
    border-bottom: none;
}

.ContentNewsDetail .ColumnPic {
    height: auto;
    margin: 0 0 1.5em 0;
}

.ContentNewsDetail .ColumnPic img {
    position: static;
}

.ContentNewsDetail .PicText {
    margin-top: -0.75em;
    color: var(--grey-dark);
}

/* -----------------------------------------------------------------------------------
 Content: Downloads
----------------------------------------------------------------------------------- */
.ContainerDownloads									{}
.ContainerDownloads .h2								{}
.ContainerDownloads .LinkBox						{padding: 1.25rem 4.5rem 1.25rem 1.3rem; margin-bottom: 1.625em; background:  var(--grey-lighter) url(/img/icon-download.png) 97% 1em no-repeat; 
													background-size: 1.525em auto; border-bottom: 1px dotted var(--black); border-top: 1px dotted var(--black);}
.ContainerDownloads .LinkBox:hover					{}
.ContainerDownloads .LinkBox:hover .h4				{text-decoration: underline; color: inherit;}
.ContainerDownloads .LinkBox.LinkBox02:hover		{}
.ContainerDownloads .LinkBox .h4					{font-weight: 600 !important; text-decoration: none;}
.ContainerDownloads .LinkBox p,
.ContainerDownloads .VideoBox p						{margin: 0;}
.ContainerDownloads .LinkBox .TextDescr,	
.ContainerDownloads .VideoBox .TextDescr			{font-size: 100%; line-height: 1.5; display: block; padding-top: .75em;}
.ContainerDownloads .LinkBox .TextInfo,
.ContainerDownloads .VideoBox .TextInfo				{font-size: 90%; line-height: 1.5; display: block; padding-top: .75em;}
.ContainerDownloads .LinkBox .TextInfo span,
.ContainerDownloads .VideoBox .TextInfo span		{display: inline-block; padding-right: 1em;}

.ContainerDownloads .VideoBox .ContainerVideo .Video {position: relative; padding-bottom: 56.25%; padding-top: 0; height: 0; padding-right: 1.5em;}
.ContainerDownloads .VideoBox .ContainerVideo  .Video iframe  {position: absolute; top: 0; left: 0; width: 100%; height: 100%;}

.ContainerDownloads .ThumbnailBox					{background-position: 97% 1.5em;}

.ContainerDownloads .VideoBox .ContainerVideo,
.ContainerDownloads .ThumbnailBox .ColPic 			{padding-right: 1.75em !important;}

/* -----------------------------------------------------------------------------------
 Content: Schools
----------------------------------------------------------------------------------- */

.ContentSchools .ListContainerBorder ul.Check {
    min-width: 33%;
}

/* -----------------------------------------------------------------------------------
 Content: Betreuungsverein
----------------------------------------------------------------------------------- */

.ContentBetreuungsverein .ContainerBg .Column.Width33 {
    min-height: 27em;
    margin-bottom: 0;
}

/*************************************************************************************
 Content Sidebar
**************************************************************************************/

/* -----------------------------------------------------------------------------------
 Nav Sidebar
----------------------------------------------------------------------------------- */

.Sidebar nav .CatLink {
    display: block;
    border-bottom: 1px dotted var(--black);
    padding-left: 0.15rem;
}

.Sidebar nav .CatLink.Active {
    padding: 0.65rem 0 0.65rem 0.15rem;
    font-size: 142%;
    font-family: 'RobotoCond';
    font-weight: 700;
    text-decoration: none;
}

.Sidebar nav .Cat01 .CatLink.Active {
    color: var(--red-dark);
}

.Sidebar nav .Cat02 .CatLink.Active {
    color: var(--cyan-dark);
}

.Sidebar nav .Cat03 .CatLink.Active {
    color: var(--orange-dark);
}

.Sidebar nav .Cat04 .CatLink.Active {
    color: var(--green-dark);
}

.Sidebar nav .Cat05 .CatLink.Active {
    color: var(--purple-dark);
}

.Sidebar nav .SubCat {
    display: block !important;
    font-size: 100%;
}

.Sidebar nav .SubCat a {
    display: inline-block;
    text-decoration: none;
    color: var(--black);
}

.Sidebar nav .SubCat a:hover {
    text-decoration: underline !important;
    color: var(--red);
}

.Sidebar nav .SubCat > li {
    border-bottom: 1px dotted var(--black);
}

.Sidebar nav .SubCat .SubCatLink {
    display: block;
    padding: 0.75rem 0 0.75rem 0.15rem;
    font-weight: 600;
}

.Sidebar nav .SidebarDisplayNone {
	display: none;
}

.Sidebar nav .SubCat .SubCatLink:hover {
	color: var(--red-dark);
    background-color:  var(--grey-lighter);
	text-decoration: none !important;
}

.Sidebar nav .SubCat .SubCatLink.Active {}

.Sidebar nav .SubCat .SubCatNav {
    display: none;
    margin-bottom: 0.75em;
}

.Sidebar nav .SubCat .SubCatNav a {
    margin: 0.35em 0 0.35em 0;
    padding-left: 1.25rem;
}

.Sidebar nav .SubCat .SubCatNav a:hover {
    color: var(--red-dark);
}

.Sidebar nav .SubCat > .Active {}

.Sidebar nav .SubCat > .Active .SubCatLink {
    color: var(--red-dark);
}

.Sidebar nav .SubCat > .Active .SubCatNav {
    display: block;
    margin-top: -0.25em;
}

.Sidebar nav .SubCat > .Active .SubCatNav a.Active {
    color: var(--red-dark);
    font-weight: 600;
}

.Sidebar nav .SubCat .SubCatNav .Active > a {
    color: var(--red-dark);
    font-weight: 600;
    background: url(/img/icon_dot.png) 0.125em 0.525em no-repeat;
    background-size: 8px auto;
}

.Sidebar nav .SubCat .SubCatNav .SubCatNav2 {
    display: none;
    margin: 0 0 0.5em 0;
    padding-left: 1.25em;
}

.Sidebar nav .SubCat .SubCatNav .Active .SubCatNav2 {
    display: block;
}

.Sidebar nav .SubCat .SubCatNav .SubCatNav2 .Active > a {
    color: var(--red-dark);
    font-weight: 600;
}

.Sidebar nav .SubCat .SubCatLink .Flag {
    display: inline-block;
	font-size: .75rem;
    font-weight: 600;
	color: var(--white);
	background: var(--grey-darker);
    padding: 0 .625em;
	line-height: 2;
	border-radius: 3em;
	letter-spacing: .05em;
	margin-left: .5em;
	transform: translateY(-.1em);
}

/* -----------------------------------------------------------------------------------
 Content Sidebar: Title, Text, Lists
----------------------------------------------------------------------------------- */

.Sidebar p,
.Sidebar ol,
.Sidebar ul {
    line-height: 1.5;
    margin: 0 0 1.575em 0;
}

.Sidebar h3,
.Sidebar .TitleM {
    margin: 0 0 1.575em 0;
    font-size: 100%;
    font-weight: 900;
    line-height: 1.575;
}

.Sidebar h3,
.Sidebar .TitleM {
    margin: 0;
    font-size: 100%;
    font-weight: 900;
    line-height: 1.575;
}

/* -----------------------------------------------------------------------------------
 Content Sidebar: Module
----------------------------------------------------------------------------------- */

.Sidebar .Box {
    position: relative;
    margin-bottom: 1.575em;
    padding: 1.25em 1.75em 0 1.75em;
}

/*************************************************************************************
* Forms
*************************************************************************************/

::placeholder {
	color: var(--grey-dark);
}



/* -----------------------------------------------------------------------------------
 Forms, Basic Styles
----------------------------------------------------------------------------------- */

.ContainerForm {
    overflow: hidden;
    margin-bottom: 1em;
}

.ContainerForm .h2 {
    margin-top: 0.5em;
}

.FormGroup {
    position: relative;
    overflow: hidden;
}

p.FormTitle {
    font-weight: 600;
}

p.FormLink {
    font-weight: 400;
}

.Label {
    overflow: hidden;
}

.Label span {
    display: inline-block;
    padding-left: 0.2em;
    color: var(--red-dark);
}

.Field {
    margin: 0.375em 0 1em 0;
    overflow: hidden;
}

textarea,
select,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="submit"] {
    margin: 0;
    padding: 0.5em 0.8em 0.5em 0.5em;
    width: 100%;
    font-size: 100%;
    line-height: 1.5;
    color: var(--black);
    background-color: var(--white);
    border: 1px solid var(--grey-medium);
}

textarea:focus,
select:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    color: var(--black);
    border: 1px solid var(--red);
    box-shadow: inset 0px 7px 6px 0px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: inset 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
    -o-box-shadow: inset 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
    background: var(--white);
}

select option {
    padding: 0.25rem 0 0.25rem 0.5rem;
}

select option.Disabled {
    padding: 0 0 0 0.5rem;
}

select {
    /* line-height: 2.35em; */
    height: 2.75em;
    padding-right: 2.5em;
}

select:hover {
	cursor: pointer;
}

label {
    line-height: 1.666;
}

label input[type="checkbox"] {
    margin-right: 1em;
}

.Field textarea {
    height: 10.75em;
}

.birthday_chk {
    padding: 0 !important;
    margin: 0 !important;
    font-size: 1px !important;
    visibility: hidden;
}

input[type="submit"],
button[type="submit"],
a.ButtonSubmit {
    padding: 0.5em 0.85em 0.5em 0.85em;
    text-align: center;
    font-size: 125%;
    font-family: 'RobotoCond';
    font-weight: 700;
    line-height: 1.5;
    color: var(--white);
    text-decoration: none;
    text-transform: none;
    background: var(--red);
    border: none;
}

input[type="submit"]:hover,
button[type="submit"]:hover,
a.ButtonSubmit:hover {
    background: var(--red-dark);
	cursor: pointer;
    -webkit-transition: opacity 200ms ease-in-out;
    -moz-transition: opacity 200ms ease-in-out;
    -o-transition: opacity 200ms ease-in-out;
}

.Width50 input[type="submit"],
.Width50 button[type="submit"],
.Width50 a.ButtonSubmit {
    width: 100%;
}

.FieldRadio {}

.FieldRadio label {
    /* float: left; */
    margin: 0 2em 0 0;
}

.FieldRadio input[type="radio"] {
    float: left;
    margin: 0.575em 1em 0 0;
    padding: 0 !important;
}

.FieldCheckbox {}

.FieldCheckbox label {
    float: left;
    margin: 0 2em 0 0;
}

.FieldCheckbox input[type="checkbox"] {
    float: left;
    margin: 0.575em 1em 0 0;
    padding: 0 !important;
    border: 1px solid var(--grey-medium);
}

.FieldCheckboxSingle label {
    float: left;
    margin: 0;
    width: 86%;
}

.FieldCheckboxList input,
.FieldRadioList input {
    clear: both;
}

.ButtonRow {
    margin: 0 0 2.5em 0;
    text-align: center;
    overflow: hidden;
}

.Center input {
    float: none;
    margin: 0px auto;
}

.FormMessage {
    margin-top: 0.85em;
    padding-bottom: 1.25em;
    overflow: hidden;
}

.FormMessage p {
    font-size: 120%;
    font-weight: 600;
}

.Error {
    margin: 1.25em 0 0.25em 0 !important;
    padding: 0.825em 0 0.75em 0 !important;
    border-top: 1px dotted var(--red);
    border-bottom: 1px dotted var(--red);
    font-weight: 600;
    color: var(--red-dark);
    text-align: center;
}

.Error ul {
    font-weight: 500;
}

.Success {
    border-top: 2px solid green;
    border-bottom: 2px solid green;
    color: green;
}

p.Success,
span.Success {
    border-top: 0;
    border-bottom: 0;
}

.Inactive {
    opacity: 0.75;
}

.Inactive select,
.Inactive input[type="text"],
.Inactive input[type="password"] {
    background-color: var(--grey-light) !important;
}

/* -----------------------------------------------------------------------------------
 Form, Variante 00
----------------------------------------------------------------------------------- */

.FormVar00 .Label {
    float: left;
    margin: 0;
    padding: 1em 1em 0 0;
    width: 32%;
}

.FormVar00 .Field {
    float: right;
    width: 67%;
    margin: 0.5em 0 0.5em 0;
}

.FormVar00 .Fields100 .Field {
    float: none;
    width: 100%;
    margin: 0.5em 0 0.5em 0;
}

.FormVar00 .Field .Field {
    float: none;
    width: 100%;
    margin: 0.25em 0 0.5em 0;
}

.FormVar00 .Field .Label {
    float: none;
    width: 100%;
    margin-top: 0.575em;
    padding: 0 0 0 0;
}

.FormVar00 .Field p {
    margin: 0.5em 0 0.5em 0;
}

.FormVar00 .FieldRadio {
    margin: 1em 0 0.75em 0;
}

.FormVar00 .FieldCheckbox {
    margin: 1em 0 0.75em 0;
}


.FormVar00 .FieldCheckboxList p,
.FormVar00 .FieldRadioList p {
    margin-top: -0.25em;
}

.FormVar00 .ButtonRow input[type="submit"] {
    margin-top: 1em;
    width: 33%;
}

.FormVar00 .Width33 {
    float: right;
    width: 31.325% !important;
    margin-right: 3%;
}

.FormVar00 .FloatLeft {
    float: left !important;
}

.FormVar00 .FloatRight {
    float: right !important;
}

.FormVar00 .Width33.FloatRight {
    margin-right: 0;
}

/* -----------------------------------------------------------------------------------
 Form, Variante 01
----------------------------------------------------------------------------------- */

.FormVar01 .Label {
    margin: 0;
    padding: 0 0 0.5rem 0;
    width: 100%;
    font-family: 'RobotoCond', sans-serif;
    font-weight: 700;
    font-size: 140%;

}

.FormVar01 .Field {
    width: 100%;
    margin: 0 0 1rem 0;
}

/* -----------------------------------------------------------------------------------
 Form, Variante 02
----------------------------------------------------------------------------------- */

.FormVar02 .Label {
    float: left;
    display: block;
    width: 3.5rem;
    height: 3.5rem;
    padding-left: 0.1rem;
    background: var(--red);
    color: var(--white);
    font-size: 150%;
    font-weight: 600;
    line-height: 2;
    text-align: center;
    overflow: hidden;
	font-family: 'RobotoCond';
}

.FormVar02 .Field {
    width: calc(100% - 3.5rem);
    margin: 0 0 1rem 0;
}

.FormVar02 select {
    width: 100%;
    height: 3.5rem;
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    font-weight: 600;
    font-size: 120%;
    line-height: 1.5;
    color: var(--black);
    background-color: var(--white);
    border: 1px solid var(--grey-medium);
}

.FormVar02 select:hover {
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
}

.FormVar02 select option {
    padding-left: 0.5rem;
}

.FormVar02 .FormGroup.Inactive {
	opacity: 1;
}

.FormVar02 .FormGroup.Inactive select {
	opacity: .75;
}

.FormVar02 .FormGroup.Inactive select:hover {
	pointer-events: none;
}


/* -----------------------------------------------------------------------------------
 Form, Check Data
----------------------------------------------------------------------------------- */

.FormCheck {
    padding: 1.575em 0 2em 0;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

.FormCheck p.FormTitle {
    float: left;
}

.FormCheck p.FormLink {
    float: right;
}

.FormCheck .Label {
    width: 20%;
    padding-top: 0;
    line-height: 1.4;
}

.FormCheck .Field {
    float: left;
    margin: 0px !important;
    padding: 0 2em 0.25em 0px;
    font-weight: 400;
    line-height: 1.4;
}


/* -----------------------------------------------------------------------------------
 Form, Spamcheck
----------------------------------------------------------------------------------- */

.GenderChk {
    display: none;
}



/*************************************************************************************
* Sitemap
*************************************************************************************/

.ContentSitemap .Title {
    margin-top: 0;
    padding-bottom: 0.75em;
    border-bottom: 1px solid black;
    color: var(--black);
}

.ContentSitemap .Title a {
    text-decoration: none;
    color: var(--black);
}

.ContentSitemap a {}

/*************************************************************************************
* SearchResults
*************************************************************************************/

.ContentSearchResults {
    padding-top: 0em;
    border-top: 1px dotted var(--black);
}

.ContentSearchResults a.SearchResult {
    text-decoration: none;
    padding-right: 2em;
}

.ContentSearchResults .SearchResultCat {
    text-transform: uppercase;
    font-family: 'RobotoCond';
}

.ContentSearchResults .Cat01 {
    color: var(--red-dark);
}

.ContentSearchResults .Cat02 {
    color: var(--cyan-dark);
}

.ContentSearchResults .Cat03 {
    color: var(--orange-dark);
}

.ContentSearchResults .Cat04 {
    color: var(--green-dark);
}

.ContentSearchResults .Cat05 {
    color: var(--purple-dark);
}

.ContentSearchResults a.SearchResult p {
    color: var(--black);
    margin-bottom: 0;
}


/*************************************************************************************
* SearchResults Kitas
*************************************************************************************/

.SearchResults.ResultsKita {
    border-top: 1px dotted var(--black);;
}

.SearchResults.ResultsKita .Container {
    margin-top: 1.5em;
    padding-bottom: 0em;
    border-bottom: 1px dotted var(--black);
    overflow: hidden;
}

.SearchResults.ResultsKita .Container .ColumnAddress {
    float: left;
    width: 60%;
    margin: 0;
}

.SearchResults.ResultsKita .Container .ColumnAddress:hover {
    text-decoration: none;
}

.SearchResults.ResultsKita .Container .ColumnLinks {
    float: right;
    margin-right: 0;
    width: 36%;
    text-align: right;
}

.SearchResults.ResultsKita .Container .ColumnLinks a {
    display: inline-block;
    text-align: right;
}



/*************************************************************************************
* Slider
*************************************************************************************/

.Slider {
    margin-top: 13.225em;
    margin-bottom: 1.75em;
    position: relative;
    width: 100%;
    text-align: center;
    /*overflow: hidden;*/
}

.Slider .Slide {
    overflow: hidden;
}

.Slider > .Wrap {
    overflow: visible;
    position: relative;
}

.Slider .InnerWrap {
    height: 100%;
    /*overflow: hidden;*/
    position: relative;
}

.Slider .Slide .Wrap {
    position: absolute;
    left: 7.5rem;
    display: block;
    width: auto;
    overflow: hidden;
}

.Slider .Slide .Wrap a {
    display: block;
    text-decoration: none !important;
}

.Slider .Slide .Wrap a:hover p.Title {
    opacity: .6;
}

.Slider img {
    position: absolute;
    left: -50%;
    right: -50%;
    height: 100%;
    width: auto !important;
    max-width: none !important;
    margin: 0px auto;
}

.Slider p {
    color: var(--black);
}

.Slider p.Title {
    margin: 0;
    font-size: 233.333%;
    line-height: 1.05;
    -webkit-transition: opacity 500ms;
    -moz-transition: opacity 500ms;
    -o-transition: opacity 500ms;
    transition: all 500ms;	
}

.Slider a.Button {
    display: block;
    float: left;
    margin: 1.05em 0 0 0;
    padding: 0 2em 0 1.75em;
    min-width: 8.25em;
    font-family: 'RobotoCond';
    font-weight: 700;
    font-size: 166.667%;
    line-height: 2.3;
    color: var(--white);
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    background-image: url(/img/icon_arrow-right-2.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 36%;
}

.Slider a.Button:hover {
    background-position: 102% center;
}

.Slider .WrapSliderNav {
    position: absolute;
    right: 0.25em;
    bottom: 1.75em;
    width: auto;
    z-index: 1;
    overflow: hidden;
    padding-top: 0 !important;
	font-size: 80%;
}

.Slider .WrapSliderNav a.LinkNav {
    display: block;
    float: left;
    width: 25px;
    height: 25px;
    margin: 0;
    font-weight: 300;
    text-decoration: none;
    text-align: center;
    overflow: hidden;
    background: url(/img/icon_dot-2.png) center center no-repeat;
    background-size: 14px;
}

.Slider .WrapSliderNav a.LinkNav:hover {
    background-image: url(/img/icon_dot.png); opacity: 1 !important;
}

.Slider .WrapSliderNav a.LinkNav span {
    display: none;
}

.Slider .WrapSliderNav a.Active {
    background-image: url(/img/icon_dot.png) !important; opacity: 1 !important;
}

.Slider .Link {
    display: block;
    position: absolute;
    top: -50%;
    bottom: -50%;
    margin: auto;
    z-index: 1;
    width: 3.05em;
    height: 3.05em;
    -webkit-transition: opacity 500ms;
    -moz-transition: opacity 500ms;
    -o-transition: opacity 500ms;
    transition: all 500ms;
}

.Slider .Link a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    opacity: 0;
}

.Slider .LinkBack {
    left: -4em;
    background: var(--black) url("/img/icon_slider-left.png") no-repeat center center;
    background-size: 90% auto;
     opacity: 0;
}

.Slider:hover .LinkBack {
    left: -0.38em;
    opacity: .60;
}

.Slider .LinkNext {
    right: -4em;
    background: var(--black) url("/img/icon_slider-right.png") no-repeat center center;
    background-size: 90% auto;
    opacity: 0;
}

.Slider:hover .LinkNext {
    right: -0.38em;
    opacity: .60;
}

.Slider .Link a span {
    display: none;
}

.SliderStartPage 										{background-color: var(--white); margin-top: 11em; margin-bottom: 0; height: auto; padding-bottom: 5.25rem;}
.SliderStartPage .Gradient								{position: absolute; bottom: 0; width: 100%; height: 50%; z-index: 0;
														background: transparent; background: linear-gradient(0deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,0) 100%);}
.SliderStartPage .Slide									{height: 700px;}
.SliderStartPage .Slide .Wrap							{bottom: 6.25rem; z-index: 1; background-image: none; background-color: rgba(255,255,255,.9); padding: 1.5rem 2.25rem 2.25rem 2.25rem;
														border-left-width: 1.25em; border-left-style: solid;}
.SliderStartPage img									{position: static; height: 100% !important; width: 100% !important; object-fit: cover;}
.SliderStartPage p.Title								{display: inline-block; font-size: 365%; font-family: 'RobotoCond'; font-weight: 600; }

.SliderStartPage .player_start > div:nth-child(2)  p.Title	{font-size: 280%;}

.SliderStartPage a.Button								{margin-top: 1.75rem; padding: 0 1.5em 0 1.5em; font-size: 140%; padding-right: 1em; padding-left: 1em;
														min-width: 7em; background-image: none; text-transform: none;}

.SliderStartPage .WrapSliderNav a.LinkNav				{background-image: url(/img/icon_dot-white.png); opacity: .75;}

/* Slider Gallery */

.ContainerSlider {
    padding: 0em 0 4.5em 0;
    margin-bottom: 2em;
    background: var(--grey-light);
    overflow: hidden;
}

.ContainerSlider p {
    margin: 1em 1em 1.5em 1em;
}

.SliderGallery {
    width: 100%;
    height: 350px;
    margin-top: 0;
    overflow: visible;
}

.SliderGallery img {}

.SliderGallery p.TextPic {
    position: absolute;
    top: 370px;
    width: 100%;
    height: 2.775em;
    margin: 0;
    padding: 0 2.5em 0 2.5em;
    overflow: hidden;
    color: var(--black);
    line-height: 1.5;
}

.SliderGallery .Wrap {
    width: 100%;
    padding-left: 5em;
    padding-right: 5em;
    background: var(--grey-light);
    overflow: visible;
}

.SliderGallery .InnerWrap {
    overflow: visible;
}

.SliderGallery .Slide {
    height: 350px;
    overflow: hidden;
    background: var(--grey-light);
}

.SliderGallery a.Button {
    display: block;
    float: left;
    margin: 1.05em 0 0 0;
    padding: 0 2em 0 2em;
    min-width: 8.25em;
    font-family: 'RobotoCond';
    font-weight: 700;
    font-size: 166.667%;
    line-height: 2.3;
    color: var(--white);
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    background-image: url(/img/icon_arrow-right-2.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 36%;
}

.SliderGallery a.Button:hover {
    background-position: 102% center;
    opacity: 0.8;
}

.SliderGallery .WrapSliderNav {
    position: absolute;
    left: -50%;
    right: -50%;
    bottom: -6em;
    z-index: 1;
    overflow: hidden;
    padding-top: 0 !important;
    background: transparent;
}

.SliderGallery .WrapSliderNav p {
    float: left;
    position: relative;
    left: 50%;
    margin: 0 auto;
}

.SliderGallery .WrapSliderNav a.LinkNav {
    display: block;
    float: left;
    position: relative;
    right: 50%;
    width: 25px;
    height: 25px;
    background-size: 14px;
}

.SliderGallery .WrapSliderNav a.LinkNav span {
    display: none;
}

.SliderGallery .WrapSliderNav a.Active {
    background-image: url(/img/icon_dot.png) !important;
}

.SliderGallery .Link {
    display: block;
    position: absolute;
    bottom: auto;
    top: 45%;
}

.SliderGallery .Link a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.SliderGallery .LinkBack {
    left: -3.5em;
}

.SliderGallery:hover .LinkBack {
    left: 0;
}

.SliderGallery .LinkNext {
    right: -3.5em;
}

.SliderGallery:hover .LinkNext {
    right: -0em;
}

.SliderGallery .Slide {
    overflow: visible !important;
}

.SliderGallery .bx-wrapper .bx-viewport {
    background: var(--grey-light) !important;
    overflow: visible !important;
}

/*************************************************************************************
* Lightbox
*************************************************************************************/

#Dim,
#DimMobile {
    display: none;
    left: 0px;
    top: 0px;
    height: auto !important;
    width: 100%;
    margin: auto;
    min-height: 100%;
    background: none repeat scroll 0% 0% var(--black);
    opacity: .80;
    overflow: hidden !important;
    position: fixed;
    z-index: 1001;
}

#DimMobile {
    z-index: 104;
}

.Lightbox {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    height: 0;
    text-align: center;
    z-index: 1002;
}

.Lightbox .Wrap {
    position: absolute;
    left: -100%;
    right: -100%;
    margin: auto;
    padding: 1.25em 2em 0 2em;
    text-align: center;
    background: none repeat scroll 0% 0% var(--white);
}

.Lightbox .Wrap .Link a {
    display: block;
    width: 100%;
    height: 100%;
}

.Lightbox .Wrap .Link span {
    display: none;
}

.Lightbox .Wrap .Close {
    display: block;
    position: absolute;
    right: -0.5em;
    top: -3.75em;
    width: 3em;
    height: 3em;
    text-decoration: none;
    z-index: 1;
    color: var(--white);
}

.Lightbox .Wrap .Close:before {
    content: '×';
    font-family: 'Roboto', sans-serif;
    font-size: 280%;
    font-weight: 300;
    line-height: 1.25;
}

.Lightbox .Wrap .Close span {
    display: none;
}

.Lightbox .Wrap .h1 {
    margin-bottom: 0.25em;
}

.Lightbox .Content {
    text-align: left;
}

/* Lightbox: Contact Form ---------------------------------------------------------- */

.LightboxContactForm {
    position: absolute;
    top: 4.25em;
}

.LightboxContactForm .Wrap {
    width: 40em;
}

.LightboxContactForma .Content {}

.LightboxContactForm .Content .ButtonRow {
    margin-top: 0;
}

.LightboxContactForm .ContainerTitle {
    background: var(--red);
    margin: -1.25em -2em -0.5em -2em;
    text-align: center;
}

.LightboxContactForm .ContainerTitle .h1 {
    padding: 0.65em;
    margin-bottom: 0;
    color: var(--white);
    font-size: 220%;
    text-transform: uppercase;
}

.LightboxContactForm hr.NoMarginBottom {
    margin-bottom: -0.5em !important;
}

/*************************************************************************************
* jquery boxslider Styles 
*************************************************************************************/

.bx-wrapper .bx-viewport {
    border: 0 !important;
    left: 0 !important;
    box-shadow: none !important;
}

.bx-wrapper img {
    max-width: auto !important;
}

/*************************************************************************************
* Footer
*************************************************************************************/

footer .FooterRow {
    overflow: hidden;
}

footer .FooterRow .Wrap {
    position: relative;
    overflow: visible;
}

footer .FooterRow01,
footer .FooterRow02,
footer .FooterRow03	{
	background-color: var(--grey-light);
}

footer .FooterRow01 {
    padding: 2.25em 0 0.5em 0;
}

footer .FooterRow02 {
    margin-top: 0; padding: 0 0 0.5em 0; position: relative; overflow: visible;
}

footer .FooterRow02 .Wrap {
    text-align: center;
}

footer .FooterRow02 .LinkHotline {
	position: absolute; 
	left: 74.75%; 
	top: -6rem; 
	z-index: 1;
}

footer .FooterRow03 {
    padding: 1.25rem 0 4.25em 0;
}

footer .FooterRow03 p {
    color: var(--black);
}

footer .FooterRow03 p a {
    color: color: var(--black);
}



/* Footer Nav */
footer .FooterNav {}

footer .FooterNav a {
    color: var(--black);
    font-size: 77.778%;
    text-decoration: none;
}

footer .FooterNav a:hover {
    opacity: 0.7;
}

footer .FooterNav ul {
    line-height: 1;
}

footer .FooterNav ul li {
    line-height: 1;
}

footer .FooterNav ul li a {
    line-height: 1.85em;
}

footer .FooterNav p {
    line-height: 1.5em;
}

footer .FooterNav .Column {
    float: left;
    width: 25% !important;
    font-size: 120%;
	margin-right: 0 !important; 
    margin-bottom: 0;
	padding-right: 2em;
}

footer .FooterNav .Column.Last {
	padding-right: 0;
}

footer .FooterNav .Column a {
    text-transform: none;
}

footer .FooterNav .Column ul {
    margin-bottom: 2em;
}

footer .FooterNav .Column .CatLink {
    font-weight: 600;
	text-transform: uppercase;
}

footer .FooterNav .Column .SubCat {
    display: block !important;
}

footer .FooterNav .Column .SubCatNav,
footer .FooterNav .Column .SubCatNav2 {
    display: none;
}

footer .FooterNav .Column01,
footer .FooterNav .Column04 {
    width: 30%
}

footer .FooterNav .Column02,
footer .FooterNav .Column05 {
    width: 35%
}

footer .FooterNav .Column03,
footer .FooterNav .Column06 {
    width: 30%
}

footer .FooterNav .Column07 {
    padding-bottom: 2em;
}

/* Special FooterCats */
footer .FooterNav .Column04 .CatLink {
    display: block;
}

footer .FooterNav .Column04 a {
    display: block;
}

footer .FooterNav .Column04 a.SubCatLinkSpecial01 {
    display: block;
    font-weight: 600;
	text-transform: uppercase;
}

footer .FooterNav .Column04 .SubCatNavSpecial01 {
    display: block;
}

footer .FooterNav .Column04 .SubCatNavSpecial01 a {
    display: block;
}


footer .FooterNav .Column05 .CatLink {
    display: none;
}

footer .FooterNav .Column05 a {
    display: none;
}

footer .FooterNav .Column05 a.SubCatLinkSpecial01 {
	display: none; 
	font-weight: 600; 
	text-transform: uppercase;
}

footer .FooterNav .Column05 .SubCatNavSpecial01 a  {
	display: block;
}

footer .FooterNav .Column05 a.SubCatLinkSpecial02 {
    display: block;
    font-weight: 600;
	text-transform: uppercase;
}

footer .FooterNav .Column05 .SubCatNavSpecial02 {
    display: block;
}

footer .FooterNav .Column05 .SubCatNavSpecial02 a {
    display: block;
}

footer .FooterNav .Column06 .CatLink,
footer .FooterNav .Column06 .SubCatLink	{
	display: none;
}

footer .FooterNav .Column06 .SubCatNavSpecial01 {
	display: block;
}

footer .FooterNav .Column06 a.SubCatLinkSpecial01 {
	display: block; 
	font-weight: 600; 
	text-transform: uppercase;
}

footer .FooterNav .Column06 .SubCatNavSpecial01 a {
	display: block;
}

footer .FooterNav .Column07 p {
	line-height: 1.5;
}

footer .FooterNav .Column07 a {
}



/* Footer Flag */
footer .FooterNav .SubCat .SubCatLink .Flag {
    display: inline-block;
	font-size: .7rem;
    font-weight: 600;
	color: var(--white);
	background: var(--grey-darker);
    padding: 0 .625em;
	line-height: 2;
	border-radius: 3em;
	letter-spacing: .05em;
	margin-left: .5em;
	transform: translateY(-.15rem);
}

/* Footer Social Media Links */
footer .SocialMediaLinks {
    float: left;
    position: relative;
    left: 50%;
    margin: 2rem auto 0 auto;
}

footer .SocialMediaLinks a {
    display: block;
    height: 2.75rem;
    width: 2.75em; 
    min-width: 2.5rem;
    float: left;
    position: relative;
    right: 50%;
    margin: 0 .35rem 0 .35rem;
    background-size: auto 95%;
    opacity: 0.5;
}

footer .SocialMediaLinks .LinkHotline {
    background-image: url(/img/icon_footer_hotline.png);
    background-position: left center;
    padding-left: 1.675em;
    color: var(--white);
    font-size: 160%;
    line-height: 1.333;
}

footer .SocialMediaLinks .Link01 {background-image: url(/img/icon_facebook-sw.png);}
footer .SocialMediaLinks .Link02 {background-image: url(/img/icon_twitter-sw.png);}
footer .SocialMediaLinks .Link03 {background-image: url(/img/icon_youtube-sw.png);}
footer .SocialMediaLinks .Link04 {background-image: url(/img/icon_instagram-sw.png);}


footer .Copyright {
    text-align: center;
	font-size: 90%;
}

footer .Separator {
	border-top: 1px dotted var(--black); 
	margin-bottom: 2em;
}


/*************************************************************************************
* CSS  EILMELDUNG_BANNER
*************************************************************************************/
.breaking-news {
    z-index: 1;
    position: absolute;
    width: 95%;
	max-width: 1300px;
    top: 0;
    left: 50%;
	right: 50%;
	transform: translate(-50%, 10px);
    background: white;
    top: 20px;
}

.breaking-news-headline {
    text-align: center;
    font-size: 1.125em;
	line-height: .8;
    display: block;
    width: 60%;
    position: absolute;
    margin-top: .9em;
    color: black;
    margin-left: 10em;
    white-space: nowrap;
}

.div-eilmeldung {
    height: 2.75em;
    width: auto;
    background-color: var(--white);
    float: left;
    border: none;
    color: var(--red-dark);
    padding-right: 12px;
    padding-left: 12px;
    font-size: 1em;
    cursor:default;
    position: absolute;
    z-index: 3;
    display: block;
    line-height: 2.9;
	font-weight: 600;
	letter-spacing: .025em;
}

.breaking-news-top {
    background-color: rgba(255,255,255,.95);
    height: 2.75em;
    width: 100%;
    overflow: hidden;
    position: absolute;
}

.breakingnewsbottom {
	background-color: var(--white);
    margin-top: 2.75em;
    height: auto;
    width: 100%;
    overflow: hidden;
    position: absolute;
    display: none;
	-webkit-box-shadow: 0px 15px 15px 0px rgba(0,0,0,0.20);
	-moz-box-shadow: 0px 15px 15px 0px rgba(0,0,0,0.20);
	box-shadow: 0px 15px 15px 0px rgba(0,0,0,0.20);
}


  
@keyframes marquee {
    100% {
        left: 0;
    }

    20% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

.marquee {
    animation: marquee 10s linear infinite;
    -webkit-animation-duration: 10s;
    -moz-animation-duration: 10s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0s;
}


.marquee-text2{
    padding-left:100%;
}

.readmorebutton,
.readmoreclose {
    position: relative;
    float: right;
    border: none;
    color: white;
    padding: 0 1rem;
    padding-right: 2.375rem;
    font-size: 1.125em;
	font-weight: 600;
	font-family: 'RobotoCond';
	line-height: 2.5;
    cursor: pointer;
    background-color: var(--red);
    background-image: url(/img/icon-readmore-arrow-open.png);
    background-repeat: no-repeat;
    background-position: 91% 52%;
	background-size: 14px auto;
}

.readmorebutton:hover {
    background-color: rgba(210, 0, 0, 0.85);

}

.readmoreclose {
    background-image: url(/img/icon-readmore-arrow-close.png);
}

.readmoreclose:hover {
    background-color: rgba(210, 0, 0, 0.85);

}

.breaking-maintext-heading {
    margin-top: 0px;

}

.breaking-maintext {
    line-height: 1.5;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 0;
    padding-top: 4%;
}

.breaking-maintext p {
 color: var(--black);
}

.breaking-maintext p,
.breaking-maintext ol,
.breaking-maintext ul {
    line-height: 1.5;
    margin: 0 0 1.5em 0;
}

.breaking-maintext ul {
    margin-left: 1.385em;
    list-style-position: outside;
    list-style-type: disc;
}

.breaking-maintext ul li {
    margin: 0;
}

.breaking-maintext ul ul {
    margin-bottom: 0;
}

.closebutton {
    height: 17px;
    background-color: transparent;
    float: right;
    border: none;
    padding: 6px 21px;
    padding-right: 20px;
    cursor: pointer;
    margin: 25px;
    background-image: url(/img/icon-readmore-cross-close.png);
    background-repeat: no-repeat;
    background-position: 90% 50%;
}

.readmorebutton-area {
    position: relative;
    background-color: rgba(255,255,255,.9);
    float: right;
    border: none;
}

@media only screen and (max-width: 1300px){
    
    .breaking-news-headline                            	{margin-left: 15%;}    
    .marquee-text2                                     	{padding-left:95%;}
	
}

@media screen and (min-width: 600px) and (max-width: 1020px) {
	
    .breaking-news-headline                            	{margin-left: 21%;}
    .marquee-text2                                     	{padding-left:63%;}
	.breakingnewsbottom									{margin-top: 2.5em;}

}

@media only screen and (max-width: 767px){
	
	.breaking-news										{top: -10px; width: 100%;}
	
	.breaking-maintext p, 
	.breaking-maintext ol, 
	.breaking-maintext ul 								{font-size: 17px;}
	
	.div-eilmeldung										{padding-left: 6px; line-height: 3.15; padding-right: 6px; font-size: 90%; letter-spacing: -.015em;}
	
}

@media only screen and (max-width: 670px){
    
	.readmorebutton-area								{background-color: var(--red);}
    .readmorebutton                                    	{width: 30px; height: 1.25em; padding: 0px; margin: 15px; margin-right: 0px;
														background-position: 10% 10%;}
    .readmorebutton:hover                               {background-color: transparent;}
    .readmorebutton span                                {display: none;}
    .readmoreclose                                      {background-position: 8% 5%;}
    .marquee-text2                                      {padding-left: 20%;}


	.div-eilmeldung span								{font-size: 80%;}
	.breaking-news-headline								{margin-left: 1%; font-size: 1em; line-height: 1;}
	
	
}

@media only screen and (max-width: 380px){    
    
    .marquee-text2                                     	{display:none;}

}


/* ==================================================================================
* CSS  07.2023
================================================================================== */
.BoxCourses	.WrapButtonLink								{margin-bottom: 3em !important;}

.RowNews												{margin-top: .75em; padding-top: 6em; padding-bottom: 5em; background-color: var(--white);}
.RowNews .h1											{margin: 0 0 1.75rem 0;}
.RowNews .h2											{margin-top: -.75rem; margin-bottom: 1.75rem;}
.RowNews .Box											{padding: 0; border: none; width: 100% !important; max-width: 1280px; margin: 0 auto; float: none; 
														display: flex; align-items: center; min-height: auto;}
.RowNews .Box .Width60									{padding-left: 3em;}
.RowNews .Box h2,
.RowNews .Box .h2										{text-align: left;}
.RowNews .Box h3,
.RowNews .Box .h3										{text-align: left; max-width: 800px; line-height: 1.5;} 
.RowNews .Box .ColumnPic img							{border: 1px solid var(--grey);}
.RowNews .ButtonLink 									{margin-top: .5em;}

.RowNews .Width90										{width: 100% !important; max-width: 800px; float: none; margin: auto !important;}

.RowNews .Box.NoPic .Width40							{display: none;}
.RowNews .Box.NoPic .Width60							{margin-left: auto !important; margin-right: auto !important; float: none !important; text-align: center; 
														width: 100% !important;
														max-width: 1000px;}
.RowNews .Box.NoPic h3									{text-align: center; margin-left: auto; margin-right: auto;}	
.RowNews .Box.NoPic h4									{max-width: 800px; text-align: center; margin-left: auto; margin-right: auto;}
.RowNews .Box.NoPic .ButtonLink 						{margin-left: auto !important; margin-right: auto !important;}

.RowUkraine												{margin-top: -1px; padding-bottom: 5em; background-color: var(--white);}
.RowUkraine .ContainerUkraine							{display: flex; align-items: center;}
.RowUkraine .Box										{padding: 0; border: none; width: 100% !important; max-width: 1360px; margin: 0 auto; float: none;}
.RowUkraine	.Box .Width40								{}
.RowUkraine	.Box .Width60								{padding-left: 2.625em;}
.RowUkraine	.Box .h1									{margin-bottom: 1.75rem; line-height: 1.25;}
.RowUkraine	.TitleBox									{margin-top: -.75rem !important;}
.RowUkraine	.Pic										{border: 1px solid var(--grey);}
.RowUkraine	.ContainerExpanded							{border: 1px dotted var(--black); padding: 5em 8em 1em 8em;}

.RowSponsoring											{margin-top: .75em; padding-top: 3em; padding-bottom: 1.5em; background-color: var(--white);}
.RowSponsoring .BoxSponsoring							{margin-right: 6rem; width: calc(33% - 3.675rem) !important; padding: 2em 1.25em 0.375em 1.25em;}
.RowSponsoring .BoxSponsoring .TitleBox					{text-transform: none; font-size: 210%;}

.RowGrid00 .BoxCourses,
.RowGrid01 .BoxCourses,
.RowGrid02 .BoxCourses,
.RowGrid00 .BoxAboutUs									{padding-right: 9rem !important; border: none; padding: 0; min-height: auto;}
													
.RowGrid00 .BoxCourses .h1,
.RowGrid01 .BoxCourses .h1,
.RowGrid02 .BoxCourses .h1								{margin-bottom: 1.5rem !important;}

.RowGrid00 .BoxAboutUs .ButtonLink						{margin-right: 1.25rem; min-width: 10.75em;}

.RowGrid00 .LinkTitleBox,
.RowGrid01 .LinkTitleBox,
.RowGrid02 .LinkTitleBox,
.RowGrid04 .LinkTitleBox								{width: 100%; height: auto; float: none; border-right: none; border: 1px dotted var(--black);}
														 
.RowGrid00 .LinkTitleBox .TitleBox,
.RowGrid01 .LinkTitleBox .TitleBox,
.RowGrid02 .LinkTitleBox .TitleBox,
.RowGrid04 .LinkTitleBox .TitleBox						{margin-bottom: 0 !important;}

.RowGrid00 .BoxSocialMedia,
.RowGrid01 .BoxSocialMedia,
.RowGrid02 .BoxSocialMedia								{width: 100%; margin-top: 1em; float: none; height: auto; }

.RowGrid00 .BoxSocialMedia .SocialMediaLinks,
.RowGrid01 .BoxSocialMedia .SocialMediaLinks,
.RowGrid02 .BoxSocialMedia .SocialMediaLinks			{display: inline-block;}

.RowGrid03 .Content										{width: 66%; float: right; padding-left: 1em; padding-bottom: 3em;}
.RowGrid03 .BoxContact .Text							{margin-top: .75em; width: calc(100% - 12.5em);}
.RowGrid03 .BoxContact .ColumnPic						{padding-left: 0;}

.RowAboutUs	.h1											{margin-bottom: .85em;}
.RowAboutUs	.BoxSocialMedia								{margin-top: 0; height: 9.75em;}
.RowAboutUs	.ContainerVideo								{padding-right: 8em; margin-bottom: 1.5em;}
.RowAboutUs	.ContainerVideo > div						{border: 1px solid var(--grey);}
.RowAboutUs .ContainerBrochure							{display: block; width: 71.5%; margin-left: auto; margin-right: auto; overflow: hidden;}
.RowAboutUs	.ContainerBrochure img						{width: 100%; border: 1px solid var(--grey); margin-bottom: 1.75rem;}

.RowAboutUs	.ContainerPdf								{margin-bottom: 2em;}
.RowAboutUs .consent-container-gmaps					{height: 27em;}

.BoxCertifications .ColumnPic							{margin-right: 2em;}
.LinkDate .Text											{width: calc(100% - 5em);}


/* Content Pages */

.PagePic img											{position: static; height: 100; width: 100%; object-fit: cover;}

.PageContent											{border: none; margin-bottom: 0;}

.Sidebar												{max-width: 400px; padding-left: 10px;}
.ContentMain											{padding-left: 1em; padding-right: 15em;}
.ContentMain.ContentColumns								{padding-left: 1em; padding-right: 0;}

.ContentNavSitemap .CatLink								{text-transform: none;}

.ColumnRight .BoxContact								{width: calc(100% - 1.5rem);}
.ColumnRight .BoxContact .ColumnPic						{width: 100%;}

.BoxContact .Pic										{border: 1px solid var(--grey-medium);}

.ContentSearchResults a.SearchResult					{padding-top: 1.25em; padding-bottom: 1.25em;}

.ColumnPic.PicPerson									{max-width: 220px !important;}


.RowGoogleMaps .consent-container-gmaps					{height: 24em !important; position: relative; background-color: var(--grey-light); margin-bottom: 4em;}
.RowGoogleMaps .consent-container-gmaps iframe 			{position: absolute; height: 100% !important; width: 100% !important; z-index: 1; left: 0;}
/* .RowGoogleMaps .BoxGoogleMaps:after						{position: absolute;
														  display: block;
														  padding: 3em;
														  line-height: 1.4;
														  font-size: 100%;
														  padding: 3em;
														  z-index: 0;
														  top: 50%;
														  left: 50%;
														  width: calc(100% - 6em);
														  -webkit-transform: translate(-50%, -50%);
														  -ms-transform: translate(-50%, -50%);
														  transform: translate(-50%, -50%);
														  color: var(--grey-dark);
														  text-align: center;
														   content: "Damit Ihnen Google Maps hier angezeigt werden kann, aktivieren Sie bitte die Anwendung unter „Funktionale Cookies“ im Menü „Datenschutz Einstellungen“ unten links auf dieser Seite.";
														   z-index: 0;} */
														   
.SliderGallery p.TextPic								{text-align: center;}
.ContainerSlider .TextSizeS								{line-height: 1.5 !important; display: inline-block;}

.SearchResults.ResultsKita .Container .ColumnLinks		{max-width: 270px;}													   




/****************************************************************************************
HTML5 Video Player
****************************************************************************************/
.html5-video-player a {background-color: #000 !important; width: auto !important; display: inline-block !important; padding: 3px !important; margin-top: -3px !important;}

.ContainerVideo .Video 			{position: relative; padding-bottom: 56.25%; padding-top: 0; height: 0; padding-right: 1.5em;}
.ContainerVideo .Video video 	{position: absolute; top: 0; left: 0; width: 100%; height: 100%;}


/****************************************************************************************
 ANIMATIONS & TRANSITIONS
****************************************************************************************/

.custom-anim-container.custom-anim-move-up-01			{transform: translateY(4em);
														-webkit-transition: all 1000ms ease;
														-moz-transition: all 1000ms ease;
														-o-transition: all 1000ms ease;
														transition: all 1000ms ease;}
.custom-anim-container.custom-anim-move-up-02			{transform: translateY(12em); 
														-webkit-transition: all 1200ms ease;
														-moz-transition: all 1200ms ease;
														-o-transition: all 1200ms ease;
														transition: all 1200ms ease;}														
.custom-anim-container.custom-anim						{transform: translateY(0); opacity: 1;}



/* Special mobile Startpage Animation */

.custom-anim-container.custom-anim-height				{height: 4.75em;
														-webkit-transition: all 1000ms ease;
														-moz-transition: all 1000ms ease;
														-o-transition: all 1000ms ease;
														transition: all 1000ms ease;}
														
.custom-anim-container.custom-anim-height.custom-anim	{height: .75em;}


@media (min-width: 1021px) {
	
	.SpaceAnimationSpecialResponsive						{opacity: 0; height: 0 !important;}	
	
}			


											