/*
* hellblau: color:#B9D4F1;
+ dunkelblau: color:#21273D;
*/
:root {
    --lightgrey: #666;
    --lightblue: #95A7C1;
    --blue: #14497B;
    --grey: #4c4c4c;
    --orange: rgba(255, 112, 15, 1.0);
    --orange05: rgba(255, 112, 15, 0.5);
    --yellow: #FFCB02;
}



@font-face {
    font-family: 'roboto';
    src: url(fonts/roboto-regular-webfont.ttf) format('truetype');
    font-style: normal;
}
@font-face {
    font-family: 'robotolight';
    src: url(fonts/roboto-light-webfont.ttf) format('truetype');
    font-style: normal;
}



* {
    box-sizing: border-box;
}

html, .pageWrapper {
    height: 100%;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'roboto', sans-serif;
    font-size: 1em;
    -webkit-animation: fadeIn 2s;
    background: #fff;
    color: var(--grey);
    height: 100%;
    hyphens:auto;
    -webkit-hyphens:auto;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mobile, .tablet {
    display: none;
}

.desktop, .fullscreen {
    display: block;
}

.container {
    width: 1200px;
    margin: 0 auto;
    padding: 30px 15px;
}

.row {
    width: 100%;
}

.container-full {
    width:100%;
    margin: 0 auto;
    padding: 30px 0;
}

.container > .container {
    padding: 0;
}

.contentWrapper {
    position: relative;
    padding:15px 120px;
}

.flexbox {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.flex-100 {
    width: 100%;
}

.flex-75 {
    width: 75%;
}

.flex-66 {
    width: 66%;
}

.flex-50 {
    width: 50%;
}

.flex-33 {
    width: 33%;
}

.flex-25 {
    width: 25%;
}

.container .flexbox {
    margin: 0 -15px;
}

.flexItem, .flex_item {
    padding: 15px;
}

.imgList {
    padding: 0;
}

.flexJustify-left {
    justify-content: flex-start;
}

.flexJustify-center {
    justify-content: center;
}

.flexJustify-right {
    justify-content: flex-end;
}

.flexJustify-sb {
    justify-content: space-between;
}

.flexJustify-sa {
    justify-content: space-around;
}

.flexJustify-se {
    justify-content: space-evenly;
}

.flexAlign-start {
    align-items: flex-start;
}

.flexAlign-center {
    align-items: center;
}

.flexAlign-baseline {
    align-items: baseline;
}

.flexAlign-end {
    align-items: flex-end;
}

.flexAlign-strech {
    align-items: stretch;
}

.spaceBetween .flexbox {
    justify-content: space-between;
    padding: 15px;
}

.noFlex {
    width: 100%;
    display: block;
}
.gridtemplate-4col .flex_item {
  width:25%;
}
.gridContent {
    height:100%;

}
.gridContent .textImgContent {
    height:100%;
}

.gridContent .txt {
    height:80%;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.content {
    padding: 50px 0;
}

h1 {
    font-family: 'roboto';
    font-size: 2.4em;
    margin-bottom: 0;
    font-weight: 100;
    color: var(--blue);
   hyphens:manual;
}

h2, .h2 {
    font-size: 1.8em;
    font-family: 'roboto';
    font-weight: 100;
    color: var(--blue);
    hyphens:manual;
}

h3, .h3 {
    font-size: 1.6em;
    font-family: 'roboto';
    font-weight: 100;
    color: var(--grey);
}

strong {
    font-family: 'roboto', sans-serif;
    font-weight: 700;
}

h1 + h2 {
    font-family: 'roboto', sans-serif;
    font-size: 1.8em;
    font-weight: 100;
    margin-top: 30px;
}



a {
    color: var(--blue);
    transition: all .4s ease;
}
a.skipToContent {
    position:absolute;
    top:15px;
    left:15px;
    z-index:10;
    opacity:0;
}
a.skipToContent:focus {
    opacity: 1;
}

a.navBtn {
    display: inline-block;
    padding: 10px 20px;
    border: solid 1px var(--blue);
}

a.navBtn:hover, a.navBtn:focus {
    background: var(--blue);
    color: #fff;
}

.header_top a {
    color: var(--grey);
}

a:focus, a:hover {
    color: var(--grey);
}

.divider {
    width: 100%;
    padding: 30px 15px;
}

a, li, p {
    font-size: 1.2em;
    line-height: 1.6em;
    font-weight: 100;
}

.nav li li, li a, p a, label a, h1 a, h2 a, h3 a,.h2 a {
    font-size: 1em;
    line-height: 1.2em;
}
p .h2 {
    font-size:1.4em;
}

.mobile {
    display: none;
}

img:not([height]) {
    /*width: 100%;*/
    height: auto;
}

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

.text-right {
    text-align: right;
}

.text-center ul {
    display: inline-block;
    margin: 0 auto;
    text-align: left;
}

.smallContent {
    max-width: 768px;
}

.text-justify {
    text-align: justify;
}

p.twoCols {
    column-count: 2;
    column-gap: 30px;
}

ul.twoCols {
    column-count: 2;
    column-gap: 30px;
    padding: 0;
    margin: 0 0 0 10px;
}

.blueBg {
background: rgb(20,73,123);
background: linear-gradient(90deg, rgba(20,73,123,1) 0%, rgba(46,116,182,1) 100%);
}
.blueBg p {
    color:#fff;
}
.btnBlue {
  display:inline-block;
  padding:10px 20px;
  background:var(--blue);
  border:1px solid var(--blue);
  color:#fff;
  transition:all 0.4s ease;
  cursor:pointer;
}
.btnBlue:hover, .btnBlue:focus {
  color:var(--blue);
  background:transparent;
}
.email-show::before {
    content: 'kitakunterbunt@';
}

.email-show::after {
    content: 'chieming.de';
}

.email-hide {
    display: none;
}
.header_inner {
    padding:0 120px;
    background:#fff;
}

.stickyNav {
     position:fixed;
      top: 0;
      left:0;
      right:0;
      z-index: 100;
      background:linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0));
      transition:all 0.4s ease;
}

.stickyNav.top {
    position: fixed;
    top:-250px;
    width: 100%;
}
.logoRow, .mobileNav {
    justify-content: space-between;
    align-items:center;
}

.menu_btn a {
    display: block;
    width: 40px;
    margin: 10px 0;
}

.menu_btn {
    margin: 15px;
}

.menu_btn a span, .menu_btn a:after, .menu_btn a:before {
    content: '';
    width: 100%;
    height: 5px;
    border-radius: 3px;
    background: var(--blue);
    margin: 6px 0;
    display: block;
    transition: all .4s ease;
}

.nav li ul, html.mm-opened .menu_btn a span {
    display: none;
}

html.mm-opened .menu_btn a:before {
    transform: rotate(45deg);
}

html.mm-opened .menu_btn a:after {
    transform: rotate(-45deg);
    margin-top: -9.5px;
}

html.mm-opened .menu_btn a {
    margin-top: 20px;
}
.mainNav {
    width:100%;
}

.mainNav ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

.mainNav li {
    /*position: relative;*/
    list-style: none;
    line-height: 1.4em;
    flex-grow:1;
    text-align:center;
    background:var(--blue);
    margin:2px;
}

.mainNav li a {
    padding: 15px;
    display: inline-block;
    font-size:1em;
    color:#fff;
    text-decoration:none;
}

.mainNav li a:hover, .mainNav li a:focus, .mainNav li.active a, .info a:hover, .info a:focus, #page-1 .home {
    color:var(--yellow);
    text-decoration:underline;
    /*text-shadow: 1px 1px rgba(0,0,0,0.4);*/
}

.mainNav li.active .subNav li a {
    color: var(--blue);
    text-shadow: none;
}
 .mainNav li.active .subNav li a:hover, .subNav li a:hover, .subNav li a:focus {
     color:var(--grey);
 }

.mainNav ul.subNav {
    opacity: 0;
    transition: all .4s ease;
    visibility: hidden;
    left:0;
    right:0;
    display: block;
    position: absolute;
    left: 0;
    z-index: 500;
    background: rgba(255,255,255,.9);
    padding:15px 120px;
}
.subNav li {
    margin:2px 0;
    background:transparent;
    border:none;
}

.subNav li a {
    font-size: 0.8em;
    color: var(--blue);
    text-align:left;
    width: 100%;
    text-align:left
    display: block;
    padding: 10px 15px;
}
.subNav li.subnavHeadline {
  text-align: left;
  display:block;
  text-decoration:none;
  font-size:1.2em;
  margin:0;
  padding:5px 15px;
  border-bottom:1px solid var(--blue);
}
.mainNav li:hover > ul.subNav, .mainNav li a:focus + ul.subNav, ul.subNav:focus-within {
    visibility: visible;
    opacity: 1;
}

.email, .phone {
    font-weight: 300;
    font-size: 1.2em;
    margin-left:15px;
    display:block;
}

.logo img, .logoCh img, .logoMobile img {
        height:120px;
        width:auto;
}
.first_row p {
    margin:0;
}

.header_inner.flexbox {
    flex-wrap:nowrap;
    padding:15px 120px 0;
    background:rgba(255,255,255, 0.9);
}

/*slider*/
.headSlider, .headSliderSub {
    position: relative;
    overflow: hidden;
}

.headSlider .slick-slider, .headSliderSub .slick-slider {
    margin: 0;
}
.sliderWrapper {
    position:relative;
}


@keyframes pulse {
    0% {
        transform: scale(.95);
    }

    70% {
        transform: scale(1);
    }

    100% {
        transform: scale(.95);
    }
}

.sliderItem, .parallaxTxt {
    position: relative;
}

.headSliderSub .sliderItem, .sliderItem {
    height:600px;
    background-size: 100% auto !important;
}

.sliderItem .flexbox, .parallaxTxt .flexbox {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    justify-content: center;
    align-items: center;
}

.parallaxTxt .flexbox {
    align-items: center;
}

.slick-active .sliderTxt {
    -webkit-animation: fadeIn 2s;
            animation: fadeIn 2s;
}

.sliderTxtInner p, .parallaxTxt {
    color: #fff;
}

/*parallax*/
.parallaxItem {
        height: 600px;
        width: 100%;
         background-size:cover !important;
         background-attachment: fixed !important;
        background-size: 100% auto !important;
        overflow: hidden;
        position: relative;
}
.parallaxItem::before {
    content: '';
    position: absolute;
    background: rgba(0,0,0,0.4);
    top: -20px;
    left: 0;
    right: 0;
    height: 40px;
    border-radius: 50%;
    filter: blur(12px);
    z-index: 100;
    }
    .parallaxItem::after {
    content: '';
    position: absolute;
    background: rgba(0,0,0,0.2);
    bottom: -20px;
    left: 0;
    right: 0;
    height: 40px;
    border-radius: 50%;
    filter: blur(12px);
    z-index: 100;
    }

.parallaxInner {
    width:100%;
    height:100%;
    justify-content:center;
    align-items:center;
}
.parallaxTxt {

    text-shadow: 1px 1px #333;
}
.parallaxWrapper {
    padding-top:0;
    font-size:1.6em;
}
.parallaxWrapper .handwritten {
    font-size:3.5em;
    top:-20px;
}


.ui-datepicker-calendar td {
    font-size: .9em;
}


/*Öffnungszeitentabelle*/

.timeTable {
  width:75%;
}
.tDivider {
background-image: linear-gradient(to left, rgba(20, 73, 134, 0), rgba(20, 73, 134, 0.5), rgba(20, 73, 134, 0));
width:100%;
height: 1px;
}

/*tabelle*/
thead td {
  background:var(--blue);
  color:#fff;
  border-right-color:#fff;
}
thead td:last-child {
  border-right-color:var(--blue);
}
td {
  padding:10px;
  border-color:var(--blue);
}
/*contentSlider*/


.contentSliderItem .flex_item {
    width: 50%;
    height: 500px;
    padding: 30px 60px 30px 30px;
}

.fullImg .contentSliderImg {
    height: 500px;
    background-size: 100% auto !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.contentSliderLink {
    width: 100%;
}

.fullImg .contentSliderTxt, .fullImg .contentSliderTxt h2, .fullImg .contentSliderTxt h3 {
    color: #fff;
    text-shadow: 1px 1px rgba(0,0,0,.6);
}

.fullImg .contentSliderTxt {
    height: 500px;
    z-index: 100;
    position: relative;
    text-align: center;
}

.contentSliderTxt .flexbox {
    height: 100%;
    align-items: center;
    justify-content: center;
}

.contentSliderTxtInner {
    width: 100%;
}

.contentSliderItem {
    position: relative;
}

.contentSliderItem .nextItem {
    height: 60px;
    width: 30px;
    background: url(/custom/assets/arrow-next.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 50%;
    margin-top: -30px;
    right: 30px;
    z-index: 100;
    cursor: pointer;
}

/*content*/
.bgBlueTxt, th, .trigger h3 {
    color:var(--blue);
    padding:5px 10px;
    background:#ddd;
}
th {
    padding:10px;
}

.external {
  padding-right:25px;
  background:url(/custom/assets/external.png) no-repeat center right;
  background-size: 20px auto;
  display:inline-block;
  font-family: 'roboto', sans-serif;
}
.contentWrapper .row {
    position: relative;
}

.mapWrapper {
    text-align: center;
    width: 100%;
    padding-bottom: 60px;
}



/*accordion*/
.accordion {
    width:75%;
    margin:15px auto;
}

.trigger {
    position: relative;
    cursor: pointer;

}

.trigger h3 {
    margin: 0;
    padding: 15px;
        padding-right:60px;
}

.trigger::after {
    content: '';
    height: 25px;
    width: 25px;
    border-bottom: solid 2px var(--blue);
    border-left: solid 2px var(--blue);
    transform: rotate(-45deg);
    position: absolute;
    top: 10px;
    right: 15px;
    transition: all .4s ease;
}

.trigger.open:after {
    transform: rotate(135deg);
    top: 25px;
}

.toggle_container {
    width: 100%;
    padding: 30px 15px 15px;
    position: relative;
}

.toggle_container::before {
    content: '';
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(255,255,255,0),rgba(255,255,255,.5),rgba(255,255,255,0));
    position: absolute;
    top: 5px;
    left: 0;
}


/*Video*/
.plyr {
    min-width: 500px;
    margin: 15px;
}

/*fadIn effect*/
.fade-in {
    opacity: 0;
    transform: translateY(20vh);
    visibility: hidden;
    transition: opacity .6s ease-out, transform 1.2s ease-out;
    will-change: opacity, visibility;
}

.fade-in.is-visible {
    opacity: 1;
    transform: none;
    visibility: visible;
}

.yform {
    margin: 0 auto;
}

.form-group {
    margin-bottom: 15px;
}
.kForm .form-group {
    margin-bottom:11px;
}

input, select, textarea {
    border: none;
}

.control-label {
    padding: 16px 0;
    display: block;
    text-align: left;
    font-size: 1.2em;
    font-weight:700;
    color:var(--green);
    width: 100%;
}

.form-control {
    padding: 10px 15px;
    border-radius: 4px;
    border:1px solid #7B7776;
    font-size: 1.2em;
    width: 100%;
    color: #fff;
    background: #A39E9D;
}
.yform .btn {
    background:transparent;
    margin-left:15px;
    border-radius:4px;
}

.btnWrapper {
    text-align: center;
}


.formcheckbox {
    margin-bottom: 15px;
    padding: 0 10px;
}

.imgList.bottomCenterImg, .imgList.topCenterImg {
    justify-content: center;
}

.imgList {
    align-items: center;
}
.flexbox.imgList {
  flex-wrap:nowrap;
  align-items:flex-start;
}

.listImg img:not([width]) {
    width: 100%;
}

.listImg img {
    display: block;
}
.imgRight {
  float:right;
  padding:15px 0 15px 15px;
}
.imgLeft {
  float:left;
  padding: 15px 15px 15px 0;
}
/* .gallery.flexbox {
  justify-content: center;
  align-items: center;
  padding:30px 0;
} */
.gallery {
    display: flex;
    flex-wrap: wrap;
}

.gallery a {
    display: inline-block;
    padding: 5px 0;
}

.gallery a img {
    display: block;
}
.listImg {
  position:relative;
}
.imgTitle {
  display:block;
}
/*
*soundplayer
*/
.musicItem {
  display:flex;
  flex-wrap:wrap;
  margin:20px 0;
  justify-content: center;
}
.progress {
  position:relative;
  height:20px;
  width:100px;
  border:2px solid var(--orange);
  border-radius:6px;
  top:12px;
  overflow:hidden;
  background:var(--orange05);
}

.progress_bar {
  position:absolute;
  height:100%;
  background:var(--blue);
  left:0;
  top:0;
}
.controls {
    display:flex;
}

.control {
  cursor:pointer;
  padding:0 5px;
}
.control svg {
    fill:var(--blue);
    width:40px;
    height:auto;
    transition:all 0.4s ease;
}
.control svg:hover, .control svg:focus {
    fill:var(--lightblue);
}

.control.soundActive svg {
    fill:var(--lightblue);
}

.controls_border {
  border:1px solid var(--blue);
  border-radius:0 100px 100px 0;
}
.sound_cover {
  width:100px;
  height:100px;
  border-radius:100px 0 0 100px;
  overflow:hidden;
  background:var(--lightblue);
  display:flex;
  justify-content:center;
  align-items:center;
}
.sound_cover img {
  width:auto;
  height:80%;
}
.songTitle {
    font-family: 'roboto', sans-serif;
  color:var(--blue);
  font-size:1.8em;
  text-align: center;
}
/*footer*/

footer {
    position: relative;
}

.footer {
    padding: 15px 120px;
}


footer p, footer .h2 {
    color: #fff;
    line-height: 1.4em;
}

.footer {
    position: relative;
}

.footerLogo img {
    width:60%;
    height:auto;
    margin-bottom:1em;
}

.footer .flexbox {
    justify-content: space-between;
    align-items: flex-end;
    margin: 0 auto;
    width:100%;
}

.footer .flex_item {
    flex-grow:1;
}
.footer a {
    color:var(--yellow);
}
.footer a:hover, .footer a:focus {
    color:#fff;
    text-decoration:underline;
}
.navFooter ul {
    margin: 0;
    padding: 0;
    text-align:right;
    width:100%;
}

.navFooter ul li {
    padding: 0 15px 0 0;
    display: block;
}

.rex-navi1 li {
    list-style: none;
}

.copyWrapper {
    text-align: center;
    position:relative;
    padding-bottom:15px;
}
.copyWrapper::before {
   content:'';
   display:block;
   height:1px;
   width:100%;
    background:linear-gradient(to right, rgba(255,255,255,0) ,rgba(255,255,255,0.5), rgba(255,255,255,0));
}

.copyWrapper p {
    margin: 5px 0;
    font-size: 1em;
    font-weight: 100;
}
/*mediaqueries*/



@media screen and (max-width:1350px) {
    body {
        font-size: 1em;
    }
    .header_inner {
        padding:0;
    }

    .container {
        width: 100%;
        max-width: 1200px;
    }

    .container .flexbox {
        margin: 0;
    }

    .header_top .container {
        max-width: 100%;
    }

    .parallaxItem {
        height: 500px;
    }
    .parallaxInner {
        padding:30px;
    }
    .footer .flex_item {
        width:33.33%;
    }
    .footerLogo {
        text-align:center;
    }
    .footer {
        padding:15px 0;
    }
    .navFooter ul li {
        padding:0;
    }

}

@media screen and (max-width:1200px) {
    .headSliderSub .sliderItem, .sliderItem {
        height: 500px;
    }

    .control-label {
        padding: 11px 0;
    }
    .flex-25 {
        width:33.33%;
    }

     .flex-50 {
        width: 75%;
    }

    .flex-75, .footer .flexbox, .accordion {
        width: 100%;
    }
}

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

    .mainNav li a {
        padding: 15px 10px;
    }

    .headSliderSub .sliderItem, .sliderItem, .parallaxItem {
        background-size: cover !important;
    }
    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }
    .contentWrapper {
        padding:15px;
    }

    .gridtemplate-4col .flex_item {
        width:50%;
    }
        .gridItem .listImg {
        width:auto;
    }


    .formFieldWrapper .flex_item {
        width: 50%;
    }

    .formcheckbox label {
        margin-left: 0;
    }

    .footer .flex_item {
        width: 50%;
    }
    .footerLogo {
        text-align:right;
    }

    .navFooter {
        width: 100%;
        background:linear-gradient(90deg, rgba(46,116,182,1) 0%, rgba(20,73,123,1)  100%)
    }

    .navFooter ul {
        display: flex;
        justify-content:center;
    }
    .navFooter ul li {
        padding:0 15px;
    }

}

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

    .stickyNav, .stickyNav.top {
        position:absolute;
    }

    .header_top {
        position: absolute;
    }
    .logoMobile img {
        height:120px;
        width:auto;
    }

    p, li, a {
        /* font-size: 1em; */
    }
    p.twoCols {
        column-count:1;
        column-gap:0;
    }

    .subNav li a {
        font-size: 1.1em;
        padding: 10px 15px;
    }

    .rex-yform {
        padding: 15px 0;
    }

    .control-label {
        width: 30%;
    }

    .flex-33, .flex-25 {
        width: 50%;
    }

    .gallery {
        justify-content: center;
    }

    .contentWrapper {
        margin: 30px auto 0 auto;
    }

    .contentImg {
        width: 100%;
    }

    .headSliderSub .sliderItem, .sliderItem {
        height: 350px;
    }


    .gallery .listImg img {
        max-width: 100%;
    }

    .formWrapper {
        justify-content: center;
    }

    .formFieldWrapper .flex_item {
        width: 100%;
        padding:0 15px;
    }

    .yform {
        width: 100%;
    }
        .footer .flex_item {
        width: 100%;
    }
    .footerLogo {
        text-align:center;
    }
    .footerLogo img {
        width:200px;
    }

}

@media screen and (max-width:600px) {
    .logoMobile img {
        height:80px;
        width:auto;
    }

    .flex-50 {
        width: 100%;
    }

    ul.twoCols {
        column-count: 1;
    }

    .form-group {
        flex-wrap: wrap;
    }

    .form-control, .control-label, .form-control.datepicker {
        width: 100%;
    }

    .control-label {
        padding: 5px 0;
        text-align: left;
    }

    .rex-yform .btn {
        margin-left: 0;
    }

    .info, .actionBtn {
        display: none;
    }

    .headSliderSub .sliderItem, .sliderItem {
        height: 300px;
    }

    .formWrapper .flex_item {
        width: 100%;
    }

    .buttonWrapper {
        text-align:center;
        flex-wrap:wrap;
        justify-content: center;
    }

    .contentSliderItem .flex_item, .fullImg .contentSliderImg, .fullImg .contentSliderTxt {
        height: 500px;
    }

    .footer .flex_item {
        width: 100%;
        padding: 0 15px;
    }
    .navFooter ul {
        display:block;
        text-align:center;
        padding:15px 0;
    }

}

@media screen and (max-width:500px) {
    .flex-33, .flex-25 {
        width: 100%;
    }
    .gridtemplate-4col .gridItem.flex_item {
        width:100%;
    }


    .parallaxWrapper {
        font-size:1em;
    }
     .parallaxItem {
         background-size:auto 100% !important;
         background-attachment:scroll !important;
     }

    .navFooter ul {
        justify-content: center;
    }
}
