html,button,input,select,textarea{font-family:'Montserrat',sans-serif;color: #000;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
html{-webkit-box-sizing:border-box;box-sizing:border-box}
*,*:before,*:after{-webkit-box-sizing:inherit;box-sizing:inherit}
body{font-size:1em;line-height:1.4;margin:0;background:#fff}
::-moz-selection{background:#b3d4fc;text-shadow:none}
::selection{background:#b3d4fc;text-shadow:none}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc}
img{vertical-align:middle; width: 100%}
fieldset{border:0}
textarea{resize:vertical}
input[type=submit] {outline: none}
h1,h2,h3,h4,h5,h6{text-rendering:optimizelegibility}
ul{text-decoration: none;list-style:none}

a,a:link,a:visited{color:#000;text-decoration:none;outline:none}
a:hover{color:#000}
p{font-size:0.938em;line-height:1.5}
p a{color:#C7AA54 !important;font-weight: 700}

/* ==========================================================================
   helpers */

.sr-only{
   position:absolute;
   left:-10000px;
   top:auto;
   width:1px;
   height:1px;
   overflow:hidden;
}


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



/* ======== flex boxes ======== */


/*Elemente gestrecht*/
  .flex-container {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
            justify-content: flex-start;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -ms-flex-align: start;
    -webkit-box-align: start;
            align-items: flex-start;
  }

  .flex-item{
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
            order: 0;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
            flex: 0 1 auto;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
        align-self: stretch;
  }


  /*Mehrere Reihen*/

  .flex-rows-container{
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -ms-flex-align: stretch;
    -webkit-box-align: stretch;
    align-items: stretch;
  }

 .no-stretch{
    -ms-flex-align: start;
    -webkit-box-align: start;
            align-items: flex-start;
  }

  .space-between{
   -ms-flex-pack: justify;
   -webkit-box-pack: justify;
           justify-content: space-between;
  }

  .stretch-box{
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
        align-self: stretch;
  }

  .justify-center{
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
  }


  .center-align{
   -ms-flex-align: center;
   -webkit-box-align: center;
           align-items: center;
  }

  .flex-end{
   -ms-flex-align: end;
   -webkit-box-align: end;
           align-items: flex-end;
  }

.flex-rows-item{
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -ms-flex-item-align: auto;
  -ms-grid-row-align: auto;
      align-self: auto;
}

/* ======== Image Fix ======== */
.image-fix {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-fix img {
    -o-object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   headlines */

 .hl-30{
    font-size: 30px;
    color: #C7AA54;
    font-weight: 600;
    text-transform: uppercase;
 }

 .hl-20{
    font-size: 20px;
    color: #C7AA54;
    font-weight: 600;
    text-transform: uppercase;
 }

  .hl-16{
    font-size: 16px;
    color: #aaa;
    font-weight: 600;
    text-transform: uppercase;
 }

 @media screen and (max-width: 1000px){
     .hl-30{
        font-size: 24px;
     }
}

 /* ==========================================================================
   button */

   a.button{
    padding: 15px 30px;
    background: #C7AA54;
    font-size:15px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
   }


 @media screen and (max-width: 1000px){
      a.button{
        padding: 10px 20px;
        font-size:13px;
       }
}


/* ==========================================================================
   wrapper */

.site-wrapper{
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    box-shadow: 0 2px 20px 0 rgba(0,0,0,0.25);
    z-index:1;
}

.site-wrapper:after{
    position: absolute;
    content:'';
    display: block;
    background-image:url("../images/bg_img_rose.jpg");
    width: 100%;
    height: 100vh;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    top: 123px;

}

.content-area{
    padding-top: 130px;
}

.wrap-920{
    max-width: 940px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 auto;
}

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

    .site-wrapper:after{
        top: 90px;
    }

    .content-area {
        padding-top: 60px;
    }
}

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

    .content-brochure div{
        display:block;
    }

     .content-brochure a.button{
        margin-top: 15px;
     }
}



/* ==========================================================================
   site-header */

   header.site-header{
    padding: 25px 0;
    background: #FFFFFF;
    box-shadow: 0 2px 20px 0 rgba(0,0,0,0.25);
    z-index:999;
    max-width: 1600px;
   }

   header.site-header.scrolled-header{
    position: fixed;
    top: 0;
    width: 100%;
     max-width: 1600px;
    margin: 0 auto;
   }

   header.site-header a{
    display:block;
    width: 244px;
    height: 73px;
    margin: 0 auto;
   }

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

   header.site-header{
    padding: 18px 0;
   }

    header.site-header a {
        width: 180px;
        height: 54px;
    }

}


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

.hl-link-row{
    margin-bottom: 70px;
}

.brochure img{
    margin-bottom: 20px;
}

.text-container{
    margin-bottom: 60px;
}

.text-container p{
    margin-bottom: 20px;
}

/* ==========================================================================
   footer */


   footer.site-footer{
    color: #fff;
    background-size: cover;
    padding: 10px 30px;
   }

   footer.site-footer span, 
   footer.site-footer a{
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
   }

   footer.site-footer ul li:before{
    content:'|';
    padding: 0 7px;
   }

   footer.site-footer ul li:first-child:before{
    display: none;
   }

 @media screen and (max-width: 1000px){
       footer.site-footer span, 
       footer.site-footer a{
        font-size: 12px;
       }

}
 


@media print,
       (-o-min-device-pixel-ratio: 5/4),
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 120dpi) {
}

/* ========================================================================== 
   plugins */


/* ========================================================================== */

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

/* ==========================================================================
   print styles */

@media print {
    *{background:transparent !important;color:#000 !important;-webkit-box-shadow:none !important;box-shadow:none !important;text-shadow:none !important}
    a,a:visited{text-decoration:underline}
    a[href]:after{content:" (" attr(href) ")"}
    abbr[title]:after{content:" (" attr(title) ")"}
    a[href^="javascript:"]:after,a[href^="#"]:after {content:""}
    pre,blockquote{border:1px solid #999;page-break-inside:avoid}
    thead{display:table-header-group}
    tr,img{page-break-inside:avoid}
    img{max-width:100% !important}
    @page{margin:0.5cm}
    p,h2,h3{orphans:3;widows:3}
    h2,h3{page-break-after:avoid}
}