:root{
    --lightGrey:#f2f2f2;
/*    --Grey:rgba(102,102,102);*/
    --Grey:#666;
    --darkGrey:#3c3c3c;
    --Green:#93C01F;
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}
body{
    margin: 0;
    font-family: century-gothic, sans-serif;
    font-weight: 400;
    font-style: normal;
}
h1, h2, h3, h4{
    font-family: reross-rectangular, sans-serif;
    font-weight: 700;
    margin: 1.5rem 0 1rem 0;
}
h2{
    font-size: 1.5rem;
}
h3{
    font-size: 1.25rem;
}
p, a{
    margin: 0;
    font-family: century-gothic, sans-serif;
    font-weight: 400;
    font-style: normal;
   line-height: 1.25rem;
}
p{
    margin-bottom: 1rem;
}
a{
    text-decoration: none;
}
a[x-apple-data-detectors] {
    color: inherit !important;
    background-color: inherit !important;
    text-decoration: none !important;
    font-size: inherit !important;
    font-family: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
  }
img {
    display: block;
}
ul{
    list-style-type: none;
    margin: 0;
}
.grey{
    color: var(--Grey) !important;
}
.neuerAbsatz {
	margin-top: 2em;
    background-color: #3c3c3c!important;
}
section{
    width: 100%;
    padding: 1.5em 2em;
}
/*############ Header ##################################*/
header{
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5em 1em;
    background: var(--darkGrey);
}
#headerLogo {
	width: 150px;
}
/*############ Navigation ##################################*/
#menuOpen, #menuClose {
/*	width: 50px;*/
    font-size: 1.5rem;
    color: var(--lightGrey);
    margin-right: 1rem;
}
#menuClose {
	display: none;
}
nav{
    display: none;
}
nav ul{
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 2em 0.5em;
    width: 100vw;
/*    height: 100vh;*/
/*    box-sizing: border-box;*/
    background: var(--darkGrey);
}
nav li{
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
}
nav a{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    text-decoration: none;
    color: var(--lightGrey);
    font-size: 1rem;
}
nav i{
    margin: 0 1rem;
    color: var(--Green);
    font-size: 1rem;
}

/*############ Hero Section ##################################*/
#hero {
    background: var(--lightGrey);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25em 1em 0 1em;
    margin: 0;
    color: var(--lightGrey); 
    min-height: 100vh;
}
#heroImage {
    display: block;
    /* margin-bottom: 1.25rem; */
    background-image: url(/img/me_green.png);
    background-position:bottom right;
    background-size: cover;
    border-radius: 50%;
    width: 50%;
    height: auto;
}
#herotext{
    display: flex;
    flex-direction: column;
    align-items: center;
}
#hero h2, #hero p{
    color: var(--Grey);
}
#hero h2{
    font-size: 2rem;
    color: var(--Green);
}
#hero p{
    font-weight: 400;
    font-size: 1rem;
}
#hero span{
    color: var(--Green);
}
#hero a{
    background: var(--Green);
    color: var(--lightGrey);
    font-size: 1.25rem;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0.5em 0.75em;
    border-radius: 15px;
}
/*############ Zwischenbilder / Parallax-Effekt ##################################*/
.parallax{
    background-size: cover;
    background-position: center;
    width: 100vw;
    height: 100vh;
    background-attachment: scroll;
    background-position: center;
    position: relative;
    overflow: hidden;   
}
.box1{
    background-image: url(/img/Magazine%20Mockup.jpg);
    position: relative;
}
.box1:before{
    content: '';
    position: absolute;
    top: 100%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--darkGrey);
    transform-origin: right;
    transform: skewY(8deg);
}
.box1:after{
    content: '';
    position: absolute;
    top: 100%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: var(--darkGrey);
    transform-origin: left;
    transform: skewY(-8deg);
}

.box2{
    background-image: url(/img/hero.jpg)
}
.box2:before{
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darkGrey);
    transform-origin: left;
    transform: skewY(8deg);
}
.box2:after{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lightGrey);
    transform-origin: right;
    transform: skewY(8deg);
}
.box3{
    background-image: url(/img/cup_mockup.jpg);
}
.box3:before{
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lightGrey);
    transform-origin: right;
    transform: skewY(-8deg);
}
.box3:after{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--Green);
    transform-origin: left;
    transform: skewY(-8deg);
}
.box4{
    background-image: url(/img/me_bw.jpg);
}
.box4:before{
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--Green);
    transform-origin: left;
    transform: skewY(8deg);
}
.box4:after{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darkGrey);
    transform-origin: right;
    transform: skewY(8deg);
}
.box5{
    background-image: url(/img/Magazine_Mockup_cover2.jpg);
}
.box5:before{
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darkGrey);
    transform-origin: right;
    transform: skewY(-8deg);
}
.box5:after{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lightGrey);
    transform-origin: left;
    transform: skewY(-8deg);
}
/*############ über mich ##################################*/
#about{
    background: var(--darkGrey);
}
#about h2, #about h3{
    color: var(--Green);
}
#about p{
    color: var(--lightGrey);
}
#about p:last-of-type {
	margin-bottom: 0;
}

/*############ Skills ##################################*/
#skills{
    background: var(--lightGrey);
}
#skills h2{
    color: var(--Green);
}
#skills h3{
    margin-top: 2em;
    color: var(--darkGrey);
}
#skills p{
	margin-bottom: .25em;
}
#skills ul{
	border: 2px solid var(--Grey);
    padding: 2em;
    background: var(--lightGrey);
}
.softskills{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
/*    justify-content: flex-start;*/
    
/*    margin: 1.5em 0;*/
}
.skill{
    color: var(--Grey);
    font-size: 1.25rem;
}
.rating{
    width: 80%;
    display: flex;
/*    justify-content: center;*/
    align-items: center;
    margin-bottom: 2em;
    text-align: center;
}
.rating i{
    color: var(--Green);
    font-size: 2rem;
    margin: 0 0.5em;
}
*/
/*############ Skillbars ##################################*/

.container {
  width: 100%;
    border: 2px solid var(--Green);
}

.skills {
    text-align: right;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
    color: var(--lightGrey);
    background-color: var(--Green);
    margin-bottom: 1.5em;
}

.photoshop {width: 85%;}
.lightroom {width: 90%;}
.illustrator {width: 75%;}
.indesign {width: 70%;}
.premiere {width: 40%;}
.aftereffects {width: 30%;}
.acrobat {width: 65%;}
.fusion {width: 30%;}
.html5 {width: 90%;}
.css3 {width: 70%;}
.javascript {width: 20%;}
.lasergravur {width: 90%;}

/*############ Portfolio ##################################*/
#portfolio{
    background: var(--Green);
}
#portfolio h2{
    color: var(--lightGrey);
}
#portfolio ul{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
#portfolio li{
/*    flex: auto;*/
    width: 50%;
    border: 2px solid var(--Green);
}
#portfolio figure{
    position: relative;
	display: flex;
    flex-direction: column;
}
#portfolio figcaption {
    width: 100%;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    bottom: 0;
/*    margin: 1em;*/
    padding: .5em;
	color: var(--lightGrey);
    background: rgba(60, 60, 60, .9);
/*    background-blend-mode: hard-light;*/
}
#portfolio figcaption h3{
    font-size: 1rem;
    font-family: century-gothic, sans-serif;
/*    padding: 0;*/
    margin: 0;
}
#portfolio figcaption p{
    display: none;
    font-size: .6rem;
}

#portfolio img{
    display: block;
/*    padding: .1em;*/
    width: 100%;
    
}


/*############ Portfolio LightBox ##################################*/

    #lightbox {
        position: fixed;
        height:100%;
        width:100%;
        display: flex;
        top:0;
        left: 0;
        background: #000000aa;
        justify-content: center;
        align-items: center;
        z-index: 100000;
        display: none;
    }

    #lightbox figure{
        width:100%;
        position: relative;
    }

    #lightbox figcaption {
        position: absolute;
        top: 100%;
/*        transform: translateY(-50%);*/
        left: 0;
        display: flex;
        align-items: center;
        justify-content: space-around;
    color: var(--darkGrey);
        background: rgb(211, 211, 211,.8);
        
        display: none;
    }
    #lightbox img{
        object-fit: contain;
        width: auto;
        }

#lightbox figcaption h3{
    font-size: 1.5rem;
/*    color: var(--Green);*/
}
    
#lightbox figcaption p{
	display: inline;
    font-size: 1.25rem;
}
    #close, #next, #prev {
/*	    filter: invert(1);*/
        color: var(--lightGrey);
        font-size: 2rem;
        background: none;
    }
    #close{
        position: absolute;
        top:.5em;
        right:.5em;
        width: auto;
        height: auto;
        z-index: 999999;
    }

    #next{
        position: absolute;
        top:50%;
        margin-top: -66px;
        right:0;
        padding:1.75em .25em;
        background: #3c3c3caa;
        width: auto;
        z-index: 9999;
    }

    #prev{
        position: absolute;
        top:50%;
        margin-top: -66px;
        left:0;
        padding:1.75em .25em;
        background: #3c3c3caa;
        width: auto;
        z-index: 9999;
    }

/*############ Kontakt ##################################*/

#contact {
	background: var(--darkGrey);
}
#contact h2 {
	color: var(--lightGrey);
}
#contact h3 {
	color: var(--Green);
    font-size: 1.5rem;
}
#contact p {
	color: var(--lightGrey);
    font-size: 1.25rem;
    margin-bottom: .25em;
}
#contact a {
    background: var(--Green);
    color: var(--lightGrey);
    font-size: 1.25rem;
    padding: 0.75em 1em;
    border-radius: 15px;
}
#contactCTA{
    margin-top: 2.5em;
    display: flex;
    flex-direction: column;
/*    justify-content: center;*/
    align-items: center;
}
#contactCTA a{
    margin: 1em 2em;
    width: 100%;
    text-align: center;
}
/*

form{
    display: flex;
    flex-direction: column;
}
form p{
    font-size: 0.8em;
    color: var(--lightGrey);
}
input, textarea{
    margin: 10px 0;
    padding: 10px;
}
input:focus, textarea:focus{
    outline: 4px solid var(--Green);
}
#buttons {
	display: flex;
}
button{
    flex-grow: 1;
    padding: 10px;
    border-radius: 3px;
    border: none;
    font-weight: 700;
    cursor: pointer;
}
button:first-child{
    margin-right: 5px;
}
button:last-child{
    margin-left: 5px;
    background: var(--Green);
}
*/

/*############ Impressum ##################################*/

#impressum {
	background: var(--lightGrey);
    color: var(--darkGrey);
/*    height: 100vh;*/
    margin-bottom: 3em;
}
#impressum h2, #impressum a {
	color: var(--Green);
}

/*############ Iconbar ##################################*/
.iconbar {
    position: fixed;
    bottom: 0;
	padding: 0;
}
.iconbar ul{
    display: flex;
    justify-content: space-around;
	width: 100%;
    background: var(--lightGrey);
    padding: .5em 0;
    border-top: 2px solid var(--Grey);
}
.iconbar a{
/*	color: var(--lightGrey);*/
	color: var(--Green);
    font-size: 1.5rem;
}


/*#############################################################*/
/*############ Media Queries ##################################*/
/*#############################################################*/

/*############ Media ab 900px ##################################*/
@media (min-width: 900px){
    header{
        justify-content: center;
        padding: .75em 0;
    }
    #headerLogo {
        width: 200px;
    }
    #hero {
	    padding: 2em 0 0 1em;
    }
    #heroImage {
	    border-radius: 0;
/*        display: block;*/
        margin: 0;
    }
    #menuOpen, #menuClose {
        display: none;
    }
    .parallax {
	    background-attachment:fixed;
    }
    section{
        padding: 3em 1.5em;
    }
    nav{
        display: flex;
        z-index: 1000;
    }
    nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 1em;
    }
    nav li{
        flex-basis: 30%;
        justify-content: flex-start;
        align-items: center;
/*        width: 50%;*/
    }
    nav a{
        font-size: 1rem;
    }
    
    #hero{
        flex-direction: row-reverse;
    }
    #heroImage {
/*	    background: var(--darkGrey);*/
    }
    #herotext {
        align-items: flex-start;
    }
    #hero h2{
        font-size: 2.25rem;
    }
    #hero p{
        font-size: 1.25rem;
        text-align: left;
    }
    #hero a{
        font-size: 1.5rem;
    }
    
    .skillcontainer {
	    display: flex;
        justify-content: space-between;
/*        align-items: stretch !important;*/
/*        padding: 1em 0;*/
/*        height: 100%;*/
    }
    .skillcontainer>div{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
	    width: 48%;
    }
    .skillcontainer ul{
	    height: 100%;
    }
    #portfolio li{
        width: 25%;
    }
    #contactCTA {
	    flex-direction: row;
        justify-content: space-between;
    }
    #contactCTA a{
        width: 48%;
        margin: 0;
    }
}

/*############ Media ab 1200px ##################################*/
@media (min-width: 1200px){
    .grid1200{
        max-width: 1200px;
        margin: 0 auto !important;
/*        padding: 0 1em;*/
    }
    body{
        background: var(--lightGrey);
    }
    nav{
        position: sticky;
        top: 0;
    }
    nav ul {
        flex-wrap: nowrap;
        padding: 1em;
    }
    nav a{
        font-size: 1rem;
    }
    #hero a{
        margin-top: 1.5em;
    }
    .parallax{
        height: 100vh;
    }
    
    #portfolio li{
        width: 15%;
    }
    #lightbox {
/*	    max-width: 960px;*/
        margin: 0 auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    #lightbox figure {
	    width: 1200px;
	
    }
    .iconbar {
	    display: none;
    }
    #anrufen {
	    display: none;
    }
}