.home h1 {
    font-size: 28px;
}

.home .welcome_box .tiles{
    display:  grid;
    grid-auto-rows: 350px;
    grid-auto-rows:  minmax(350px,max-content);
    grid-auto-columns: 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap:  15px 15px;
    padding: 75px 15px 50px;
    overflow:  hidden;
}

.home .tile{
    position:  relative;
    padding:  35px 30px;
    grid-column: span 1;
    transition:  250ms ease-in-out;
    max-height: 600px;
    overflow:  hidden;
}

.home .tile.wide{
    grid-column: span 2;
}

.home .tile:hover .tile-bg, .home .tile:hover .content-bild{
    transform:  scale3d(1.05,1.05,1.05);
}

.home .tile .tile-bg, .home .tile .content-bild{
    transform-origin:  center;
    transition: .3s ease-in-out;
}

.home .tile .tile-bg{
    position:  absolute;
    top: 0;
    left:  0;
    width:  100%;
    height:  100%;
    object-fit:  cover;
}



.home .tile .background-overlay{
    z-index: 0;
}

.home .tile .wrapper{
    position: relative;
    z-index:  1;
}

.home .tile .wrapper .content{
    height:  100%;
}

.home .welcome_box .tile .content,
.home .welcome_box .tile .content > div{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
}

.home .tile.wide.layout-2 .wrapper{
    display: grid;
    grid-template-columns: 65% 35%;
}

.home .tile h2{
    margin-top:  0px;
    font-size: 22px;
}

.home .tile a.button.ghost, .home .tile a.button.ghost:visited{
    color: white!important;
}

.content-bild {
    align-items: center;
    justify-content: center;
}

.content-bild img {
    max-height: 480px;
}





@media only screen and (max-width: 1199px) {

    .home .welcome_box .tiles{
        grid-template-columns: repeat(2, 1fr);
    }

}



@media only screen and (max-width: 767px) {

    .home .welcome_box .tiles{
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        grid-auto-rows:  minmax(250px,max-content);
    }

    .home .tile.wide{
        grid-column:  span 1;
    }

    .home .tile h2{
        font-size:  20px;
    }

}


@media only screen and (max-width: 575px) {

    .home .tile.wide.layout-2 .wrapper{
        display: grid;
        grid-template-columns: 100%;
    }

    .home .kategorie-liste,
    .home .marke-liste,
    .home .herkunft-liste,
    .home .format-liste {
        display: none;
    }

    .home .container {
        padding: 0 15px;
    }

    .home__zigarren-box img:not(.staerke-icon):not(.attribute-thumbnail):not(.wp-post-image):not(.product-placeholder-image),
    .home__kategorien img:not(.staerke-icon):not(.attribute-thumbnail):not(.wp-post-image):not(.product-placeholder-image) {
        width: 40%;
        min-width: 200px;
        max-height: 200px;
    }

    .flexcontent-wrapper .zwei-spalten img {
        max-width: 100%;
        height: auto;
    }

    .home__zigarren-box .text-left,
    .home__kategorien .text-left {
        text-align: center !important;
    }

    .home__zigarren-box .flex-center-left,
    .home__kategorien .flex-center-left {
        align-items: center;
    }

    .home__zigarren-box h2 {
        margin-top: 10px;
    }

    .home__zigarren-box.second-box .col-12:not(.img-wrapper),
    .home__kategorien .col-12:not(.img-wrapper) {
        order: 2;
    }

    .home__zigarren-box.second-box .col-12.img-wrapper,
    .home__kategorien .col-12.img-wrapper {
        order: 1;
    }

}

