@charset "UTF-8";
/*	################################################################

Author: Sven Michel
URL: http://polyvision.design

################################################################# */

/*

## Table of Contents

* 01 - General
* 02 - Typography
* 03 - Navbar
* 04 - Content
* 05 - Sections
* 06 - Lity Lightbox
* 07 - Social Media Icons



    font-family: 'Martel', serif;

    font-family: 'Gentium Basic', serif;

    font-family: 'Lustria', serif;

    font-family: 'Ovo', serif;

    font-family: 'Halant', serif;


*/

/** 01 - General *********************************************************************************/

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

  @font-face {
    font-family: 'Gentium Basic';
    src: url('../font/GentiumBasic-Bold.woff2') format('woff2'),
        url('../font/GentiumBasic-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gentium Basic';
    src: url('../font/GentiumBasic-Italic.woff2') format('woff2'),
        url('../font/GentiumBasic-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gentium Basic';
    src: url('../font/GentiumBasic.woff2') format('woff2'),
        url('../font/GentiumBasic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gentium Basic';
    src: url('../font/GentiumBasic-BoldItalic.woff2') format('woff2'),
        url('../font/GentiumBasic-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}



/*@import url('https://fonts.googleapis.com/css?familyMaven+Pro:400,700&display=swap');
/*@import url('https://fonts.googleapis.com/css?family=Gentium+Basic|Halant:300,400|Lustria|Martel:300,400|Ovo&display=swap');*/
html{
  width: 100vw;
  height: 100%;
  overflow-x: hidden;	
}

body {
  font-family: 'Maven Pro', sans-serif;
  font-weight: normal;
  font-size: 13pt;
  color: #212b30;
  background: #fff;
  padding-top: 0;
    height: 100%;
    width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}


.container-fluid.maxx {
	position: relative;
}
.scrolltoll {
	position: absolute;
	top: -160px;
}
.sitenav {
	background: rgba(203,166,117,.2);
	margin-bottom: 20px;
	padding: 30px;
	margin-bottom: 60px;
}
.sitenav h3{
  font-family: 'Gentium Basic', serif;
font-weight: 400;
font-size: 2.2rem;
margin-bottom: .25em;
}
.sitenav ul {
	margin: 0;
	padding: 0 0 0 15px;
}
.sitenav ul li{
	margin: 0;
	padding: 0 0 5px 0;
	font-size: 1.15rem;
}
.sitenav ul li a:link {
	color: #212b30;
}
.sitenav ul li a:hover {
	  color: rgba(203,166,117,1);
}

.module-image-block-section .txtwrap {
	padding-bottom: 90px;
}

a, .trans, .fancy-pic-box img{
  -webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
-ms-transition: all 300ms ease-in-out;
-o-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;  
}
.imgchanger img, .contactbox, a.btn{
  -webkit-transition: all 500ms ease-in-out;
-moz-transition: all 500ms ease-in-out;
-ms-transition: all 500ms ease-in-out;
-o-transition: all 500ms ease-in-out;
transition: all 500ms ease-in-out;  
}


a {
  cursor: pointer;
  text-decoration: none;
  color: rgba(203,166,117,1);
}
a:link, a:visited{
  color: rgba(203,166,117,1);
}
a:hover, a:focus, a.active  {
  color: rgba(160,120,70,1);
  text-decoration: none;
}

.maxx{
  max-width: 1400px;
}
.bg-black {
  background: #010304;
  color: #FFF;
}

.bg-beige{
  background: rgba(160,120,70,.1);
}
.bg-wite{
  background: rgba(255,255,255,1);
}

/**! 02. Typography *********************************************************************************/
h1, h2{
    font-family: 'Gentium Basic', serif;
  font-weight: 400;
}
h1, h3, h5{
  color: rgba(203,166,117,1);
}
h2{
  color: rgba(203,166,117,1);
  	font-size: 2em;
}
h3.subtitle{
  color: #999;
}
h4 {
	font-size: 1.35em;
	margin-bottom: 20px;
}
h4.subtitle{
	font-size: 1.05em;
	margin: 10px 0;
	font-weight: bold;
}
.introtext{
  font-size: 1.15em;
  color: #141821;
}

p{
  line-height: 1.6em;
}

@media screen and (max-width: 991lrmpx){
	.intro-holder > div{
		background: rgba(203,166,117,.2);
		padding: 20px;
	}

}
/**! 03. Siteimages  *********************************************************************************/
.full{
  height: 100vh;
}
section{
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    min-height: 60vh;
    padding-top: 50px;
    padding-bottom: 50px;
}


section.fully{
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    min-height: 100vh;
    padding: 0;
}
section.fully .siteintro{
  margin: 60px;
  background: #000000;
}

.introwrapper{
  width: 100vw;
  height: 90vh;
  position: relative;
  display: block;
}
.siteintro, .siteimage{
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 55px;
    display:  block;
  width: auto;
}

.siteimage{
	background-color: #000000;
/*	background-image:  url(../images/siteimage_blond.jpg);
	background-size: contain;
	background-position:  right bottom;
	background-repeat: no-repeat;*/
}
.imgchanger {
  position: absolute;
  top: 35%;
  right: 0;
  bottom: 40px;
  left: 0;
  width: auto;
  display:  block;
}
.imgchanger .txtdesc{
  position: absolute;
  z-index: 70;
  bottom: 0px;
  left: 25px;
  right: 25px;
  display: block;
  text-align: center;
}
.imgchanger .txtdesc h4{
  padding-bottom: 2px;
  font-size: 1.1em;
  font-weight: 400;
  color: rgba(203,166,117,1);
}
.imgchanger .txtdesc h4, .imgchanger .txtdesc p{
  margin: 0 auto;
  max-width: 400px;
  color: rgba(203,166,117,1);
  line-height: 1.2em;
}

.imgchanger .topper{
  z-index: 50;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: auto;
  display: block;
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out; 
  background: transparent url(../images/Albert_Nachher.jpg) no-repeat center bottom; 
  background-size: contain;
}

.imgchanger .topper:focus, .imgchanger .topper:hover{
  	filter: alpha(opacity=0);
	opacity: 0;
}
.imgchanger .bottom{
  position: absolute;
  left:0;
  right: 0;
  bottom: 0;
  top: 0;
  width: auto;
  z-index: 1;
  background: transparent url(../images/Albert_Vorher.jpg) no-repeat center bottom;  
  background-size: contain;

}

.bgfiller {
	z-index: 52;
	position: absolute;
	right: 0;
	bottom: 0;
	top: auto;
	left: 0;
	width: 100%;
	height: auto;
	max-height: 60vh;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right bottom;
}
.autowidth .bgfiller{
	max-height: 70%;
	background-size: contain;
	background-position: center top;
}


.topper {
  animation: pulse 10s infinite;
}

@-webkit-keyframes pulse {
  0% {
    filter: alpha(opacity=0);
  }
  75% {
    filter: alpha(opacity=100);
  }
  75% {
    filter: alpha(opacity=0);
  }
}
@keyframes pulse {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}




/**! 04. Content *********************************************************************************/

main {
 min-height: 40vh;
}
.no-gutters figure{
  margin: 0;
  padding: 0;
}

a.imgwrapper, .imgwrapper, a.bgwrapper{
  position: relative;
  display: block;
}

.img-holder {
	background-size: cover;
	position: relative;
	top: -10px;
	z-index: 20;
	max-height: 350px;
	overflow: hidden;
}
.txt-holder {
	position: relative;
	z-index: 18;
}

.txt-starter {
	position:  relative;
}

.advantage .box {
	background: rgba(203,166,117,.2) url(../images/haarwurzel.png) no-repeat center bottom;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border: 20px solid #FFF;
}

.advantage .box > div{
	padding: 40px 30px 20px;
}


/**! 04. Content *********************************************************************************/


main ul{
  padding-left: 17px;
}

/*.container-fluid.related-pages .paddy{
  padding-left: 0 !important;
  padding-right: 0 !important;
}*/



a.fancy-pic-box{
  margin: 0 10px 10px 0;
  background-size: cover;
  display: block;
}

.fancy-pic-box:hover{
  -moz-transform: scale(1.05);
-webkit-transform: scale(1.05);
-o-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05);
  -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,.3);
box-shadow: 0 0 5px 0 rgba(0,0,0,.3);

}






/**! 05. Sections *********************************************************************************/

/*.section:first-of-type {
  padding-top: 0;
  padding-bottom: 0;
}

.section:last-of-type {
  padding-bottom: 0;
}*/




*! 06. Lity Lightbox ***************************************************************************

.lity-content img {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/**! 07. Social Media Icons ***********************************************************************/

a:hover i.fa-facebook {
  color: #3B5998;
}

a:hover i.fa-twitter {
  color: #55ACEE;
}

a:hover i.fa-pinterest {
  color: #C92228;
}

a:hover i.fa-google {
  color: #DD4B39;
}

a:hover i.fa-instagram {
  color: #3F729B;
}

a:hover i.fa-dropbox {
  color: #1087DD;
}

a:hover i.fa-tumblr {
  color: #2c4762;
}

a:hover i.fa-yahoo {
  color: #720E9E;
}

a:hover i.fa-vimeo {
  color: #1AB7EA;
}

a:hover i.fa-github {
  color: #444444;
}

a:hover i.fa-linkedin {
  color: #007BB6;
}
/**! 08 UNIFORM UNICORN ***/
.succes_msg{
  display: block;
  padding: 5px 15px;
  font-size: 1.1em;
  border: 1px solid #c3e6cb;
  color: #155724;
  background-color: #d4edda;
  margin: 8px 0;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.succes_msg h3, .succes_msg h4, .succes_msg h5{
  color: #155724;
  margin: 10px 0 5px 0;
} 

.uniform-errors__item{
  display: block;
  padding: 5px 15px;
  font-size: 1.1em;
    border: 1px solid rgba(255,12,87,1);
  color:  rgba(255,12,87,1);
  background: rgba(255,12,87,.2);
  margin: 8px 0;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

.uniform__potty {
    position: absolute;
    left: -9999px;
}

.contactcontent{
	margin-top: 25px;
	padding: 10px 0;
	border-top: 1px solid rgba(160,120,70,.5);
}

@media screen and (min-width: 560px){
  .img-holder {
	max-height: 650px;
	}
}

@media Screen and (max-width: 992px){
	.p-5 {
		padding: 2rem !important;
	}
	.txt-starter {
		padding-top: 25px;
		padding-bottom: 20px;
	}
}

@media screen and (min-width: 992px){
	main {
		padding-left: 25px;
		padding-right: 25px;
	}
	
	.siteintro, .siteimage{
	  position: absolute;
	  left: 40px;
	  right: 40px;
	  bottom: 40px;
	  top: 40px;
	  width: auto;
	}
	.imgchanger {
	  position: absolute;
	  left: 40%;
	  right: 0;
	  bottom: 0;
	  top: 0;
	  width: auto;
	}
	.imgchanger .txtdesc{
	  bottom: 20px;
	  left: 0;
	  right: 0;
	}
	.imgchanger .txtdesc h4{
	  font-size: 1.25em;
	  line-height: 1.3em;
	}
	.bgfiller {
		z-index: 52;
		position: absolute;
		right: 0;
		bottom: 0;
		top: 0;
		left: auto;
		width: 50%;
		height: 100%;
		max-height: 100%;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: right bottom;
	}
	.autowidth .bgfiller {
		width: auto !important;
		max-height: 100%;
	}
	.img-holder {
		top: -60px;
	}
	.intro-holder{
		top: -60px;
		z-index: 21;
		background: #000000;
		background: -moz-linear-gradient(45deg,  #000000 1%, #131214 100%);
		background: -webkit-linear-gradient(45deg,  #000000 1%,#131214 100%);
		background: linear-gradient(45deg,  #000000 1%,#131214 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#131214',GradientType=1 );
		color: #EFEFEF;
		max-height: 550px;
	}
	.intro-holder h3.subtitle {
		color: #EFEFEF;
	}
	.intro-holder .introtext{
	  font-size: 1.15em;
	  color: #EFEFEF;
	  padding: 30px 0;
	}
	.txt-starter {
		background: rgba(203,166,117,.2);
	}
	.txt-starter:before {
		display: none;
	}
	.txt-holder.bg-beige:before {
		position: absolute;
		z-index: 19;
		background: rgba(160,120,70,.1);
		left: -60px;
		width: 60px;
		top: 0;
		bottom: 0;
		content: "";
	} 
	.flex-md-row-reverse .txt-holder.bg-beige:before {
		position: absolute;
		z-index: 19;
		background: rgba(160,120,70,.1);
		left: auto;
		right: -60px;
		width: 60px;
		top: 0;
		bottom: 0;
		content: "";
	} 
	section{
	    padding-top: 120px;
	    padding-bottom: 120px;
	}
	.contactcontent{
		margin-top: 52px;
		border-bottom: 1px solid rgba(160,120,70,.5);
	}

}
@media screen and (min-width: 1025px){
	  .img-holder {
		max-height: 750px;
		}
	.introwrapper{
	  width: 100vw;
	  height: 100vh;
	  position: relative;
	  display: block;
	}
}
@media screen and (min-width: 1200px){
	.bgfiller {
		z-index: 52;
		position: absolute;
		right: 0;
		bottom: 0;
		top: 0;
		left: auto;
		width: 58.333333;
		height: 100%;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: right bottom;
	}
	.autowidth .bgfiller {
		width: auto !important;
		background-size: contain;
		max-height: 100%;
	}
	.siteintro, .siteimage{
	  position: absolute;
	  left: 70px;
	  right: 70px;
	  bottom: 70px;
	  top: 70px;
	  width: auto;
	}

}

.bgfiller iframe{
  min-height: 350px
}

.modal-backdrop {
	background: rgba(245,241,236,1) url(../images/modalbg.jpg) no-repeat right bottom;
	background-size: contain;
}
.modal-backdrop.show {
	opacity: 1;
}

.modal-content {
    border: none;
    border-radius:0;
    outline: 0;
	background: rgba(0,0,0,.8);
	color: #FFF;
/*	background: rgba(245,241,236,1);*/
}
.modal-content a {
	display: inline-block;
	font-size: 1.2em;
}
.modal-header {
	border: none;
    border-radius:0;
	padding-bottom: 0;
}
.modal-footer {
	border: none;
    border-radius:0;
	padding-top: 0;
}
.modal-body{
	padding: 1rem 2.5rem 0 2.5rem;
}
.modal-header .close {
	position: fixed;
	font-size: 3em;
	text-shadow: none;
    right: 40px;
    top: 10px;
	z-index: 6600;
	  color: rgba(203,166,117,1);
}



@media Screen and (max-width: 576px){
	.modal-content {
	    width: 90%;
		margin: 100px 5% 10px 5%;
	}
}
@media Screen and (min-width: 576px){
	.modal-dialog.modal-aw {
	    max-width: 500px;
		margin: 1.75rem auto 1.75rem 1.75rem ;
	}
}
@media Screen and (min-width: 990px){
	.modal-dialog.modal-aw {
	width: 100%;
	max-width: 950px !important;
	margin: 2.5rem auto;
	}
		.modal-body{
		padding: 2rem 4rem 0 4rem;
	}
}