@charset "utf-8";
/* CSS Document */
.col-antrazit {
  color: #342e2c;
}
.col-braun {
  color: #a4592c;
}
.col-dunkelbraun {
  color: #884a24;
}
.col-creme {
  color: #fdf9f6;
}
.bgcol-creme {
  background-color: #fdf9f6;
}
.col-beige {
  color: #fbf5ee;
}
.bgcol-beige {
  background-color: #fbf5ee;
}
.bgcol-dunkelbeige {
  background-color: #f8ece1;
}
.col-hellorgange {
  color: #ffdbbd;
}
.col-rot-dunkel {
  color: #d17566;
}
.bgcol-rot-hell {
  background-color: #f6e3e0;
}
.col-gelb-dunkel {
  color: #da9a4a;
}
.bgcol-gelb-hell {
  background-color: #f8ebdb;
}
.col-gruen-dunkel {
  color: #8e9862;
}
.bgcol-gruen-hell {
  background-color: #e8eae0;
}
@font-face {
  font-family: 'Headlines';
  src: url("/fonts/DMSerifDisplay-Regular.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'NunitoSans';
  src: url("/fonts/NunitoSans-VariableFont_YTLC.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'NunitoSansItalic';
  src: url("/fonts/NunitoSans-Italic-VariableFont_YTLC.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 100%;
}
*,
::before,
::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
.fullwidth {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 100px;
  padding-bottom: 100px;
}
.designwidth {
  width: 1200px;
  max-width: 100%;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.wide-word-space {
  word-spacing: 24px;
}
.untertitel {
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 1.4em;
  font-weight: 100;
}
.originalwidthimage {
  width: auto;
  height: auto;
}
.fullwidthimage {
  width: 100%;
  height: auto;
  border-radius: 15px;
  margin-bottom: 15px;
}
.bg-lotus {
  background-image: url(/img/bg-lotus.png);
  background-repeat: no-repeat;
  background-position: left center;
}
.bg-light {
  background-image: url(/img/bg-light.png);
  background-repeat: no-repeat;
  background-position: right 300px;
}
div.zweispalter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2em;
  margin-bottom: 2em;
}
div.zweispalter div {
  width: 48%;
}
div.zweispalter p {
  margin-top: 0;
}
.button {
  display: inline-block;
  padding: 0;
  border-radius: 15px;
  /* fallback */
  -webkit-column-break-after: page;
          break-after: page;
}
.button a {
  display: block;
  padding: 15px;
  border-radius: 15px;
}
.button a:hover {
  color: #342e2c;
  background-color: rgba(255, 255, 255, 0.7);
}
.button a::after {
  content: '';
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  width: 13px;
  height: 13px;
  margin-left: 10px;
}
.button.rot a {
  color: #d17566;
  border: 1px solid #d17566;
}
.button.rot a::after {
  background-image: url(/img/pfeil-r-rot.png);
}
.button.gelb a {
  color: #da9a4a;
  border: 1px solid #da9a4a;
}
.button.gelb a::after {
  background-image: url(/img/pfeil-r-gelb.png);
}
.button.gruen a {
  color: #8e9862;
  border: 1px solid #8e9862;
}
.button.gruen a::after {
  background-image: url(/img/pfeil-r-gruen.png);
}
div.apostrophed {
  padding-left: 150px;
  padding-right: 150px;
  min-height: 66px;
  background-image: url(/img/apostroph-l.png), url(/img/apostroph-r.png);
  background-position-x: left,right;
  background-position-y: bottom,top;
  background-repeat: no-repeat;
}
body {
  width: 100%;
  min-height: 100%;
  font-family: NunitoSans, Tahoma, Arial, Helvetica, Tahoma, sans-serif;
  padding: 0;
  margin: 0;
  background-color: #ffffff;
  color: #342e2c;
  font-size: 16px;
}
p,
li,
ol {
  line-height: 1.8em;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Headlines, "Times", serif;
  font-weight: normal;
  color: #a4592c;
  font-size: clamp(1.2rem, 3.81rem, 2.2rem);
}
h1 {
  padding-bottom: 0.5em;
  padding-top: 0.5em;
  margin-top: 1.5em;
  margin-bottom: 0em;
  line-height: 1.3em;
}
h2 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
h3 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
nav {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
  position: relative;
  background-color: #fbf5ee;
  color: #a4592c;
}
nav > div {
  width: 1200px;
  max-width: 100%;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
nav > div ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
nav > div ul li {
  display: inline-block;
}
nav > div ul li a {
  display: block;
  padding: 16px;
  padding-top: 24px;
  padding-bottom: 24px;
}
nav > div ul li a:hover,
nav > div ul li a.active {
  background-color: #ffdbbd;
}
#title {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 100px;
  padding-bottom: 100px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  padding-top: 0;
  padding-bottom: 0;
}
#title > div {
  height: 50vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#title.startseite {
  background-image: url(/img/titel-boden-mit-kissen.jpg);
}
#title.ueber-mich {
  background-image: url(/img/titel-anrichte-mit-steinen.jpg);
}
#title.angebote {
  background-image: url(/img/titel-beratung.jpg);
}
#title.kontakt {
  background-image: url(/img/titel-anrichte-mit-smartphone.jpg);
}
#title.impressum {
  background-image: url(/img/titel-weg.jpg);
}
#title.datenschutz {
  background-image: url(/img/titel-weg.jpg);
}
.navsign {
  font-size: clamp(1.2rem, 3.81rem, 2.2rem);
  font-weight: bold;
  font-family: "Headlines";
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
  width: 100%;
}
.navsign a {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 15px;
  border-radius: 15px;
}
.navsign a:hover {
  color: #a4592c;
  background-color: rgba(255, 255, 255, 0.7);
}
.navsign a::after {
  content: '';
  display: inline-block;
  background-repeat: no-repeat;
  width: 26px;
  height: 23px;
  margin-left: 20px;
}
.navsign.rot {
  color: #d17566;
}
.navsign.rot a::after {
  background-image: url(/img/pfeil-r-rot.png);
}
.navsign.gelb {
  color: #da9a4a;
}
.navsign.gelb a::after {
  background-image: url(/img/pfeil-r-gelb.png);
}
.navsign.gruen {
  color: #8e9862;
}
.navsign.gruen a::after {
  background-image: url(/img/pfeil-r-gruen.png);
}
#pageclaim {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 100px;
  padding-bottom: 100px;
}
.trippelboxcontainer {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.trippelboxcontainer .box {
  width: 32%;
  border-radius: 15px;
  padding: 15px;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}
.trippelboxcontainer .box img.motiv {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.trippelboxcontainer .box img.signet {
  margin-top: -58px;
  display: block;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.trippelboxcontainer .box.rot {
  color: #d17566;
  background: linear-gradient(#d17566 100px, #f6e3e0 100px 100%);
  position: relative;
}
.trippelboxcontainer .box.rot h2 {
  color: #d17566;
}
.trippelboxcontainer .box.rot::after {
  content: '';
  display: block;
  width: 102px;
  height: 102px;
  background-image: url(/img/stoerer-online.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -40px;
  right: 10%;
}
.trippelboxcontainer .box.gelb {
  color: #da9a4a;
  background: linear-gradient(#da9a4a 100px, #f8ebdb 100px 100%);
}
.trippelboxcontainer .box.gelb h2 {
  color: #da9a4a;
}
.trippelboxcontainer .box.gruen {
  color: #8e9862;
  background: linear-gradient(#8e9862 100px, #e8eae0 100px 100%);
}
.trippelboxcontainer .box.gruen h2 {
  color: #8e9862;
}
ul.leaves li {
  display: block;
  padding-left: 35px;
  background-image: url(/img/blatt.png);
  background-repeat: no-repeat;
  background-position: left center;
  height: 30px;
  margin-bottom: 10px;
}
form {
  width: 100%;
}
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
  padding: 1em;
  display: block;
  width: 100%;
  margin-bottom: 2em;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
form input,
form textarea {
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
form ::-webkit-input-placeholder {
  color: grey;
  opacity: 1;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
form :-ms-input-placeholder {
  color: grey;
  opacity: 1;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
form ::-ms-input-placeholder {
  color: grey;
  opacity: 1;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
form ::placeholder {
  color: grey;
  opacity: 1;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
form :focus {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
form :focus::-webkit-input-placeholder {
  opacity: 0;
}
form :focus:-ms-input-placeholder {
  opacity: 0;
}
form :focus::-ms-input-placeholder {
  opacity: 0;
}
form :focus::placeholder {
  opacity: 0;
}
#bottombox .trippelboxcontainer.bottom {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#bottombox .trippelboxcontainer.bottom div {
  padding-left: 65px;
  background-repeat: no-repeat;
  background-position: left top;
}
#bottombox .trippelboxcontainer.bottom div.phone {
  background-image: url(/img/icon-phone.png);
}
#bottombox .trippelboxcontainer.bottom div.mail {
  background-image: url(/img/icon-mail.png);
}
#bottombox .trippelboxcontainer.bottom div.instagram {
  background-image: url(/img/icon-instagram.png);
}
#bottombox .trippelboxcontainer.bottom div.whatsapp {
  background-image: url(/img/icon-whatsapp.png);
}
#bottombox .trippelboxcontainer.bottom div a {
  color: #ff8824;
}
#bottombox .trippelboxcontainer.bottom div h4 {
  font-size: 1.4em;
  margin: 0;
  margin-top: 5px;
  margin-bottom: 5px;
}
#bottombox .trippelboxcontainer.bottom div p {
  margin-top: 5px;
  margin-bottom: 5px;
}
footer {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  background-color: #a4592c;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media screen and (max-width: 1400px) {
  .bg-lotus {
    background-image: url(/img/bg-lotus-alpha20.png);
  }
  .bg-light {
    background-image: url(/img/bg-light-alpha20.png);
  }
}
@media screen and (max-width: 930px) {
  .fullwidth {
    padding-bottom: 25px;
    padding-top: 25px;
  }
  nav > div {
    padding-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  nav > div ul li:first-child {
    display: none;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .navsign {
    font-size: 24px;
  }
  div.zweispalter div {
    width: 100%;
  }
  .trippelboxcontainer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .trippelboxcontainer .box {
    width: 100%;
    margin-bottom: 15px;
  }
  div.apostrophed {
    padding-left: 50px;
    padding-right: 50px;
    background-size: 50px;
  }
  .untertitel {
    font-size: 1.1em;
  }
  .wide-word-space {
    word-spacing: 5px;
  }
}
