/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
    font-size: 100%;
    font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
    line-height: 1.5;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
	content: none;
}
table {
    border-collapse: collapse;
	border-spacing: 0;
}
/* ALLGEMEIN */
:root{
    --c1: #F2F2F2;
}

body {
    font-family: AvertaStdCY-Regular;
    font-size: 1.1em;
    background-color: #050505;
    color: #DDD;
}

a {
    text-decoration: none;
} /* zusätzlich eingefügt */

nav a {
    font-size: 1.2em;
    color: #DDD;
    position:relative;
    text-decoration:none;
    display:inline-block;
}

html.ios .listEntry:hover  {background-color:transparent}

/* ANIMATION */
nav a:after {
    display: block;
    content: '';
    border-bottom: 1px solid var(--c1);
    margin-top: 5px;
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
    transform-origin: 100% 50%;
}

nav a:hover:after {
    transform: scaleX(1);
    transform-origin: 0 50%;
}

/* ANIMATION ENDE */

.active {
    color: var(--c1);
}

/*MOBIL*/

body {
    display: grid;
    grid-template-rows: 555px 1fr 140px;
}

header {
    grid-row-start: 1;
}

main {
    grid-row-start: 2;
    background-color: #050505;
    padding-bottom: 5%;
}

#main-index {
    padding-bottom: 0%;
}

footer {
    grid-row-start: 3;
    background-color: #050505;
}

.mail:active {
    color: #DDD;
}

header {
    display: grid;
    height: 455px;
    grid-template-rows: 1fr 1fr;
    /* background-color: #1E2B33; */
    background-color: #050505;
}

#logo {
    margin: 0 auto;    
}

#logo img{
    height: 360px;
    width: 100%;
}

label[for="check"] {
    display: block;
    padding: 13px 0;
    height: 80px;
    position: relative;
    cursor: pointer;
    text-transform: uppercase;
    text-align: center;
    font-size: 3.0em;
    /* background-color: rgba(0,0,0,0.2); */
    transition: ease-in-out 0.3s;
}

.menu-punkte {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    align-items: center;
    height: 320px;
    font-size: 2em;
}

.menupunkt {
    width: 100%;
    padding: 5px 0;
    height: 45px;
    text-align: center;
}

input#check, #nav-index {
    display: none;
}

#nav-index {
    height: 350px;
    animation-name: fademenuin;
    animation-duration: .2s;
}

@keyframes fademenuin {
    0% {height: 350px; opacity: 0;}
    25% {height: 350px; opacity: 0.25;}
    50% {height: 350px; opacity: 0.5;}
    75% {height: 350px; opacity: 0.75;}
    100% {height: 350px; opacity: 1;}
}

input#check:checked~label[for="check"] {
    color: #DDD;
}

/*show the submenu when input is checked*/
input#check:checked~#nav-index {
    display: block;
    /* background-color: rgba(0,0,0,0.2); */
}

input#check:checked~#logo {
    display: none;
}

#previewbox {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(10, 1fr);
}

.photobox {
    position: relative;
}

.photobox img{
    width: 100%;
    height: 100%;
    z-index: 10;
}

.photobox a {
    display: contents;
}

.middle {
    display: grid;
    position: absolute;
    top: 86%;
    width: 100%;
    text-align: center;
    background-color: rgba(0,0,0,0.4);
}

.text {
    display: grid;
    align-self: center;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "text-h2" "text-p";
}

.text h2 {
    grid-area: text-h2;
    color: #FFF;
    font-size: 4em;
    text-transform: uppercase;
}

.text-p {
    grid-area: text-p;
    color: #DDD;
    font-size: 3.5em;    
}

/* FOOTER - MOBILE */

footer {
    display: grid;
    height: 1400px;
    grid-template-rows: repeat(4, 1fr);
    align-items: center;
    background-color: #050505;
    width: 100%;
    padding-top: 30%;
}

#slogan {
    grid-row-start: 1;
    width: 100%;
    margin-top: 5%;
    text-align: center;
}

#slogan h2 {
    font-size: 3.8em;
    text-align: center;
    opacity: 0.9;
}

#zitat {
    font-size: 2.5em;
    opacity: 0.7;
}

.trenner-hr {
    -webkit-color: #050505;
    width: 95%;
}

#up {
    grid-row-start: 2;
}

.content-foot-over {
    width: 100%;
}

.content-foot {
    grid-row-start: 3;
    margin: 0 auto;
    width: 80%;
}

#down {
    grid-row-start: 4;
}

.box-foot {
    display: grid;
    grid-template-rows: repeat(40% 20% 40%);
}

#boxeins {
    grid-row-start: 1;
    padding-bottom: 5%;
}

#boxzwei {
    grid-row-start: 2;
    padding-bottom: 5%;
}

#boxdrei {
    grid-row-start: 3;
    /* padding-top: 10%; */
}

#kontakt-foot {
    text-transform: uppercase;
    font-size: 2.5em;
    font-family: AvertaStdCY-bold;
}

.mail {
    font-size: 2.5em;
}

.mail a {
    color: #ddd;
}

.mail a:hover {
    color: #F2F2F2;
    opacity: 0.9;
}

.tel {
    font-size: 2.5em;
}

#footer-end {
    display: grid;
    grid-template-rows: 1fr 1fr;
}

#copy {
    font-size: 1em;
    color: #F2F2F2;
    opacity: 0.8;
    text-align: center;
    grid-row-start: 2;
    padding: 5% 0 0 0;
}

#social {
    width: 100%;
    grid-row-start: 1;
    padding: 10px 0 0 0;
}

#socialbox {
    display: grid;
    width: 60%;
    grid-template-columns: repeat(5, 1fr);
    margin: 0 auto;
    text-align: center;
}

.socialicon img {
    width: 80px;
    height: 80px;
    opacity: 0.66;
}

/* ABOUT.HTML - MOBILE */

.textblock {
    width: 80%;
    margin: 10% auto;
    text-align: justify;
}

.about h2 {
    text-transform: uppercase;
    font-size: 2.0em;
    text-align: center;
}

.about {
    margin-bottom: 15px;
    font-size: 1.5em;
}

.portrait-me img {
    width: 100%;
}

/* CONTACT.HTML - MOBILE */

#contact-main {
    height: 100vh;
}

.container {
    width: 100%;
    margin: 0 auto;
}

.cont-innen {
    margin-top: 10%;
}

.contact-data {
    margin-bottom: 15px;
    margin-left: 5%;
}

.contact-data h1 {
    text-transform: uppercase;
    font-size: 2.5em;
}

.anschrift, .kontakt {
    font-size: 2.0em;
    margin-left: 5%;
}

.anschrift:nth-child(4) {
    margin-bottom: 20px;
}

.kontakt img {
    width: 40px;
    height: 40px;
}

.contact-hr {
    margin: 5% 0 0 5%;
    width: 90%;
    color: #F2F2F2;
    /*box-shadow: 3px 2px 5px #000000;*/
}

.anrede {
    margin: 5% 0 0 5%;
    font-size: 2em;
}

#eins {
    width: 50%;
    text-align: end;
    font-size: 2.2em;
    font-family: AvertaStdCY-bold;
    text-transform: uppercase;
}

#zwei {
    width: 50%;
    margin-top: 0;
    text-align: end;
    font-size: 2em;
}

#contact-form {
    display: none;
}

#contact-form {
    text-align: center;
    margin-top: 10%;
}

#contact-form input,
#contact-form textarea {
    color: #DDD;
    width: 95%;
    height: 90px;
    margin: 15px 0;
    padding: 0 10px;
    background-color: #050505;
    border: 2px solid #F2F2F2;
    font-size: 40px;
}

#contact-form textarea {
    height: 400px;
    padding-top: 10px;
    font-family: AvertaStdCY-Regular;
}

#button-box {
    margin: 0 auto;
    width: 50%;
}

#button-box input[type="submit"]:hover {
    background-color: #F2F2F2;
}

/* IMPRESSUM.HTML - MOBILE */

.imp-article h1 {
    text-transform: uppercase;
    font-size: 2em;
}

.imp-article {
    width: 90%;
    margin: 0 auto;
    margin-top: 5%;
}

.imp-section {
    margin: 15px 0;
}

.imp-section h2 {
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 1.5em;
}

/* Fashion.HTML - MOBILE */

.phototext {
    width: 80%;
    padding: 5% 0% 5% 5%;
}

#photo-txtbox p {
    font-size: 2em;
}

#photo-txtbox h2 {
    text-transform: uppercase;
    font-family: AvertaStdCY-Black;
    font-size: 2.5em;
}

#photo-txtbox h1 {
    font-size: 2em;
    text-transform: uppercase;
}

#photo-txtbox a {
    color: #ddd;
    opacity: 0.7;
    text-decoration: none;
}

#photo-txtbox a:hover {
    opacity: 1;
    text-decoration: underline;
}

.heading-hr {
    margin-left: 0;
    color: #F2F2F2;
    width: 80%;
    /*box-shadow: 3px 2px 5px #000000;*/
}

.galerie {
    padding: 2%;
}

.twophoto img {
    width: 100%;
    padding-bottom: 2%;
}

.onephoto img {
    width: 100%;
    padding-bottom: 2%;
}

.twophotovert {
    display: grid;
    grid-template-rows: 1fr 1fr;
    row-gap: 2%;
    padding-bottom: 5.1%;
}

.twophotovert img {
    width: 100%;
}

/* IPAD - TABLET */
@media screen and (min-width: 1001px) and (max-width: 1280px) {

    body {
        display: grid;
        grid-template-rows: 120px 1fr 100px;
    }

    header {
        display: grid;
        height: 120px;
        grid-template-columns: 70% 30%;
        grid-row-start: 1;
        background-color: #050505;
    }

    #check, label[for="check"] {
        display: none;
    }

    #nav-index {
        display: grid;
        width: 100%;
    }

    nav {
        display: grid;
        align-items: center;
        grid-column-start: 1;
    }

    nav ul {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    .menu-punkte {
        font-size: 0.8em;
    }

    .menupunkt {
        height: 25px;
    }

    #logo {
        grid-column-start: 2;
    }

    #logo img {
        width: 210px;
        height: 120px;
    }

    main {
        grid-row-start: 2;
        background-color: #050505;
    }

    footer {
        grid-row-start: 3;
        background-color: #050505;
    }

    #previewbox {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 1fr);
    }

    .photobox {
        position: relative;
    }

    .photobox-img {
        width: 100%;
        height: 100%;
    }

    .middle {
        display: grid;
        top: 86.1%;
        width: 100%;
        z-index: 50;
        text-align: center;
        background-color: rgba(0,0,0,0.4);
    }

    .text {
        display: grid;
        align-self: center;
    }
    
    .text h2 {
        font-size: 2em;
    }
    
    .text-p {
        font-size: 1.5em;
        align-self: end;
    }

    /* FOOTER - TABLET */
    footer {
        display: grid;
        height: 600px;
        width: 100%;
        /*grid-template-columns: 70% 30%;*/
        grid-template-rows: repeat(4, 1fr);
    }

    #slogan {
        grid-row-start: 1;
        width: 100%;
        text-align: center;
    }
    
    #slogan h2 {
        font-size: 2em;
        text-align: center;
    }

    #zitat {
        font-size: 1em;
    }

    .trenner-hr {
        width: 98%;
        color: #F2F2F2;
    }

    #up {
        grid-row-start: 2;
    }

    .content-foot {
        grid-row-start: 3;
        margin: 0;
    }

    #down {
        grid-row-start: 4;
    }

    .box-foot {
        display: grid;
        grid-template-columns: repeat(40% 20% 40%);
        grid-template-rows: 1fr;
        width: 95%;
        margin: 0 auto;
        /* grid-template-rows: unset;*/
    }

    #boxeins {
        grid-column: 1;
        grid-row-start: 1;
    }

    #boxzwei {
        grid-column: 2;
        grid-row-start: 1;
    }

    #boxdrei {
        grid-column: 3;
        grid-row-start: 1;
        padding-left: 35%;
    }

    #kontakt-foot {
        font-size: 1em;
    }

    .mail {
        font-size: 1em;
    }

    .mail a:hover {
        color: #F2F2F2;
        opacity: 0.9;
    }

    .tel {
        font-size: 1em;
    }

    #footer-end {
        display: grid;
        grid-template-columns: 70% 20%;
    }

    #copy {
        grid-column-start: 1;
        font-size: 0.8em;
        grid-row-start: unset;
        padding: 0 0 0 0;
        margin-top: 1%;
    }

    #social {
        grid-column-start: 2;
        padding: 0 0;
    }

    .socialicon img {
        width: 40px;
        height: 40px;
    }

    #socialbox {
        width: 250px;
    }

    /* ABOUT - TABLET */
    #about-main {
        height: 100vh;
    }

    .aboutbox {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 80%;
        margin: 0 auto;
    }

    .portrait-me {
        margin-top: 10%;
    }

    .portrait-me img{
        width: 400px;
        height: 600px;
    }

    .textblock {
        width: 90%;
    }

    .about h2 {
        font-size: 1.5em;
    }

    .about {
        font-size: 0.8em;
    }

    /* CONTACT - TABLET */
    #contact-main {
        height: 100vh;
    }

    .container {
        width: 50%;
    }

    .contact-data {
        font-size: 0.8em;
        margin-left: 2%;
    }

    .anschrift, .kontakt {
        font-size: 1em;
        margin-left: 2%;
    }

    .kontakt img {
        width: 20px;
        height:20px;
    }

    .contact-hr {
        margin: 5% 0 0 2%;
        width: 90%;
        color: #F2F2F2;
        /*box-shadow: 3px 2px 5px #000000;*/
    }

    .anrede {
        margin: 5% 0 0 2%;
        font-size: 1em;
    }

    #eins {
        width: 250px;
        text-align: end;
        font-size: 1.2em;
        font-family: AvertaStdCY-bold;
    }

    #zwei {
        margin-top: 0;
        width: 250px;
        text-align: end;
        font-size: 1em;
    }

    #contact-form {
        display: none;
    }
    
    #contact-form textarea {
        font-family: AvertaStdCY-Regular;        
    }

    #contact-form input,
    #contact-form textarea {
        height: 50px;
        margin: 5px 0;
        font-size: 20px;
    }

    #contact-form textarea {
        height: 300px;
    }

    #button-box input[type="submit"]:hover {
        background-color: #F2F2F2;
    }

    /* IMPRESSUM - TABLET */
    .imp-article {
        width: 80%;
    }

    .imp-article h1 {
        font-size: 1.5em;
    }

    .imp-section h2 {
        font-size: 1.2em;
    }

    /* FASHION - TABLET */
    #fashion-main {
        display: grid;
        grid-template-columns: 20% 80%;
        
    }

    .phototext {
        display: grid;
        width: 100%;
        margin-top: 30%;
    }

    #photo-txtbox h2 {
        font-size: 1em;
    }

    .heading-hr {
        width: 100%;
        /*box-shadow: 3px 2px 5px #000000;*/
    }

    #photo-txtbox p {
        font-size: 0.5em;
    }

    #photo-txtbox h1 {
        font-size: 0.5em;
    }

    .galerie {
        width: 80%;
        padding: 10% 0 0 10%;
    }

    .twophoto {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 1%;
    }

    .twophoto img {
        width: 100%;
    }

    .onephoto img{
        width: 100%;
        padding-bottom: 0;
    }

    .twophotovert {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
        column-gap: 1%;
        padding-bottom: 1%;
    }

    .twophotovert img {
        width: 100%;
    }

    /* SLIDER - TABLET */
    #slider-main {
        display: grid;
        grid-template-columns: 20% 80%;
    }

    #header-slider, #footer-slider {
        display: none;
    }

    #slid-close {
        height: 100px;
        background-color: #050505;
    }

    .close {
        position: absolute;
        right: 32px;
        top: 32px;
        width: 32px;
        height: 32px;
        opacity: 0.3;
      }
      .close:hover {
        opacity: 1;
      }
      .close:before, .close:after {
        position: absolute;
        left: 15px;
        content: ' ';
        height: 33px;
        width: 2px;
        background-color: #ddd;
      }
      .close:before {
        transform: rotate(45deg);
      }
      .close:after {
        transform: rotate(-45deg);
      }

      #slider-text {
        margin-top: 10%;
      }

      #sliderbody {
          overflow: hidden;
      }  

}

/* DESKTOP - SMALL */
@media only screen and (min-width: 1281px) and (max-width: 1440px) {  
    body {
        display: grid;
        grid-template-rows: 120px 1fr 100px;
    }
    
    #check, label[for="check"] {
        display: none;
    }

    header {
        grid-template-columns: 1fr 1fr;
    }

    #nav-index {
        display: grid;
        width: 100%;
        letter-spacing: 0.1em;
        padding-left: 10%;
    }

    nav {
        display: grid;
        align-items: center;
        grid-column-start: 1;
    }

    nav ul {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    .menu-punkte {
        font-size: 0.9em;
    }

    .menupunkt {
        height: 25px;
    }

    #logo {
        grid-column-start: 2;
    }

    #logo img {
        width: 210px;
        height: 120px;
    }

    #main-index {
        height: 100vh;
    }

    main {
        grid-row-start: 2;
        /*background: #B1BFC7;*/
    }

    footer {
        grid-row-start: 3;
    }

    #previewbox {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }

    .photobox-img {
        display: block;
        opacity: 1;
        transition: .5s ease;
        backface-visibility: hidden;
    }

    .middle {
        display: grid;
        transition: .5s ease;
        opacity: 0;        
        width: 100%;
        height: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .text h2 {
        font-size: 1.8em;
    }

    .text-p {
        font-size: 1.3em;
    }

    .photobox:hover .photobox-img {
        opacity: 0.5;
    }

    .photobox:hover .middle {
        opacity: 1;
    }
  
    /* FOOTER - DESKTOP */
    footer {
        display: grid;
        height: 500px;
        grid-template-rows: repeat(4, 1fr);
    }

    #slogan {
        grid-row-start: 1;
        margin-top: 2%;
    }

    #slogan h2 {
        font-size: 2em;
    }

    #zitat {
        font-size: 1.2em;
    }

    .trenner-hr {
        width: 99%;
        color: #DDD;
    }

    #up {
        grid-row-start: 2;
    }

    .content-foot {
        grid-row-start: 3;
        margin: 0;
    }

    .box-foot {
        display: grid;
        /* grid-template-columns: repeat(40% 20% 40%); */
        grid-template-rows: 1fr;
        width: 80%;
        margin: 0 auto;
    }

    #boxeins {
        /* grid-column: 1; */
        grid-row-start: 1;
    }

    #boxzwei {
        /* grid-column: 2; */
        grid-row-start: 1;
        padding-left: 5%;
    }

    #boxdrei {
        /* grid-column: 3; */
        grid-row-start: 1;
        padding-left: 38%;
    }

    #kontakt-foot {
        font-size: 1em;
    }

    .mail a:hover {
        color: #F2F2F2;
        opacity: 0.9;
    }

    .mail {
        font-size: 1em;
    }

    .tel {
        font-size: 1em;
    }

    #down {
        grid-row-start: 4;
    }

    #copy {
        grid-row-start: 1;
        text-align: start;
        padding: 0 0 0 10%;
        margin-top: 1%;
    }

    #social {
        grid-column-start: 2;
    }

    #socialbox {
        width: 270px;
    }

    .socialicon img {
        width: 40px;
        height: 40px;
        opacity: 0.66;
    }

    .socialicon img:hover {
        transition: ease-in-out 0.1s;
        opacity: 1;
    }

    /* ABOUT - DESKTOP-SMALL */
    #about-main {
        width: 100%;
    }

    .aboutbox {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .portrait-me img {
        width: 600px;
        margin: 10% 0 0 10%;
    }

    .textpolster {
        padding: 0 10% 0 10%;
    }

    .textblock {
        width: 100%;                       
    }

    .about h2 {
        font-size: 1.5em;
    }

    .about {
        font-size: 1.3em;
        
    }

    /* CONTACT - DEKSTOP */
    .container {
        width: 60%;
    }

    .cont-innen {
        font-size: 0.8em;
        width: 65%;
        margin: 10% auto;
    }

    .contact-data {
        margin-left: 2%;
    }

    .anschrift,
    .kontakt {
        margin-left: 2%;
        font-size: 1.5em;
    }

    .kontakt img {
        width: 20px;
        height: 20px;
    }

    .contact-hr {
        margin: 5% 0 0 2%;
        width: 100%;
        color: #F2F2F2;
        box-shadow: 3px 2px 5px #000000;
    }

    .anrede {
        margin: 5% 0 0 2%;
        font-size: 1.5em;
    }

    #eins {
        width: 250px;
        text-align: end;
        font-size: 1.7em;
        font-family: AvertaStdCY-bold;
    }

    #zwei {
        margin-top: 0;
        width: 250px;
        text-align: end;
        font-size: 1.5em;
    }

    #contact-form {
        display: none;
    }

    #contact-form input,
    #contact-form textarea {
        margin: 5px 0;
        height: 50px;
        font-size: 1.5em;
    }

    #contact-form textarea {
        height: 300px;
        font-family: AvertaStdCY-Regular;        
    }

    #button-box input[type="submit"]:hover {
        background-color: #F2F2F2;
    }

    /* IMPRESSUM - DESKTOP */
    .imp-article {
        display: grid;
        width: 50%;
    }

    /* FASHION - DESKTOP */
    #fashion-main {
        display: grid;
        grid-template-columns: 20% 80%;
    }

    .phototext {
        display: grid;
        width: 100%;
        padding-top: 40%;
    }

    .heading-hr {
        width: 100%;
        box-shadow: 3px 2px 5px #000000;
    }

    #photo-txtbox h2 {
        font-size: 1.5em;
    }

    #photo-txtbox p {
        font-size: 0.9em;
    }

    #photo-txtbox h1 {
        font-size: 1em;
    }

    .galerie {
        width: 80%;
        padding: 10% 0 0 10%;
    }

    .twophoto {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 1%;
    }

    .onephoto img {
        padding-bottom: 0.5%;
    }

    .twophotovert {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
        column-gap: 1%;
        padding-bottom: 1%;
    }

    .twophotovert img {
        width: 100%;
    }

    /* SLIDER - DESKTOP, SMALL */
    #slider-main {
        display: grid;
        grid-template-columns: 20% 80%;
    }

    #header-slider, #footer-slider {
        display: none;
    }

    #slid-close {
        height: 100px;
        background-color: #050505;
    }

    .close {
        position: absolute;
        right: 32px;
        top: 32px;
        width: 32px;
        height: 32px;
        opacity: 0.3;
      }
      .close:hover {
        opacity: 1;
      }
      .close:before, .close:after {
        position: absolute;
        left: 15px;
        content: ' ';
        height: 33px;
        width: 2px;
        background-color: #ddd;
      }
      .close:before {
        transform: rotate(45deg);
      }
      .close:after {
        transform: rotate(-45deg);
      }

      #slider-text {
          padding: 10%;
      }

      #sliderbody {
        overflow: hidden;
    }

}

/* DESKTOP - SMALL - EXTRA, ABOUT */
@media only screen and (min-width: 1441px) and (max-width: 2100px) {
    .aboutbox {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 90%;
        margin: 0 auto;
    }
}

/* DESKTOP - BIG - EXTRA, ABOUT */
@media only screen and (min-width: 2100px) {
    .aboutbox {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 60%;
        margin: 0 auto;
    }
}

/* DESKTOP */
@media only screen and (min-width: 1441px) {
    body {
        display: grid;
        grid-template-rows: 120px 1fr 100px;
    }
    
    #check, label[for="check"] {
        display: none;
    }

    header {
        grid-template-columns: 1fr 1fr;
    }

    #nav-index {
        display: grid;
        width: 100%;
        letter-spacing: 0.1em;
        padding-left: 20%;
    }

    nav {
        display: grid;
        align-items: center;
        grid-column-start: 1;
    }

    nav ul {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    .menu-punkte {
        font-size: 0.9em;
    }

    .menupunkt {
        height: 25px;
    }

    #logo {
        grid-column-start: 2;
    }

    #logo img {
        width: 210px;
        height: 120px;
    }

    main {
        grid-row-start: 2;
        padding: 50px 0;
    }

    footer {
        grid-row-start: 3;
    }

    #previewbox {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }

    .photobox-img {
        opacity: 1;
        display: block;
        transition: .5s ease;
        backface-visibility: hidden;
    }

    .middle {
        display: grid;
        transition: .5s ease;
        opacity: 0;        
        width: 100%;
        height: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .text {
        height: 10%;
    }

    .text h2 {
        font-size: 2em;
    }

    .text-p {
        font-size: 1.5em;
    }

    .zitat h2 {
        font-size: 1.5em;
        /*transform: rotate(-90deg);*/
    }

    .zitat-above {
        margin: auto;
        width: 80%;
        padding-top: 10%;
    }

    .zitat-below {
        margin: auto;
        width: 30%;
        
    }

    .zitat {
        margin: auto;
        width: 50%;
        letter-spacing: 0.2em;
    }

    .photobox:hover .photobox-img {
        opacity: 0.5;
    }

    .photobox:hover .middle {
        opacity: 1;
    }

    button {
        box-shadow: 0 0 5px cyan,
        0 0 25px cyan;
        background-color: greenyellow;
        border-color: white;
        width: 100%;
        height: 80px;
        border-radius: 50px;
    }
    button:hover {
        box-shadow: 0 0 5px cyan,
        0 0 25px cyan, 0 0 50px cyan,
        0 0 100px cyan, 0 0 200px cyan;
    }

    /* FOOTER - DESKTOP */
    footer {
        display: grid;
        height: 500px;
        grid-template-rows: repeat(4, 1fr);
        padding-top: 10%;
        width: 80%;
        margin: auto;
    }

    #slogan {
        grid-row-start: 1;
        margin-top: 1%;
    }

    .trenner-hr {
        width: 99%;
        color: #DDD;
        opacity: 30%;
    }

    #up {
        grid-row-start: 2;
    }

    .content-foot {
        grid-row-start: 3;
        margin: 0;
    }

    #down {
        grid-row-start: 4;
    }

    .box-foot {
        display: grid;
        grid-template-columns: repeat(40% 20% 40%);
        grid-template-rows: 1fr;
        width: 90%;
        margin: 0 auto;
        grid-template-columns: repeat(3, 1fr);
    }

    #boxeins {
        grid-row-start: 1;
        grid-column-start: 1;
        
    }

    #boxzwei {
        grid-row-start: 1;
        /*padding-left: 34%;*/
        grid-column-start: 2;
    }

    #boxdrei {
        grid-row-start: 1;
        /*padding-left: 70%;*/
        grid-column-start: 3;
    }

    #slogan h2 {
        font-size: 2em;
    }

    #zitat {
        font-size: 1.2em;
    }

    #kontakt-foot {
        font-size: 1em;
    }

    .mail a:hover {
        color: #e0b828;
        opacity: 0.9;
    }

    .mail {
        font-size: 1em;
    }

    .tel {
        font-size: 1em;
    }

    #copy {
        grid-row-start: 1;
        text-align: start;
        padding: 0 0 0 10%;
        margin-top: 1%;
    }

    #social {
        grid-column-start: 2;
    }

    #socialbox {
        width: 270px;
    }

    .socialicon img {
        width: 40px;
        height: 40px;
        opacity: 0.66;
    }

    .socialicon img:hover {
        transition: ease-in-out 0.1s;
        opacity: 1;
    }

    /* ABOUT.HTML */
    #about-main {
        width: 100%;
    }

    .portrait-me img {
        width: 600px;
        margin-top: 10%;
    }

    .textblock {
        width: 100%;                       
    }

    .about h2 {
        font-size: 1.5em;
    }

    .about {
        font-size: 1.3em;
    }

    /* CONTACT - DEKSTOP */
    .container {
        width: 50%;
    }

    .cont-innen {
        font-size: 0.8em;
        width: 50%;
        margin: 10% auto;
    }

    .contact-data {
        margin-left: 2%;
    }

    .anschrift,
    .kontakt {
        margin-left: 2%;
        font-size: 1.5em;
    }

    .kontakt img {
        width: 20px;
        height: 20px;
    }

    .contact-hr {
        margin: 5% 0 0 2%;
        width: 90%;
        color: #ddd;
        box-shadow: 3px 2px 5px #000000;
    }

    .anrede {
        margin: 5% 0 0 2%;
        font-size: 1.5em;
    }

    #eins {
        font-size: 1.7em;
        font-family: AvertaStdCY-bold;
        width: 250px;
        text-align: end;
    }

    #zwei {
        margin-top: 0;
        font-size: 1.5em;
        width: 250px;
        text-align: end;
    }

    #contact-form {
        display: none;
    }

    #contact-form input,
    #contact-form textarea {
        margin: 5px 0;
        height: 50px;
        font-size: 1.5em;
    }

    #contact-form textarea {
        height: 300px;
        font-family: AvertaStdCY-Regular;        
    }

    #button-box input[type="submit"]:hover {
        background-color: #48687A;
    }

    /* IMPRESSUM - DESKTOP */
    .imp-article {
        display: grid;
        width: 50%;
    }

    /* FASHION - DESKTOP */
    #fashion-main {
        display: grid;
        grid-template-columns: 20% 80%;
    }

    .phototext {
        display: grid;
        width: 100%;
        padding: 20% 0 0 10%;
    }

    .heading-hr {
        width: 80%;
        box-shadow: 3px 2px 5px #000000;
    }

    #photo-txtbox p {
        font-size: 1.1em;
    }

    #photo-txtbox h1 {
        font-size: 1.1em;
        text-transform: uppercase;
    }

    .galerie {
        width: 70%;
        padding: 5% 0 0 10%;
    }

    .twophoto {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 1%;
    }

    .twophoto img {
        width: 100%;
    }

    .onephoto img{
        width: 100%;
        padding-bottom: 0.5%;
    }

    .twophotovert {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
        column-gap: 1%;
        padding-bottom: 1%;
    }

    .twophotovert img {
        width: 100%;
    }

    








    

    










   


















}

