@font-face {
    font-family: Source Sans;
    src: url("/static/fonts/SourceSans3-Regular.ttf.woff2");
}

body {
    margin: 0;
    padding: 0;
}

* {
    font-family: Source Sans;
    color: #5d5c5a;
}

.nav {
    z-index: 1;
    top: 0px;
    position: -webkit-sticky;
    position: sticky;
    background: white;
    height: 120px;
}

.nav a, a:link, a:visited {
    text-decoration: none;
}

.nav-link-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    margin: 0 120px;
}

.nav-link {
    width: 8em;
    text-align: center;
    line-height: 3em;
    font-size: 1.5em;
    transition: 0.2s;
    border-radius: 1em 1em 0 0;
    border-bottom: 1px solid white;
    color: #504f4d;
}

.nav-link:hover {
    color: #E66B00;
    background-color: rgba(3, 3, 3, 0.02);
    border-bottom: 1px solid #E66B00;
}

.logo {
    position: fixed;
    top: 0;
    height: 130px;
    width: auto;
    z-index: 2;
    float: left;
}

.logo img {
    padding: 7px;
    padding-left: 20px;
    height: 80%;
}

.dim {
    z-index: 1;
    height: 20px;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(255,255,255,0) 80%);
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
}

footer {
    padding: 0;
    width: 100%;
    position: absolute;
    bottom: 0;
    background-color: #292828;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    color: #5c5a5b;
}

footer div {
    padding: 0 1rem;
    text-align: center;
    font-size: small;
    color: #f47400;
}

footer p {
    text-align: right;
    color: #f47400;
}

footer img {
    height: 3rem;
    padding: 0.5rem 0;
}

.page {
    text-align: center;
}

.content {
    position: relative;
    top: -20px;
    display: inline-block;
    width: 100%;
}

#page-container {
    position: relative;
    min-height: 100vh;
}


.form input {
    box-sizing: border-box;
    padding: 0.2em;
    width: 100%;
    margin: 5px 0px;
    border: none;
    border-radius: 5px;
    outline: none;
    background: rgb(230, 230, 230);
    font-size: 1em;
}

.form textarea {
    box-sizing: border-box;
    padding: 0.2em;
    width: 100%;
    height: 23em;
    margin: 5px 0px;
    border: none;
    border-radius: 5px;
    outline: none;
    background: rgb(230, 230, 230);
    font-size: 1em;
    resize: vertical;
}

.form button {
    width: 50%;
    padding: 10px;
    margin-top: 15px;
    border: none;
    border-radius: 5px;
    outline: none;
    background: #E66B00;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
}

#contact-form {
    background-color: rgba(230, 107, 0, 0.08);
    border-radius: 2em;
}


.container {
    margin: 30px 5% 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}

.contact {
    flex: 1 0 auto;
    width: 45%;
    min-width: 400px;
    max-width: 600px;
    text-align: center;
    padding: 2%;
    margin: 5em 0 0;
}

.contact-info {
    margin-top: 20px;
}

.contact-info-1 {
    font-size: 1.2em;
    font-weight: bold;
}

.contact-info-2 {
    font-size: 1.2em;
    margin-bottom: 1em;
}

iframe {
    height: 300px;
    border-radius: 1em;
}

.section-1 {
    width: 90%;
    padding: 20px 5% 50px;
    background-color: rgba(230, 107, 0, 0.08);
    text-align: center;
}

.section-1 p {
    font-size: 1.2em;
    font-weight: bold;
    max-width: 960px;
    margin: 0 auto;
}

.section-2 {
    height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

#section-2-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 46%;
    padding: 0px 2%;
}


#section-2-text li {
    text-align: center;
    font-size: 1.1em;
    font-weight: bold;
    max-width: 600px;
    min-width: 400px;
}

.btn-1 {
    background-color: #E66B00;
    color: #fff;
    margin-top: 4em;
    padding: 1em;
    border-radius: 2em;
    width: 10em;
    margin: 2em 0;
    font-weight: bold;
    font-size: large;
}

.btn-1:hover {
    background-color: #f47400;
}

.btn-2 {
    margin: 0 auto;
    display: inline-block;
    background-color: #E66B00;
    color: #fff;
    margin-top: 4em;
    padding: 1em;
    border-radius: 2em;
    width: 15em;
    margin: 2em 0;
    font-weight: bold;
    font-size: large;
}

.btn-2:hover {
    background-color: #f47400;
}

/* .section-img-right {
    float: left;
    position: relative;
    width: 50%;
    height: 100%;
    right: -10;
    background-image: url("/static/media/paletten7.jpeg");
    background-size: cover;
    background-position: center, right;
} */

.section-3 {
    width: 90%;
    background-color: rgb(248, 248, 248);
    padding: 20px 5% 60px;
}

.section-3-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.section-3-item {
    overflow: hidden;
    height: 40em;
    max-width: 350px;
    border-radius: 2em;
    width: 30%;
    background-color: rgba(230, 107, 0, 0.08)
}

.section-3-item img {
    border-radius: 0 0 2em 2em;
    width: auto;
    height: 100%;
}

.slideshow {
    display: inline-block;
    max-width: 50%;
    border-radius: 1em;
}

.slideshow img {
    max-width: 100%;
    border-radius: 1em;
}

.impressum-container {
    padding: 2em 5em;
    text-align: left;
}

.sortiment-container {
    padding-top: 2.5em;
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;

}

.sortiment-item {
    display: flex;
    flex-direction: column;
    width: 25vw;
    flex-wrap: wrap;
    max-width: 400px;
}

.sortiment-item img {
    border-radius: 0 0 2em 0;
    height: 60vh;
    width: 100%;
    min-width: 300px;
    object-fit: cover;
}

.sortiment-list {
    height: 12em;
    width: 100%;
    min-width: 300px;
    text-align: left;
    background-color: rgba(230, 107, 0, 0.08);
    border-radius: 2em 0 0 0;
}

.sortiment-list h2 {
    text-align: center;
}

.sortiment-list li {
    margin-left: 2em;
}