        *{
            margin: 0;
            padding: 0;
            font-family: sans-serif;
        }

        body {
            background-color: black;
        }

        header {
            position: fixed;
            left: 2vw;
            width: 46vw;
            border: 0px; 
            border-style: solid;
            border-bottom-color: #fff;
            z-index: 9;
            height: 10vh;
        }

        header hr {
            position: absolute;
            margin-top: 10vh;
            z-index: 116;
        }

        header .logo {
            position: absolute;
            margin-top: 3.5vh;
            width: 200px;
            height: auto;
            z-index: 8;
        }

/*
****************************** 
   ---   Navigation   --- 
******************************
*/

        #toggle-menu {
            display: block;
            width: 30px;
            height: 30px;
            position: absolute;
            top: 3vh;
            right: 4px;
            cursor: pointer;      
            opacity: 0;
            z-index: 9;
            -webkit-touch-callout: none;
        }

        .burgerwrap {
            position: absolute;
            z-index: 3;
            top: 3vh;
            right: 0px;
            height: 24px;
            width: 36px;
            border: solid 1px transparent;
            transition: border 0.7s;
        }

        span.b1, span.b2, span.b3 {
            left: 5px;
            top: 7px;
            cursor: pointer;
            position: absolute;
            border-radius: 0px;
            height: 1px;
            width: 25px;
            background: #fff;
            display: block;
            content: '';
            transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                        background-color 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                        opacity 0.55s ease;
        
        } 

        input:checked ~ .burgerwrap
        {
            border: solid 1px #fff;
        }

        span.b2 {
            top: 12px; 
        }
        span.b3 {
            top: 17px;
        }

        input:checked ~ .burgerwrap span.b1
        {
            opacity: 1;
            transform: rotate(45deg) translate( 4px, 3px);
        }

        input:checked ~ .burgerwrap span.b2
        {
            transform: rotate(120deg);
            opacity: 0;
        }

        input:checked ~ .burgerwrap span.b3
        {
            opacity: 1;
            transform: rotate(-45deg) translate( 4px, -3px);
        }


        #menu {
            width: 50vw;
            height: 100vh;
            top: 0px;
            left: -2vw;
            position: absolute;
            padding: 0px;
            padding-top: 20vh;
            background-color: rgba(0, 0, 0, 0.9);
            list-style-type: none;
            -webkit-font-smoothing: antialiased;
            z-index: 1;
            transform-origin: 0% 0%;
            transform: translate( -100%, 0);
        
            transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        }

        #menu li
        {
            text-transform: uppercase;
            text-decoration: none;
            color: #fff;
            padding-left: 50px; 
            padding-top:10px; 
            padding-bottom: 10px;
            font-size: 22px;
            font-family: "Avenir Next", "Avenir", sans-serif;
        }
    
        #menu a {
            text-decoration: none;
        }

        #menu li:hover {
            background-color: rgba(32, 32, 32, 0.6);
        }

        nav input:checked ~ #menu
        {
            transform: none;
        }

/*
****************************** 
   ---   Slider Background --- 
******************************
*/

        .slide {
            /* warum 150???????? */
             max-width: 150vw; 
        }

        .slide-1 {
            height: 100vh;
            background: url(img/1a.jpg);
            }

        .slide-2 {
            height: 100vh;
            background: url(img/2a.jpg);
            }

        .slide-3 {
            height: 100vh;
            background: url(img/3a.jpg);
            }            

        .slide-4 {
            height: 100vh;
            background: url(img/4a.jpg);
            } 

        .cutter {
            width: 50vw;
            overflow: hidden;
        }

        .bgcont1 {
            display: flex;
            align-items: center;
            width: 100vw;
            height: 100vh;
            background: url(img/1b.jpg);
        }

        .bgcont2 {
            display: flex;
            align-items: center;
            width: 100vw;
            height: 100vh;
            background: url(img/2b.jpg);
        }

        .bgcont3 {
            display: flex;
            align-items: center;
            width: 100vw;
            height: 100vh;
            background: url(img/3b.jpg);
        }

        .bgcont4 {
            display: flex;
            align-items: center;            
            width: 100vw;
            height: 100vh;
            background: url(img/4b.jpg);
        }

        .imgpos {
            background-repeat: no-repeat;
            background-attachment: fixed;
            background-size: cover;
        }

/*
****************************** 
   ---   Slider Content   --- 
******************************
*/

        .contsize {
            width: 46vw;
        }

        .textcont {
            position: relative;
            max-height: 80vh;
            width: 46vw;
            left: 2vw;
            overflow-y: hidden;
            overflow-x: hidden;
            }

        .textcont a {
            text-decoration: none;
            color: #8CBA16;
        }

        .textcont a:hover {
            text-decoration: none;
            color: rgb(197, 235, 102);
        }

        .textcont h2 {
            padding-top: 3vh;
            padding-bottom: 3vh;
            color: #fff;
            font-size: 5vw;
            font-weight: 400;
        }

        .textcont h3 {
            padding-top: 3vh;
            padding-bottom: 0.3vh;
            color: #fff;
            font-weight: 400;
        }

        .textcont h4 {
            padding-top: 3vh;
            padding-bottom: 0.3vh;
            color: #fff;
            font-weight: 400;
        }

        .textcont p {
            color: #fff;
            font-size: .9em;
        }

        button {
            background-color: #8CBA16;
            color: #fff;
            border: 0px solid #fff;
            font-size: 16px;
            margin-top: 5vh;            
            padding-top: 10px;
            padding-bottom: 10px;
            padding-left: 20px;
            padding-right: 20px;
            -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
        }

        button:hover {
            background-color: rgb(97, 129, 15);
            margin-left: 5px;
        }

        .scrollwrapper {
            height: 72vh;
            overflow: scroll;
            overflow-x: hidden;
        }
/*
****************************** 
   ---   Slider Work Gallery  --- 
******************************
*/

        .img-flex-cont {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            margin-top: 3vh;
            align-items: center;
            justify-content: center;            
        }

        .img-gallery {
            flex: 20%;
            max-width: 20%;
            padding: 2%;
            font-size: 30px;
        }

        .img-gallery > a > img {
            width: 100%;
        }

        @keyframes lb-ani {
            from {top:-100px;opacity: 0;}
            to {top:0px;opacity:1;}
        }
        .lb-frame {
            display: none; 
            position: fixed;
            z-index: 999; 
            padding-top: 10vh; 
            left: 0;
            top: 0;
            width: 100%; 
            height: 100%; 
            overflow: auto; 
            background-color: rgb(0,0,0); 
            background-color: rgba(0,0,0,0.8); 
        }

        .lb-cont {

            margin: 0px;
            background-color: #202020;
            padding: 0;
            outline: 0;
            width: 50vw;



        }
        .lb-frame .closebtn {
            position: absolute;
            text-decoration: none;
            left: 46vw;
            top: 2vh;
            font-size: 50px;
            color: #fff;
        }

        .closebtn:hover,
        .closebtn:focus {
            color: #000;
            text-decoration: none;
            cursor: pointer;
        }
        .lb-frame img {
            height: auto;
            width: 50vw;

            -webkit-animation-name: lb-ani; /* Chrome, Safari, Opera */
            -webkit-animation-duration: 0.5s; /* Chrome, Safari, Opera */
            animation-name: lb-ani;
            animation-duration: 0.5s;
        }

        .lb-frame:target {
            display: table;
            position: absolute;
        }
/*
****************************** 
   ---   Slider Profil   --- 
******************************
*/
        ul.profil li {
            font-size: .9em;
            color: #fff;
            list-style-type: none;
        }

/*
****************************** 
   ---   Slider Datenschutz   --- 
******************************
*/
        ul.datens > li {
            font-size: .9em;
            color: #fff;
            list-style-type: initial;
        }

/*
****************************** 
   ---   Footer   --- 
******************************
*/
        footer {
            z-index: 9;
            height: 8vh;
            position: fixed;
            bottom: 0px;
            width: 46vw;
            left: 2vw;
        }

        footer div {
            display: table-cell;
            vertical-align: middle;  
            width: 46vw;
            height: 8vh;
        }

        footer img {
            height: 20px;
            display: inline-block;
            padding-right: 5px;
        }
        
        footer p {
            position: absolute;
            max-width: 70%;
            right: 0px;
            display: inline-block;
            font-size: 0.7em;
            font-weight: 200;
            color: #fff;
            text-align: right;
        }

        hr {
            width: 46vw;
            height: 0px; 
            border-style: solid; 
            border-color: #fff; 
            border-width: 0px 0px 1px 0px; 
        }

/*
****************************** 
   ---   From Slide to Fade  --- 
******************************
*/

        .fp-slidesContainer {
            width: 100%!important;
            transform: none!important;
        }

        .fp-slide {
            width: 100%!important;
            position: absolute;
            left: 0;
            top: 0;
            visibility: hidden;
            opacity: 0;
            z-index: 0;
            transition: all .7s ease-in-out;
        }

        .fp-slide.active {
            visibility: visible;
            opacity: 1;
            z-index: 1;
        }
/*
****************************** 
   ---   Responsiv resizer  --- 
******************************
*/

        @media only screen and (max-width: 1140px) {
            /* .img-gallery {
                flex: 43%;
                max-width: 43%;
            } */
            .lb-frame img {
              width: 100vw;
            }
        }

        @media only screen and (max-width: 768px) {
            .lb-frame img {
              width: 100vw;
            }
            /* .img-gallery {
                flex: 45%;
                max-width: 45%;
            } */
            #menu {
                width: 100vw;
            }
            header {
                width: 96vw;
            }         
            .textcont {
                width: 96vw;
            }
            .cutter {
                width: 100vw;
            }
            footer {
                width: 96vw;
            }
            hr {
                width: 96vw;
            }
            .fp-controlArrow.fp-next {
                right: 2.2vw;
            }
            .triangle {
                display: none;
            }
        }
        /* @media only screen and (max-width: 435px) {
            .img-gallery {
                flex: 40%;
                max-width: 40%;
            }
        } */
