/*VARIABLEN*/
:root{
    --global-color-hintergrund: #f5dfbd;
    --global-color-rot: #651407;
    --global-color-Schrift: #300101;
    --global-box-Schrift-T: #e4cfaf; 
    --global-box-Schrift-LK: #ffe8c4;
    --global-box-Schrift-S: #fff5e4; 
    --global-color-shadow: rgba(48, 1, 1, 0.5);
    --global-Inhaltsbreite_relativ: 80vw;
    --global-Inhaltsbreite_absolut: 1750px;

}
@font-face{
    font-family: Barlow-SemiCondensed-Regular-Text;
    src: url(Fonts/BarlowSemiCondensed-Regular.ttf);
}
@font-face{
    font-family: Barlow-SemiCondensed-Bold-Text;
    src: url(Fonts/BarlowSemiCondensed-Bold.ttf);
}
@font-face{
    font-family: Barlow-SemiCondensed-Bolditalic-Text;
    src: url(Fonts/BarlowSemiCondensed-BoldItalic.ttf);
}
@font-face{
    font-family: Barlow-SemiCondensed-Italic-Text;
    src: url(Fonts/BarlowSemiCondensed-Italic.ttf);
}
@font-face{
    font-family: GreatVibes-Regular-Headline;
    src: url(Fonts/GreatVibes-Regular.ttf);
}

/*ALLGEMEINE INFOS & VORGABEN + HINTERGRUND*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
body{
    background-image: url(img/Hintergrundbild.png); 
    background-color: var(--global-color-hintergrund);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow-x: hidden;
}

section{
    padding: 13vh 0;
}
span.hervorgehoben {
    font-family: Barlow-SemiCondensed-Bold-Text;
    color: var(--global-color-Schrift);
}

/*HEADER*/
header{
    width: 100%;
    height: 5.5rem;
    position: sticky;
    top: 0;
    z-index: 10;
    background-image: url(img/Hintergrundbild.png);
    background-color: var(--global-color-hintergrund);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    transition: box-shadow 0.5s ease;
}
header.shadow{
    box-shadow: var(--global-color-shadow) 0px 5px 20px;
}
.InhaltHeader{
    width: var(--global-Inhaltsbreite_relativ);
    max-width: var(--global-Inhaltsbreite_absolut);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;    
    margin: 0;
    /*border: 2px solid var(--global-color-rot);*/
}
header img{
    height: 5.5rem;
    max-height: 5.5rem;
    /*border: 1px solid green;*/
    margin: 0;
}


/*Buttons*/
/*Buttons allgemeine eigenschaften*/
.Button-rot, .Button-transp, .Button-hell{
    border: 2px solid var(--global-color-rot);
    border-radius: 3em;
    padding: 0.5em 1.75em;
    margin: 0;
    font-family: Barlow-SemiCondensed-Bold-Text;
    text-align: center;
    font-size: 1.1rem;
}
.Button-rot{
    background-color: var(--global-color-rot);
    color: var(--global-color-hintergrund);
    position: relative;
}
.Button-transp{
    color: var(--global-color-rot);
    position: relative;
    transition: 1s background-color 0.5s;
}
.Button-hell{
    border: 2px solid var(--global-color-hintergrund);
    background-color: var(--global-color-hintergrund);
    position: relative;
    color: var(--global-color-rot);
}

/*je 2 Hintergrundelemente fürs Hovern erstellt*/
.Button-rot::after, .Button-transp::after, .Button-hell::after, .Button-rot::before, .Button-transp::before, .Button-hell::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    border-radius: inherit;
    border: inherit;
    border-color: #84412e;
    background-color: #84412e;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0.9);
    opacity: 0;   
}
/*extra Farbe für Hintergrundelemente*/
.Button-transp::after, .Button-hell::after{
    background-color: inherit;
}
.Button-hell::before{
    border-color: inherit;
}
.Button-hell::after{
    background-color: var(--global-box-Schrift-T);
    border-color: var(--global-box-Schrift-T);
}
.Button-rot::before, .Button-transp::before, .Button-hell::before{
    background-color: inherit;
}
/*Bewegung Hintergrundelement 1 beim Hovern*/
.Button-rot:hover::after, .Button-transp:hover::after, .Button-hell:hover::after{
    transform: translateY(-50%) translateX(-50%) scale(1) rotate(-7deg);
    transform-origin: 10% 50%;
    opacity: 1;
}

/*Bewegung Hintergrundelement 2 beim Hovern*/
.Button-rot:hover::before, .Button-transp:hover::before, .Button-hell:hover::before{
    transform: translateY(-50%) translateX(-50%) scale(1) rotate(-14deg);
    transform-origin: 10% 50%;
    opacity: 0.5;
}
.Button-transp:hover{
    background-color: var(--global-color-hintergrund);
    transition: 0s background-color 0s;
}


header .buttonKlein{
    display: none;
}
header .ButtonContainer{
    display: none;
    width: 100%;
    height: 5rem;
    justify-content: space-between;
}
header .ButtonContainer a{
    margin: 0;
    width: auto;
    padding: 0.5em 1.75em;
}
.Button-groß:hover::before, .buttonGroß:hover::before{
    transform: translateY(-50%) translateX(-50%) scale(1) rotate(-6deg);
}
.Button-groß:hover::after, .buttonGroß:hover::after{
    transform: translateY(-50%) translateX(-50%) scale(1) rotate(-3deg);
}


/*START*/
/*zweiteiliger Abschnitt*/
#START{
    width: var(--global-Inhaltsbreite_relativ);
    max-width: var(--global-Inhaltsbreite_absolut);
    display: flex;
    justify-content: center;
    align-items: center;
        /*flex-direction: column-reverse;*/ /*sorgt dafür, dass das Bild in mobiler Version über der Schrift steht*/
}
#START h2{
    color: var(--global-color-rot);
}
#START p{
    color: var(--global-color-Schrift);
    margin-bottom: 2rem;
}
#START .TeilBildschirm:nth-child(2){
    align-items: center;
    padding-left: 5em;
}
.TeilBildschirm{
    width: 50%;
    max-width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    /*border: 2px solid var(--global-color-rot);*/
}
.TeilBildschirm img{
    height: 35rem;
    width: 35rem;
    /*border: 2px solid var(--global-color-rot);*/
}
.TeilBildschirm h2{
    margin-bottom: 0.5rem;
}
h2{
    font-family: Arial, Helvetica, sans-serif;
    font-family: GreatVibes-Regular-Headline;
    color: var(--global-color-Schrift); 
    font-size: 3rem;
    font-weight: normal;
    line-height: 1;
    margin-bottom: 7rem;
}
p{
    font-family: Arial, Helvetica, sans-serif;
    font-family: Barlow-SemiCondensed-Regular-Text;
    font-size: 1.2rem;
    color: var(--global-color-Schrift);
    line-height: 1.25;
    /*border: 2px solid var(--global-color-rot);*/
}
.ButtonContainer{
    display: flex;
    align-items: center;
    font-size: 1em;
}
.ButtonContainer a{
    width: 7.5em;
    padding: 0.3em 0.6em;
    margin-left: 1.5rem;
}

/*ANGEBOT*/
#ANGEBOT{
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    background-image: url(img/Hintergrundbild_Angebote.png); 
    background-color: var(--global-color-hintergrund);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    align-items: center;
    flex-direction: column;
    /*border: 2px solid var(--global-color-Schrift);*/

    }
#ANGEBOT h2{
    color: var(--global-color-hintergrund);
    margin-bottom: 1rem;
    /*border: 2px solid var(--global-color-hintergrund);*/
}
.Einleitung_Angebot{
    width: 80%;
}
.Einleitung_Angebot .Infotext{
    width: 100%;
}
.Einleitung_Angebot .Headline{
    text-align: left;
}
#ANGEBOT .Erstkontakt{
    font-size: 1.2rem;
}
.Unterueberschrift{
    margin-top: 7rem;
    margin-bottom: 1rem;    
    text-align: center;
}
#ANGEBOT h3{
    color: var(--global-color-rot);
}
.Vorteile_Liste p{
    color: var(--global-color-rot);
    position: relative;
    margin-left: 3rem;
    margin-bottom: 1.5rem;    
    font-size: 1.5rem;
}
.Vorteile_Liste p::before{
    content: "";
    background-image: url(img/Haken.png);
    height: 1.75rem;
    width: 1.75rem;
    position: absolute;
    top: -0.2rem;
    left: -2.25rem;
    background-repeat: no-repeat;
    background-size: cover;
}
.Infotext{
    color: var(--global-color-hintergrund);
    width: 100%;
    text-align: left;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    width: 60%;
    max-width: var(--global-Inhaltsbreite_absolut);
}
#ANGEBOT .Infotextzwei{
    padding: 0;
    margin-top: 4rem;
}
#ANGEBOT .Zusatz{
    color: var(--global-color-hintergrund);
    width: calc(var(--global-Inhaltsbreite_relativ) / 2 + 5em);
    max-width: calc(var(--global-Inhaltsbreite_relativ) / 2 + 5em);
    text-align: left;
    font-size: 1.25rem;
    margin-top: 0.2rem;
}
/*.SlideZwei{
    width: var(--global-Inhaltsbreite_relativ);
    max-width: var(--global-Inhaltsbreite_absolut);
    display: flex;
    flex-direction: column;
    align-items: center;
    }*/
h3{
    font-family: Arial, Helvetica, sans-serif;
    font-family: Barlow-SemiCondensed-Bold-Text; 
    font-size: 3rem;
    font-weight: normal;
    line-height: 1;
    margin-bottom: 0.5em;
    text-transform: uppercase;
    text-shadow: 3px 3px 4px var(--global-color-shadow);
    /*border: 2px solid var(--global-color-rot);*/
}
.Preis{
    font-family: Barlow-SemiCondensed-Bold-Text;
}
details{
    margin: 0.3rem;
}
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}
summary{
    background-color: var(--global-color-hintergrund);
    padding: 1em;
    border-radius: 1.5em;
    position: relative;
    z-index: 5;
    width: calc(var(--global-Inhaltsbreite_relativ) / 2 + 10em);
    max-width: calc(var(--global-Inhaltsbreite_relativ) / 2 + 10em);
    flex-direction: column;
    overflow: hidden;
    justify-content: center;
}
summary h3{
    font-size: 1.7rem;
    font-weight: normal;
    line-height: 1;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}
.aufklapp::before{
    content: "";
    width: 1vw;
    height: 3px;
    background-color: var(--global-color-rot);
    transform: translateY(-250%) rotate(-45deg);
    transform-origin: 0% 100%;
    position: absolute;  
    margin-left: calc(var(--global-Inhaltsbreite_relativ) / 2 + 7.5em);
}
.aufklapp::after{
    content: "";
    width: 1vw;
    height: 3px;
    background-color: var(--global-color-rot);
    transform: translateY(-150%) rotate(225deg);
    transform-origin: 0% 0%;
    position: absolute;
    margin-left: calc(var(--global-Inhaltsbreite_relativ) / 2 + 7.5em);
}
.Aufgeklappt{
    background-color: var(--global-color-hintergrund);
    opacity: 0.9;
    padding: 1em;
    margin-bottom: -3rem;
    border-radius: 1.5em;
    position: relative;
    z-index: 4;
    top: -3rem;
    width: calc(var(--global-Inhaltsbreite_relativ) / 2 + 10em);
    max-width: calc(var(--global-Inhaltsbreite_relativ) / 2 + 10em);
    align-items: left;
    flex-direction: column;
    box-shadow: var(--global-color-shadow) -10px 10px 20px;
}
/*.Angebote{
    position: absolute;
    height: 100%;
    width: calc(var(--global-Inhaltsbreite_relativ) / 3 + 3em);
    max-width: calc(var(--global-Inhaltsbreite_absolut) / 3 + 3em);
    overflow: hidden;
    display: flex;
    align-items: left;
    flex-direction: column;
    border-radius: 1.5em;
    padding: 2em;
    padding-right: 4em;
    font-family: Barlow-SemiCondensed-Bold-Text;
    color: var(--global-color-hintergrund);
    transition: transform 1.5s ease;
    z-index: 1;
    box-shadow: var(--global-color-shadow) -10px 10px 20px;
    /*border: 2px solid greenyellow;
}
.Angebote p {    
    font-size: 1.5rem;
}
.Angebote:nth-child(3){
    padding-right: 3em;
}
.Angebot_T{
    background-color: var(--global-box-Schrift-T);
    color: var(--global-box-Schrift-T);    
}
.Angebot_LK{
    transform: translateX(calc(100% - 3em));
    background-color: var(--global-box-Schrift-LK);
}
.Angebot_S{
    transform: translateX(calc(200% - 6em));
    background-color: var(--global-box-Schrift-S);
    color: var(--global-box-Schrift-S);
}*/
.Vorteile_Liste{
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: left;
    margin: 0.5rem 0;
    margin-top: 4rem;
    /*border: 2px solid var(--global-color-hintergrund);*/
}
.Vorteile_Liste a{
    width: 25%;
    font-size: 1.2rem;
}
.Angebots_Buttons{
    display: flex;
    position: relative;
    z-index: 2;
}
/*.Angebots_Buttons a {
    font-size: 1.2rem;
}*/
.Button-hell.Button-klein{
    display: none;
}
.Angebote:hover{
    scale: 1.05;
    padding: 2em;
    z-index: 9;
}


/*BÜCHER*/
#Buch_Eins{
    width: var(--global-Inhaltsbreite_relativ);
    max-width: var(--global-Inhaltsbreite_absolut);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /*border: 2px solid var(--global-color-Schrift);*/
}
h4{
    font-family: Arial, Helvetica, sans-serif;
    color: var(--global-color-rot);
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-family: Barlow-SemiCondensed-Regular-Text;
    text-align: center;
}
h5{
    font-family: Arial, Helvetica, sans-serif;
    font-family: Barlow-SemiCondensed-Bold-Text;
    color: var(--global-color-Schrift);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    text-align: center;
}
.Buch p{
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 1rem;
}
/*Slide 3 - Gesamter Abschnitt ohne Headline*/
.BuchXdrei{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    /*border: 2px solid var(--global-color-rot);*/
}
.BuchXdrei .Button-transp {
    font-size: 1rem;
}
/*Slide 3 - Box mit den Bildern zu den 3 Büchern*/
.Buch{
    width: 32%;
    max-width: 32%;
    height: auto;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    position: relative;
    /*border: 2px solid var(--global-color-Schrift);*/
}
.Button-schief{
    border: 3px solid var(--global-color-hintergrund);
    border-radius: 0.7em;
    padding: 0.5em 1rem;
    width: 11rem;
    font-family: Barlow-SemiCondensed-Bold-Text;
    font-size: 1.25rem;
    text-transform: uppercase;
    text-align: center;
    background-color: var(--global-color-rot);
    color: var(--global-color-hintergrund);
    z-index: 5;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(calc(-50% - 5rem)) translateY(-50%) rotate(-10deg) ;
    box-shadow: 0.15em 0.15em 0.25em var(--global-color-shadow);    
}
.Cover_B3{
    width: auto;
    height: 22rem;
    display: flex;
    overflow: hidden;
    z-index: 1;
    box-shadow: 1em 1em 1.5em var(--global-color-shadow);    

}
/*Slide 3 - Box mit dem Text + Buttons zu den 3 Büchern*/

/*STÖBERN*/
#Stoebern{
    width: var(--global-Inhaltsbreite_relativ);
    max-width: var(--global-Inhaltsbreite_absolut);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /*border: 2px solid var(--global-color-Schrift);*/
}
.Buch_Auswahl{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    margin-bottom: 7rem;
}
.Buch_Auswahl div{
    height: 25rem;
    width: 15rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.Stoeber_Cover{
    height: 22rem;
    width: calc(22rem * 0.625);
    z-index: 1;
    box-shadow: 1em 1em 1.5em var(--global-color-shadow);
    transition: transform 1s ease, box-shadow 500ms ease, scale 500ms ease ;
}
.Stoeber_Cover img{
    object-fit: cover;
    height: 100%;
    width: 100%;
    /*border: 2px solid var(--global-color-rot);*/
}
.Stoeber_Cover:hover{
    z-index: 10;
    scale: 1.05;
    box-shadow: 1em 1em 7em var(--global-color-shadow);
}
.Button_Stoebern{
    margin-top: 2rem;
}
/*ENDE*/
#Ende{
    width: var(--global-Inhaltsbreite_relativ);
    max-width: var(--global-Inhaltsbreite_absolut);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 10rem;
    margin-top: 10rem;
    /*border: 2px solid var(--global-color-Schrift);*/
}
#Ende h2{
    margin-bottom: 4rem;
}
.Text_Ende{
    text-align: center;
}
/*FOOTER*/
footer{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-image: url(img/Hintergrundbild_About_eins.png); 
    background-color: var(--global-color-hintergrund);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    /*border: 2px solid var(--global-color-Schrift);*/
}
.InhaltFooter{
    width: var(--global-Inhaltsbreite_relativ);
    max-width: var(--global-Inhaltsbreite_absolut);
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 10rem;
    margin-top: 10rem;
    /*border: 2px solid var(--global-color-rot);*/
}
.Link_Text{
    display: flex;
    margin-bottom: 2.5em;    
    /*border: 2px solid var(--global-color-hintergrund);*/
}
.Link_Text a{
    font-family: Arial, Helvetica, sans-serif;
    font-family: Barlow-SemiCondensed-Regular-Text;
    color: var(--global-color-hintergrund);
    font-size: 1.5rem;
    text-align: left;
    justify-content: center;
    display: flex;
    margin-right: 1.5em;
    /*border: 2px solid var(--global-color-hintergrund);*/
}
/*.Icons_Footer{
    border: 2px solid var(--global-color-hintergrund);
}*/
.Icons_Footer a{
    /*background-color: var(--global-color-rot);*/
    margin-right: 2.5em;
    /*border: 3px solid var(--global-color-rot);
    border-radius: 0.75em; */
}
.Icon_Social{
    height: 2.2rem;
    /*border: 2px solid var(--global-color-hintergrund);*/
}



/*FÜRS HANDY*/
@media (max-width: 1570px) {
    /*Meine Bücher*/
    h4 {
        font-size: 1.5rem;
    }
    h5 {
        font-size: 1.25rem;
    }
    .Buch p {
        font-size: 1rem;
    }
    /*ANGEBOTE*/
    .Einleitung_Angebot .Infotext{
    width: 100%;
    }
}
@media (max-width: 1450px) {
    /*ANGEBOTE*/
    .SlideZwei {    
        height: 40rem;
    }
    .Angebote{
        padding: 1.5em;
        padding-right: 3.75em;
    }
    #ANGEBOT {
        padding-top: 0;
    }
    /*#ANGEBOT h2 {
        margin: 4rem 0;
        width: 80%;
    }*/
    #ANGEBOT h2{
        margin-top: 7rem;
        width: 100%;
        line-height: 1.15;
    }
    #ANGEBOT .Unterueberschrift{
        width: 80%;
    }
    #ANGEBOT p {    
        font-size: 1.25rem;
    }
    #ANGEBOT .Zusatz{
        font-size: 1.25rem;
    }
    .Button-rot.Button-groß{
        display: none;
    }
    .Button-rot.Button-klein{
        display: flex;
    }
    #ANGEBOT h3 {    
        font-size: 1.5rem;
    }
    .Vorteile_Liste a{
        padding: 0.5em 1.25em;
    }
    /*Meine Bücher*/
    h4 {
        font-size: 1.4rem;
    }
    h5 {
        font-size: 1.15rem;
    }
    .Button-schief {
        font-size: 1.15rem;
        width: 10rem;
    }
    .Cover_B3 {
        height: 23rem;
    }
    .BuchXdrei .Button-transp {
        font-size: 0.9rem;
    }
} 
@media (max-width: 1270px) {
    /*START*/
    .TeilBildschirm img{
        height: 30rem;
        width: 30rem;
    }
    .TeilBildschirm h2{
        font-size: 2.5rem;
    }
    .TeilBildschirm p{
        font-size: 1rem;
    }
    #START p{
        margin-bottom: 1.75rem;
    }
    .ButtonContainer a{
        font-size: 1rem;
        width: 7.5em;
        padding: 0.3em 0.6em;
        margin-left: 1.5rem;
    }
    /*ANGEBOTE*/
    #ANGEBOT p{    
        font-size: 1.25rem;
    }
    #ANGEBOT .Zusatz{
        font-size: 1.25rem;
    }
    #ANGEBOT h3 {    
        font-size: 1.35rem;
    }
    .Button-rot.Button-groß{
        display: none;
    }
    .Button-rot.Button-klein{
        display: flex;
    }
    .aufklapp::before{
        width: 0.8rem;
    }
    .aufklapp::after{
        width: 0.8rem;
    }
    #ANGEBOT .Infotextzwei{
        width: 70%;
    }
    .Vorteile_Liste a{
        width: 30%;
    }
    /*Meine Bücher*/
    h4 {
        font-size: 1.15rem;
    }
    h5 {
        font-size: 1.1rem;
    }
    .Button-schief {
        font-size: 1rem;
        padding: 0.5em 0.5rem;
        width: 9rem;
        transform: translateX(calc(-50% - 5rem))  translateY(-30%) rotate(-10deg) ;
    }
    .Cover_B3 {
        height: 18rem;
    }
    .BuchXdrei .Button-transp {
        font-size: 0.8rem;
    }
    .Buch p {
        font-size: 0.8rem;
    } 
    /*STÖBERN*/   
    .Buch_Auswahl div{
        height: 20rem;
        width: 13rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .Stoeber_Cover{
        height: 18rem;
        width: calc(18rem * 0.625);
    }
}
@media (max-width: 1080px) {
    /*Header*/    
    .InhaltHeader{
        width: 90vw;
        max-width: var(--global-Inhaltsbreite_absolut);
    }
    header .buttonGroß{
        display: none;
    }
    header .buttonKlein{
        display: flex;
    }
    /*START*/
    .TeilBildschirm{
        max-width: 100%;
        width: 100%;
    }
    .TeilBildschirm img{
        width: 25rem;
        height: 25rem;
    }
    #START{
        flex-direction: column-reverse;
        padding: 0;
        margin-bottom: 5.5rem;
    }
    #START .ButtonContainer {
        padding: 0;
    }
    #START .ButtonContainer a{
        font-size: 1rem;
        margin-left: 1rem;
    }
    #START .ButtonContainer a:nth-child(1){
        margin-right: 4vw;
    }
    #START .TeilBildschirm:nth-child(2){
        padding: 0;
    }
    /*ANGEBOTE*/
    #ANGEBOT{
        width: 100%;
        overflow-x: hidden;
    }
    .SlideZwei{
        position: relative;
        height: 27rem;
        width: var(--global-Inhaltsbreite_relativ);
        max-width: 80%;
    }
    .Angebote{
        position: absolute;
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        transform: translateX(190%);
        padding: 2rem;
        padding-right: 10rem;
    }
    #ANGEBOT p {    
        font-size: 1.25rem;
    }
    #ANGEBOT .Zusatz{
        font-size: 1.25rem;
    }
    #ANGEBOT h3 {    
        font-size: 1.2rem;
        width: 95%;
    }
    .Angebote.active{
        transform: translateX(0%);        
    }
    .Angebote.preview{
        transform: translateX(80%);
    }
    .Angebote:hover{
        scale: 1;
        padding: 2em;
        padding-right: 4em;
        z-index: 1;
    }
    #ANGEBOT .Infotextzwei{
        width: 80%;
    }
    .Vorteile_Liste a{
        width: 40%;
    }
    /*BÜCHER*/
    #Buch_Eins{
        width: 100%;
        overflow-x: hidden;
        padding: 0;
    }
    .BuchXdrei{
        position: relative;
        height: 40rem;
        width: 100%;
        padding: 0;
    }
    .Skipper{
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        margin: 0 10%;
        z-index: 1;
    }
    .Skipper div{
        height: 80%;
        width: 10vw;
        position: relative;
        cursor: pointer;
    }
    .Skipper.vor{
        right: 0;
        left: auto;
        transform-origin: 50% 50%;
    }
    .Skipper.vor div{        
        transform: rotate(180deg);
    }
    .Skipper div::before{
        content: "";
        width: 5vw;
        height: 3px;
        background-color: var(--global-color-rot);
        top: 50%;
        left: 25%;
        position: absolute;
        transform: translateY(0%) rotate(45deg);
        transform-origin: 0% 100%;
    }
    .Skipper div::after{
        content: "";
        width: 5vw;
        height: 3px;
        background-color: var(--global-color-rot);
        top: 50%;
        left: 25%;
        position: absolute;
        transform: translateY(100%) rotate(-45deg);
        transform-origin: 0% 0%;
    }
    .Buch{
        position: absolute;
        width: 100%;
        max-width: 100%;
        height: 100%;
        opacity: 0;
        padding: 2rem;
        padding-bottom: 0;
        margin: 0;
    }
    .Buch p {    
        font-size: 1.25rem;
        margin: 0;
        padding: 0;
        line-height: 2;
    }
    #Buch_Eins h2{
        margin: 7rem;
        margin-bottom: 4rem;
    }
    h4 {    
        font-size: 1.75rem;
        height: 1rem;
        line-height: 1;
        margin-bottom: 1.5rem;
    }
    h5 {    
        font-size: 1.5rem;
        height: 1rem;
        line-height: 1;
    }
    .Button-schief{
        transform: translateX(calc(-50% - 5rem))  translateY(+40%) rotate(-10deg) ;
        z-index: 5;
        font-size: 1.4rem;
        width: 13rem;
    }    
    .Buch.active{
        opacity: 1;        
    }
    /*.Buch.deaktiv{
        transform: translateX(200%);
    }*/
    .Cover_B3 {
        height: 25rem;
        position: relative;
    }
    .BuchXdrei .Button-transp {
        font-size: 1rem;
    }
    /*STÖBERN*/
    .Buch_Auswahl{
        width: 90%;
    }
    
}
@media (max-width: 900px) {
    /*ANGEBOTE*/
    .SlideZwei{
        height: 27rem;
    }
    .Angebote{
        padding: 1.75rem;        
        padding-right: 10rem;
    }
    #ANGEBOT p {    
        font-size: 1.2rem;
    }
    #ANGEBOT .Zusatz{
        font-size: 1.2rem;
    }
    /*STÖBERN*/
    .Buch_Auswahl div{
        height: 17rem;
        width: 12rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .Stoeber_Cover{
        height: 15rem;
        width: calc(15rem * 0.625);
    }
}
@media (max-width: 770px) {
    /*ANGEBOTE*/
    .SlideZwei{
        height: 26rem;
    }
    .Angebote {
        padding-top: 1.5rem;
    }    
    #ANGEBOT p {    
        font-size: 1.1rem;
    }
    #ANGEBOT .Zusatz{
        font-size: 1.1rem;
        width: calc(var(--global-Inhaltsbreite_relativ) / 2 + 8em);
    max-width: calc(var(--global-Inhaltsbreite_relativ) / 2 + 8em);
    }
    .Angebots_Buttons {
        bottom: 1.75rem;
    }
    /*Meine Bücher*/
    #Buch_Eins{
        overflow-x: hidden;
        padding: 0;
    }
    .BuchXdrei{
        position: relative;
        height: 40rem;
        padding: 0;
    }
    .Skipper div{
        height: 60%;
    }
    .Buch{
        justify-content: start;
        position: absolute;
        width: 100%;
        max-width: 100%;
        height: 100%;
        padding: 2rem;
        padding-bottom: 0;
        margin: 0;
    }
    .Buch:nth-child(1) {
        transform: translateX(0%);
    }
    .Buch p {    
        font-size: 1.25rem;
        margin: 0;
        padding: 0;
        line-height: 2;
    }    
    .Beschreibung{
        width: 25em;
    }
    h4 {    
        font-size: 1.5rem;
    }
    h5 {    
        font-size: 1.25rem;
    }
    .Button-schief{
        transform: translateX(calc(-50% - 5rem))  translateY(+30%) rotate(-10deg) ;
        font-size: 1.2rem;
        width: 10rem;
    }
    .Buch p {
        font-size: 1rem;
        margin-bottom: 0.5em;
    }
    .Cover_B3 {
        height: 22rem;
    }
    .BuchXdrei .Button-transp {
        font-size: 1rem;
    }
    
}
@media (max-width: 730px) {
    /*HEADER*/
    header{
        height: 9rem;
    }
    header .ButtonContainer{
        display: flex;
        align-items: baseline;
    }
    header .ButtonContainer a{
        font-size: 1em;
    }
    .Button-rot:hover::before, .Button-transp:hover:before{
        display: none;
    }
    .Button-rot:hover::after, .Button-transp:hover:after{
        display: none;
    }
    .Button-transp:hover{
        background-color: transparent;
    }
    .InhaltHeader{
        flex-direction: column;
    }
    header .buttonKlein{
        display: none;
    }
    /*ANGEBOT*/
    #ANGEBOT h3 {
        width: 90%;
    }
    .Vorteile_Liste a{
        font-size: 1rem;
    }
    /*STÖBERN*/
    .Buch_Auswahl div{
        height: 14rem;
        width: 9rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .Stoeber_Cover{
        height: 12rem;
        width: calc(12rem * 0.625);
    }
    /*FOOTER*/
    .Link_Text{
        margin-bottom: 1.5em;    
        /*border: 2px solid var(--global-color-hintergrund);*/
    }
    .Link_Text a{
        font-size: 1.25rem;
    }
    .Icon_Social{
        height: 1.75rem;
        /*border: 2px solid var(--global-color-hintergrund);*/
    }
    .Icons_Footer a{
        margin-right: 2em;
    }
}
@media (max-width: 650px) {
    /*Allgemein*/
    h2{
        font-size: 2.5rem;
        line-height: 1.2;
    }
    #Ende h2{
        margin-bottom: 2.5rem;
    }
    /*Header*/
    header .ButtonContainer a{
        font-size: 1rem;
        margin: 0;
        margin-right: 0.5em;
    }
    /*ANGEBOTE*/
    .SlideZwei{
        height: 30rem;
    }
    .Angebote{       
        padding-right: 7rem;
    }
    #ANGEBOT p {    
        font-size: 1rem;
        line-height: 1.25;
    }
    #ANGEBOT .Zusatz{
        font-size: 1rem;
    }
    .Button-hell.Button-klein{
        display: flex;
    }
    .Button-hell.Button-groß{
        display: none;
    }
    
    /*Meine Bücher*/
    .Skipper{
        margin: 0 5%;
    }
    /*STÖBERN*/
    .Buch_Auswahl div{
        height: 11rem;
        width: 8rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .Stoeber_Cover{
        height: 11rem;
        width: calc(11rem * 0.625);
    }
    /*FOOTER*/
    .InhaltFooter {
        display: flex;
        flex-direction: row;
        justify-content: start;
        width: var(--global-Inhaltsbreite_relativ);
    }
    .Link_Text {
        flex-direction: column;
        align-items: start;
        margin: 0;
        margin-bottom: 1.75em;
    }
    .Link_Text a {
        margin-bottom: 0.5em;
    }
    .Icons_Footer a{
        margin: .75em;
        margin-top: 0;
        margin-right: .75em;
        line-height: 1.75;
    }
    .Icons_Footer {
        margin-left: 2em;
        height: auto;
        width: 50%;
    }
}
@media (max-width: 560px) {
    /*Header*/
    header{
        height: 8rem;
    }
    header img{
        height: 5rem;
    }
    header .ButtonContainer a {
        font-size: 0.9rem;
        margin: 0;
        margin-right: 0.5em;
    }    
    /*STÖBERN*/
    .Buch_Auswahl div{
        height: 11rem;
        width: 7rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .Stoeber_Cover{
        height: 11rem;
        width: calc(11rem * 0.625);
    }
    .Stoeber_Cover:hover{
        z-index: 1;
        scale: 1;
        box-shadow: 1em 1em 1.5em var(--global-color-shadow);
    }
}
@media (max-width: 480px) {
    /*ANGEBOTE*/
    .Angebote {   
        padding: 1.25rem;    
        padding-right: 6rem;
    }
    #ANGEBOT p {    
        font-size: 1rem;
    }
    #ANGEBOT .Zusatz{
        font-size: 1rem;
    }
    #ANGEBOT h2{
        font-size: 2rem;
    }
    .Angebots_Buttons {
        bottom: 1.25rem;
    }
    .Vorteile_Liste a{
        width: 50%;
    }
    /*STÖBERN*/
    .Buch_Auswahl div{
        height: 9rem;
        width: 6rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .Stoeber_Cover{
        height: 9rem;
        width: calc(9rem * 0.625);
    }
    /*ENDE*/
    #Ende h2{
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .Text_Ende a{
        font-size: 1rem;
    }
}
@media (max-width: 440px) {
    /*ANGEBOTE*/
    .Angebote{       
        padding-right: 4.5rem;
    }
    /*Meine Bücher*/
    .Buch{
        justify-content: start;
    }
    .Skipper div{
        height: 50%;
    }
    .Headline_B{
        width: 100%;
        text-align: center;
    }
    .Beschreibung{
        width: 20em;
    }
    h4 {
        font-size: 1.25rem; 
        margin-bottom: 0.75em; 
    }
    h5 {
        font-size: 1.1rem;
        margin-bottom: 0.75em; 
        line-height: 1;
    }
    .Buch p {
        font-size: 1rem;
        margin-bottom: 0.5em;
    }
    .Button-schief {
        font-size: 1rem;
        transform: translateX(calc(-50% - 4rem))  translateY(+35%) rotate(-10deg) ;
        width: 8rem;
    }
    .Cover_B3 {
        height: 17rem;
    }
    .BuchXdrei .Button-transp {
        font-size: 1rem;
    }
}
@media (max-width: 400px) {
    /*START*/
    .TeilBildschirm img{
        height: 20rem;
        width: 20rem;
    }
    #START .ButtonContainer{
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    #START .ButtonContainer a{
        width: 80%;
    }
    #START .ButtonContainer a:nth-child(1){
        margin-right: 0;
        margin-bottom: 1em;
    }
    /*Meine Bücher*/
    .Buch{
        justify-content: start;
    }    
    .Beschreibung{
        width: 20em;
    }
    h4 {
        font-size: 1.25rem; 
        margin-bottom: 0.75em; 
    }
    h5 {
        font-size: 1rem;
        margin-bottom: 0.75em; 
        line-height: 1;
    }
    .Buch p {
        font-size: 0.9rem;
        margin-bottom: 0.5em;
    }
    .BuchXdrei .Button-transp {
        font-size: 0.9rem;
    }
}
@media (max-width: 380px) {
    /*Header*/
    header{
        height: 7rem;
    }
    header img{
        height: 4.5rem;
    }
    header .ButtonContainer a {
        font-size: 0.75rem;
        margin: 0;
        margin-right: 0.5em;
    }
    /*ANGEBOTE*/
    #ANGEBOT h2{
        font-size: 1.7rem;
    }
    #ANGEBOT p {    
        font-size: 0.9rem;
        line-height: 1.25;
    }
    #ANGEBOT .Zusatz{
        font-size: 0.9rem;
    }
    #ANGEBOT h3 {    
        font-size: 1.15rem;
        height: 1.75rem;
        line-height: 1;
    }
    .Button-rot.Button-klein{
        font-size: 0.8em;
    }
    /*Meine Bücher*/
    h4 {
        font-size: 1.1rem; 
        margin-bottom: 0.5em; 
    }
    h5 {
        font-size: 0.9em;
        margin-bottom: 0; 
        line-height: 1;
    }
    .Buch p {
        font-size: 0.8em;
        margin-bottom: 0.75em;
    }
} 
@media (max-width: 350px) {
    /*Header*/
    header{
        height: 6.5rem;
    }
    header img{
        height: 4rem;
    }
    header .ButtonContainer a {
        font-size: 0.7rem;
        margin: 0;
        margin-right: 0.5em;
    }
    /*ANGEBOTE*/
    .SlideZwei{
        height: 33rem;
    }
    .Button-rot{
        font-size: 0.75em;
    }
    #ANGEBOT h2{
        font-size: 1.5rem;
    } 
    .Button-hell.Button-klein{
        font-size: 1rem;
    } 
    #ANGEBOT h3 {    
        font-size: 1rem;
    }
    .Vorteile_Liste a{
        font-size: 0.8rem;
    }
} 