@import url('https://fonts.googleapis.com/css?family=Raleway:400,600,800');
@import url(all.min.css);
@import url(flickity.min.css);
@import url(lightbox.min.css);
/* general settings , allgemeine formatierung /////////////////////////////////*/

* {
  box-sizing: border-box;
  padding:0;
  margin:0;
}

body {
	font-family: 'Raleway', sans-serif;
}

a {
  text-decoration: none;
}


p {
  margin:1.3em 0;
  font-size: 1em;
  line-height:2em;
 
}

/*  css-raster*/
.row {
overflow:hidden;
}

.halbe{
	width:49%;
	float:left;
	margin-right:2%;
}
.halbe:last-child,
.drittel:last-child{
	margin-right:0;
}

.drittel{
	width:32%;
	float:left;
	margin-right:2%;
}

.zweidrittel{
	width:66%;
	float:left;
	margin-right:2%;
}


.innerbox {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  position: relative;
  padding: 0 2%;
}


section{
padding:70px 0;
}


/* / header ////////////////////*/

.main_h {
  position:fixed;
  top:0px;
  left:0;
  max-height:60px;
  z-index: 9999;
  width: 100%;
  padding-top: 17px;
  background:transparent;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
  padding-bottom: 6px;
 
}
/*  .sticky wird dem header(.main_h)  beim scrollen  > 100px hinzugefügt aus der index.js ///*/
.sticky {
  background-color: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid gainsboro;
}

/*  .open-nav wird dem header(.main_h)  beim klicken auf das hamburger-icon hinzugefügt aus der index.js ////*/

/*  
die max-height 70px von main_h wird auf 400px erhöht. 
Durch das overflow:hidden, wird alles was nicht der höhe von 70px angezeigt wird versteckt. 
Erst mit dem klicken des toggle-icons wird durch das Hinzufügen der .open-nav die anzeigehöhe des Header größer(400px).
 Somit wird die Navigation optisch sichtbar */
.open-nav {
  max-height: 400px !important;
  background-color: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid gainsboro;
}
.open-nav .mobile-toggle {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}




.logo {
  width:180px;
  font-size: 25px;
  color: #fff;
  text-transform: uppercase;
  float: left;
  margin-top: 6px;
  line-height: 1;
  margin-bottom:10px;
}


.logo img {
  width: 100%;
} 
.sticky .logo, .open-nav .logo  {
 color: #8f8f8f;
}
 


/* ///////////////////  nav //////////////////////  */
nav {
  float: right;
 
}

nav ul {
  list-style: none;
  overflow: hidden;
  text-align: right;
  float: right;
  margin-top:10px;
}

nav ul li {
  display: inline-block;
  margin-left: 25px;
  line-height: 1.5;
}


nav ul a {
  color: #333;
  font-weight:600;
  text-transform: uppercase;
  font-size:0.8em;
}
nav ul a:hover {
  color: #888;
}

.sticky nav ul a,
.open-nav nav ul a  {
  color: #888;
}

.sticky nav ul a:hover {
  color: #333;
}


/* ///////////////////  mobile toggle für die smartphones hamburger-menu //////////////////////  */
.mobile-toggle {
  display: none;
  cursor: pointer;
  font-size: 20px;
  position: absolute;
  right: 22px;
  top: 0;
  width: 30px;
  -webkit-transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}

.mobile-toggle span {
  width: 30px;
  height: 4px;
  margin-bottom: 6px;
  border-radius: 1000px;
  background: #666;
  display: block;
}

.sticky .mobile-toggle span,
.open-nav .mobile-toggle span {
  background: #888;
}



/* hero-box, großbild-grafik //////*/
.hero {
  position: relative;
  background: url(../bilder/hintergrundbild-sabrina.jpg) no-repeat center top fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  text-align: center;
  height: 500px;
  height:100vh;
  letter-spacing: 1.7px;
}

.hero h1 {
	color:#333;
	text-transform:uppercase;
	letter-spacing:0.5px;
  font-size: 50px;
  line-height: 0.8;
  font-weight:800;
  position:absolute;
  left:33%;
  top:50%;
  transform:translate(-46%,-50%);
 
}

.hero h1 span {
  font-size: 14px;
  font-weight:600;
  letter-spacing:4px;
}

.mouse {
  width: 26px;
  height: 46px;
  border-radius: 13px;
  border: 2px solid #aaa;
  position: absolute;
  bottom: 20px;
  left: 50%;
transform:translateX(-50%);
}
.mouse span {
  display: block;
  margin: 6px auto;
  width: 2px;
  height: 2px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid transparent;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
  animation-name: scroll;
}

@-webkit-keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

/* section allegemein //////////////  */
h2{
text-align:center;
font-weight:800;
font-size:30px;	
text-transform:none;
color:#222;
margin-bottom:60px;
}

h3{
font-weight:600;
font-size:16px;	
letter-spacing:2px;
text-transform:none;
margin-bottom:1.3em;
}

/* button */
.button{
    margin-top: 20px;
    display: inline-block;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    background: #393939;
    padding: 11px 30px;
    font-size: 12px;
    letter-spacing: 2px;
	-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;
}
.button:hover {
    background: #000;
}


/* what i do //////////////  */
#what-i-do{
	background:#f9f9f9;
}

#what-i-do .drittel{
	background:#fff;
	color:#333;
	border:1px solid #eee;
	padding:2em;
	text-align:center;
	font-size:0.9em;
}
.iconbox{
display:inline-block;
background:#b60034;
color:#fff;
width:65px;
height:65px;	
border-radius:50%;
font-size:2.2em;
padding-top:15px;
margin-bottom:1em;
}


/* my team//////////////  */

#team-member{
	list-style-type:none;
	overflow:hidden;
}

#team-member > li{
width:32%;
float:left;
margin-right:2%;
}

#team-member li:last-child{
margin-right:0;
}

#team-member li img{
width:100%;
-webkit-filter: grayscale(1);
filter: grayscale(1);
}

.layerbox{
line-height:0;
position:relative;
/* Bezugspunkt für das Ausrichten des layers*/
}

.layer{
opacity:0;
position:absolute;
background:#000;
background:rgba(0,0,0,0.5);
top:0;
bottom:0;
left:0;
right:0;
-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;
}
.layer:hover{
opacity:1;
}

.layer-inner{
color:#fff;
position:absolute;
top:72%;
left:50%;
transform:translate(-50%,-50%);
width:80%;
font-size:0.95em;
font-weight:bold;
}



#team-member figure{
text-align:center;
font-size:1.2em;
}
#team-member figcaption{
font-size:0.85em;
font-weight:600;
letter-spacing:1.5px;
margin-top:0.625em;
}

.member-name{
display:block;
text-transform:uppercase;
color:#111;
padding:0.625em;
}

.member-titel{
display:block;
color:#666;
}


/*social-liste flexible auch für den footer bewusst vorbereitet*/
.social{
	list-style-type:none;
}
.social li{
display:inline-block;
}
.social li a{
	color:#fff;
	color:rgba(255,255,255,1);
	font-size:1.2em;
	margin:0 0.3em;
	-webkit-transition: all 500ms ease-in;
  -moz-transition: all 500ms ease-in;
  transition: all 500ms ease-in;
}
.social li a:hover{
	color:rgba(255,255,255,0.7);
}

/* contact-me*/
#contact-me{
	background:#b60034;
	padding:70px 0;
	color:#fff;
	text-transform:none;
	
}


#contact-me .button{
	background:#fff;
	background:rgba(255,255,255,1);
	color:#323232;
	float:right;
	margin-top:0;
}
#contact-me .button:hover{
	background:rgba(255,255,255,0.9);
}
#contact-me h3{
font-size:0.85em;
}
#contact-me p{
	line-height:0.5em;
}
/* work //////////////  */

#my-work{
	list-style-type:none;
	overflow:hidden;
}
#my-work li{
	width:33.33333%;
	float:left;
	background:#0f0;
}
#my-work li img{
	width:100%;
}

#my-work figure{
position:relative;
line-height:0;	
overflow:hidden;
/* animierte figcaption-elemente nach oben und unten verstecken , Guckloch */
}
#my-work figcaption{
position:absolute;
left:0;
right:0;
top:0;
bottom:0;	
background:#000;
background:rgba(0,0,0,0.5);
line-height:1.3em;
opacity:0;	
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}

#my-work figure:hover figcaption{
opacity:1;	
}

.category{
background:#fff;
color:#000;
position:absolute;
top:18%;
left:50%;
opacity:0;
-webkit-transform: translate(-50%,-30px);
transform: translate(-50%,-30px);
padding:0.3em 1em;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.project{
width:70%;
text-align:center;
color:#fff;
position:absolute;
bottom:18%;
left:50%;
opacity:0;
-webkit-transform: translate(-50%,30px);
transform: translate(-50%,30px);
padding:0.3em 1em;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}



figure:hover .category{
top:50%;
opacity:1;
}
figure:hover .project{
bottom:40%;
opacity:1;
}


#work{
	padding-bottom:0;
}


/* testimonial ////////  */
#testimonial{
	padding:70px 0;
	background:#F9F9F9;
}

/* contact //////////////  */
#kontaktformular input[type="text"],
#kontaktformular input[type="email"],
#kontaktformular textarea{
background:#f9f9f9;
padding:1.3em;
border:0;
font-family: 'Raleway', sans-serif;
font-size:1em;
}


#kontaktformular textarea{
width:100%;
height:250px;
}

#kontaktformular .button{
border:0;
cursor:pointer;
}


/* googlekarte /////  */
#googlekarte{
	background:#000;
	line-height:0;
}
#googlekarte iframe{
	width:100%;
	height:450px;
	border:0;
}
/*datenschutz*/
.datenschutz{
	
	margin-top:8em;
	margin-left:2em;
	text-align:left;
	margin:2 em;
	font-size:0.8em;	
}

.datenschutz li{
	
	line-height:1.7em;
}
/*datenschutz zu*/

/*impressum*/
.impressum{
	
	margin-left:2em;
	text-align:left;
	font-size:0.8em;
}
.impressum h1{
	margin-top:8em;
	font-size:1.5em;
	text-align:left;
}
.impressum h2{
	margin-bottom:20px;
	font-size:1.5em;
	text-align:left;
}
/*impressum zu*/
/* footer ////////////////////// */

footer{
	color:#fff;
	background:#000;
	padding:70px 0;
	text-align:center;	
}
footer .social{
	font-size:1.2em;
	margin-top:1.3em;
}
footer .social li{
	margin:0 0.625em;
	font-size:0.6em;
}


/* ///////////  scroll-to-top ///////////////  */
#scroll-to-top{
display:none;
position:fixed;
bottom:10px;
right:10px;
color:#000;
font-size:2em;	
}


/* skillbars */

#skillbars{
margin:1.3em 0;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    color: #777;
    text-transform: capitalize;
    letter-spacing: 2px;
	font-size:11px;
}

.progress {
    height: 4px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #f5f5f5;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}

.progress-bar {

    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #b60034;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease;
}



/*iphone Problematik beheben*/
@media only screen and (max-width: 1234px){
			.hero {
			  background: url(../bilder/hintergrundbild-sabrina.jpg) no-repeat center top scroll;
			  -webkit-background-size: cover;
			  -moz-background-size: cover;
			  background-size: cover;
			  
			}
}
/* mediaqueries bis 766px /////////////////////////////////////////////////////////////////////////*/




@media only screen and (max-width: 866px) {
			  .main_h {
				padding-top: 25px;

			  }

			  .logo {
				float: none;
			  }
			  
		.logo img {
			width: 40%;
			}
			  .hero h1 {
				left: 35%;
				font-size:30px;}

			  nav {
				width: 100%;
			  }

			  nav ul {
				padding-top: 10px;
				margin-bottom: 22px;
				float: left;
				text-align: center;
				width: 100%;
			  }

			  nav ul li {
				width: 100%;
				padding: 7px 0;
				margin: 0;
			  }

			  .mobile-toggle {
				display: block;
			  }  
		  /*about*/
		  
		  .halbe,.drittel,.zweidrittel{
			  width:100%;
			  float:none;
			  margin-right:0;
			  margin-bottom:3em;
			  
		  }
		  .halbe:last-child,
		  .drittel:last-child,
		  .zweidrittel:last-child{
			  margin-bottom:0;
		  }
					 /*team untereinander*/
					  #team-member > li{
					width:100%;
					float:none;
					margin-right:0;
					margin-bottom:2em;
				}


				#contact-me .button{
				float:none;
				}
					
				#my-work li{
				width:50%;
				
				}	


.project{
display:none;
}

				
}/* ende /max-width:766px*/





/* mediaqueries bis 400px /////////////////////////////////////////////////////////////////////////*/

@media only screen and (max-width: 766px){
	
	#my-work li{
	width:100%;
	float:none;
	margin-bottom:2px;
	
	}		
	#kontaktformular .halbe{
		margin-bottom:10px;	
	}
	
	#kontaktformular p{
		margin:0;
	}
	
}
/* ende /max-width:400px*/

/* mediaqueries bis 320px /////////////////////////////////////////////////////////////////////////*/
@media only screen and (max-width: 320px){
			.hero {
			  background: url(../bilder/hintergrundbild-sabrina.jpg) no-repeat center top scroll;
			  -webkit-background-size: cover;
			  -moz-background-size: cover;
			  background-size: cover;
			  
			}
			
			
}







