
/* << normalize >> */
@import url(normalize.min.css);

/* << font awesome >> */
@import url(all.min.css);

/* << slick-slider >> */
@import url(slick.css);
@import url(slick-theme.css);

/* << lightbox >> */
@import url(lightbox.css);




/* << allgemeine formatierung >> */
* {
  box-sizing: border-box;
}

body {
  color:#eee;
}




h2{
  font-size: 3em;
}



a {
  text-decoration: none;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; 
}

ul,ol{
  margin:0;
  padding:0;
  list-style-type: none;
}

p{
	text-align:justify;
}



.innerbox {
  max-width: 1100px;
  margin: 0 auto;
  padding:2% 1%;
}



/* <<< allgemeiner overlay >>> */
.over{
	width: 100%;
  height: 100%;
  background: #000;
  background: rgb(000, 000, 000,0.5);
  display: flex;
  align-items: center;
}





/* ### animationen  ### */
/* fade-in on scroll reveal für alle animationen relevant */
.reveal {
 transform: scale(0);
}

.reveal.active {
  transform: scale(1);
}

/*fade-in effekt*/
.active.fadein {
  animation: fadein 0.4s ease-in;
}

@-webkit-keyframes fadein {
  from {
    transform: scale(0);
  }

  to{
    transform: scale(0.5);
  }

  to {
    transform: scale(1);
  }
}

@keyframes fadein {
  from {
    transform: scale(0);
  }

  to{
    transform: scale(0.5);
  }

  to {
    transform: scale(1);
  }
}


/* //// fade-in effekt ///// */
.fadeIn {
  -webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}



/* scroll-to-top ///////////////////   */
#scroll-to-top{
  position:fixed;
  width:50px;
  height:50px;
  color:#B18D68;
  text-shadow: 1px 1px 1px #000;
  right:20px;
  bottom:20px;
  font-size:3em;
  text-align: center;
  display:none;
  z-index:9999;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  animation: fade_in 1s ease-in-out;
}



/* #### navigation ##### */
/* //// navigation komplett //// */
.main_h {
  position: fixed;
  z-index: 999;
  width: 100%;
  background: none;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out; 
  max-height:110px !important;
}

.main_h .innerbox{
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
	align-content: center;
  align-items: center;
	justify-content: space-between;
  padding:30px 2%;
}


/* //// sticky header //// */
.sticky {
  background: #000; 
}

/* //// formatierung logo //// */
.logo {
  color:#fff; 
  font-size:1.3em;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out ;
}







/* //// mobile toggle //// */
.toggle-menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: block;
  height: 50px;
  outline: none;
  padding:20px; 
  pointer-events: initial;
  position: relative;
  z-index: 1101;
  right:20px;
  top:-4px

}

/* //// mobile toggle stylen //// */
.toggle-menu span {
  background:#fff;
  content: "";
  display: block;
  height: 2px;
  left: calc(50% - 13px );
  position: absolute;
  top: calc(50% - 1px );
  transform-origin: 50% 50%;
  transition: background-color 0.3s ease-in-out, top 0.3s 0.3s ease-out, transform 0.3s linear;
  width: 40px;
}

.toggle-menu span:before, 
.toggle-menu span:after {
  background:#fff;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  transform-origin: 50% 50%;
  transition: background-color 0.3s ease-in-out, top 0.3s 0.3s ease-out, transform 0.3s linear;
  width: 40px;
}

.toggle-menu span:before {
  top: 12px;
}

.toggle-menu span:after {
  top: -12px;
}

/* //// toggle animation //// */
.toggle-menu.active span {
  background-color: transparent;
  transition:  0.3s ease-out;
}

.toggle-menu.active span:before, 
.toggle-menu.active span:after {
  transition: top 0.3s ease-out, 
  transform 0.3s 0.3s ease-out;
}

.toggle-menu.active span:before {
  top: 0;
  transform: rotate3d(0, 0, 1, -45deg);
}

.toggle-menu.active span:after {
  top: 0;
  transform: rotate3d(0, 0, 1, 45deg);
}

/* //// formatierung menu fullscreen //// */
#menu {
  background: #171717;
  background: rgb(23, 23, 23,0.97); 
  height: 100%;
  left: 0;
  opacity: 0;
  display: flex;
  justify-content: center;
  position: fixed;
  text-align: center;
  top: 0;
  transition: all 1s ease-in-out;
  visibility: hidden;
  width: 100%;
  z-index: 1100;
}

#menu.open {
  opacity: 1;
  visibility: visible;
}

/* //// styling anker //// */
#menu ul:hover a {
  opacity: 0.15;
}

#menu ul a {
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  color:#fff
}

#menu ul a:hover {
  opacity: 1;
  color:#B18D68;
}

/* //// positionierung inhalt nav //// */
#menu .main-nav {
  align-self: center;
}

#menu .main-nav a{
  display: block;
  padding:8px;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1.5em;
  letter-spacing: 2px;
}

#menu .main-nav a:first {
  padding: 0;
} 




/* #### home #### */
/* //// herobereich //// */
#hero{
  background: url(../images/bg/hero.jpg) no-repeat center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  height: 100vh;
}

#hero h1{
  animation: fadein 0.4s ease-in;
}

section{
  height: 100vh;
}

/* //// sand //// */
#about_sand{
  background: url(../images/bg/sand.jpg) no-repeat center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}

/* //// snow //// */
#about_snow{
  background: url(../images/bg/snow.jpg) no-repeat center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}

/* //// signature //// */
#about_signature{
  background: url(../images/bg/signature.jpg) no-repeat center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}

/* //// footer //// */
footer{
  background: #000;
}








#scroll_down{
	position:absolute;
  left:50%;
  top:85%;
  transform:translate(-50%,-85%);
  color:#fff;

}

.m_scroll_arrows{
  display: block;
  width: 5px;
  height: 5px;
  -ms-transform: rotate(45deg); 
  -webkit-transform: rotate(45deg); 
  transform: rotate(45deg);
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 23px;
  height: 23px;
  
}

.one,
.two, 
.three{
  -webkit-animation: arrow_scroll 1s infinite;
  -moz-animation: arrow_scroll 1s infinite;
  animation: arrow_scroll 1s infinite; 
}

.one{
  -webkit-animation-delay: .1s;
  -moz-animation-delay: .1s;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  animation-delay: alternate;
}

.two{
  -webkit-animation-delay: .2s;
  -moz-animation-delay: .2s;
  -webkit-animation-direction: alternate;
  animation-delay: .2s;
  animation-direction: alternate;
  margin-top: -6px;
}

.three{
  -webkit-animation-delay: .3s;
  -moz-animation-delay: .3s;
  -webkit-animation-direction: alternate; 
  animation-delay: .3s;
  animation-direction: alternate; 
  margin-top: -6px;
}

@-webkit-keyframes arrow_scroll {
  0%   { opacity: 0;}
  50%  { opacity: .5;}
  100% { opacity: 1;}
}
@-moz-keyframes arrow_scroll {
  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@-o-keyframes arrow_scroll {
  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@keyframes arrow_scroll {
  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}





/* #### MEDIAQUERIES #### */

/* mediaqueries 800px tablet */
@media only screen and (max-width: 918px) {


} /* / ende breakpoint 918px*/



/* mediaqueries 879px mobile */
@media only screen and (max-width: 879px) {

  
} /* / ende breakpoint 879px*/


/* mediaqueries 723px mobile */
@media only screen and (max-width: 723px) {

} /* / ende breakpoint 723px*/


/* mediaqueries 520px mobile */
@media only screen and (max-width: 520px) {
 
} /* / ende breakpoint 520px*/



/* mediaqueries 520px mobile */
@media only screen and (max-width: 520px) {
} /* / ende breakpoint 520px*/




/* mediaqueries 400px mobile */
@media only screen and (max-width: 400px) {
} /* / ende breakpoint 400px*/