@charset "UTF-8";
.contao-cookiebar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
  padding: 15px;
  max-height: 100vh;
  box-sizing: border-box;
  pointer-events: none;
  overflow: hidden; }
  .contao-cookiebar * {
    box-sizing: border-box; }
  .contao-cookiebar:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }
  .contao-cookiebar .cc-inner {
    display: inline-block;
    overflow-y: auto;
    max-height: 100%;
    max-width: 100%;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    font-size: 1rem;
    text-align: left; }
  .contao-cookiebar.cc-top .cc-inner {
    vertical-align: top; }
  .contao-cookiebar.cc-top.cc-active .cc-inner {
    animation: cookiebar-top-in 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-top.cc-saved .cc-inner {
    animation: cookiebar-top-out 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-bottom .cc-inner {
    vertical-align: bottom; }
  .contao-cookiebar.cc-bottom.cc-active .cc-inner {
    animation: cookiebar-bottom-in 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-bottom.cc-saved .cc-inner {
    animation: cookiebar-bottom-out 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-middle .cc-inner {
    vertical-align: middle; }
  .contao-cookiebar.cc-middle.cc-active .cc-inner {
    animation: cookiebar-middle-in 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-middle.cc-saved .cc-inner {
    animation: cookiebar-middle-out 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-left {
    text-align: left; }
  .contao-cookiebar.cc-right {
    text-align: right; }
  .contao-cookiebar .cc-head h1:first-child, .contao-cookiebar .cc-head h2:first-child, .contao-cookiebar .cc-head h3:first-child, .contao-cookiebar .cc-head h4:first-child, .contao-cookiebar .cc-head h5:first-child, .contao-cookiebar .cc-head h6:first-child {
    margin-top: 0; }
  .contao-cookiebar .cc-head p {
    margin-bottom: 15px; }
  .contao-cookiebar .cc-btn {
    display: inline-block;
    cursor: pointer;
    width: 100%;
    padding: 8px 14px;
    margin-bottom: 8px;
    font-size: 15px;
    outline: 0 none;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    color: #444;
    background: #f5f5f5; }
    .contao-cookiebar .cc-btn:hover {
      background: #ececec; }
    .contao-cookiebar .cc-btn:last-child {
      margin-bottom: 0; }
  .contao-cookiebar .grayscale .cc-btn {
    background: #f1efef; }
    .contao-cookiebar .grayscale .cc-btn:hover {
      background: #ececec; }
    .contao-cookiebar .grayscale .cc-btn.success {
      background: #fbfbfb; }
      .contao-cookiebar .grayscale .cc-btn.success:hover {
        background: #f7f7f7; }
  .contao-cookiebar .highlight .cc-btn.success {
    background: #4e9e3e;
    border-color: #3e7830;
    color: #fff; }
    .contao-cookiebar .highlight .cc-btn.success:hover {
      background: #4c933f; }
  .contao-cookiebar label {
    position: relative;
    display: block;
    padding: 8px 13px 8px 0;
    line-height: 1.2rem; }
    .contao-cookiebar label.group {
      font-weight: 600; }
  .contao-cookiebar input {
    position: absolute;
    width: 1px;
    height: 1px;
    outline: 0 none;
    opacity: 0; }
    .contao-cookiebar input + label {
      padding: 8px 13px 8px 50px;
      cursor: pointer; }
      .contao-cookiebar input + label:before {
        content: '';
        position: absolute;
        top: 6px;
        left: 0;
        width: 35px;
        height: 18px;
        margin: 0;
        box-sizing: content-box;
        border-radius: 10px;
        background: #fff;
        border: 2px solid #9c9b99;
        transition: border-color .2s; }
      .contao-cookiebar input + label:after {
        display: block;
        content: '';
        position: absolute;
        top: 10px;
        left: 4px;
        width: 14px;
        height: 14px;
        border-radius: 10px;
        background: #9c9b99;
        transition: background .2s, margin-left .2s, padding .2s; }
      .contao-cookiebar input + label:active:after {
        padding-left: 5px; }
    .contao-cookiebar input.cc-group-half + label:after {
      background: linear-gradient(to right, #9c9b99 0%, #9c9b99 50%, #399d32 50%, #399d32 100%); }
    .contao-cookiebar input:checked + label:after {
      background: #399d32;
      margin-left: 17px; }
    .contao-cookiebar input:checked + label:active:after {
      margin-left: 12px; }
    .contao-cookiebar input:checked + label:before {
      background: #dcf3db;
      border-color: #399d32; }
    .contao-cookiebar input:disabled + label {
      pointer-events: none; }
      .contao-cookiebar input:disabled + label:after {
        background: #c8c7c5; }
      .contao-cookiebar input:disabled + label:before {
        background: #f4f4f4;
        border-color: #c8c7c5; }
  .contao-cookiebar.cc-active .cc-inner {
    opacity: 1;
    pointer-events: auto;
    visibility: visible; }
  .contao-cookiebar.cc-active.cc-blocked {
    pointer-events: auto;
    animation: cookiebar-overlay-in 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-saved.cc-inner {
    opacity: 0;
    pointer-events: none;
    visibility: hidden; }
  .contao-cookiebar.cc-saved.cc-blocked {
    pointer-events: none;
    animation: cookiebar-overlay-out 0.5s ease-in-out forwards; }

@media (min-width: 768px) {
  .contao-cookiebar .cc-btn {
    width: auto;
    margin-bottom: 0; }
  .contao-cookiebar .cc-inner {
    max-width: 750px; } }

@keyframes cookiebar-overlay-in {
  0% {
    background: rgba(0, 0, 0, 0); }
  100% {
    background: rgba(0, 0, 0, 0.75); } }

@keyframes cookiebar-overlay-out {
  0% {
    background: rgba(0, 0, 0, 0.75); }
  100% {
    background: rgba(0, 0, 0, 0);
    visibility: hidden; } }

@keyframes cookiebar-top-in {
  0% {
    opacity: 0;
    transform: translateY(-100%); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes cookiebar-top-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%); } }

@keyframes cookiebar-middle-in {
  0% {
    opacity: 0;
    transform: scale(0); }
  100% {
    opacity: 1;
    transform: scale(1); } }

@keyframes cookiebar-middle-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: scale(1); }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: scale(0); } }

@keyframes cookiebar-bottom-in {
  0% {
    opacity: 0;
    transform: translateY(100%); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes cookiebar-bottom-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%); } }

.contao-cookiebar {
  color: #444444; }
  .contao-cookiebar p {
    color: #868686;
    line-height: 1.4; }
  .contao-cookiebar .cc-inner {
    padding: 25px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    background: #fff; }
  .contao-cookiebar .cc-groups {
    display: none;
    padding-top: 15px; }
    .contao-cookiebar .cc-groups .cc-group {
      position: relative;
      border: 1px solid #d0d0d0;
      border-radius: 5px;
      margin-bottom: 10px;
      text-align: left; }
      .contao-cookiebar .cc-groups .cc-group > label {
        margin: 5px 130px 5px 10px; }
  .contao-cookiebar .cc-cookies {
    background: #fbfbfb;
    border-radius: 0 0 5px 5px; }
    .contao-cookiebar .cc-cookies > p {
      font-size: 0.875rem; }
    .contao-cookiebar .cc-cookies > p, .contao-cookiebar .cc-cookies > .cc-cookie {
      margin: 0;
      padding: 15px;
      border-top: 1px solid #e6e6e6; }
    .contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info {
      font-size: 0.875rem;
      background: #fff;
      padding: 10px;
      border-radius: 5px;
      border: 1px solid #efefef; }
      .contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info > div > span {
        font-weight: 600; }
      .contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info > div + div {
        margin-top: 5px;
        word-wrap: break-word; }
      .contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info + button.cc-detail-btn-details {
        margin-top: 15px; }
    .contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-desc p {
      margin-bottom: 0; }
    .contao-cookiebar .cc-cookies .cc-cookie label.cookie + p, .contao-cookiebar .cc-cookies .cc-cookie label.cookie + .cc-cookie-info, .contao-cookiebar .cc-cookies .cc-cookie label.cookie + button.cc-detail-btn-details {
      margin-top: 10px; }
    .contao-cookiebar .cc-cookies .cc-cookie p {
      margin: 0 0 15px;
      font-size: 0.875rem; }
  .contao-cookiebar .cc-footer, .contao-cookiebar .cc-info {
    text-align: center; }
  .contao-cookiebar .cc-detail-btn-details {
    border: 0 none;
    outline: 0 none;
    background: transparent;
    font-size: 13px;
    letter-spacing: 0;
    text-transform: initial;
    cursor: pointer;
    color: #a2a2a2;
    text-decoration: underline;
    padding: 0;
    margin: 0 0 10px; }
    .contao-cookiebar .cc-detail-btn-details span:nth-child(2) {
      display: none; }
    .contao-cookiebar .cc-detail-btn-details.cc-active span:nth-child(1) {
      display: none; }
    .contao-cookiebar .cc-detail-btn-details.cc-active span:nth-child(2) {
      display: inline; }
    .contao-cookiebar .cc-detail-btn-details:hover {
      color: #717171; }
  .contao-cookiebar .cc-info {
    margin-top: 15px; }
    .contao-cookiebar .cc-info > p {
      font-size: 0.875rem; }
    .contao-cookiebar .cc-info > a {
      display: inline-block;
      font-size: 0.813rem;
      color: #a2a2a2;
      text-decoration: none; }
      .contao-cookiebar .cc-info > a:hover {
        color: #717171; }
      .contao-cookiebar .cc-info > a + a:before {
        display: inline-block;
        content: '·';
        margin-right: 5px; }

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

body,form,figure{margin:0;padding:0}img{border:0}header,footer,nav,section,aside,article,figure,figcaption{display:block}body{font-size:100.01%}select,input,textarea{font-size:99%}#container,.inside{position:relative}#main,#left,#right{position:relative}#main{}#left{}#right{}#footer{clear:both}#main .inside{min-height:1px}.ce_gallery>ul{margin:0;padding:0;overflow:hidden;list-style:none}.ce_gallery>ul li{float:left}.ce_gallery>ul li.col_first{clear:left}.float_left{float:left}.float_right{float:right}.block{overflow:hidden}.clear,#clear{height:.1px;font-size:.1px;line-height:.1px;clear:both}.invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.custom{display:block}#container:after,.custom:after{content:"";display:table;clear:both}
@media all and (min-width: 1920px){



}

@media all and (max-width: 1260px){

   
}

@media all and (max-width: 980px){
   .teasergrid > .itemsperRow_3 > *, .ce_gallery ul.cols_3 > li {
  width: calc( (100% - (4 * 10px)) / 2 );
}
    
}



@media all and (max-width: 680px){
   .teasergrid > .itemsperRow_3 > *, .ce_gallery ul.cols_3 > li {
  width: 100%;
       margin: 0 0 20px;
}
    
        .teasergrid > .itemsperRow_4 > *, .ce_gallery ul.cols_4 > li {
  width: calc( (100% - (0 * 10px)) / 1 );
}
    

}
/*Basics*/

:root {
    --button-color: #F66035;
    --button-hover-color: #F86F4C;
    --text-on-light: #F66035;
    --text-on-dark: #F66035;
    --text-on-button: #FFF;
    --header-color: #313131;
    --header-border-color: #222222;
    --header-text-color: #ffffff;
}



*{
    border: none;
    outline: none;
}

html{
font-size:100.1%;
overflow-x:hidden;
-webkit-overflow-scrolling: touch;
 -webkit-text-size-adjust: 100%;
}
 
body, html {
height:100%;
min-height:100%;
}

body{
font-family: interstate, sans-serif;
color:#222;
font-size: 18px;
line-height: 1.8rem;
font-weight:300;
display: flex;
min-height: 100vh;
flex-direction: column;
}



  #wrapper {
    flex: 1 0 auto;
  }

/*Basics*/

/*Ende sticky footer*/

/*Form*/
input,textarea,select{
/*Safari*/
-webkit-appearance: none;
border-radius:0;
-webkit-border-radius:0;
}

.widget{
    margin-bottom: 2rem;
    display: table;
    width: 100%;
    box-sizing: border-box;
      color:gray;
}


.widget.widget-checkbox{
    color: inherit;
}



.widget.w50,.widget-select {
    float: left;
    width: calc((100% - 2rem) / 2);
    margin-right: 2rem;
    margin-bottom: 2rem;
}

.widget.w50.clr {
    margin-right: 0;
}

.widget.w50.noflaot {
    float:none;
}

.widget.widget-checkbox, .widget.widget-radio {
    display: block;
    margin-bottom: 2rem;
    padding-left: 32px;
}

.widget.widget-checkbox label span, .widget.widget-radio label span{
    display: inherit;
}

.widget.widget-text input {
 
    padding: 10px 15px;
    width: 100%;
    background: #f3f4f6;
    border: 0;
    box-sizing: border-box;
}

.widget.widget-textarea textarea {
    padding: 15px;
    width: 100%;
    background: #f3f4f6;
    border: 0;
    box-sizing: border-box;
}

.submit{
    background: transparent;
    padding: 0 4rem;
    line-height: 3rem;
    float: right;
    display: table;
    cursor: pointer;
    color: white;
}



body .icheckbox_minimal {
    margin-left: -32px;
    margin-right: 10px;
}


body .dk-select, body .dk-select-multi{
    width: 100%;
    box-sizing: border-box;
}


body .dk-select .dk-selected{

    padding:10px 15px;
}

body .dk-select{
    height: auto;
}

body select[data-dkcacheid] {
    display: block;
    height: 100%;
    width: 200px;
    position: absolute;
    top: 0;
    opacity: 0;
    z-index: -99999;
}

.widget-select {
    position: relative;
}



/*Ende Form*/

/*set images to maxwidth 100%*/
figure{
line-height:0;
    margin: 0;
}

figure > img, .image_container > img{
max-width:100%;
height:auto;
}

a{
color:inherit;
}
 
 
a:focus{
}
/*Ende Basics*/



 a {
transition:all 0.2s ease;
-webkit-transition:all 0.2s ease;
-moz-transition:all 0.2s ease;
-o-transition:all 0.2s ease;
-ms-transition:all 0.2s ease; 
text-decoration: none;
color:inherit;
 }


.table{
display:table;
width:100%;
}

.table-wrapper {
  display: table;
  vertical-align: middle;
  text-align: center;
  width: 100%;
  height: 100%;
  table-layout:fixed;
}

.row{
display:table-row;
position:relative;
}

.row > *{
display:table-cell;
}

.vtop{
    vertical-align: top
}

.vmiddle{
    vertical-align: middle
}

.vbottom{
    vertical-align: bottom
}


.headlinecontainer{
margin-bottom:2rem;
}

.headlinecontainer > *{
margin:0;

}


h1, h2, h3, h4, h5, h6 {
    font-family: "KlavikaWebBasicLight",arial,sans-serif;
    font-weight: 100;
}
 
h1, .h1 {
  font-size:1.7em;
  line-height:1.2em;
  letter-spacing:0.03em;
  margin-bottom:0.5em;
}

h2 {
    font-size: 1.4rem;
    line-height: 1.6;
}
h3, .h3 {
  font-size:1.5em
}
h4 {
font-size:1.4em;
    margin-bottom: 0;
}

h5, .h5{
font-size:16px;
font-weight:600;
}
h6{}

ul li{

}


li{
list-style-type:none;
}

 
p{
margin-bottom:20px;
    margin-top:0;
}

p:last-of-type{
margin-bottom:0;
}
 
ul,ol{
margin:0;
    padding:0;
}
 

span{
    display: block;
}

#main {

}


/*Teaser*/
.ce_pageteaser span, .ce_pageteaser a, .ce_page_teasers_element span, .ce_page_teasers_element a{
    display: block;
}
.teasergrid > div, .teasergrid > ul {
    margin: -10px -10px -20px -43px;
    display: table;
    min-width: 100%;
}

.ce_gallery ul > li a{
    display: block;
}

.teasergrid > ul > *, .teasergrid > div > *,.ce_gallery ul > li{
    float: left;
    margin:0 10px 20px;
}

.ce_gallery ul > li img{
    max-width: 100%;
    height: auto;
}

.teasergrid > .itemsperRow_1 > *, .ce_gallery ul.cols_1 > li{
    width:calc(100% / 1 )
}

.teasergrid > .itemsperRow_2 > *,.ce_gallery ul.cols_2 > li{
 width:calc( (100% - (4 * 10px)) / 2 )
}

.teasergrid > .itemsperRow_3 > *, .ce_gallery ul.cols_3 > li{
    width:calc( (100% - (6 * 10px)) / 3 )
}

.teasergrid > .itemsperRow_4 > *, .ce_gallery ul.cols_4 > li{
    width:calc( (100% - (8 * 10px)) / 4 )
}

.teasergrid > .itemsperRow_5 > *, .ce_gallery ul.cols_5 > li{
     width:calc( (100% - (10 * 10px)) / 5 )
}


.teasergrid > .itemsperRow_6 > *, .ce_gallery ul.cols_6 > li{
    width:calc(100% / 6 )
}



#herosection{
    width: 100%;
	position:relative;
}

#herosection .mod_pageImage > .inside.mod_pageImage > .inside,#herosection .mod_pageImage > .inside .bgImage{
    line-height:0;
}

#herosection .mod_pageImage > .inside .caption{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 6;
}


#herosection .inside,#herosection .inside .ce_herosection,#herosection .inside .ce_herosection .flexslider,#herosection .inside .ce_herosection .flexslider .slides, #herosection .inside .ce_herosection .flexslider .slides li,#herosection .inside .ce_herosection .flexslider .slides li .bgImage, #herosection .inside .ce_herosection .mod_pageImage,#herosection .inside .ce_herosection .mod_pageImage .inside, #herosection .inside .ce_herosection .mod_pageImage .inside .bgImage{
    height: 100%;
}

#herosection .caption *, #herosection .bgImage *,#herosection .flex-control-nav{
    height: auto;
}


/*if googlemap Iframe*/
#herosection iframe {

    border: 0;
    width: 100%;
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 99999;
}


.headertop > .inside,.headerbottom > .inside, .footertop > .inside,.footerbottom > .inside,#main .mod_article > .block{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
        position: relative;
}

footer > .inside{
    
}


#main .mod_article > .block{
    padding: 2rem;
}


 #main .mod_article.fullwidth > .block, #main .mod_article > .block.fullwidth {
    max-width: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*parallax*/
.fullwidth.mod_article > .block.ce_parallaxImage{
    padding: 0;
}

.parallax-container {
    position: relative;
    overflow: hidden;
    height: 650px;
}

.parallax-container .parallax {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}


.parallax-container .parallax img {
    opacity: 0;
    position: absolute;
    left: 50%;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}



/*introtext*/
#main .mod_article > .ce_introtext{
    max-width: 980px;
}

/*align*/

.flex-viewport{
    height: 100%;
}

body .flexslider {
    margin: 0;
    background: transparent;
    border: none;
    position: relative;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
 
}

body .flex-control-nav {

    bottom: 0;

    z-index: 999;
}





.avatar.rounded {
    border-radius: 50%;
    overflow: hidden;
    height: 20vw;
    width: 20vw;
    max-width: 250px;
    max-height: 250px;
  /*  margin: 0 auto; */
}

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

.textholder.align_above{
    margin-bottom: 6rem;
}

/*csscolumn*/

.columnized{
      column-fill: balance;
      -webkit-column-gap: 2em;
     -moz-column-gap: 2em;
          column-gap: 2em;
    orphans: 3;
    widows: 3;
}


.columnized.colcount_2{
 -webkit-columns: 2 200px;
     -moz-columns: 2 200px;
          columns: 2 200px;
}

.columnized.colcount_3{
-webkit-columns: 3 200px;
     -moz-columns: 3 200px;
          columns: 3 200px;
}


.columnized.colcount_4{
 -webkit-columns: 4 200px;
     -moz-columns: 4 200px;
          columns: 4 200px;
}


.columnized h3, .columnized h2, .columnized h1, .columnized h4, .columnized h5, .columnized h6,.columnized .headlinecontainer { 
  -webkit-column-span: all; 
          column-span: all; 
}


.columnized p {
  break-after: column;
    -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}

/*Headerefx*/
header.clone {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
    transition: 0.2s transform cubic-bezier(.3,.73,.3,.74);
    width: 100%;
    z-index: 999;
}

body.effectHeader.showOnUp.up header.clone {
     transform: translateY(0);
}

body.effectHeader.showOnDown.down header.clone,body.effectHeader.showOnDown.up header.clone {
      transform: translateY(0);
}


.vAlign_middle .row > *{
    vertical-align: middle;
}

.vAlign_top .row > *{
    vertical-align: top;
}


.vAlign_bottom .row > *{
    vertical-align: bottom;
}

.ce_kachelelement .row > *{
    width: 50%;
}




.ce_kachelelement .notfloat_right{
    padding-left:calc(((100% - 1280px) / 2)); 
}

.ce_kachelelement .notfloat_right > .inside{
    padding: 4rem 4rem 4rem 2rem;
}

.ce_kachelelement .notfloat_left{
    padding-right:calc(((100% - 1280px) / 2)); 
  
}

.ce_kachelelement .notfloat_left > .inside{
     padding: 4rem 2rem 4rem 4rem;
}

.ce_kachelelement video{
    height: 100%;
    width: 100%;
    object-fit: cover;
}


/*scrolltop*/
a#return-to-top {
    
  background: var(--darkblue);
color: white;
    width: 60px;
    height: 48px;
    display: block;
    text-decoration: none;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
	z-index:99999;
}

a#return-to-top:hover {
opacity:0.8;
}



a#return-to-top .icon-chevron-up{
    display: table;
height: 100%;
width: 100%;
}

a#return-to-top .icon-chevron-up {
    display: table;
height: 100%;
width: 100%;
}

a#return-to-top .icon-chevron-up > i{
display: table-cell;
vertical-align: middle;
text-align: center;
}

#return-to-top img {
   width: 59%;
	transform: rotate(-90deg);
	margin: 6px 0 0 12px;
}

.bgImage > img{
    max-width: 100%;
    height: auto;
}

.ce_gridList .slides li > img{
    opacity: 0;
    width: auto;
    max-width: 100%;
}

.ce_gridList .flexslider .slides > li:first-of-type{
    display: block;
}

.video_holder {
  position: relative;
background: black;
  overflow: hidden;
}

.ce_gridList video{

  width: 100%;
  height: auto;
}

/*Tciker*/
.ce_ticker{
    padding: 1rem 2rem 0.5rem;
    box-sizing: border-box;
}

#ticker {
    width: 100%;
    list-style: none;
    height: 1.85em;
    overflow: hidden;
    margin: 0;
}

#ticker > li {
    width: 100%;
    text-align: center;
    font-weight: bold;
}



/*Searchmodal*/
.openBtn {
    padding: 0;
    line-height: 0;
    display: inline-block;
    vertical-align: middle;
    background: transparent;
    margin-left: 2rem;
}

.openBtn img{
    max-width: 100%;
    height: auto;
}

.openBtn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.openBtn:hover {
 opacity: 0.8;
}

.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
}


.overlay-content {
  position: relative;
  top: 46%;
  width: 80%;
  text-align: center;
  margin-top: 30px;
  margin: auto;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  cursor: pointer;
  color: white;
}

.overlay .closebtn:hover {
  color: #ccc;
}


[type="search"] {
width: 100%;
}


.mod_search form {
    display: table;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}

.mod_search form > .formbody{
   display: table-row;  
}

.mod_search form > .formbody > *{
   display: table-cell;
    vertical-align: middle;
}


.mod_search form .widget-text {
    background: white;
    width: calc(100% - 200px);
}


.mod_search form .widget-submit {
    width: 200px;
    border: 2px solid gray;
    background: gray;
}


.mod_search form .widget-submit > * {
    width: 100%;
    background: transparent;
    text-transform: uppercase;
    cursor: pointer;
    color: white;
}
 .mod_search form [type="submit"] {
    padding: 0;
    margin: 0;
    line-height: 1;

}


.mod_search form .widget.widget-text input{
   background: white;
    padding: 10px 20px;
}

/*Linked Headline*/
/*headlinelink*/



.ce_headlineLink > .inside {
    display: table;
    margin: 0 auto;
}

.ce_headlineLink .h2 {
    font-size: 56px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.ce_headlineLink .subheadline{
    font-size: 28px; 
}

.ce_headlineLink .headlineholder {
    padding-left: 3rem;
}

.ce_headlineLink .icon {
width: 100px;
height: 100px;
}


/*HeroImage*/
.ce_heroImage{
   position: relative;
}

.ce_heroImage .caption{
       position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}


.ce_heroImage .caption > .inside{
    display: table;
    height: 100%;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 2rem;
    box-sizing: border-box;
}

.noMargBottom{
    margin: 0;
}

.captext{
    text-align: center;
}

.capholder h2{
    font-size: 48px;
    line-height: 1;
}

.capholder .linkText {
    display: table;
    margin: 0 auto;
        margin-top: 0px;
    background: var(--orange);
    line-height: 1;
    padding: 10px 2rem;
    margin-top: 2rem;
}

.footertop .row > *{
    vertical-align: middle;
}

.socialholder {
    float: right;
    display: table;
}

.socialcell .item {
    float: left;
    margin-left: 20px;
    width: 40px;
}

.socialcell img {
    max-width: 100%;
    opacity: 0.8;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
}

/*wow*/

.wow{
    visibility: hidden;
}

.logowhite {
    margin-bottom: 2rem;
}


.mod_logo {
    width: 180px;
}

.mod_logo img {
    max-width: 100%;
    height: auto;
}

.footertop .row > * {
    vertical-align: top;
}


.social {
    display: table;
    float: right;
}

.social > * {
    float: left;
    margin-right: 20px;
}

.social span {
    display: block;
}

.socialIcon img {
    max-height: 100%;
}

.social img {
    height: 25px;
    width: auto;
}

.headertopholder {
    display: table;
    width: 100%;
    text-align: center;
    letter-spacing: 0.03rem;
    line-height: 1;
}

.headertopholder, .footertop, .footerbottom {
    padding: 20px 0;
    font-weight: 400;
    font-size: 15px;
}

.footertop{
    background: gray;

}

.footerbottom,.headertop{
    background: black;
}

.footertop, .footerbottom, .headertop{
      color: white;  
}

.social > * > span {
    height: 100%;
    line-height: 0;
}

.map {
    height: 450px;
}


#header .row > * > span.icon {
    height: 0.8rem;
    margin-right: 5px;
}

#header .row > * > span {
    display: inline-block;
    vertical-align: middle;
}

#header .row > * > span.icon img {
    height: 100%;
    width: auto;
}

#header .mod_navigation > ul > li {
    float: left;
    margin-left: 2rem;
}

.navigation > * {
    float: right;
    width: auto;
}

header .row > *{
    vertical-align: middle;
}

body .sf-menu a, body .sf-menu strong {
    border: none;
    padding: .75em 1em;
        padding-right: 1em;
    color: inherit;
    display: block;
}

body .sf-menu li {
    background: transparent !important;
    white-space: nowrap;
    *white-space: normal;
    -webkit-transition: background .2s;
    transition: background .2s;
}

#header .mod_navigation .sf-menu ul a, #header .mod_navigation .sf-menu ul strong{
    border-bottom: 1px solid rgba(0,0,0,0.3);
}

#header .mod_navigation .sf-menu ul strong{
    display: block;
padding: .75em 1em;
    padding-right: 1em;
padding-right: 1em;
}

#header .mod_navigation .sf-menu ul a:hover, #header .mod_navigation .sf-menu ul strong:hover, #header .mod_navigation .sf-menu ul strong{
    background: whiteSmoke;
}

body .sf-menu ul {
    box-shadow: none;
    background: white;
}

body .sf-arrows .sf-with-ul:after{
    border-top-color: var(--blue) !important;
}

body .sf-menu {
    float: none;
    margin-bottom: 0;
}

header .mod_navigation.block{
    overflow: visible;
}

body .sf-menu a {
    color: inherit;
}


.pageimage {
    position: relative;
    background: black;
}

#herosection .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

#herosection .caption *, #herosection .bgImage *, #herosection .flex-control-nav {
    height: auto;
}
#herosection .caption .inside > div {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem;
        padding-right: 2rem;
        padding-left: 2rem;
    color: white;
    box-sizing: border-box;
}

#herosection .caption .inside > div {
    color: white;
}

#herosection h1 {
    font-size: 40px;
}

#herosection .row > *{
    vertical-align: bottom;
}

.linkText {
    display: table;
    margin-top: 2rem;
}

.linkText a {
    display: block;
    border: 1px solid rgba(255,255,255,0.6);
    line-height: 1;
    padding: 10px 40px;
}

/*paddingsetup*/

.noPadBottom, #main .mod_article > .block.noPadBottom{
    padding-bottom: 0;
}

.noPadTop, #main .mod_article > .block.noPadTop{
    padding-top: 0;
}


.noPadBottom, #main .mod_article > .block.noPadBottom{
    padding-bottom: 0;
}

.padTopSmall, #main .mod_article > .block.padTopSmall{
    padding-top: 2rem;
}

.padBottomSmall, #main .mod_article > .block.padBottomSmall{
    padding-bottom: 2rem;
}

/*gridlist varinate*/
.twocol.ce_gridList{
    
}


.twocol.ce_gridList .teasergrid > div > div{
    display: table;
    margin: 0 auto;
    padding-right: 2rem;
}

.twocol.ce_gridList .teasergrid > div > div > .inside{
    display: table-row;
}

.twocol.ce_gridList .teasergrid > div > div > .inside > *{
    display: table-cell;
    vertical-align: middle;
}



.twocol.ce_gridList .teasergrid > div > div > .inside > .text{
    text-align: left;
}

.twocol.ce_gridList .teasergrid > div > div > .inside > .image_container{
    padding-right: 2rem;
}

.center.twocol.ce_gridList .teasergrid > div > div {
    margin: 0 auto;
    float: none;
    display: inline-block;
    vertical-align: middle;
}

.center.twocol.ce_gridList .teasergrid > div {
    margin: 0 -2rem 0 0;
}


/*align*/
.center{
    text-align: center;
}

/*kachelelement overlap*/
.mediaholder{
    position: relative;
}


.ce_kachelelement .mediaholder > .bgImage{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.ce_headline > ::after {
    content: '';
    display: block;
    max-width: 50px;
    margin: 2rem auto 0;
    height: 3px;
    width: 100%;
    background: #333;
}

.ce_kachelelement .overlapElement > .inside{
    padding: 0;
}

.ce_kachelelement .overlapElement.notfloat_left > .inside .holder {
    padding: 2rem;
    margin-left: -4rem;
    margin-right: 4rem;
    /*width: calc(100% + 4rem);*/
    background: #d6e8ef;
     position: relative;
    z-index: 1;
}

.ce_kachelelement .overlapElement.notfloat_right > .inside .holder {
    padding: 2rem;
    margin-right: -4rem;
  /*  width: calc(100% + 4rem);*/
 margin-left: 4rem;
    position: relative;
    z-index: 1;
}


.mod_article .ce_kachelelement .overlapElement > .inside .holder{
     background: white;
}

.mod_article[style*="background: #d6e8ef"] .ce_kachelelement .overlapElement > .inside .holder{
    background: #d6e8ef;
}


.ce_kachelelement .overlap .mediaholder .bgImage{
    padding: 4rem 0;
    margin-top: -4rem;
}

.table.overlap {
    margin-bottom: 4rem;
    margin-top: 4rem;
}

#header .link .title, .ce_text a, #footer a, .links li span, .readmore{
	transition: all 0.2s;
}
#header .link .title:hover, .ce_text a:hover, #footer a:hover, .links li span:hover, .readmore:hover, .ce_hyperlink a:hover {
	opacity:0.75;
}

.floating_right{
    float:right;
}

.floating_left{
    float:left;
}

.textalign_right{
    text-align: right;
}

.textalign_left{
    text-align: left;
}

.textalign_center{
    text-align: center;
}

.mod_navigation > ul{
    display: table;
}

.image_container a{
    display: block;
}

#container{
    max-width: 1280px;
    margin: 0 auto;
}


/*Basics*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #F9F1F5 inset; }

:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #63294D;
  --primary: #63294D;
  --secondary: #A17E94;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 480px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }


@font-face {
  font-family: 'IsidoraSansAlt-MediumIt';
  src: url("/files/theme/layout/fonts/IsidoraSans/396167_0_0.eot");
  src: url("/files/theme/layout/fonts/IsidoraSans/396167_0_0.eot?#iefix") format("embedded-opentype"), url("/files/theme/layout/fonts/IsidoraSans/396167_0_0.woff2") format("woff2"), url("/files/theme/layout/fonts/IsidoraSans/396167_0_0.woff") format("woff"), url("/files/theme/layout/fonts/IsidoraSans/396167_0_0.ttf") format("truetype"); }

@font-face {
  font-family: 'IsidoraSansAlt-SemiBoldIt';
  src: url("/files/theme/layout/fonts/IsidoraSans/396167_1_0.eot");
  src: url("/files/theme/layout/fonts/IsidoraSans/396167_1_0.eot?#iefix") format("embedded-opentype"), url("/files/theme/layout/fonts/IsidoraSans/396167_1_0.woff2") format("woff2"), url("/files/theme/layout/fonts/IsidoraSans/396167_1_0.woff") format("woff"), url("/files/theme/layout/fonts/IsidoraSans/396167_1_0.ttf") format("truetype"); }

@font-face {
  font-family: 'IsidoraSans-SemiBold';
  src: url("/files/theme/layout/fonts/IsidoraSans/IsidoraSans-SemiBoldItalic.woff2") format("woff2"), url("/files/theme/layout/fonts/IsidoraSans/IsidoraSans-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'IsidoraSans-SemiBold';
  src: url("/files/theme/layout/fonts/IsidoraSans/IsidoraSans-SemiBold.woff2") format("woff2"), url("/files/theme/layout/fonts/IsidoraSans/IsidoraSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'IsidoraSans-Bold';
  src: url("/files/theme/layout/fonts/IsidoraSans/396167_2_0.eot");
  src: url("/files/theme/layout/fonts/IsidoraSans/396167_2_0.eot?#iefix") format("embedded-opentype"), url("/files/theme/layout/fonts/IsidoraSans/396167_2_0.woff2") format("woff2"), url("/files/theme/layout/fonts/IsidoraSans/396167_2_0.woff") format("woff"), url("/files/theme/layout/fonts/IsidoraSans/396167_2_0.ttf") format("truetype"); }

@font-face {
  font-family: 'IsidoraSans-BoldIt';
  src: url("/files/theme/layout/fonts/IsidoraSans/396167_3_0.eot");
  src: url("/files/theme/layout/fonts/IsidoraSans/396167_3_0.eot?#iefix") format("embedded-opentype"), url("/files/theme/layout/fonts/IsidoraSans/396167_3_0.woff2") format("woff2"), url("/files/theme/layout/fonts/IsidoraSans/396167_3_0.woff") format("woff"), url("/files/theme/layout/fonts/IsidoraSans/396167_3_0.ttf") format("truetype"); }

@font-face {
  font-family: 'IsidoraSans-MediumIt';
  src: url("/files/theme/layout/fonts/IsidoraSans/396167_4_0.eot");
  src: url("/files/theme/layout/fonts/IsidoraSans/396167_4_0.eot?#iefix") format("embedded-opentype"), url("/files/theme/layout/fonts/IsidoraSans/396167_4_0.woff2") format("woff2"), url("/files/theme/layout/fonts/IsidoraSans/396167_4_0.woff") format("woff"), url("/files/theme/layout/fonts/IsidoraSans/396167_4_0.ttf") format("truetype"); }

@font-face {
  font-family: 'IsidoraSans-RegularIt';
  src: url("/files/theme/layout/fonts/IsidoraSans/396167_5_0.eot");
  src: url("/files/theme/layout/fonts/IsidoraSans/396167_5_0.eot?#iefix") format("embedded-opentype"), url("/files/theme/layout/fonts/IsidoraSans/396167_5_0.woff2") format("woff2"), url("/files/theme/layout/fonts/IsidoraSans/396167_5_0.woff") format("woff"), url("/files/theme/layout/fonts/IsidoraSans/396167_5_0.ttf") format("truetype"); }

@font-face {
  font-family: 'IsidoraSans-Medium';
  src: url("/files/theme/layout/fonts/IsidoraSans/396167_6_0.eot");
  src: url("/files/theme/layout/fonts/IsidoraSans/396167_6_0.eot?#iefix") format("embedded-opentype"), url("/files/theme/layout/fonts/IsidoraSans/396167_6_0.woff2") format("woff2"), url("/files/theme/layout/fonts/IsidoraSans/396167_6_0.woff") format("woff"), url("/files/theme/layout/fonts/IsidoraSans/396167_6_0.ttf") format("truetype"); }

@font-face {
  font-family: 'IsidoraSans-Regular';
  src: url("/files/theme/layout/fonts/IsidoraSans/396167_7_0.eot");
  src: url("/files/theme/layout/fonts/IsidoraSans/396167_7_0.eot?#iefix") format("embedded-opentype"), url("/files/theme/layout/fonts/IsidoraSans/396167_7_0.woff2") format("woff2"), url("/files/theme/layout/fonts/IsidoraSans/396167_7_0.woff") format("woff"), url("/files/theme/layout/fonts/IsidoraSans/396167_7_0.ttf") format("truetype"); }

@font-face {
  font-family: 'IsidoraSansAlt-Bold';
  src: url("/files/theme/layout/fonts/IsidoraSans/396167_8_0.eot");
  src: url("/files/theme/layout/fonts/IsidoraSans/396167_8_0.eot?#iefix") format("embedded-opentype"), url("/files/theme/layout/fonts/IsidoraSans/396167_8_0.woff2") format("woff2"), url("/files/theme/layout/fonts/IsidoraSans/396167_8_0.woff") format("woff"), url("/files/theme/layout/fonts/IsidoraSans/396167_8_0.ttf") format("truetype"); }

@font-face {
  font-family: 'IsidoraSansAlt-SemiBold';
  src: url("/files/theme/layout/fonts/IsidoraSans/396167_9_0.eot");
  src: url("/files/theme/layout/fonts/IsidoraSans/396167_9_0.eot?#iefix") format("embedded-opentype"), url("/files/theme/layout/fonts/IsidoraSans/396167_9_0.woff2") format("woff2"), url("/files/theme/layout/fonts/IsidoraSans/396167_9_0.woff") format("woff"), url("/files/theme/layout/fonts/IsidoraSans/396167_9_0.ttf") format("truetype"); }


@font-face {
  font-family: 'CityStreetwear';
  src: url("../../files/theme/layout/styles/frontend/fonts/CityStreetwearUS/updated/CityStreetwear-Bold.woff2") format("woff2"), url("../../files/theme/layout/styles/frontend/fonts/CityStreetwearUS/updated/CityStreetwear-Bold.woff") format("woff");
  font-weight: 600;
  font-style: normal; }

@font-face {
  font-family: 'CityStreetwear';
  src: url("../../files/theme/layout/styles/frontend/themes/CityStreetwear-Bold.woff2") format("woff2"), url("../../files/theme/layout/styles/frontend/themes/CityStreetwear-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'CityStreetwear';
  src: url("../../files/theme/layout/styles/frontend/themes/CityStreetwear-Bold.woff2") format("woff2"), url("../../files/theme/layout/styles/frontend/themes/CityStreetwear-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'CityStreetwear';
  src: url("../../files/theme/layout/styles/frontend/fonts/CityStreetwearUS/updated/CityStreetwear-Bold.woff2") format("woff2"), url("../../files/theme/layout/styles/frontend/fonts/CityStreetwearUS/updated/CityStreetwear-Bold.woff") format("woff");
  font-weight: 600;
  font-style: normal; }

@font-face {
  font-family: 'CityStreetwear';
  src: url("../../files/theme/layout/styles/frontend/themes/CityStreetwear-Bold.woff2") format("woff2"), url("../../files/theme/layout/styles/frontend/themes/CityStreetwear-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'CityStreetwear';
  src: url("../../files/theme/layout/styles/frontend/fonts/CityStreetwearUS/updated/CityStreetwear-Bold.woff2") format("woff2"), url("../../files/theme/layout/styles/frontend/fonts/CityStreetwearUS/updated/CityStreetwear-Bold.woff") format("woff");
  font-weight: 600;
  font-style: normal; }

@font-face {
  font-family: 'CityStreetwear-Bold';
  src: url("../../files/theme/layout/styles/frontend/fonts/CityStreetwearUS/3A2A45_0_0.eot");
  src: url("../../files/theme/layout/styles/frontend/fonts/CityStreetwearUS/3A2A45_0_0.eot?#iefix") format("embedded-opentype"), url("../../files/theme/layout/styles/frontend/fonts/CityStreetwearUS/3A2A45_0_0.woff2") format("woff2"), url("../../files/theme/layout/styles/frontend/fonts/CityStreetwearUS/3A2A45_0_0.woff") format("woff"), url("../../files/theme/layout/styles/frontend/fonts/CityStreetwearUS/3A2A45_0_0.ttf") format("truetype"); }

@font-face {
  font-family: 'CityStreetwear-Bold';
  src: url("../../files/theme/layout/styles/frontend/fonts/CityStreetwearUS/3A2A45_0_0.eot");
  src: url("../../files/theme/layout/styles/frontend/fonts/CityStreetwearUS/3A2A45_0_0.eot?#iefix") format("embedded-opentype"), url("../../files/theme/layout/styles/frontend/fonts/CityStreetwearUS/3A2A45_0_0.woff2") format("woff2"), url("../../files/theme/layout/styles/frontend/fonts/CityStreetwearUS/3A2A45_0_0.woff") format("woff"), url("../../files/theme/layout/styles/frontend/fonts/CityStreetwearUS/3A2A45_0_0.ttf") format("truetype"); }

@font-face {
  font-family: 'CityStreetwear-SemiBold';
  src: url("../../files/theme/layout/styles/frontend/fonts/CityStreetwearUS/3A2A45_1_0.eot");
  src: url("../../files/theme/layout/styles/frontend/fonts/CityStreetwearUS/3A2A45_1_0.eot?#iefix") format("embedded-opentype"), url("../../files/theme/layout/styles/frontend/fonts/CityStreetwearUS/3A2A45_1_0.woff2") format("woff2"), url("../../files/theme/layout/styles/frontend/fonts/CityStreetwearUS/3A2A45_1_0.woff") format("woff"), url("../../files/theme/layout/styles/frontend/fonts/CityStreetwearUS/3A2A45_1_0.ttf") format("truetype"); }

@font-face {
  font-family: 'Northwell';
  src: url("../../files/theme/layout/styles/frontend/fonts/Northwell/39B665_0_0.eot");
  src: url("../../files/theme/layout/styles/frontend/fonts/Northwell/39B665_0_0.eot?#iefix") format("embedded-opentype"), url("../../files/theme/layout/styles/frontend/fonts/Northwell/39B665_0_0.woff2") format("woff2"), url("../../files/theme/layout/styles/frontend/fonts/Northwell/39B665_0_0.woff") format("woff"), url("../../files/theme/layout/styles/frontend/fonts/Northwell/39B665_0_0.ttf") format("truetype"); }

/* roboto-slab-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  src: url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-regular.svg#RobotoSlab') format('svg'); /* Legacy iOS */
}

/* roboto-slab-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  src: url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-500.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-500.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-500.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-500.svg#RobotoSlab') format('svg'); /* Legacy iOS */
}

/* roboto-slab-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  src: url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-600.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-600.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-600.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-600.svg#RobotoSlab') format('svg'); /* Legacy iOS */
}

/* roboto-slab-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  src: url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-700.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-700.svg#RobotoSlab') format('svg'); /* Legacy iOS */
}

/* roboto-slab-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 800;
  src: url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-800.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-800.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-800.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-800.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-800.svg#RobotoSlab') format('svg'); /* Legacy iOS */
}

/* roboto-slab-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 900;
  src: url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-900.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-900.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-900.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-900.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-900.svg#RobotoSlab') format('svg'); /* Legacy iOS */
}

/* corinthia-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Corinthia';
  font-style: normal;
  font-weight: 400;
  src: url('/files/theme/layout/fonts/corinthia/corinthia-v11-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/corinthia/corinthia-v11-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/corinthia/corinthia-v11-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/files/theme/layout/fonts/corinthia/corinthia-v11-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('/files/theme/layout/fonts/corinthia/corinthia-v11-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('/files/theme/layout/fonts/corinthia/corinthia-v11-latin-regular.svg#Corinthia') format('svg'); /* Legacy iOS */
}

/* corinthia-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Corinthia';
  font-style: normal;
  font-weight: 700;
  src: url('/files/theme/layout/fonts/corinthia/corinthia-v11-latin-700.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/corinthia/corinthia-v11-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/corinthia/corinthia-v11-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/files/theme/layout/fonts/corinthia/corinthia-v11-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('/files/theme/layout/fonts/corinthia/corinthia-v11-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('/files/theme/layout/fonts/corinthia/corinthia-v11-latin-700.svg#Corinthia') format('svg'); /* Legacy iOS */
}

/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('/files/theme/layout/fonts/roboto/roboto-v30-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/roboto/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* roboto-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('/files/theme/layout/fonts/roboto/roboto-v30-latin-500.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/roboto/roboto-v30-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-500.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-500.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-500.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* roboto-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('/files/theme/layout/fonts/roboto/roboto-v30-latin-700.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/roboto/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* roboto-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: url('/files/theme/layout/fonts/roboto/roboto-v30-latin-900.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/roboto/roboto-v30-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-900.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-900.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-900.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-900.svg#Roboto') format('svg'); /* Legacy iOS */
}


*{
    box-sizing: border-box;
}
body {
margin: 0;
  font-family: "IsidoraSans-Medium", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: black;
  text-align: left;
  background-color: #F9F1F5;
}


p a{
   
  text-decoration: underline;
     font-family: 'IsidoraSans-SemiBold', sans-serif;
}

p a:hover{
     color: #63294D;
    font-weight: 600;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'IsidoraSans-SemiBold', sans-serif;
  color: #242223;
     line-height: normal;
    font-weight: 500;
}

h1, h2, h3, h4, h5, h6, header .mod_customnav,header .mod_navigation,.caption,footer .footer_center, footer .footer_right {
 
}

h2,h3 {
  font-size: 48px;
 line-height: 1.2;
}

h3{
    font-size: 40px;
}

h4,h5{
    color: #383436;
    text-transform:uppercase;
    font-size: 28px;
}

.headlinecontainer{
    margin-bottom: 2rem;
}

header{
background-color: white;
}

header > .inside,footer > .inside{
    max-width: 1220px;
    margin: 0 auto;
    padding: 40px 0;
}

header > .inside{
    padding: 40px 2rem;
}
footer > .inside{
    padding: 0;
}

#herosection .ce_kachelelement{
    max-width: 1980px;
    margin: 0 auto;
}

#herosection .bgImage img{
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.footer_bottom > .inside{
    display: table;
    width: 100%;
    padding: 0 2rem;
}

header .mod_logo {
  display: block;
  width: 180px;
}

#main .mod_article > .block{
   padding: 4rem 2rem;
}

header .mod_navigation.block{
    display: table;
    float: right;
}

#header .mod_navigation > ul{
    white-space: nowrap;
}

#header .mod_navigation > ul > li{
    display: inline-block;
    vertical-align: middle;
    float: none;
    white-space: normal;
    line-height: 1;
    margin: 0;
}
#header .mod_navigation > ul > li > a,#header .mod_navigation > ul > li > strong{
display: block;
  padding: 0 4px;
  text-decoration: none;
  font-size: 16px;
}

#header .mod_navigation > ul > li.login > a,#header .mod_navigation > ul > li.login > strong{
display: inline-block;
    overflow: visible;
    line-height: normal;
    width: auto;
    height: auto;
    background: none;
    background-color: rgba(0, 0, 0, 0);
    border: 2px solid #242223;
    padding: 6px 10px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    text-transform: uppercase;
}

#header .mod_navigation > ul > li:hover > a,#header .mod_navigation > ul > li.trail > a,#header .mod_navigation > ul > li > strong{
   color: #63294D; 
}


#footer {
  background-color: white;

}

#footer .footer-menu-title {
  font-size: 20px;
  margin-bottom: 5px;
  font-family: 'IsidoraSans-SemiBold';
  color: #63294D;
  white-space: nowrap;
}


#footer a {
  text-decoration: none;
  color: #524B4F;
  font-size: 14px;
}

#main .mod_article .ce_kachelelement{
   
}

.ce_kachelelement .row, .ce_kachelelement .row > .mediaholder, .ce_kachelelement .row > .mediaholder .bgImage{
    height: 100%;
}

.ce_kachelelement .mediaholder > .bgImage{
    position: static;
    line-height: 0;
    width: 100%;
}

.ce_kachelelement:not(.ce_kursteaser) .mediaholder > .bgImage img{
   height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    box-sizing: content-box;
}

.ce_kachelelement .table{
    table-layout: fixed;
}

.safari .ce_kachelelement:not(.ce_kursteaser) .mediaholder > .bgImage img{
     width: auto;
}


.ce_kachelelement .textholder{
  
    vertical-align: middle;
     
   
}


.safari .ce_kachelelement .textholder{
    vertical-align: top;
}

#main .ce_kachelelement:not(.ce_kursteaser) .textholder.notfloat_left > .inside,#main .ce_kachelelement:not(.ce_kursteaser) .textholder.notfloat_right > .inside{
    height: 100%;
    box-sizing: border-box;
}

.ce_kachelelement .textholder > .inside{
    padding: 90px;
      background: white;
   
}

#main .ce_kachelelement:not(.ce_kursteaser) .mediaholder.align_left > .bgImage {
    padding-right: 10px;
 
}
.safari #main .ce_kachelelement:not(.ce_kursteaser) .mediaholder.align_left > .bgImage,
.safari #main .ce_kachelelement:not(.ce_kursteaser) .mediaholder.align_right > .bgImage{
   display: table;
    width: 100%;
}

#main .ce_kachelelement:not(.ce_kursteaser) .mediaholder.align_right > .bgImage {
    padding-left: 10px;
}



#main .ce_kachelelement:not(.ce_kursteaser) .textholder.notfloat_left  > .inside{
     margin-left: 10px;
}

#main .ce_kachelelement:not(.ce_kursteaser) .textholder.notfloat_right  > .inside{
     margin-right: 10px;
}

#herosection .ce_kachelelement .row > *{
    vertical-align: middle;
}

.ce_pageteaser .textholder{
   background-color: white;
  padding: 40px; 
}

#herosection .ce_kachelelement .notfloat_left,#herosection .ce_kachelelement .notfloat_right{
    padding: 0;
}

.ce_pageteaser .textholder .textholder{
    padding: 0;
    background: transparent;
}

.ce_pageteaser .textholder .textholder .teaserHeadline{
    margin-bottom: 0;
}


.preheadline{
  font-family: 'IsidoraSans-Bold', sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 20px;
font-weight: 500;
  color: #242223;
  letter-spacing: 0.03rem;
    min-height: 50px;
}



img{
    max-width: 100%;
    height: auto;
}

.ce_pageteaser .textholder .teaserHeadline{
   font-size: 24px;
    margin-bottom: 60px; 
    color: #242223;
  font-family: 'IsidoraSans-SemiBold', sans-serif;
  line-height: normal;
    min-height: 65px;
}

.ce_pageteaser .textholder .textholder .teaserHeadline{
    min-height: 0;
}

.ce_pageteaser .textholder .textholder .text{
    margin-bottom: 4rem;
}

.ce_pageteaser .textholder .linkliste a, .linkholder:not(.highlighted) .readmore,
.linkset .readmore{
  font-family: 'IsidoraSans-Bold', sans-serif;
  color: #242223;
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
  padding-left: 40px;
background: url(/files/theme/layout/images/icons/arrow.svg) no-repeat scroll left 0 center/auto transparent;
}

.linkset,
.linkholder:not(.highlighted){
    margin-top: 2rem;
}

.linkliste li{
    margin-bottom: 0.5rem;
}

.teasergrid > div, .teasergrid > ul {
  margin: -10px -10px -20px;
  display: table;
  min-width: 100%;
}

#main .mod_article > .card{
    
}

.card > .inside, .mod_registration{
    background: white;
    padding: 2rem;
   
    padding: 120px 100px 100px;
}

#main .mod_article > .mod_registration{
  max-width: 850px;
    padding: 80px;
    margin: 8rem auto;
    margin-bottom: 100px;
}

#container{
    max-width: none;
    margin: 0;
}

body .slick-dots{
    position: relative;
    bottom: 0;
    margin-top: 1rem;
}

body .slick-dots li button:before{
    color: white;
    opacity: 1;
}

body .active .slick-dots li button:before{
    color: #63294D;
}

body .slick-prev::before, body .slick-next::before {
     color: #63294D;
}


.linkholder.highlighted{
    margin-top: 4rem;
}

.linkholder.highlighted a, button{
      -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -moz-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out, -moz-box-shadow 0.15s ease-in-out;
}

.linkholder.highlighted a,.submit, button{
display: inline-block;
  font-family: "IsidoraSans-SemiBold", sans-serif;
  font-weight: 400;
  color: black;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  font-size: 26px;
  line-height: 1.5;
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  border-radius: 3rem;

    color: #fff;
  background-color: #63294D;
  border-color: #63294D;
    padding: 15px 3rem 13px;

  -webkit-box-shadow: 0 4px 16px rgba(107, 82, 98, 0.8);
  -moz-box-shadow: 0 4px 16px rgba(107, 82, 98, 0.8);
  box-shadow: 0 4px 16px rgba(107, 82, 98, 0.8);
}


.widget-submit{
    margin-top: 4rem;
    width: 100%;
}

.widget-submit,.mod_form.block{
    overflow: visible;
}

.submit{
    float: none;
    width: 100%;
}

form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) {
  padding: 5px 10px;
  width: 100%;
  color: #5A5A5A;
  font-style: italic;
  outline: 0;
  border: none !important;
  max-width: 100%;
  background-color: #F9F1F5;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  font-family: 'IsidoraSans-Medium', sans-serif;
  height: 50px;
  font-size: 16px;
}

form label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer_bottom{
    padding: 20px 0;
}

.footer_bottom .mod_customnav{
    float: right;
}

.footer_bottom .mod_customnav ul li{
    float: left;
}

.footer_bottom .mod_customnav ul li:not(.last):after{
    content: '|';
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
}


.ce_kursteaser .textholder > .inside{
    padding: 2rem;
    height: 100%;
        
}

.ce_kursteaser h2{
   font-size: 28px; 
}

.ce_kursteaser .preheadline{
    font-size: 16px;
    margin-bottom: 20px;
}

.ce_kursteaser .teasergrid > div > div{
  -webkit-box-shadow: 0 4px 6px #00000029;
  -moz-box-shadow: 0 4px 6px #00000029;
  box-shadow: 0 4px 6px #00000029;
    
}

.ce_kursteaser,.ce_kursteaser .teasergrid > div > div{
   overflow: visible; 
}

.ce_kursteaser .linkholder a {
  min-width: 190px;
  padding: 14px 20px;
  font-size: 18px;
}


.ce_kursteaser .teasergrid > div > div > .inside,.ce_kursteaser .teasergrid > div > div > .inside > .table{
    height: 100%;
}


.ce_kursteaser .bgImage > img {
  width: 100%;
  height: 100%;
    object-fit: cover;
    object-position: center;
}

.safari .ce_kursteaser .bgImage > img {
   width: auto; 
height:auto;
}

body.anmeldung{
    background: url(/files/theme/layout/images/grafiken/whitepattern.svg) #F9F1F5 bottom 0 center/500px repeat;
}

.mod_registration h2{
    text-align: center;
    margin-bottom: 80px;
    font-size: 36px;
    color: #4A1F3A;
    margin-top: 0;
}

form span.mandatory{
    display: inline-block;
    margin-left: 5px;
}

#kursnavi .mod_navigation:not(.select){
    width: 100%;
    display: block;
}

#kursnavi .mod_navigation:not(.select) ul:after{
    content: '';
    display: block;
    height: 5px;
    border:2px solid #4A1F3A;
    display: table;
    width: 100%;
    background: white;
    border-radius: 10px;
}

#kursnavi .mod_navigation:not(.select) ul{
  width: 100%;
  margin: 0 auto;
  padding: 2.6rem 2rem 0;
  box-sizing: border-box;
    display: table;
}

#kursnavi .mod_navigation:not(.select) ul > li{
    float: left;
    margin: 0 10px 0;
}

#kursnavi .mod_navigation:not(.select) ul > li.first{
    margin-left: 0;
}

#kursnavi .mod_navigation:not(.select) ul > li.last{
    margin-right: 0;
}

#kursnavi .mod_navigation:not(.select) ul > li > a, #kursnavi .mod_navigation:not(.select) ul > li > strong{
  width: 100%;
  margin-bottom: 16px;
  background-color: #4A1F3A;
  -webkit-box-shadow: 0 2px 4px #0000006C;
  -moz-box-shadow: 0 2px 4px #0000006C;
  box-shadow: 0 2px 4px #0000006C;
  display: block;
  color: white;
  text-decoration: none;
  padding: 10px 24px;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
  font-family: 'IsidoraSans-Bold';
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
}

#kursnavi .mod_navigation:not(.select) ul > li.unpublish > a,.next a.unpublish{
	background-color: #4a1f3aa6;
    color: #ffffff;
}
#main .mod_article > .block.ce_kursContent,#kursnavi .mod_navigation:not(.select) ul{
    max-width: 1080px;
}

.ce_kursContent .video_container a{
    display: block;
}

.ce_kursContent .video_container a img{
    width: 100%;
}

.ce_kursContent .kursvideo{
    margin-bottom: 84px;
    background: white;
    -webkit-box-shadow: 0px 4px 8px #00000059;
  -moz-box-shadow: 0px 4px 8px #00000059;
  box-shadow: 0px 4px 8px #00000059;
}

.ce_kursContent .kursvideo + .headlinecontainer > *{
    font-size: 32px;
    word-break: normal;
    color: #4A1F3A;
  line-height: 1.2;
  letter-spacing: 0;
  }

.ce_kursContent .info{
    margin-bottom: 4rem;
}

.description .headlinecontainer{
    margin-bottom: 20px;
}

.description h5{
color: #4a1f3a;
  font-family: 'IsidoraSansAlt-Bold';
  font-size: 18px;
}

.descText {
  color: rgba(36, 34, 35, 0.74);
  font-family: 'IsidoraSans-Medium';
  font-size: 16px;
}

.material .headlinecontainer > *,
.download .headlinecontainer > *{
  font-size: 18px; 
    margin-bottom: 2rem;
}


.material{

}
.material .icon{
    line-height: 0;
}
.material .name{
    line-height: 1;
    margin-top: 0.5rem;
}

.material > .inside > *{
       display: inline-block;
  padding: 0;

  margin-right: 18px;
    text-align: center;
  color: #4A1F3A;
  font-size: 14px;
  font-family: 'IsidoraSans-Medium';
}

#main .bonus .textholder > .inside{
background-color: white;
  padding: 10px 16px;
  font-size: 18px;
  height: 100%;
  min-height: 150px;
    display: block;
    font-family: 'IsidoraSans-SemiBold';
  color: #242223;
    font-weight: 500;
  line-height: 1.2;
}

.ce_kursContent > section{
    padding: 0;
}

.kurse #main{
background: url("/files/theme/layout/images/grafiken/bg_flower_01.jpg") top 0 center/auto repeat;

}

.kurse #container{
    background: white;
  
}
section.next{
	display: flex;
    justify-content: flex-end;
}
section.next p{
	padding: 14px 20px;
    display: inline-block;
    margin-top: 15px;
    font-size: 18px;
}
.next .next_course{
	display: inline-block;
    font-family: "IsidoraSans-SemiBold", sans-serif;
    font-weight: 400;
    color: black;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    font-size: 18px;
    line-height: 1.5;
    -webkit-border-radius: 3rem;
    -moz-border-radius: 3rem;
    border-radius: 3rem;
    color: #fff;
    min-width: 190px;
    background-color: #63294D;
    border-color: #63294D;
    margin-top:15px;
    padding: 14px 20px;
    -webkit-box-shadow: 0 4px 16px rgba(107, 82, 98, 0.8);
    -moz-box-shadow: 0 4px 16px rgba(107, 82, 98, 0.8);
    box-shadow: 0 4px 16px rgba(107, 82, 98, 0.8);
}
blockquote {
  margin: 0;
  font-size: 34px;
  text-align: center;
  margin: 0 auto;
  line-height: 1.5;
  font-family: 'IsidoraSansAlt-MediumIt', sans-serif;
color:#63294D;
}

#herosection .ce_kachelelement .textholder > .inside{
    background: transparent;
}

#herosection .ce_kachelelement .notfloat_left, #herosection .ce_kachelelement .notfloat_right{
  background: url("/files/theme/layout/images/grafiken/bg_hero.jpg") 0 0 no-repeat scroll white;  
    background-size: cover;
}

.responsive.hidden{
    display: none;
}


.portfolio__filter, .portfolio__items{
       display: table;
    width: 100%;
}

.portfolio__filter{
 
   width: auto;
  margin: 0 auto 4rem;
}

.items.teasergrid{
    display: table;
    width: 100%;
}

.catIntro{
   max-width: 890px;
  margin: 0 auto 1rem;
  font-family: "IsidoraSans-Medium", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
  color: black;
    
}

.catIntro .headlinecontainer{
    text-align: center;
}

.items.teasergrid > div{
    margin-top: 2rem;
    margin-bottom: 6rem;
}

.mod_portfoliolist .figure{
    position: relative;
    line-height: 0;
}


.mod_portfoliolist > .headlinecontainer{
    margin-bottom: 6rem;
}

.mod_portfoliolist .figure .caption{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: white;
    padding: 40px 20px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    line-height: 1.2;
}

.mod_portfoliolist .figure .caption .title{

  font-size: 22px;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.mod_portfoliolist .figure .caption .title.nosub{
    margin-bottom: 0;
}

.mod_portfoliolist .catitem.layout_short img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

button:disabled{
    display: none;
}

.mod_portfoliolist .catitem.layout_short{
    width: 100%;
}
.portfolio__filter button{
    color: white;

    margin-bottom: 8px;
  background-color: #4A1F3A;
  -webkit-box-shadow: 0 2px 4px #0000006C;
  -moz-box-shadow: 0 2px 4px #0000006C;
  box-shadow: 0 2px 4px #0000006C;
  display: inline-block;
  color: white;
  text-decoration: none;
  padding: 10px 24px;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
  font-family: 'IsidoraSans-Bold';
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
    cursor: pointer;
}

.portfolio__filter button:hover,.portfolio__filter button.active{
        background-color: #26101e;
}

body .fancybox-infobar > span{
    display: inline;
}

.ce_kursContent > section.bonus{
    margin-top: 4rem;
}


#kursnavi .mod_navigation.select {
  max-width: 300px;
  padding: 4rem 20px 0;
  position: relative;
  z-index: 99999;
  overflow: visible;
  margin-bottom: 20px;
}

.video_container iframe{
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.teasersubline{
   color: rgba(36, 34, 35, 0.74);
  font-family: 'IsidoraSans-Medium';
  font-size: 16px;
    margin-top: 10px;
}

.table,.table > .row,.table > .row > *{
    height: 100%;
}
form label {
display:none;
}
form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) {
background:white;
padding: 15px;
font-family: 'IsidoraSans-Medium';
  font-size: 16px;
font-style:normal;
}
.submit {
max-width:300px;
padding-top: 8px;
}
.widget-submit {
text-align:center;
}
.ce_kachelelement form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) {
background-color: #F9F1F5;
}
#herosection .inside {
height:auto;
}
video {
width:100%;
height:auto;
max-width:900px;
margin:0 auto;
padding-bottom:4rem
}
.socials {
float:left;
}
.socials li{
display:inline-block;
margin-right:10px;
}
.socials img{
height:25px;
width:auto;
}
.video-block {
background: url("/files/theme/layout/images/grafiken/bg_gold-pattern-white.jpg") bottom 0 center/400px 400px repeat-x;
}
._field-wrapper{
  margin-bottom: 5px;
}
button {
  padding: 8px 3rem 13px;
  font-size: 20px;
  margin-top: 5px;
}
#tl_registration_27 label{
	display: block;
}
#tl_registration_27 input{
	background-color: #f3f4f6;
}
.mod_login label{
	display: block;
}

/* interessentenbereich page 50-50 layout */
.registation-login-wrapper{
	display:flex;
	flex-wrap:wrap;
	align-items: flex-start;
}
.registation-login-wrapper .mod_registration form, .registation-login-wrapper .mod_login form{
	width:30vw;
	max-width:100%;
}
@media all and (max-width: 768px){
	.registation-login-wrapper .mod_registration form, .registation-login-wrapper .mod_login form{
		width:100%;
		
	}
}
.mod_login .login-multiple{
	text-align:center;
}
.mod_login .login-multiple a{
	display: inline-block;
    font-family: "IsidoraSans-SemiBold", sans-serif;
    font-weight: 400;
    color: black;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    font-size: 24px;
    line-height: 1.5;
    -webkit-border-radius: 3rem;
    -moz-border-radius: 3rem;
    border-radius: 3rem;
    color: #fff;
    background-color: rgb(105, 165, 0);
    border-color: rgb(105, 165, 0);
    padding: 15px 3rem 13px;
    -webkit-box-shadow: 0 4px 16px rgba(107, 82, 98, 0.8);
    -moz-box-shadow: 0 4px 16px rgba(107, 82, 98, 0.8);
    box-shadow: 0 4px 16px rgba(107, 82, 98, 0.8);
}

#tl_login_28 .checkbox_container label{
	display: inline-block;
}

.mod_login .next-page{
	text-align: center;
}
.mod_login .next-page a{
	display: inline-block;
    overflow: visible;
    width: auto;
    height: auto;
    background: none;
    background-color: rgba(0, 0, 0, 0);
    border: 2px solid #242223;
    line-height: 1.5;
    padding: 8px 3rem 12px;
    font-size: 20px;
    border-radius: 3rem;
    -webkit-border-radius: 3rem;
    -moz-border-radius: 3rem;
    text-transform: uppercase;
}
.mod_lostPassword{
	max-width: 850px !important;
    padding: 80px !important;
    margin: 8rem auto !important;
    margin-bottom: 100px !important;
    background: white;
}
.mod_lostPassword input{
	background: #f3f4f6 !important;
}
.mod_lostPassword label{
	display: block;
}

.grid3{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}
.grid3 figure video, .locked img{
    width: 100%;
    height: 215px;
    border-radius: 16px;
    box-shadow: 0 12px 11px rgba(0, 0, 0, 0.1);
    padding-bottom: 0;
	object-fit: cover;
}
/* Responsive design */
@media (max-width: 767px) {
    .grid3 {
        grid-template-columns: 1fr;
    }
    
    .grid3 figure video, 
    .locked img {
        height: 200px; /* Mobile height */
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .grid3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid3 figure video, 
    .locked img {
        height: 280px; /* Tablet height - larger than mobile */
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .grid3 figure video, 
    .locked img {
        height: 300px; /* Larger on big screens */
    }
}
.text-center{
	text-align: center;
}
.mod_lostPassword .submit{
	max-width: 430px;
}
.account-misc{
	display: flex;
	justify-content: space-between;
}
.account-misc a, .mod_registration .login-page a{
	text-decoration: underline;
}
.mod_login .widget-submit{
	margin-top: 2rem;
}
.mod_registration .login-page {
	display: flex;
    justify-content: center;
}
@media (max-width: 860px) {
    #main .mod_article .mod_registration {
        padding: 80px !important;
    }
}
#article-190 .mod_login{
	margin: 0 auto !important;
}
@media (min-width: 768px) {
  header .mod_logo  {
    width: 220px;
  }
     #footer {
    padding: 0;
  }
}



@media all and (max-width: 1180px){
   
    }  
    
 
@media all and (max-width: 1080px){
  .ce_kursteaser .teasergrid > .itemsperRow_2 > *{
  width: calc( (100% - (0 * 10px)) / 1 );
      float: none;
      margin: 0 0 20px;
}
    
    .ce_kursteaser .teasergrid > .itemsperRow_2{
        margin: 0;
    }
    }  

@media all and (max-width: 980px){
.ce_kachelelement .textholder > .inside{
    padding: 4rem 2rem;
}
    
 .teasergrid > .itemsperRow_3 > *, .ce_gallery ul.cols_3 > li {
    width: calc( (100% - (4 * 10px)) / 2 );
  }
    
 
}



@media all and (max-width: 860px){
    
    .ce_kursContent .info {
  margin-bottom: 2rem;
}
    
    .ce_kursContent > section.bonus{
    margin-top: 2rem;
}
    
  .ce_kursContent > section.bonus >  .headlinecontainer {
    margin-bottom: 2rem;
  }
    
    p {
  margin-bottom: 1rem;
  margin-top: 0;
}
    
    section.info .row > *{
          display:block;
        margin-bottom: 20px;
    }
    
    section.info .row > *:last-of-type{
        margin-bottom: 0;
    }
      
    
    
    .teasergrid > .itemsperRow_4 > *, .ce_gallery ul.cols_4 > li{
        width: calc( (100% - (4 * 10px)) / 2 );
    }
    
       #main .bonus .textholder > .inside{
        min-height: 70px;
    }
    
       #main .mod_article > .block {
  padding: 2rem 20px;
}
    
    .portfolio__filter{
        display: none;
    }
    
 .responsive.hidden {
    display: block;
    margin-bottom: 4rem;
  }
    
    #kursnavi .mod_navigation:not(.select){
        display: none;
    }
    
    .footer_bottom > .inside{
        padding: 0 20px;
    }
    header > .inside{
    padding: 20px;
}
        .headlinecontainer {
  margin-bottom: 20px;
}
     .card > .inside{
        padding: 4rem 2rem;
    }
	.table, .table > .row, .table > .row > * {
	height:auto;
	}
    
}

@media all and (max-width: 780px){
    .ce_kachelelement .row > .mediaholder{
        display: table-header-group;
    }
    
    
 
    
    #main .ce_kachelelement:not(.ce_kursteaser) .textholder.notfloat_left > .inside {
  margin-left: 0;
}
  
    
        #main .ce_kachelelement:not(.ce_kursteaser) .textholder.notfloat_right > .inside {
  margin-right: 0;
}
    
    #main .ce_kachelelement:not(.ce_kursteaser) .mediaholder.align_left > .bgImage {
  padding-right: 0;
}
    
      #main .ce_kachelelement:not(.ce_kursteaser) .mediaholder.align_right > .bgImage {
  padding-left: 0;
}
  
    
    .ce_kachelelement .row > .textholder{
        display: table-footer-group;
    }
    .ce_kachelelement .textholder > .inside {
    padding: 2rem;
  }
    
    .preheadline{
        min-height: 0;
    }
    
   
}

@media all and (max-width: 680px){
    
     .teasergrid > .itemsperRow_3 > *, .ce_gallery ul.cols_3 > li {
    width: calc( (100% - (0 * 10px)) / 1 );
  }
    
    .catIntro{
        font-size: 21px;
    }
	blockquote {
  font-size: 24px;
}
section.next p {
font-size:12px; 
line-height:120%;
}
#kursnavi .mod_navigation.select {
padding-top:1rem;
}
    
    h2, h3 {
  font-size: 38px;
  line-height: 1.2;
}
    .teasergrid > .itemsperRow_4 > *, .ce_gallery ul.cols_4 > li{
        width: calc( (100% - (0 * 10px)) / 1 );
        margin: 10px 0 20px;
        float: none;
    }
    
    .teasergrid > div, .teasergrid > ul{
        margin: 0 0 4rem;
    }
    
    #main .mod_article > .block {
  padding: 2rem 20px;
}
    
    .items.teasergrid > div {
  margin-top: 20px;
  margin-bottom: 2rem;
}
    
}

