/* Changing the box-model for all elements, reseting all margins & paddings */
*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/* Basic styles */
html {
    color: #222121;
    font-family: Roboto Condensed;
    font-size: 18px;
    line-height: 1.2em;
}

body {
    background-color: rgb(51, 48, 48);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700px;
    text-align: center;
    line-height: 1.5em; /*Use em instead of rem here, so the line-height corresponds to each headline's font-size, and not the root font-size*/
    margin-bottom: 0.333em; /*Same use of em as described above*/
}

h1 {
    font-size: 3rem;
    color: black;
}

h2 {
    font-size: 2.5rem;
    color: white;
}

h3 {
    font-size: 2.0rem;
    color: red;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.0rem;
}

h6 {
    font-size: 0.5rem;
}

body.impressum {
    background-color: black;
    background-image: none;
    background-size: 100%;
    background-repeat: repeat;
    text-align: center;
    font-family: sans-serif;
    font-size: 1em;
    line-height: 1.5em;
}

.ulimpressum {
    padding: 20px 30px 50px;
    list-style-type: none;
    text-transform: none;
    background-color: none;
    width: 2000px;
    height: 40vh;
    margin: 30px 200px 30px;
    text-align: left;
    border: none;
    border-radius: 15px;
}

header {
    background: rgb(238, 125, 20);
    border-bottom: 1px solid #888;
    margin-bottom: 0px;
    padding: 10px 10px;
    text-align: center;
}

main {
    background: #EE7D14FF;
    width: 960px;
    padding: 2em;
    margin: 0 auto;
    margin-top: 5em;
}
main h1 {
    margin-top: 0;
}

.btt-button {
    color: #fff;
    background-color: rgb(238, 125, 20);
    padding: 20px 20px;
    margin-bottom: 10px;
    display: inline-block;
    position: fixed;
    right: 35px;
    bottom: 50px;
    box-shadow: -10px 10px 26px 0px rgba(0, 0, 0, 0.82);
    transition: all 0.4s linear;
}

.btt-button:hover {
    color: green;
    background-color: #FF9527;
    box-shadow: -10px 10px 26px 10px rgba(0, 0, 0, 0.82);
    /* x-achse, y-achse, blur, spread, color */
    padding: 20px 25px;
    transform: rotate(360deg);
}

.himpressum {
    color: yellow;
    font-size: 3rem;
    padding: 20px 25px;
}

header ul.navigation {
    padding-left: 0;
    display: flex;
    justify-content: space-around;
    margin: 0;
}

header ul.navigation li {
    list-style: none;
    display: block;
    margin: 10px 0;
}

header ul.navigation li a {
    color: #fff;
    padding: 10px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    border: 1px solid #fff;
}

header ul.navigation li.current a {
    color: black;
    border: 1px solid black;
}

header ul.navigation li a:hover {
    background: orange;
    color: #000;
}

.flexbox {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    background-color: none;
    height: auto;
    padding: 40px 40px; 
    /*align-items: flex-end;flex-wrap: wrap;height: 540px;   Höhe der Box muss größer sein als der Inhalt erst dann funktioniert align-content   align-content:  space-around;*/
    align-content: space-around;
    justify-content: space-around;
    margin: 40px auto;
}

.trans {
    background-color: rgba(128, 128, 128, 0.192);
}

.flexbox .card {
    background-color: rgb(238, 125, 20);
    padding: 40px 20px;
    text-align: left;
    height: auto;
    align-content: space-around;
}
.flexbox .card {
    background-color: rgb(238, 125, 20);
    padding: 40px 20px;
    text-align: left;
    height: auto;
    align-content: space-around;
    flex-direction: row;
}
.cardcontact {
    background-color: none;
    color: white;
    border: 0px solid #888;
    padding: 30px 20px;
    text-align: center;
    height: auto;
}

.container {
    background-color: none;
    width: auto;
    margin: 10px auto; /*oben-unten /  links-rechts */
    padding: 15px;
    display: flex;
    
}
.containertest {
    background-color: blue;
    width: auto;
    margin: 10px auto; /*oben-unten /  links-rechts */
    padding: 15px;
    display: flex;
}

.row {
    display: flex;
    flex-wrap: wrap;
    background-color: rgb(238, 125, 20);
    padding: 15px;
    width: auto;
}
.rowcenter {
    display: align;
    flex-wrap: none;
    background-color:none;
    padding: 15px;
    color: white;
    margin: 30px auto;
}

.column {
    /* flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    Shorthand für die 3 Befehle ist flex: 0 0 auto; */
    flex:0 0 auto;
    flex-basis: 100%;
    background-color: rgb(238, 125, 20);
    padding: 15px;
    border: 1px solid black;
    display: center;
}

.columnspecial {
    background-color: none;
    border: none;
    align-items: center;
    display: flex;
}
.columncontact {
    background-color: none;
    border:none;
    display: flex; 
    justify-content: center; 
    align-items: center;
    margin-left: auto; 
    margin-right: auto;
}
.col-2-4 {
    flex-basis: 50%;
}

.col-1-4 {
    flex-basis: 50%;
}

.col-1-12 {
    flex-basis: calc(100% / 12 * 2);
    max-width: calc(100% / 12 * 2);
}

.col-2-12 {
    flex-basis: calc(100% / 12 * 2);
    max-width: calc(100% / 12 * 2);
}

.col-3-12 {
    flex-basis: calc(100% / 12 * 3);
    max-width: calc(100% / 12 * 3);
}

.col-4-12 {
    flex-basis: calc(100% / 12 * 4);
    max-width: calc(100% / 12 * 4);
}

.col-5-12 {
    flex-basis: calc(100% / 12 * 5);
    max-width: calc(100% / 12 * 5);
}

.col-6-12 {
    flex-basis: calc(100% / 12 * 6);
    max-width: calc(100% / 12 * 6);
}

.col-7-12 {
    flex-basis: calc(100% / 12 * 7);
    max-width: calc(100% / 12 * 7);
}

.col-8-12 {
    flex-basis: calc(100% / 12 * 8);
    max-width: calc(100% / 12 * 8);
}

.col-9-12 {
    flex-basis: calc(100% / 12 * 9);
    max-width: calc(100% / 12 * 9);
}

.col-10-12 {
    flex-basis: calc(100% / 12 * 10);
    max-width: calc(100% / 12 * 10);
}

.col-11-12 {
    flex-basis: calc(100% / 12 * 11);
    max-width: calc(100% / 12 * 11);
}

.col-12-12 {
    flex-basis: calc(100% / 12 * 12);
    max-width: calc(100% / 12 * 12);
}

.glow {
    font-size: 30px;
    color: white;
    text-align: center;
    animation: glow 1s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
    }
    to {
        text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
    }
}

/* CSS für die blinkende Überschrift */
.headlineblink {
    font-size: 48px;
    text-align: center;
    position: relative;
}

/* CSS für die Textfarbwechsel-Animation */
.headlineblink span {
    animation: colorChange 2s infinite;
}

/* Keyframes für die Textfarbwechsel-Animation */
@keyframes colorChange {
    0% {
        color: #000;
    }
    50% {
        color: #f00;
    }
    100% {
        color: #000;
    }
}
/* More - Less */
#more {
    display: none;
}
#mehr {
    display: none;
}

@media only screen and (max-device-width: 1366px) {
    .parallax {
        background-attachment: scroll;
    }
}

.parallax {
    height: 100%;
    background-image: url('../Bilder/Me.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    position: relative;
    overflow: hidden;
    z-index: -1;
}
article.me {
    background: rgba(100,100,100,0.7);
    max-width: 960px;
    margin: 0 auto;
    padding: 1rem 2rem 2rem 2rem;
    color: #fff;
    line-height: 1.2;
    margin-top: 70vh;
}
article.me1 {
    background: rgba(100,100,100,0.7);
    max-width: 960px;
    margin: 0 auto;
    padding: 1rem 2rem 2rem 2rem;
    color: #fff;
    line-height: 1.2;
    margin-top: 0vh;
}

article.me img {
    width: 50%;
}

.parallax::before {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    right: 40px;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.parallax-content {
    position: relative;
    z-index: 1;
    padding: 50px;
    color: #fff; /* Textfarbe anpassen */
    text-align: left;
    height: auto;
    font-size: 18px;
    margin-top: 110vh;
    transform: translateY(-50%);
}
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

img {
    width: 100%;
}

/* Mein Beruf */
.containerArticle article {
    display: flex;
    background: #fff;
    padding: 1em;
    margin-bottom: 2em;
    align-items: center;
}
.containerArticle article .content {
    margin-left: 2em;
}
/* Slideshow */
.slider-container {
    width: 50%;
    margin: auto;
}
.slick-prev::before, .slick-next::before {
    color: white;
}
.slick-dots li button::before {
    font-size: 20px;
}
.slick-slider img {
    max-height: 250px;
    width: auto;
    margin: auto;
}