/*
 * CSS Schliecker 
 * responsive 
 * by dta 22.11.2021 
 */


:root {
--d-pagewidth: 70em;
--d-color1: #f1f1f1;
--d-rowitems: 5;
--d-width: calc((var(--d-pagewidth) - var(--d-rowitems) * 20px) / var(--d-rowitems));
--d-bgacc: #2e9a6a;
--d-bgacc: linear-gradient(to bottom, #2e9a6a 0%,#011901bb 100%);
--d-fg-on-bgacc: #222c;

--d-bgbutton: #319965;
--d-fgbutton: #f1f1f1;



--d-menuwidth: 320px;

--d-menuhover-bg: #91966e;
--d-ahover-bg: #91966e;

--d-textzoom: 1;

}



.none {   display: none; }
.NONE {   display: none !important; }


html {
  font-family: helvetica,arial,verdana,sans-serif;
  font-size: 1rem;
  line-height: 150%;
  color: #333;  
}


body.bg_wrapper {
  background-color: #f4faf4;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  min-height: 1000px;
  max-width: var(--d-pagewidth);
  margin: 0 auto;
}

p,div {
  margin: 0;
  padding: 0;
}
li {
  margin-left: 25px;
}

h1,h2,h3,h4,h5 {
  margin: 0;
  padding: 0;
  font-family: Caveat;
}



h1 {  font-size: calc( 2rem * var(--d-textzoom) ); }
h2 {  font-size: calc( 1.6rem * var(--d-textzoom) ); }
h3 {  font-size: calc( 1.3rem * var(--d-textzoom) ); }
h4 {  font-size: calc( 1.1rem * var(--d-textzoom) ); }
h5 {  font-size: calc( 1rem * var(--d-textzoom) ); }

p,div {  font-size: calc( 1rem * var(--d-textzoom) ); }

div { border: 0px solid #f00; }

/* clearfix */
.cf:before, .cf:after {
	content: "";
	display: table;
}
.cf:after {
	clear: both;
}



p {
  margin-bottom: 1.5em;
  line-height: 150%;
  color: #333;  
}

article {
  margin: 1em 0 0 0;
  padding: 10px 20px;
  clear: both;
}

button {
  background: var(--d-bgbutton);
}



#main {
  border: 0px solid #f00;
  position: relative;
  left: 0;
  width: 100%;
  padding: 0;
  transition: left 1s, width 1s;
}

#xxxmain.mopen {
  left: var(--d-menuwidth);
  width: calc(100% - var(--d-menuwidth));
}

#main>section:first-child {
  padding-top: 16px;
  padding-top: 1rem;
}


/* sub classes  */

.-fl:first-letter {
  font-size: 150%;
  font-weight: bold;
}
.-fl:first-letter,
.-fl p:first-letter {
  font-size: 190%;
  font-weight: normal;
  font-style: italic;
  float: unset;
  padding: 0 2px 4px 0;
  vertical-align: text-bottom;
}

.illu-right {
  max-width:255px;
  float: right;
  height:auto; 
  padding: 4px;
  border-radius: 20px 120px 20px 120px;
}
.illu-left {
  max-width:255px;
  float: left;
  height:auto; 
  padding: 4px 10px 4px 0;
  border-radius: 50px 10px 120px 20px;
}


section {
  background: #fff;
}

#footer {
  background: #fff;
}


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

#page > nav {
  display: none;
}

section {
  background: #fff;
}

.illu-right, .illu-left {
  max-width:150px;
}


}


