/*Gesamtes Dokument*/
*{
    font-family: 'Cabin', 'Georgia', serif;
}

html, body{
    margin: 0;
    padding: 0;
}

body{
    width: 100vw;
    overflow-x: hidden;
}

p {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.5px;
}

h2 {
    text-align: center;
    font-size: 28px;
}

h3 {
    text-align: center;
}

a{
    color: #3D9900;
    -webkit-transition: 300ms color ease-out;
    transition: 300ms color ease-out;
}

a:hover{
    color: #57c111;
}


@-webkit-keyframes pull-right{
    0% { -webkit-transform: translateX(0); transform: translateX(0); }
    100% { -webkit-transform: translateX(50px); transform: translateX(50px); }
}


@keyframes pull-right{
    0% { -webkit-transform: translateX(0); transform: translateX(0); }
    100% { -webkit-transform: translateX(50px); transform: translateX(50px); }
}

@-webkit-keyframes ease-in-right{
    0%{ -webkit-transform: translateX(-100%); transform: translateX(-100%); opacity: 0; }
    100%{ -webkit-transform: translateX(0); transform: translateX(0); opacity: 1; }
}

@keyframes ease-in-right{
    0%{ -webkit-transform: translateX(-100%); transform: translateX(-100%); opacity: 0; }
    100%{ -webkit-transform: translateX(0); transform: translateX(0); opacity: 1; }
}

@-webkit-keyframes ease-in-top-tile{
    0%{ -webkit-transform: translateY(100%); transform: translateY(100%); opacity: 0; }
    100%{ -webkit-transform: translateY(0); transform: translateY(0); opacity: 0.85; }
}

@keyframes ease-in-top-tile{
    0%{ -webkit-transform: translateY(100%); transform: translateY(100%); opacity: 0; }
    100%{ -webkit-transform: translateY(0); transform: translateY(0); opacity: 0.85; }
}

.strong{
    font-weight: bold;
    font-size: 20px;
}

.container{
    width: 100vw;
    padding-left: calc((100vw - 900px) / 2);
    padding-right: calc((100vw - 900px) / 2);
    box-sizing: border-box;
}

/*Navigation*/
.navigation {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100px;

    background-color: rgba(250, 250, 250, 0.95);
    border-bottom: 2px solid #3D9900;
    box-shadow: 0 5px 35px -15px #3D9900;
}

.nav-link{
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
    -webkit-transition-duration: 300ms;
            transition-duration: 300ms;
    -webkit-transition-property: border-color, color;
    transition-property: border-color, color;
}

.nav-link.nav-active{
    border-bottom: 2px solid #000;
}

.nav-link:hover{
    color: rgb(61, 153, 0);
    border-color: rgb(61, 153, 0);
}


.logo {
    background: url('../assets/logo_braun.png');
    background-repeat: no-repeat;
    background-size: contain;

    width: 10vw;
    min-width: 160px;
    height: 80px;

    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

.sandwich{
    width: 35px;
    height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    display: none;
    overflow: hidden;
}

.sandwich-bar{
    width: 28px;
    height: 3px;
    margin: 2px;
    background-color: #3D9900;
}

.menu {
    right: 7vw;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

.menu a {
    margin-left: 15px;
    text-decoration: none;
    color: black;
    font-size: 16px;
    text-align: right;
}

@media(max-width: 768px){
    .navigation {
        height: 50px;
    }
    .sandwich{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .sandwich-bar{
        -webkit-transform-origin: 50% 50%;
                transform-origin: 50% 50%;

        -webkit-transition-property: opacity, -webkit-transform;

        transition-property: opacity, -webkit-transform;

        transition-property: transform, opacity;

        transition-property: transform, opacity, -webkit-transform;
        -webkit-transition-duration: 300ms;
                transition-duration: 300ms;
        -webkit-transition-timing-function: ease-out;
                transition-timing-function: ease-out;

    }

    .sandwich-x .sandwich-bar:first-child{
        -webkit-transform: translateY(7px) rotate(45deg);
                transform: translateY(7px) rotate(45deg);
    }

    .sandwich-x .sandwich-bar:nth-child(2){
        -webkit-transform: translateX(150px);
                transform: translateX(150px);
    }

    .sandwich-x .sandwich-bar:nth-child(3){
        -webkit-transform: translateY(-7px) rotate(-45deg);
                transform: translateY(-7px) rotate(-45deg);
    }

    .logo{
        height: 44px;
    }

    .menu{
        width: 100%;
        height: calc(100vh - 52px);
        position: fixed;
        top: 52px;
        left: 0;
        z-index: 100;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -ms-flex-pack: distribute;
            justify-content: space-around;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        background-color: rgba(255, 255, 255, 0.95);

        -webkit-transform: translateY(150%);

                transform: translateY(150%);

        -webkit-transition-duration: 300ms;

                transition-duration: 300ms;
        -webkit-transition-property: -webkit-transform;
        transition-property: -webkit-transform;
        transition-property: transform;
        transition-property: transform, -webkit-transform;
        -webkit-transition-timing-function: ease-out;
                transition-timing-function: ease-out;
    }

    .menu.menu-visible{
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}

/*Index*/
.index-background {
    background: url('../assets/0001.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 100vh;
}

.index-background-mask {
    background-color: rgba(250, 250, 250, 0.8);
    width: 100%;
    height: 100%;
}

.index-links{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    font-size: 36pt;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-decoration: none;
    -webkit-transition: 300ms color ease-out;
    transition: 300ms color ease-out;
    color: black;
}



.index-links:hover{
    color: #666;
}

.index-links-caption {
    text-decoration: none;
    display: inline-block;
}

.index-links-caption:nth-child(2){
    font-size: 100px;
    margin-left: 40px;
    -webkit-animation-name: pull-right;
            animation-name: pull-right;
    -webkit-animation-duration: 700ms;
            animation-duration: 700ms;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
            animation-play-state: running;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-animation-direction: alternate;
            animation-direction: alternate;
}


.index-logo {
    width: 20vw;
    max-width: 200px;
    height: auto;
    position: absolute;
    bottom: 10px;
    left: 10px;
    -webkit-animation-name: ease-in-right;
            animation-name: ease-in-right;
    -webkit-animation-duration: 1000ms;
            animation-duration: 1000ms;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;

}


@media (max-width: 768px) {
    .index-links-caption {
        font-size: 36px;
    }

    .index-links-caption:nth-child(2){
        font-size: 72px;
    }
}

@media (max-width: 400px) {
    .index-links-caption {
        font-size: 28px;
    }

    .index-links-caption:nth-child(2){
        font-size: 56px;
    }

    .index-logo{
        width: 35vw;
    }
}

/* Home */
.home-block{
    opacity: 0;
    -webkit-transition-duration: 2500ms;
            transition-duration: 2500ms;
    -webkit-transition-timing-function: cubic-bezier(0.81, 0.01, 1, 1);
            transition-timing-function: cubic-bezier(0.81, 0.01, 1, 1);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
}

.home-block.animated{
    opacity: 1;
}


.home-content {
    width: 100vw;
    min-height: 100vh;
    background-image: url('../assets/home-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    position: absolute;
    top: 0;
    left: 0;
}

.home-caption {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-40%);
}

.home-text {
    width: 600px;
    max-width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    height: auto;
    font-size: 20px;
}

.home-big {
    font-size: 28px;
}

@media (max-width: 670px) {
    .home-content {
        position: relative;
        overflow-x: hidden;
        background-position: center center;
    }
    .home-text{
        font-size: 20px;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.9);
        padding: 10px;
    }
    .home-big {
        font-size: 25px;
        padding: 10px;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.9)
    }
    .home-caption {
        position: absolute;
        top: 80%;
        padding-right: 15px;
        padding-top: 20vh;
        left: 0;
    }
}

@media (max-width: 375px) {
	.home-caption {
		position: absolute;
		top: 60%;
	}
}
@media (max-width: 320px){
	.home-caption {
		position: absolute;
		top: 85%;
	}
}

/*Geschichte*/

.history-content {
    width: 100vw;
    min-height: 400px;
    background: url('../assets/history-bg.png') center top no-repeat;
    background-size: cover;
    margin-bottom: 50px;
}

.history-content p{
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    -webkit-transition-duration: 800ms;
            transition-duration: 800ms;
    -webkit-transition-timing-function: cubic-bezier(0.88, 0.19, 0.54, 1.01);
            transition-timing-function: cubic-bezier(0.88, 0.19, 0.54, 1.01);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
}

.history-content p.animated{
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
}

.history-header {
    font-size: 28px;
    margin-left: 30%;
    padding-left: 10px;
    padding-top: 125px;
    margin-bottom: 0px;
}

.history-image {
    width: 30%;
    height: auto;
    display: inline-block;
    box-sizing: border-box;
    vertical-align: top;
    padding-top: 15px;
    padding-right: 5px;
    -webkit-animation-name: ease-in-right;
            animation-name: ease-in-right;
    -webkit-animation-duration: 750ms;
            animation-duration: 750ms;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
    opacity: 0;
}

.history-section:nth-child(3) .history-image {
    -webkit-animation-delay: 400ms;
            animation-delay: 400ms;
}

.history-section:nth-child(4) .history-image {
    -webkit-animation-delay: 800ms;
            animation-delay: 800ms;
}

.history-section:nth-child(5) .history-image {
    -webkit-animation-delay: 1000ms;
            animation-delay: 1000ms;
}

.history-text {
    width: 70%;
    height: auto;
    padding-left: 10px;
    padding-right: 10px;
    display: inline-block;
    box-sizing: border-box;
}

.history-text li{
    margin-bottom: 10px;
}

@media (max-width: 500px) {
    .container {
        width: 100vw;
    }
    .history-image {
        display: block;
        width: 90vw;
        margin-left: auto;
        margin-right: auto;
    }
    .history-text {
        padding-left: 10px;
        display: block;
        width: 100%;
    }
}

/*Sortiment*/
.sorts-slider {
    width: 100vw;

    padding-top: 125px;
    box-shadow: 0 7px 35px -15px #000;
    position: relative;
    z-index: 10;
}

.sorts-header {
    font-size: 28px;
    text-align: center;
}

.slider-inner{
    height: 500px;
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

.slider-img{
    width: 250px;
    height: 350px;
    background-size: cover;
    background-position: center center;
    background-color: transparent;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    box-shadow: 0 3px 20px -7px rgba(0, 0, 0, 0.7);
    -webkit-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-property: scale, opacity, -webkit-transform;
    transition-property: scale, opacity, -webkit-transform;
    transition-property: transform, scale, opacity;
    transition-property: transform, scale, opacity, -webkit-transform;
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
}

.slider-img.preview-right{
    -webkit-transform: scale(0.5) translate(200%, -100%);
            transform: scale(0.5) translate(200%, -100%);
    opacity: 0.3;
    z-index: 2;
}

.slider-img.preview-left{
    -webkit-transform: scale(0.5) translate(-400%, -100%);
            transform: scale(0.5) translate(-400%, -100%);
    opacity: 0.3;
    z-index: 2;
}

.hidden{
    opacity: 0 !important;
}

.slider-img:nth-child(3){
    background-image: url('../assets/sorts/nobilis.jpg');
}

.slider-img:nth-child(4){
    background-image: url('../assets/sorts/nordmanntanne.jpg');
}

.slider-img:nth-child(5){
    background-image: url('../assets/sorts/schwarzkiefer.jpg');
}

.slider-img:nth-child(6){
    background-image: url('../assets/sorts/lasiokarpa.jpg');
}

.slider-img:nth-child(7){
    background-image: url('../assets/sorts/fraser.jpg');
}

.slider-img:nth-child(8){
    background-image: url('../assets/sorts/blaufichte.jpg');
}

.slider-img:nth-child(9){
    background-image: url('../assets/sorts/weisstanne.jpg');
}

.slider-img:nth-child(10){
    background-image: url('../assets/sorts/fichten.jpg');
}

.slider-btn{
    position: absolute;
    font-size: 100px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
    -webkit-transition: opacity 500ms ease-out;
    transition: opacity 500ms ease-out;
    z-index: 10;
}

.slider-btn-deactivated{
    opacity: 0.3;
    pointer-events: none;
}

.slider-btn:hover{
    cursor: pointer;
}

.slider-btn-left{
    left: 10vw;
}

.slider-btn-right{
    right: 10vw;
}

.slider-caption{
    -webkit-transition: opacity 250ms ease-out;
    transition: opacity 250ms ease-out;
}

.slider-caption-hidden{
    opacity: 0;
    display: none;
}

.slider-caption h2{
    margin-top: 0;
}

.sorts-text {
    background-color: #3D9900;
    height: auto;
    margin: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
    color: white;
    box-shadow: inset 0 -7px 35px -15px #000;
}

.sort-wrapper-outer {
    background-image: url('../assets/sort-zubehoerbg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;

}

.sorts-bg-mask {
    background-color: rgba(250, 250, 250, 0.8);
    width: 100%;
    height: 100%;
    padding-bottom: 25px;
}

.sort-title {
    font-size: 28px;
    text-align: center;
    padding-top: 50px;
}


.sort-tile-wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    overflow: hidden;
}

.sort-tile {
    width: 250px;
    height: 230px;
    background-color: #fff;
    display: block;
    margin: 15px;
    box-shadow: 0 3px 20px -7px rgba(0, 0, 0, 0.7);
    -webkit-transition: 300ms opacity ease-out;
    transition: 300ms opacity ease-out;
    -webkit-animation-name: ease-in-top-tile;
            animation-name: ease-in-top-tile;
    -webkit-animation-duration: 500ms;
            animation-duration: 500ms;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
    opacity: 0;
}

.sort-tile:nth-child(2){
    -webkit-animation-delay: 200ms;
            animation-delay: 200ms;
}

.sort-tile:nth-child(3){
    -webkit-animation-delay: 400ms;
            animation-delay: 400ms;
}

.sort-tile:nth-child(4){
    -webkit-animation-delay: 600ms;
            animation-delay: 600ms;
}

.sort-tile:nth-child(5){
    -webkit-animation-delay: 800ms;
            animation-delay: 800ms;
}


.sort-tile:hover{
    opacity: 1;
}

.sort-tile ul{
    padding-right: 20px;
}

.sort-tile li{
    margin-bottom: 10px;
}


.sort-tile ul, .sort-tile li, .sort-tile h4{
    pointer-events: none;
}

@media (max-width: 770px) {
    .sorts-slider {
        width: 100vw;
    }
    .sorts-text p {
        padding-right: 10px;
        padding-left: 10px;
    }
}
@media (max-width: 500px) {
    .sorts-slider {
        width: 100vw;
        padding-top: 50px;
    }
    .slider-inner{
        height: 375px;
        width: 100vw;
        position: relative;
    }
    .slider-img {
        width: 175px;
        height: 275px;
    }
    .sorts-text p {
        padding-right: 10px;
        padding-left: 10px;
    }
}

/*Verkauf*/

.sale-content{
    overflow-x: hidden;
}
.sale-header {
    padding-top: 125px;
    text-align: center;
    font-size: 28px;
}

.sale-img{
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat !important;
    height: 100%;
}

.sale-img-wrapper {
    height: 250px;
    width: 100vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
    box-shadow: 0 7px 35px -15px #000;
    position: relative;
    z-index: 10;
}

.sale-img{
    z-index: 5;
}

.sale-business-img-one {
    background-image: url('../assets/geschaeftskunden1.jpg');
    width: 50%;
}

.sale-business-img-two {
    background-image: url('../assets/geschaeftskunden2.jpg');
    width: 50%;
}

.sale-text {
        background-color: #3D9900;
        height: auto;
        margin: 0;
        padding-top: 30px;
        padding-bottom: 30px;
        text-align: center;
        color: white;
        box-shadow: inset 0 -7px 35px -15px #000;
}

.sale-haeder-under {
    text-align: center;
    font-size: 28px;
}

.sale-privat-img-one {
    background: url('../assets/privatkunden1.jpg') center center;
    width: 25%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.sale-privat-img-two {
    background: url('../assets/privatkunden2.jpg') center center;
    width: 25%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.sale-privat-img-three {
    background: url('../assets/privatkunden3.jpg') center center;
    width: 25%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.sale-privat-img-four {
    background: url('../assets/privatkunden4.jpg') center center;
    width: 25%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.sale-img-wrapper-half {
    height: 175px;
    width: 110vw;
    margin-left: -10vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
}

.sale-img-wrapper-half-two {
    height: 175px;
    width: 110vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    box-shadow: 0 7px 35px -15px #000;
    position: relative;
    z-index: 10;
}

.sale-event-img-one {
    background: url('../assets/event1.jpg') center center;
    width: 20%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.sale-event-img-two {
    background: url('../assets/event2.jpg') center center;
    width: 20%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.sale-event-img-three {
    background: url('../assets/event3.jpg') center center;
    width: 20%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.sale-event-img-four {
    background: url('../assets/event4.jpg') center center;
    width: 20%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.sale-event-img-five {
    background: url('../assets/event5.jpg') center center;
    width: 20%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.sale-event-img-six {
    background: url('../assets/event6.jpg') center center;
    width: 20%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.sale-event-img-seven {
    background: url('../assets/event7.jpg') center center;
    width: 20%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.sale-event-img-eight {
    background: url('../assets/event8.jpg') center center;
    width: 20%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.sale-event-img-nine {
    background: url('../assets/event9.jpg') center center;
    width: 20%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.sale-event-img-ten {
    background: url('../assets/event10.jpg') center center;
    width: 20%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}
@media (max-width: 768px) {
    .sale-header {
        padding-top: 50px;
    }
    .sale-img-wrapper:nth-child(2){
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        height: 300px;
    }
    .sale-img-wrapper:nth-child(2) .sale-img{
        width: 100% !important;
        height: 50%;
    }

    .sale-img-wrapper:nth-child(3){
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        height: 300px;
    }
    .sale-img-wrapper:nth-child(3) .sale-img{
        width: 50% !important;
        height: 50%;
    }
    .sale-text {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 450px) {

    .sale-img-wrapper:nth-child(2){
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        height: 250px;
    }

    .sale-img-wrapper:nth-child(5) {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        height: 300;
    }

    .sale-img-wrapper:nth-child(5) .sale-img{
        width: 50%;
        height: 50%;
    }

    .sale-img-wrapper-half, .sale-img-wrapper-half-two {
        height: 100px;
    }
}

/*Über Uns*/
.about-bg {
    background: url('../assets/ueber_uns1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    min-height: 100vh;
}

.about-bg-mask {
    background-color: rgba(250, 250, 250, 0.8);
    width: 100%;
    min-height: 100vh;
}

.about-tile-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-top: 40vh;
}

.about-tile {
    width: 300px;
    height: 230px;
    background-color: #fff;
    display: block;
    margin: 15px;
    box-shadow: 0 3px 20px -7px rgba(0, 0, 0, 0.7);
    -webkit-transition: 300ms opacity ease-out;
    transition: 300ms opacity ease-out;
    -webkit-animation-name: ease-in-top-tile;
            animation-name: ease-in-top-tile;
    -webkit-animation-duration: 500ms;
            animation-duration: 500ms;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
    opacity: 0;
}

.about-tile:nth-child(2){
    -webkit-animation-delay: 200ms;
            animation-delay: 200ms;
}

.about-tile:nth-child(3){
    -webkit-animation-delay: 400ms;
            animation-delay: 400ms;
}


.about-tile:hover{
    opacity: 1;
}

.about-tile ul{
    padding-right: 20px;
}

.about-tile li{
    margin-bottom: 10px;
}

@media (max-width: 500px) {
    .about-tile-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        padding-top: 50px;
    }
    .about-tile {
        margin-top: 50px;
    }
}

/*Kontankt*/
.contact-header {
    padding-top: 125px;
    text-align: center;
}

.contact-text {
    max-width: 600px;
    padding-left: 10vw;
}

.contact-img-wrapper {
    height: 350px;
    width: 100vw;
    background: url('../assets/contact-bg.jpg');
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 50px;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    box-shadow: inset 0 -7px 35px -15px #000, inset 0 7px 35px -15px #000;
    position: relative;
    z-index: 10;
}

@media(max-width: 768px){
    .contact-img-wrapper{
        background-attachment: scroll;
        background-size: cover;
    }
}

.contact-map{
    width: 100vw;
    max-height: 80vh;
    position: relative;
    z-index: 5;
}

.contact-form{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.contact-form input, .contact-form textarea, .contact-send {
    margin: 10px 0;
    padding: 10px;
    font-size: 16px;
    width: 100%;
    border: 2px solid #3D9900;
    display: block;
    -webkit-transition-property: background-color, border-color;
    transition-property: background-color, border-color;
    -webkit-transition-duration: 300ms;
            transition-duration: 300ms;
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #57c111;
}

.contact-form textarea {
    min-height: 300px;
    width: 100%;
    max-width: 100%;
}

.contact-send{
    width: 25% !important;
    background-color: #3D9900;
    color: #fff;
}

.contact-send:hover{
    background-color: #57c111;
    border-color: #57c111;
    cursor: pointer;
}

@media(max-width: 500px) {

    .contact-header{
        padding-top: 50px;
    }

    .contact-form {
        width: 85%;
    }

    .contact-form textarea {
        min-height: 200px;
    }

    .contact-send {
        width: 50% !important;
    }

}

/*footer*/

.footer{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    background-color: #fff;
    color: #000;
    border-top: 2px solid #3D9900;
    padding-top: 10px;
}

.footer-left p{
    border-left: 2px solid #3D9900;;
    padding-left: 5px;
}

.footer-mid p, .footer-new-owner p{
    border-left: 2px solid #3D9900;;
    padding-left: 5px;
}

.footer-right{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.footer-right a{
    display: block;
    margin: 16px 0;
    line-height: 28px;
    border-left: 2px solid #3D9900;
    padding-left: 5px;
}

.logo-dube {
	width: 50px;
	height: auto;
}

@media(max-width: 500px) {
    .footer{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding-left: 50%;
    }
    .footer-left, .footer-mid, .footer-right, .footer-new-owner{
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
    }
}

.privacy-content{
    margin: 125px 0;
}
