.image-buttons {
    position: relative;
    z-index: 1;
}

.image-buttons--homepage {
    padding: 50px 0;
}

.image-buttons--innerpage {
    padding: 40px 0;
}

.image-buttons--innerpage .row {
    justify-content: center;
}

.image-buttons__bg {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
}

.image-buttons__headline {
    padding-bottom: 20px;
    color: rgba(255,255,255,0.7);
}

.image-buttons__headline h2,
.image-buttons__headline h1 {
    color: #fff;
    font-size: 30px;
}

.image-buttons__headline.text-color-dark h2,
.image-buttons__headline.text-color-dark h1 {
    color: #000;
}

.image-buttons__headline h1 {
    padding-bottom: 0;
}

.image-buttons__headline h1::after { 
    display: none;
}

.image-buttons__headline.wrapper-fullwd {
    max-width: 100% !important;
    text-align: center;
}

.image-button {
    position: relative;
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-top: 10px;
}

.image-button__img {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.image-button__hover:after {
    content: '';
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: #000000;
    opacity: 0.35;
}

.image-button__hover {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 13px 15px;
    color: #fff;
}


.image-button__title,
.image-button__hidden {
    position: relative;
    z-index: 3;
}

.image-button__description,
.image-button__cta {
    display: block;
}

.image-button__title {
    font-size: 19px;
    margin-bottom: 6px;
    color: #fff;
}

.image-button__cta {
    padding: 0;
    border: none;
    font-size: 14px;
    font-family: 'd-dindin-bold';
    text-transform: uppercase;
    background: none;
    border-bottom: 2px solid #fff;
    color: #fff;
    letter-spacing: 0.04em;
}

.image-buttons__count {
    padding-top: 14px;
}

.image-buttons__count h5 {
    margin: 0;
    padding: 8px 0 0 0;
    color: rgba(255,255,255,0.5);
}

@media (min-width: 768px) {
    .image-buttons--homepage {
        padding: 49px 0 60px 0;
    }

    .image-buttons--innerpage {
        padding: 70px 0;
    }

    .image-buttons__headline h2 {
        font-size: 34px;
    }
      
}

@media (min-width: 1200px) {
    .image-buttons--homepage {
        padding: 101px 0 125px 0;
    }

    .image-buttons--innerpage {
        padding: 105px 0 130px 0;
    }

    .image-buttons__headline {
        max-width: 825px;
    }

    .image-buttons--innerpage .image-buttons__headline {
        max-width: 740px;
    }

    .image-buttons--innerpage .image-buttons__headline h1,
    .image-buttons--innerpage .image-buttons__headline h2 {
        font-size: 40px;
    }
    
    .image-button {
        margin-top: 32px;
    }
    .image-button,
    .image-button__hover:after {
        height: 300px;
    }

    .image-button__hover {
        z-index: 2;
        bottom: 0;
        color: #fff;
        padding: 23px 25px;
    }

    .image-button__hidden {
        opacity: 0;
        max-height: 0;
        transition: all 0.5s ease-in-out;
    }

    .image-button:hover .image-button__hidden {
        opacity: 1;
        max-height: 300px;
        transition: all 0.5s ease-in-out;
    }

    .image-button__title {
        font-size: 30px;
    }

    .image-button__description {
        font-size: 15px;
        padding-top: 15px;
    }

    .image-button:hover .image-button__hover:after {
        opacity: 0.8;
    }

    .image-buttons--innerpage .image-button, 
    .image-buttons--innerpage .image-button__hover::after {
        height: 341px;
    }

   .image-buttons--innerpage .image-button__hover {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: column;
    }
}