* {
    margin: 0;
    padding: 0;
    border: 0;
    text-decoration: none;
}




/* ---- Schriften eingebunden Quicksand ----- */

@font-face {
    font-family: 'Quicksand-Book';
    src: url('../font/quicksand/Quicksand_Book.otf') format('opentype');
}

@font-face {
    font-family: 'Quicksand-Bold';
    src: url('../font/quicksand/Quicksand_Bold.otf') format('opentype');
}



/* ---- Schriften eingebunden Ambrella ----- */

@font-face {
    font-family: 'Ambarella';
    src: url('../font/Ambarella/Ambarella.otf') format('opentype');
}


/* ---- Farben ----- */

body {
    font-family: 'Quicksand-Book';
    text-align: center;
    color: #332029;
    width: 100vw;
    height: auto;
    overflow-x: hidden;
    overflow-y: scroll;
}





body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.0);
}

body::-webkit-scrollbar-thumb {
    background-color: rgba(25, 49, 79, 0.5);
    outline: 1px solid slategrey;
    height: 100px;
}
















#space-top {
    width: 100vw;
    height: 70px;
    background-color: #19314f;
    position: fixed;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0px -19px 62px 13px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px -19px 62px 13px rgba(0, 0, 0, 0.5);
    box-shadow: 0px -19px 62px 13px rgba(0, 0, 0, 0.5);
}

#space-nav {
    width: 90vw;
    height: 55px;
    /*background-color: cadetblue;*/
}

#logo-nav {
    width: 150px;
    height: 55px;
    background-color: #db4545;
    padding-top: 40px;
    padding-bottom: 20px;
    background-image: url(../img/logo/logo-white.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
    margin-top: -40px;
    float: left;
}

nav {
    width: auto;
    height: 70px;
    float: right;
    display: flex;
    margin-top: -8px;
}

.nav-div {
    width: auto;
    height: auto;
    margin-left: 20px;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-div:hover .nav-p {
    color: #db4545;
}

.nav-p {
    text-transform: uppercase;
    font-size: 0.8em;
    color: #ceaa9b;
    color: #d1d1d1;
    font-family: 'Quicksand-Book';
    font-weight: bold;
    letter-spacing: 0.1em;
}




















.space-article {
    width: 100vw;
    height: auto;
    display: flex;
    justify-content: center;
}

article {
    width: 90vw;
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

h2 {
    width: calc( 90vw - 20px);
    height: auto;
    border: solid #db4545 2px;
    border: solid #19314f 2px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 17px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 1.4em;
    color: #db4545;
    color: #19314f;
    font-family: 'Quicksand-Book';
    line-height: 1.4;
}


p.var-01 {
    color: #0d0d47;
    margin-top: 40px;
    font-family: 'Quicksand-Book';
    line-height: 1.4;
}


















/*---------------------------*/

/*---------------------------*/

/*------------home-----------*/

#space-home {
    background-color: #ebeded;
}

#article-home {}

#logo-space {
    width: 90vw;
    height: 30vh;
    margin-top: 120px;
    background-image: url(../img/logo/logo+img.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

#h2-home {
    margin-top: 30px;
}

#pattern-feather {
    width: 90vw;
    height: 400px;
    margin-top: 40px;
    margin-bottom: 100px;
    background-image: url(../img/pattern/pattern-feather-blue.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#arrow-home {
    width: 120px;
    height: 40px;
    margin-top: 50px;
    background-image: url(../img/arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.hovering {
    -webkit-animation-name: hovering;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -moz-animation-name: hovering;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease-in-out;
    animation-name: hovering;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@-webkit-keyframes hovering {
    from {
        -webkit-transform: translate(0, 0px);
    }
    50% {
        -webkit-transform: translate(0, -25px);
    }
    to {
        -webkit-transform: translate(0, -0px);
    }
}

@-moz-keyframes hovering {
    from {
        -moz-transform: translate(0, 0px);
    }
    50% {
        -moz-transform: translate(0, -25px);
    }
    to {
        -moz-transform: translate(0, -0px);
    }
}

@keyframes hovering {
    from {
        transform: translate(0, 0px);
    }
    50% {
        transform: translate(0, -25px);
    }
    to {
        transform: translate(0, -0px);
    }
}





















/*---------------------------*/

/*---------------------------*/

/*---------über mich---------*/

#space-ueber-mich {
    background-color: #fefefe;
}

#article-ueber-mich {}

#h2-ueber-mich {
    margin-top: 140px;
}

#space-p-ueber-mich {
    width: 90vw;
    height: auto;
    display: flex;
    justify-content: center;
}

#p-ueber-mich {
    width: 60vw;
    height: auto;
    margin-top: 50px;
    text-align: left;
}

#space-around-slider-teaser {
    width: 90vw;
    height: auto;
    display: flex;
    justify-content: center;
}

#slider-teaser {
    width: 60vw;
    height: auto;
    margin-top: 100px;
    text-align: left;
    color: #b9c8d1;
}

#space-around-slider {
    width: 90vw;
    height: auto;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

#space-around-slider:hover #arrow-left {
    display: block;
}

#space-around-slider:hover #arrow-right {
    display: block;
}

#space-arrow-left {
    width: 15vw;
    height: 252px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#arrow-left {
    width: 20px;
    height: 50px;
    background-image: url(../img/arrow-left.svg);
    background-position: center;
    background-repeat: no-repeat;
    display: none;
}

#slider {
    width: 60vw;
    height: 250px;
    border: solid #b9c8d1 1px;
}

li {
    list-style: none;
    width: 60vw;
    height: 250px;

}

#statement-01 {
    display: none;
}

#statement-02 {
    display: none;
}

#statement-03 {
    display: none;
}

#statement-04 {
    display: none;
}

#statement-05 {
    display: none;
}

#statement-06 {
    display: none;
}

#statement-07 {
    display: none;
}

#statement-08 {
    display: none;
}

#statement-09 {
    display: none;
}

#statement-10 {
    display: none;
}

#statement-11 {
    display: none;
}

.statement-img-background {
    width: 250px;
    height: 250px;
    background-color: #ebeded;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    float: left;
}

.statement-img {
    width: 200px;
    height: 200px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}


/*-----------slider img-----------*/

#statement-img-01 {
    background-image: url(../img/slider/statement-img-neville-brody.png);
}

#statement-img-02 {
    background-image: url(../img/slider/statement-img-giorgio-armani.png);
}

#statement-img-03 {
    background-image: url(../img/slider/statement-img-albert-einstein.png);
}

#statement-img-04 {
    background-image: url(../img/slider/statement-img-leonardo-da-vinci.png);
}

#statement-img-05 {
    background-image: url(../img/slider/statement-img-anton-stankowski.png);
}

#statement-img-06 {
    background-image: url(../img/slider/statement-img-jeffrey-zeldman.png);
}

#statement-img-07 {
    background-image: url(../img/slider/statement-img-milton-glaser.png);
}



#space-arrow-right {
    width: 15vw;
    height: 252px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#arrow-right {
    width: 20px;
    height: 50px;
    background-image: url(../img/arrow-right.svg);
    background-position: center;
    background-repeat: no-repeat;
    display: none;
}

.statement-text {
    width: calc( 100% - 300px);
    height: 200px;
    float: left;
    display: inline;
    padding: 25px;
}

.statement-text-a {
    color: #b9c8d1;
    text-align: left;
    display: block;
    height: 74px;
    vertical-align: bottom;
    line-height: 1.4;
}

.statement-name {
    font-size: 1.6em;
}

.statement-hr {
    width: 100px;
    height: 2px;
    background-color: #b9c8d1;
    margin-top: 0px;
    margin-bottom: 20px;
    display: block;
}

.statement-text-b {
    color: #19314f;
    text-align: left;
    display: block;
    height: 74px;
    line-height: 1.4;
    font-size: 1.2em;
    font-weight: 600;
}

.aktive {
    display: block !important;
}




#space-around-scrollbar {
    width: 90vw;
    height: auto;
    margin-top: 25px;
    margin-bottom: 150px;
    display: flex;
    justify-content: center;
}

#ud_scrollbar {
    width: 0px;
    height: 5px;
    background: #ebeded;
}















/*---------------------------*/

/*---------------------------*/

/*-----------skills----------*/

#space-skills {
    background-color: #ebeded;
    padding-bottom: 200px;
}

#article-skills {}

#h2-skills {
    margin-top: 140px;
    margin-bottom: 10px;
}

.wrapper-content-skills {
    width: 90vw;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.abschnitt {
    width: 60vw;
    height: auto;
}

.abschnitt-h {
    width: 100%;
    height: 70px;
    background: #ced5d8;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-bottom: 30px;
    margin-top: 80px;
}

#abschnitt-h-bildbearbeitung {
    background-image: url(../img/icons/bildbearbeitung.svg);
}

#abschnitt-h-grafik-design {
    background-image: url(../img/icons/grafik-design.svg);
}

#abschnitt-h-web-design {
    background-image: url(../img/icons/wed-design.svg);
}

.abschnitt-h-kasten {
    height: 90px;
    width: 90px;
    border: solid 2px black;
}

.abschnitt-h3 {
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.4;
    font-size: 1.6em;
    font-family: 'Quicksand-Book';
    margin-bottom: 30px;
    padding-top: 10px;
}

.inwrapper-content {
    width: 100%;
    height: auto;
}

.skill-item {
    width: 100%;
    height: auto;
    display: flex;
}

.skill-item-h {
    width: 30%;
    height: auto;
    float: left;
    text-align: left;
    font-family: 'Quicksand-Book';
    font-weight: bolder;
    line-height: 1.4;
    font-size: 1.1em;

}

.skill-item-text {
    width: 70%;
    height: auto;
    float: right;
    text-align: left;
    line-height: 1.4;
    margin-bottom: 30px;
}

.skill-item-hr {
    height: 1px;
    widows: 100%;
    background-color: #ced5d8;
    margin-bottom: 30px;
}











/*---------------------------*/

/*---------------------------*/

/*---------portfolio---------*/

#space-prtfolio {
    background-color: #fefefe;
}

#article-portfolio {}

#h2-portfolio {
    margin-top: 140px;
    margin-bottom: 20px;
}

#sammlung-portfolio {
    width: 90vw;
    height: auto;
    margin-bottom: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.space-item-portfolio {
    width: 60vw;
    min-width: 360px;
    height: 125px;
    background-color: #a9bfc9;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    transition: all .35s ease;
    border: solid 1px #ebeded;
}

.space-item-portfolio:hover {
    height: 350px;
    transition: all .35s ease;
    box-shadow: rgba(0, 0, 0, 0.25) 0 0 5em;
}

.item-portfolio {
    height: 100%;
    width: 100%;
    background-color: rgba(5, 13, 71, 0.7);
    background-blend-mode: multiply;

}

#referenz-bad-driburg {
    background-image: url(../img/referenz/bad-driburg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#referenz-adlerheim {
    background-image: url(../img/referenz/adlerheim.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#referenz-adlerheim {
    background-image: url(../img/referenz/adlerheim.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#infografiken {
    background-image: url(../img/referenz/infografiken-2018.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#bitcoin {
    background-image: url(../img/referenz/bitcoin.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#mmbbs {
    background-image: url(../img/referenz/redesign-mmbbs.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#pye-performance {
    background-image: url(../img/referenz/pye-performance.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#watcha {
    background-image: url(../img/referenz/watcha.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#sebastianus {
    background-image: url(../img/referenz/st.%20sebastianus%20bruderschaft.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#scribble {
    background-image: url(../img/referenz/scribble.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}



.info-item {
    width: calc( 100% - 50px);
    height: 0px;
    background-color: #ebeded;
    float: right;
    transition: all .35s ease;
    overflow: hidden;
    padding-left: 25px;
    padding-right: 25px;
}

.space-item-portfolio:hover .info-item {
    height: 350px;
    transition: all .35s ease;
}

.space-item-portfolio:hover .item-portfolio {
    background-color: rgba(0, 0, 0, 0);
    transition: all .35s ease;
}



.h-info-item {
    opacity: 0;
    font-family: 'Quicksand-Bold';
    font-size: 1em;
    padding-top: 25px;
    padding-bottom: 10px;
    color: #19314f;
}

.space-item-portfolio:hover .h-info-item {
    opacity: 1;
    transition: all 1s ease;
}

.info-item p {
    opacity: 0;
    color: #19314f;
    padding-bottom: 25px;
    line-height: 1.2;
}

.space-item-portfolio:hover .info-item p {
    opacity: 1;
    transition: all 1s ease;
}

button.projektuebersicht {
    height: 30px;
    width: 0;
    background: #ebeded;
    border: solid 1px #db4545;
    color: #db4545;
    opacity: 0;
    margin-bottom: 10px;
    text-transform: uppercase;
    outline: none;
}

button.projektuebersicht-two-button:hover {
    border: solid 1px #db4545;
    background: #db4545;
    color: #ebeded;
    transform: translateX(-15px);
    transition: all .1s;
}

button.projektuebersicht-one-button:hover {
    border: solid 1px #db4545;
    background: #db4545;
    color: #ebeded;
    transition: all .1s;
}

button.link-webseite {
    height: 30px;
    width: 0;
    background: #ebeded;
    border: solid 1px #19314f;
    color: #19314f;
    opacity: 0;
    text-transform: uppercase;
    outline: none;
}

button.link-webseite:hover {
    border: solid 1px #19314f;
    background: #19314f;
    color: #ebeded;
    transform: translateX(15px);
    transition: all .1s;

}

.space-item-portfolio:hover button.projektuebersicht {
    opacity: 1;
    transition: all 0.3s ease;
    width: 180px;
}

.space-item-portfolio:hover button.link-webseite {
    opacity: 1;
    transition: 0.3s ease;
    width: 180px;
}




















/*---------------------------*/

/*---------------------------*/

/*----------kontakt----------*/

#space-kontakt {
    background-color: #ebeded;
}

#article-kontakt {}

#h2-kontakt {
    margin-top: 140px;
}

#space-p-kontakt {
    width: 90vw;
    height: auto;
    display: flex;
    justify-content: center;
}

#p-kontakt {
    width: 60vw;
    height: auto;
    margin-top: 50px;
}







/*----------vcard----------*/

#space-vcard {
    width: 90vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 250px;
}

.vcard {
    height: auto;
    width: 60vw;
    min-height: 400px;
    min-width: 300px;
    background: #fefefe;
    border: 1px solid #d1d1d1;
    transition: all ease;
    background-image: url(../img/pattern/pattern-feather-blue-vcard.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}



.vcard:hover {
    background: #fff;
    border: 1px solid #c1c1c1;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 5em;
    background-image: url(../img/pattern/pattern-feather-blue-vcard.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.vcard:hover .fig-vcard img {
    transform: scale(0.7) translateY(-2.6em);
    transition: all .35s ease;
}

.vcard:hover .vcard-title {
    transform: translateY(-4em);
    transition: all .35s ease;
}

.vcard:hover .vcard-descr hr {
    width: 50px;
    transition-delay: 0.1s;
    transform: scale(1, 1);
    transition: all .35s ease;
    transform: translateY(-4em);
}

.vcard:hover .vcard-descr p {
    display: block;
    transform: translateY(-4em);
    transition: all .35s ease;
    opacity: 1;
}

.fig-vcard {}

.fig-vcard img {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    margin-top: 50px;
    margin-bottom: 10px;
    background-image: url(../img/portrait/portrait.png);
    background-size: cover;
    transition: all .35s ease;
}

.vcard-social {
    display: none;
}

.vcard-title {
    margin-top: 10px;
    margin-bottom: 30px;
    transition: all .35s ease;
}

.vcard-title h3 {
    font-family: 'Ambarella';
    font-size: 2.3em;
    color: #db4545;
}

.vcard-title p {
    color: #d1d1d1;
    line-height: 1.3;
    text-transform: uppercase;
}

.vcard-descr {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.vcard-descr hr {
    width: 0;
    height: 3px;
    background-color: #db4545;
}

.vcard-descr p {
    color: #d1d1d1;
    line-height: 1.3;
    transition: all .35s ease;
    margin-bottom: 25px;
    opacity: 0;
}














/*---------Formular---------*/

.container-form {
    width: 90vw;
    height: auto;
    margin-bottom: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

form {
    width: 60vw;
    height: auto;
    margin-top: 50px;
}

.form-row {
    width: auto;
    height: auto;
}

input {
    width: calc(100% - 14px);
    height: 30px;
    border: solid #d1d1d1 2px;
    margin-top: 15px;
    padding-left: 10px;
}

input:active {
    outline: none;
    border-bottom: solid #db4545 2px;
}

input:focus {
    outline: none;
    border-bottom: solid #db4545 2px;
}

input#fname {}

input#lname {}

input#email {}

input#betreff {}

textarea#nachricht {
    width: calc(100% - 14px);
    min-height: 90px;
    height: auto;
    border: solid #d1d1d1 2px;
    resize: vertical;
    margin-top: 15px;
    padding-top: 10px;
    padding-left: 10px;
}

textarea#nachricht:active {
    outline: none;
    border-bottom: solid #db4545 2px;
}

textarea#nachricht:focus {
    outline: none;
    border-bottom: solid #db4545 2px;
}

input#send {
    background-color: #d1d1d1;
    border: none;
    color: white;
    width: calc(100%);
    max-width: 240px;
    height: 45px;
    padding: 0;
    margin-top: 30px;

}

input#send:hover {
    background-color: #db4545;
}

::placeholder {
    color: #d1d1d1;
}























/*---------------------------*/

/*---------------------------*/

/*----------footer-----------*/

footer {
    width: 100vw;
    height: auto;
    background-color: #19314f;
}

#p-impressum {
    color: #ebeded;
    font-size: 0.7em;
    font-family: 'SourceSansPro-Light';
    padding-top: 60px;
    padding-bottom: 60px;
}










/*---------------------------*/

/*---------------------------*/

/*--------unterseiten--------*/

.projekt-header {
    width: 100vw;
    height: 150px;
    display: flex;
    justify-content: center;
    padding-top: 70px;
}

/*-------headerbilder--------*/

.fill-header {
    width: 90vw;
    min-width: 356px;
    height: 100%;
    background: white;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: -2px;
    overflow: hidden;
}

#projekt-bad-driburg {
    background-image: url(../img/referenz/bad-driburg.svg);
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 5em;
}

#projekt-adlerheim {
    background-image: url(../img/referenz/adlerheim.svg);
}

#projekt-infografiken {
    background-image: url(../img/referenz/infografiken-2018.svg);
}

#projekt-bitcoin {
    background-image: url(../img/referenz/bitcoin.svg);
}

#projekt-mmbbs {
    width: calc( 90vw + 0px);
    background-image: url(../img/referenz/redesign-mmbbs.png);
}

#projekt-pye-performance {
    width: calc( 90vw + 2px);
    background-image: url(../img/referenz/pye-performance.png);
}

#projekt-watcha {
    background-image: url(../img/referenz/watcha.svg);
}

#projekt-sebastianus {
    background-image: url(../img/referenz/st.%20sebastianus%20bruderschaft.svg);
}

#projekt-scribble {
    background-image: url(../img/referenz/scribble.svg);
}




.projekt-article {
    height: auto;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
}



/*-------main bilder--------*/

.main-img-article {
    height: 300px;
    width: 60vw;
    min-width: 356px;
    background: #eee;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border: solid 2px #eee;
}

#main-img-adlerheim {
    background-image: url(../img/referenz/main-img-adlerheim.png);
}

#main-img-infografiken {
    background-image: url(../img/referenz/main-img-infografiken.png);
}

#main-img-bitcoin {
    background-image: url(../img/referenz/main-img-bitcoin.png);
}

#main-img-mmbbs {
    background-image: url(../img/referenz/main-img-mmbbs.png);
}

#main-img-pye-performance {
    background-image: url(../img/referenz/main-img-pye-performance.png);
}

#main-img-watcha {
    background-image: url(../img/referenz/main-img-watcha.png);
}

#main-img-sebastianus {
    background-image: url(../img/referenz/main-img-sebastianus.png);
}





.h-projekt {
    width: calc( 60vw - 20px);
    min-width: 356px;
    height: auto;
    border: solid #19314f 2px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 17px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 1.4em;
    color: #db4545;
    color: #19314f;
    font-family: 'Quicksand-Book';
    line-height: 1.4;
    margin-top: 50px;
}

.p-projekt {
    width: 60vw;
    min-width: 356px;
    height: auto;
    text-align: left;
    margin-top: 50px;
    line-height: 1.4;
}

.h-projekt-umfang {
    width: calc( 60vw - 50px);
    min-width: 306px;
    height: auto;
    border: solid #19314f 1px;
    text-transform: none;
    letter-spacing: 0.1em;
    text-align: left;
    padding-top: 10px;
    padding-bottom: 7px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 1em;
    color: #db4545;
    color: #19314f;
    font-family: 'Quicksand-Book';
    margin-top: 50px;
}

.p-projekt-umfang {
    width: 60vw;
    min-width: 356px;
    height: auto;
    text-align: left;
    margin-top: 30px;
    line-height: 1.4;
    margin-bottom: 100px;
}



.box-more-projekte {
    width: 60vw;
    min-width: 356px;
    height: 35px;
    margin-bottom: 50px;
    margin-top: 50px;
}

.more-projekte-arrow-left {
    float: left;
    width: calc( 50% - 10px);
    height: 100%;
    border: solid 1px #ccc;
    background-image: url(../img/arrows/arrow-left.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
    transition: all 0.5s ease;
}

.more-projekte-arrow-left:hover {
    background-color: #ccc;
    transform: translateX(-15px);
    transition: all 0.5s ease;
    background-image: url(../img/arrows/arrow-left-a.svg);
}

.more-projekte-arrow-right {
    float: right;
    width: calc( 50% - 10px);
    height: 100%;
    border: solid 1px #ccc;
    background-image: url(../img/arrows/arrow-rigth.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
    transition: all 0.5s ease;
}

.more-projekte-arrow-right:hover {
    background-color: #ccc;
    transform: translateX(15px);
    transition: all 0.5s ease;
    background-image: url(../img/arrows/arrow-rigth-a.svg);
}

.nav-more-projekte {
    height: 100%;
    width: calc( 50% - 10px);
}













.wrapper-scribble {
    height: auto;
    width: 60vw;
    padding-left: 20vw;
    padding-right: 20vw;
    display: flex;
    margin-top: 6vw;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.item-scribble {
    height: calc( (60vw/3) - (6vw/3));
    width: calc( (60vw/3) - (6vw/3));
    background: #eee;
    margin-bottom: 3vw;
    border: solid 1px #eee;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.item-scribble:hover {
    transform: scale(1.1);
    transition: all 0.5s ease;
}



#item-scribble-01 {
    background-image: url(../img/scribble/apfel.jpg);
    transition: all 0.5s ease;
}

#item-scribble-02 {
    background-image: url(../img/scribble/frosch.jpg);
    transition: all 0.5s ease;
}

#item-scribble-03 {
    background-image: url(../img/scribble/eye.jpg);
    transition: all 0.5s ease;
}

#item-scribble-04 {
    background-image: url(../img/scribble/halfface.jpg);
    transition: all 0.5s ease;
}

#item-scribble-05 {
    background-image: url(../img/scribble/reno.jpg);
    transition: all 0.5s ease;
}

#item-scribble-06 {
    background-image: url(../img/scribble/naehkaestchen.jpg);
    transition: all 0.5s ease;
}

#item-scribble-07 {
    background-image: url(../img/scribble/geometry.jpg);
    transition: all 0.5s ease;
}

#item-scribble-08 {
    background-image: url(../img/scribble/dead.jpg);
    transition: all 0.5s ease;
}

#item-scribble-09 {
    background-image: url(../img/scribble/ewar.jpg);
    transition: all 0.5s ease;
}

#item-scribble-10 {
    background-image: url(../img/scribble/she.jpg);
    transition: all 0.5s ease;
}

#item-scribble-11 {
    background-image: url(../img/scribble/michel.jpg);
    transition: all 0.5s ease;
}

#item-scribble-12 {
    background-image: url(../img/scribble/scribble1.jpg);
    transition: all 0.5s ease;
}

#item-scribble-13 {
    background-image: url(../img/scribble/lantern.jpg);
    transition: all 0.5s ease;
}

#item-scribble-14 {
    background-image: url(../img/scribble/raupe.jpg);
    transition: all 0.5s ease;
}

#item-scribble-15 {
    background-image: url(../img/scribble/tree.jpg);
    transition: all 0.5s ease;
}

#item-scribble-16 {
    background-image: url(../img/scribble/leiter.jpg);
    transition: all 0.5s ease;
}

#item-scribble-17 {
    background-image: url(../img/scribble/disco.jpg);
    transition: all 0.5s ease;
}

#item-scribble-18 {
    background-image: url(../img/scribble/sunglasses.jpg);
    transition: all 0.5s ease;
}










.impressum-article {
    height: auto;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

.h-impressum {
    width: calc( 60vw - 20px);
    min-width: 356px;
    height: auto;
    border: solid #19314f 2px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 17px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 1.4em;
    color: #db4545;
    color: #19314f;
    font-family: 'Quicksand-Book';
    line-height: 1.4;
    margin-top: 150px;
}

.p-impressum {
    width: 60vw;
    min-width: 356px;
    height: auto;
    text-align: left;
    margin-top: 50px;
    line-height: 1.4;
    margin-bottom: 200px;
}


.link-impressum {
    color: white;
    text-decoration: none;
}


.link-impressum:hover {
    color: #db4545;
}
