/* Stylesheet tiagooliveira.com */

/* mulish-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: 'Mulish';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/mulish-v13-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}




:root{
    --orange: #e66634;
    --violet: #5c467d;
    --lightorange: #ebb6a0;
    --lightviolet: #b7adc5;
    --white: #f9f9f9;
    --black: #36383F;
    --grey: #85888C;
}



body {
    font-family: "Cardo", sans-serif;
	color: black;
	background: white;
	background-size: contain;
	background-repeat: no-repeat;
	background-attachment: scroll;

}



body p {
        font-size: 1.2em;
        line-height: 1.8;
        font-weight: 400;
        color: #333;
    }

#main a, #main a:hover {
    color: inherit;
    font-weight: 500;
    text-decoration: none;
}

body.konzerte div.event.layout_full.block {
	border-top: 1px var(--lightviolet) solid;
}

body.konzerte div.event.layout_full.block figure.image_container img {
	border-left: 10px var(--orange) solid;
	  margin-top: 7px;

}


body.konzerte div.event.layout_full.block p {
	margin-top: 0.7em;
	margin-bottom: 0.2em;
}

body.konzerte div.event.layout_full.block h2 {
	color: var(--orange);
	font-size: 1.2em;
	margin-top: 0.5em;
	margin-bottom: 0.4em;
}


div.mod_eventreader h2 {
	display: inline-block;
	padding:0;
	padding-right: 20px;
	margin:0;
	margin-top:0px;
	margin-bottom:9px;
#	font-size: 26px;
}

div.mod_eventreader p.info {
	
	padding:0;
	margin:0;
	margin-top:15px;
	margin-bottom:10px;
	font-size: 26px;
	display: inline-block;
	margin-right: 15px;
}

h2.orange {
	color: var(--orange);
}

#main div.content-image {
	border-top: 1px var(--lightviolet) solid;
	padding-top: 20px;
}


/*--------------------*/
/* ----- Header ----- */
/*--------------------*/

#header {
  height: auto; 
  position: relative;
  z-index: 14;
  overflow: hidden;
}

/* Logo */

#logo {
    margin:20px;
   float: left;
}

#logo img {
	height: 200px;
	width: 200px;
	
}


#header h1.desktop {
	font-size: 4em;
	text-transform: uppercase;
	margin-bottom: 0;
   	margin-top: 6px;
	color: var(--orange);
	text-align: right;
	opacity: 0.8;
	

}

/* Menü */

nav.desktop-nav {
      
	
	font-size: 1.35em;
	}


nav.desktop-nav.mod_navigation ul {
list-style-type: none;
border-bottom: 1px white solid;
padding-left:0;
margin-left:0;
margin-bottom:0;
padding-bottom:83px;
padding-top:30px;
}

nav.desktop-nav.mod_navigation ul li a {
position: relative;
height: inherit;
align-items: center;
padding: 0 15px;
cursor: pointer;
text-decoration: none;
}

nav.desktop-nav.mod_navigation ul li strong {
padding: 0 15px;
}

nav.desktop-nav ul li a:link, nav.desktop-nav ul li a:visited {
color: inherit;
}

/* Mobiles Menü */


/* Nav menu */
nav.mod_navigation.mobile-nav {
    width: 80%;
    height: 100%;
    position: fixed;
    background-color: #828781;
    overflow: hidden;
    right: 0;
    z-index:0;
    
}

nav.mobile-nav ul {
	list-style-type: none;
	margin-top: 100px;
	margin-right: 10px;
	font-size: 30px;
	margin-bottom: 20px;
}

nav.mobile-nav ul li {
    display: block;
    padding: 10px 30px;
    color: var(--white);
    text-decoration: none;
    text-align: right;
    font-size: 23px;
    text-transform: uppercase;

}

nav.mobile-nav ul li a, nav.mobile-nav ul li a:link, nav.mobile-nav ul li a:hover {
    color: var(--white);
    text-decoration: none;

}


nav.mobile-nav .menu a:hover{
    background-color: var(--grey);
}


div.overlay {
    max-height: 0;
    opacity: 0;
    transition: max-height .5s ease-in-out;
    transition: opacity .5s ease-in-out;
    width:100%;
    background: rgba(0, 0, 0, 0.5);   
    height: 100%;
    position: fixed;
    overflow: hidden;
    right: 0; 
    top:0;
    z-index: 10;
    display:none;
}


.mobile-nav {
    margin-left:300px;
}



/* Menu Icon */

div#container {
	/* border-top: 1px var(--lightviolet) solid; */
	margin-left: 0px;
	z-index: +1;
    padding-top: 60px;
}

.hamb {
    cursor: pointer;
    float: right;
    padding: 40px 20px;
    position: absolute;
    right: 15px;
    z-index:25;
}


.hamb-line {
    background: #ddd;
    display: block;
    height: 3px;
    position: relative;
    width: 32px;
    
}

.hamb-line::before,
.hamb-line::after{
    background: #ddd;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.hamb-line::before{
    top: 8px;
}

.hamb-line::after{
    top: -8px;
}


.side-menu {
    display: none;
}

/* Toggle menu icon */

.side-menu:checked ~ div.overlay {
	display:block;
    max-height: 100%;
    opacity: 100%;
    z-index: 20;
   
}



.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}

.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
    background: var(--white);

}

.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
    background: var(--white);

}


nav.desktop-nav.mod_navigation.block {
        display: inherit;
    }


#footer {
    margin-top: 50px;
}

#footer div.content-text, #footer div.ce_form, #footer div.ce_columns {
	padding: 20px;
}

#footer div.content-hyperlink {
	text-align: right;
	padding: 5px 20px;

}

div.mod_eventreader .content-image {
	margin-bottom: 30px;
}
 




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




body.konzerte div.mod_eventlist {
	
	padding-top: 6vw;
}


/*--------------------*/
/* ----- Footer ----- */
/*--------------------*/

footer#footer div.inside {
	
	padding: 10px;

	background-color: #828781;
    color: white;
}

footer#footer div.inside p {
    color: white;
}


/* ----- Icon Links ----- */

  a.plus {  
     padding-left: 1.8em;  
     background: transparent url(/files/kh8/img/plus.svg) no-repeat top left;  
     color: var(--orange);
     font-size: 1.3em;
     font-weight: 900;
 }   

 a.arrow {
 	 padding-left: 1.8em;  
     background: transparent url(/files/kh8/img/arrow.svg) no-repeat top left;
     color: var(--orange); 
      font-size: 1.3em;
     font-weight: 900;
     margin-right:1em;
     text-decoration: none;
     margin-top: 25px;
     display: inline-block;
 }

  a.arrow_single {
     padding-left: 1.8em;  
     background: transparent url(/files/kh8/img/arrow.svg) no-repeat top left;
     color: var(--orange); 
      font-size: 1.1em;
     font-weight: 900;
     margin-right:0;
     text-decoration: none;
     margin-top: 0;
     display: inline-block;
 }

   @media screen and (min-width: 48em) {
     p.rechts-rueber {
        text-align: right;
     }


   }


div#superhl {
  position: absolute;
  color: #eee;
  font-size: 5vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 14vh);
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  white-space: nowrap;k
}

div#superhl_ut {
letter-spacing: 5px;
  font-size: 3vw;
}
  




/* Responsiveness */



   nav.desktop-nav.mod_navigation.block {
        display: none;
   }


@media (max-width: 1000px) {


div#superhl {

  font-size: 2.5em;
  white-space: nowrap;
   transform: translate(-50%, 19vh);
}

div#superhl_ut {
 font-size: 0.7em;
}




nav.dektop-nav.mod_navigation ul li {
	
	font-size: 1.5vw;
}


nav.desktop-nav.mod_navigation ul li a {
padding: 0 8px;
}
}

h1.mobile-h1 {
	display: none;
	text-transform: uppercase;
}

@media (max-width: 1000px) {

	body {
	
	background-size: contain;
	background-repeat: no-repeat;


}

#header h1.mobile-h1 {
	display: block;
	text-align: center;
}

	#wrapper {
		margin-left:0px;
		margin-right:0px;
	}

	div#container {
		margin:0;
	}
	

#logo {
	width: 100%;
	margin: auto;
	text-align: center;
	margin-top: 1em;
}

#logo img {
	width:20vw;
	height:20vw;
}

 h1 {
	font-size: 4.5vh;
	margin-bottom: 0.2em;
   	margin-top: 0;
	text-align: center;
}

    div.row.sponsoren div.content-image figure img {
	padding: 5vw 11vw 0 11vw;

}

}


@media (min-width: 1000px) {

	#wrapper {
  margin: 0 auto;
	}
    .nav{
        max-height: none;
        top: 0;
        position: relative;
     /*   float: right;
        width: fit-content;*/
        background-color: transparent;

    }

    nav.desktop-nav.mod_navigation.block {
        display: block;
        float: right;
        z-index: 10;
    }

    div.overlay {
        display: none;
    }

    nav.desktop-nav {
  margin-top: 1em;
    }


    .menu li{
        float: left;
    }

    .menu a:hover{
        background-color: transparent;
        color: var(--grey);
        
    }
    
    .hamb{
        display: none;
    }

    div.row.sponsoren div.vertical-center.content-image figure img {
	transform: translateY(250%);

}

div.row.sponsoren .content-image.logo-merian figure img {
	padding-right: 1.5vw;

}

footer#footer {
	
}

}


.sponsoren {
	border-top: 1px solid;
	margin-top: 20px;
	padding-top: 30px;
	border-color: var(--lightviolet);
}

.spons-test {
	
	padding: 0 50px;
}

.spons-test h3 {
	
	margin-bottom: 30px;
}

main#main {


}

div.row.sponsoren div.content-image {
	text-align: center;
}



body.archiv div.content-hyperlink {
	text-align: center;
}



div.socmediabutton {
  
    text-align: right;
    margin-right: 40px;
    margin-bottom:15px;
}


html body#top.konzerte div.mod_eventlist.row.ce_rowStart.block div.event.layout_full.block div.ce_text.block { 
  height: 100%;

} 

.ev_container {
  position: relative;
  width: 100%;
  background-color: black;
}

.ev_image {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}

.ev_middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  left: 80%;
  top: 70%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

@media(hover: hover) {


.ev_container:hover .ev_image {
  opacity: 0.7;

}

.ev_container:hover .ev_middle {
  opacity: 1;
}
   
}



body.konzerte div.event.layout_full.block figure.image_container div.ev_text img {
    border-left: 0px;
}  


body.ueber_uns div.mod_form {
	border-top: 1px var(--lightviolet) solid;
}


/* Einblendung Fototitel Sideshow */

div.rsts-skin-default div.rsts-caption {
  position: absolute;
  top: initial;
  bottom: 20px;
  left: 20px;
  font-size: 25px;
}

/* Tabelle Tickets  */
div.ticket-table table {
     border-spacing: 5px;
    border-collapse: separate;
    border: 0px;

}

tbody th, tbody td {
    border: none;
    padding: 20px 30px;
    background-color: #f0eef3;
    vertical-align: middle; }

tbody td .close span {
  
    color: #dc3545; }

div.ticket-table {
    margin-top: 50px;
}

/* Evetn Bilderslider */
div.mod_rocksolid_slider.block {
  border-top: 1px var(--lightviolet) solid;
  padding-top: 20px;
  margin-bottom: 30px;
}

div.detail-programm p {
    font-size: 1em;
    color: var(--orange);
}


div.progr-info div.rte p:first-child {
   margin-top: 0px;
}


div.ce_form.abo-form {
 padding-top: 30px;
 border-top: 1px var(--lightviolet) solid;
}

div.widget.widget-submit {
    margin-top: 30px;
    width: 130px;
}

footer div.widget.widget-submit {
    margin-top: 20px;
    width: 100px;
}

div.trailervid video {
    width: 100%;
}

h2.akt_secondline {
    margin-top: 0;
}


/* Holger */

div.rubrbild img {
max-width: 100%;
  height: auto;
  width: 100%;
  object-fit: cover;
  height: 100vh;
}

nav.desktop-nav {
position: absolute;
width: 100%;
text-align: center;
}

nav.desktop-nav.mod_navigation  ul {
    margin:0;
padding: 0px;
padding-top: 6px;
padding-bottom: 6px;
    text-align: center;
    display: inline-block;  
  border-bottom: 1px solid white;
  border-top: 1px solid white;
}



nav.desktop-nav.mod_navigation ul li {
    font-size: 1em;
    display: inline-block;
    color: white;
}

main#main div.inside {
    padding-top: 20px;
    padding-bottom: 20px;
}

  

nav.desktop-nav.mod_navigation ul li strong:first-child, nav.desktop-nav.mod_navigation ul li a:first-child {
    padding-left: 1px;
}

h1.ce_headline {
    display: table;
    margin:0 auto;
    margin-bottom: 40px;
    text-align: center; 
    border-top:2px solid #828781;
    border-bottom: 2px solid #828781; 
    text-transform: uppercase;
    font-weight: normal;
    color: #828781;
}


.col-12 {
  padding-left: 3vw;
  padding-right: 3vw;
}

main#main div.mod_article.rezension, main#main div.mod_article.biografie, main#main div.mod_article.artikel-cd {
    padding-top: 30px;
    padding-bottom: 30px;
}

main#main div.mod_article.artikel-cd {
    padding-top: 50px;

}

div.mod_article.artikel-cd div.ce_text h2 {
    margin-top: 0px;
}

main#main div.mod_article:nth-child(2n+3) {
    background-color: #e4e5e3;
}

/* ZITATE */


.testimonial-quote {
    font-size: 16px;
}

.testimonial-quote blockquote {
    /* Negate theme styles */
    border: 0;
    margin: 0;
    padding: 0;

    background: none;
    color: gray;
    /* font-family: Georgia, serif; */
    font-size: 1.5em;
    font-style: italic;
    line-height: 1.4 !important;
    margin: 0;
    position: relative;

    z-index: 600;
}

.testimonial-quote blockquote * {
    box-sizing: border-box; 
}

.testimonial-quote blockquote p {
    color: #333; 
    line-height: 1.4 !important;
}

.testimonial-quote blockquote p:first-child:before {
    content: '\201C';
    color: #828781;
    font-size: 6.5em;
    font-weight: 700;
    opacity: .15;
    position: absolute;
    top: -.4em;
    left: -.2em;    
    text-shadow: none;
    z-index: -300;
}

.testimonial-quote img {
    border: 3px solid #9CC1D3;
    border-radius: 50%;
    display: block;
    width: 120px;
    height: 120px;
    position: absolute;
    top: -.2em; 
    left: 0;    
}

.testimonial-quote cite {
    color: gray;
    display: block;
    font-size: .8em; 
}
  
.testimonial-quote cite span {
    color: #5e5e5e;
    font-size: 1em;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

}

.testimonial-quote {
    position: relative; 
}

.testimonial-quote .quote-container {
    padding-left: 0px; 
}
  
.testimonial-quote.right .quote-container {
    padding-left: 0;
    padding-right: 0px; 
}

.testimonial-quote.right img {
    left: auto;
    right: 0;
}

.testimonial-quote.right cite {
    text-align: right; 
}

div.quote-container.vieltext blockquote {
    font-size: 1em;
}

div.testimonial-quote div.quote-container.vieltext blockquote p:first-child:before {
    font-size: 13.5em;

}

div.rubrbild:after {
  content: " ";
  z-index: 0;
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.1);
}

div.rubrbild figure {
    margin-bottom: -7px;
}

form button,
input[type=submit],
.button {
    background: none;

}


button.custom-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 13px;
  font-size: 16px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  user-select: none;
  color: #ffffff;
  border-radius: 6px;
  background-color: #828781;
}

button.custom-button:hover {
   transition: all 0.3s ease;
  border-color: #828781;
  color: #828781;
  background-color: transparent;
}

div.mod_article.artikel-aktuelles div.ce_text {
    padding-bottom: 18px;
  
}

/* Ausrichtung grosse Bilder  */



body.home div.ce_image.rubrbild img  {
    object-position: 50% 45%;
}

body.aktuelles div.ce_image.rubrbild img  {
    object-position: 50% 100%;
}

body.rezensionen div.ce_image.rubrbild img  {
    object-position: 50% 20%;
}

body.projekte div.rubrbild::after {
  background: rgba(0, 0, 0, 0);
}


@media screen and (min-width: 1280px) {
 body.projekte div.rubrbild::after {
  background: rgba(0, 0, 0, 0.2);
}


}


body.home #main div.ce_download a, body.home #main div.ce_download a:hover {

      color: grey;
      font-weight: 600;
      text-decoration: none;
      background: none;
      padding: 10px;
      border: 1px solid grey;
      border-radius: 7px;
}

body.home #main div.ce_download a:hover {

      color: white;
      font-weight: 600;
      text-decoration: none;
      background: grey;
      padding: 10px;
      border: 1px solid grey;
      border-radius: 7px;
}

div.mod_form.block {
    padding-bottom: 40px;
}



