* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    
    
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    
    @import url(https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,700);
    @import url('https://fonts.googleapis.com/css?family=Leckerli+One');
}

*::selection {
    background-color: #ffaa66;
    color: white;
}

/*farbdefinitionen?*/


a {
    text-decoration: none;
    color: black;
}

body {
    font-family: 'Josefin Sans', 'sans-serif';
    background: #3e1172;
    line-height: 1.5; 
    max-width: 1000px;
    margin: auto;
}



html, body, main,{
    height: 100%; 
}

main {
    max-width: 1000px;
    margin: auto;
    background-color: white;
    padding-bottom: 4%;
    display: block;
}

header, section {
    padding: 1%;
}

header {
    background-color:   #c3a5e6;
    background-color:   rgba(136, 82, 199, 0.5);
    position: fixed;
    max-width: 1000px;
    width: 100%;
    font-weight: 400;
    z-index: 100;

}

header span {
    padding-right: 20px;
    padding-left: 5px;
    position: relative;
}

 .scroll {
    position: inherit;    
}

.logo {
    display: inline-block; 
    color: white;
    text-decoration: none;
    border-radius: 50%;
    width: 50px;
    height: 50px; 
    padding: 15px;
    letter-spacing: 0.05em;

}   

.logo:hover:before {
    content: "";
    width: 50px;
    height: 50px;
    background: #ffaa66;
    display: block;
    position: absolute;
    z-index: -1;
    top: -18px;
    left: 14px;
    border-radius: 50%;
}

header nav {
    float: right;
 
}


header nav ul li {
    display: inline-block;
    
}

header nav ul li a {    
    display: block;
    border-radius: 4px;
    padding: 15px;
    text-decoration: none;
    color: #ffffff;
    letter-spacing: 0.05em;
}

header nav ul li a:hover {
    background-color: #ffaa66;
}


section {
    background-color: white;
    text-align: center;
    
}

.headline {
    text-align: center;
    padding-top: 100px;
}


h1 {
    font-family: 'Leckerli One', cursive;
    font-size: 3em;
    text-align: center;
   
}

h1 ul li {
    display: inline-block;
}

h1 ul li a {    
    display: block;
    text-decoration: none;
    color: black;
}

h1 ul li a:hover {
    color:rgb(90, 40, 150);
    
}


h2, h3 {
     font-weight: 300;
}

h2 {
    font-size: 2.2em;
}

h3 {

    font-size: 1.2em;
    margin: auto;
    text-align: center;
}

h4 {
    padding-top: 40px;
    padding-bottom: 10px;
    font-size: 1.2em;
    font-size: 3vmax;
}

section a {
    padding: 4px;
}

.slideshow-container img {
    display: inline-block;
    padding: 3px;
    background-color: #8852c7;
    background-color: hsla(268, 51%, 55%, 0.5);
}

.bilder .slideshow-container img {
    background-color: white;
    
}

p {
    padding-top: 10px;
    max-width: 80%;
    margin: auto;
    text-align: left
}


.warning {
    display: none;
}

/* Slideshow */

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
   
}

.prev, .next {
    width: auto;
    padding: 16px;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0; 
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.slideshow-container .prev, .slideshow-container .next {
    cursor: pointer;
    position: absolute;
    top: 0;
    top: 50%;
    margin-top: -22px;
    color: white;
}

.pfeile .prev, .pfeile .next {
    color: #ffaa66;  
    position: absolute;
}

.pfeile {
    position: fixed;
    max-width: 1000px;
    width: 100%;
    top: 310px;   
}


.bilder .prev {
    left: 6%;
}

.bilder .next {
    right: 6%;
}

.pfeile .prev:hover, .pfeile .next:hover {
    color: white; 
}

.prev:hover, .next:hover {
    background-color: hsla(268, 51%, 55%, 0.5);
}

.aboutme-slide {
  color: #f2f2f2;
  font-size: 4vmin;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  left:15%;
}

.contact-slide {
  color: #f2f2f2;
  font-size: 4vmin;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  left: 65%;
}

.work-slide {
  color: #aa9f9b;
  font-size: 4vmin;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}
    
.numbertext {
  color: #f2f2f2;
  font-size: 1em;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.bilder .numbertext {
  left: 6%; 
  padding-top: 13px;
}

.dot {
  cursor:pointer;
  height: 13px;
  width: 13px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}



footer {
    margin: auto;
    padding-top: 2%;
    padding-bottom: 4%; 
    max-width: 1000px;
    text-align: center;
}

pf {
    font-size: 0.7em;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
 
}
    

label {
    display: none;
}

form ul li {
    display: inline-block;
}





.icons {
    text-align: center;
}

.icons ul li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
}





.controls {
    padding: 4%;
    text-align: center;
}

button {
    display: inline-block;
    padding: .4em .8em;
    background: #c3a5e6;
    border: 0;
    color: white;
    font-family: 'Josefin Sans','sans-serif';
    font-size: 1.2em;
    font-weight: 100;
    border-radius: 4px;
    cursor: pointer;
    margin: 2px;
    margin-bottom: 6px; 
    
}

button:hover, button a:hover {
    color: rgb(240, 240, 240);
    
}

button.active {
    background: #c3a5e6; 
}

.controls .wahl {
    background: #ffaa66;
}

.controls  button:first-child {
    background: #c3a5e6;
}
.controls  button {
    background: #ccc;
}

.uebersicht  button {
    background: #c3a5e6;
}


button:focus{
    outline: 0 none;
}

button a {
    color: white;
}

.filter {
    background-color: #ffaa66;
}


.container {
    padding: 2% 2% 0;
    text-align: center;
    
    -webkit-backface-visibility: hidden;
}

.container img {
    padding: 3px;
    background-color: hsla(0, 0%, 76%, 0.3);
    
}

.container:after{
    content: '';
    display: inline-block;
    width: 100%;
}

.container .mix,
.container .gap{
    display: inline-block;
    width: 31%;
    padding-left: 1%;
    padding-right: 1%;
    margin-top: -30px; 
}

.container .mix {
    text-align: center;
    margin-bottom: 2%;
    /*display: none;*/
    position: relative;
    

} 

.container .mix:before{
    content: '';
    display: inline-block;
    
}

.titel {
    position: absolute;
    top: 35%;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Leckerli One';
    font-size: 1.5em;
    display: none;
}

.titel pc {
    
    text-transform: uppercase;
    font-family: 'Josefin Sans';
    font-size: 0.6em;
}

.container .mix:hover img {   
    opacity: 0.2;
}


.container .mix:hover .titel {
    
    display: block;
}



.bilder img {
    display: inline-block;
    margin: -2px;
    padding: 1%;    
}



.kunde {
    padding: .4em;
    padding-top: .6em;
    background: #c3a5e6;
    margin: .4em;
    border-radius: 4px;
    color: white;
}

.kunde:hover {
    background: #ffaa66;
}



.leben {
    display: inline-block;
    width: 48%;
    vertical-align: top;
}

.me p, .leben p {
    max-width: 90%;
    padding-top: 0;
}



.orange {
    color: #ffaa66;
    text-align: center;
}

 
.bold {
    font-weight: 700;
}

.aboutme {
    text-align: center;
    width: 92%;
    margin: auto;
   
}

.portrait {
    display: inline-block;
    vertical-align: top; 
}
.portrait2 {
    display: none;
    width: 25%;
}

.me {
    display: inline-block;
    width:  74%;
}


input {
    border: 2px solid grey; 
    border-radius: 5px;
}

input .comment {
    width: 100%;
}

#contaktform {
    width: 500px;
    max-width: 100%;
    margin: auto;
    background-color: aqua;
}

/*Über mich*/

.zertifikat {
    margin-left: -3px;
}

.zertifikat:hover {
    color:  #ffaa66;

}
.circle {
    width: 15px;
	height: 15px;
	background: #c3a5e6;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
    display: inline-block;
    margin-left: 20px;
}

.circle-border {
    width: 15px;
	height: 15px;
	border: 3px solid #c3a5e6;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
    display: inline-block;
    margin-left: 20px;
}

/*td {
    border: 1px solid green;
}*/

.quali {
    width: 90%;
    text-align: left;
    padding-left: 22px;
}

tr td:first-child {
    width: 100px;
    
}



/*start*h2b work icons**/
.h2b-icons .hover {
    visibility: hidden;
    position: absolute;
    left: 0px;
}
.h2b-icons:hover .hover {
    visibility: visible;
}
.h2b-icons:hover .no-hover {
   visibility: hidden;
}
.col {
    width: 32%;
    max-width: 100%;
    min-width: 170px;
    text-align: center;
    display: inline-block;
}
.col p {
    text-align: center;
}
.h2b-icons {
    width: 100px;
    margin: 0 auto;
    position: relative;
}

/*end*h2b work icons**/

#hide01, #hide02, #hide03, #hide04, #hide05, #hide06 {
    text-align: center;
}

.mix-B {
    
    margin: 3px 20px 3px 20px;
    border: 3px solid hsla(0, 0%, 76%, 0.3);
}


.wu-img {
    width: 100%;   
}
ul.enlarge{
list-style-type:none; 
}

ul.enlarge li {
    display: inline-block;
    width: 10%;
    min-width: 100px;
    position: relative;
}

ul.enlarge li span {
    display: none;
}

ul.enlarge li:hover{
    cursor: pointer;
}

img.wu-pop {
    width: 100%;
}


ul.enlarge li:hover span {
    position: absolute;
    display: block;
    width: 380px;
    height: 676px;
    margin-top: -428px;
    margin-left: -190px;
    z-index:999;
    border: 3px solid hsla(0, 0%, 76%, 1);
}


.space {
    height: 10vmin;
}


div#container {
    min-height: 400px;
}


.rmt-layout-row {
    display:none;
}