.image-buttons__headlines .btn-grp-wrapper {
    margin-bottom: 0;
}

.image-buttons__headlines {
    margin-bottom: 16px;
}

.image-button-flex {
    justify-content: center;
}

.image-button-item {
    padding-top: 16px;
}

.image-button {
    display: block;
    border: none;
    box-shadow: var(--drop-shadow);
    border-radius: 8px;
    background: var(--white);
    position: relative;
    padding-left: 111px;
    overflow: hidden;
}

.image-button__image {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    border-radius: 8px;
}

.image-button__image[alt="placeholder"] {
	object-fit: contain;
	object-position: 0 35%;
	background: var(--medium);
	padding: 0 32px;
}

.image-button__hover {
    position: relative;
    z-index: 1;
    background: var(--white);
    padding: 16px;
    height: calc(100% + 2px);
}

h4.image-button__title ,
.bg-medium h4.image-button__title ,
.bg-dark h4.image-button__title {
    color: var(--medium);
    margin-bottom: 10px;
    line-height: 1.375em;
    letter-spacing: 0.04em;
}

.image-button-slider {
    margin: 0 -16px;
    padding-bottom: 48px;
}

.image-button-slider .image-button-item {
    padding: 16px;
}

.image-button-slider .image-button {
    border-radius: 16px;
    padding-left: 0;
    height: 421px;
}

.image-button-slider .image-button__hover {
    position: absolute;
    padding: 32px 10px;
    height: auto;
    width: 100%;
    bottom: 0;
    text-align: center;
}

.image-button__hover .image-button__cta ,
.bg-medium .image-button__hover .image-button__cta ,
.bg-dark .image-button__hover .image-button__cta {
    color: var(--primary-color);
}




.image-buttons__bottom-content {
    margin-top: var(--section-spacing);

}

@media (max-width: 767px) {
    .image-button__image {
        max-width: 150px;
    }
}

@media (min-width: 768px) {

    .image-buttons__headlines {
        margin-bottom: 0;
    }
    
    
    .image-button-item {
        padding-top: 32px;
    }
    
    .image-button {
        border-radius: 16px;
        padding-left: 0;
        height: 421px;
    }
    
    .image-button__hover {
        position: absolute;
        padding: 32px 10px;
        height: auto;
        width: 100%;
        bottom: 0;
        text-align: center;
    }
    
    h4.image-button__title {
        font-size: 18px;
        margin-bottom: 13px;
    }
}


@media (min-width: 1200px) {

    .image-buttons__headlines {
        margin-bottom: 32px;
    }

    .image-button-slider {
        padding-bottom: 66px;
    }
    
    .image-button,
    .image-button-slider .image-button {
        height: 535px;
    }
    
    .image-button__hover {
        padding: 32px;
        color: var(--white);
    }
    
    .image-button__hidden {
        opacity: 0;
        max-height: 0;
        transition: all 0s ease-in-out;
    }
    .image-button:hover .image-button__cta:not(.cta_hover) {
        display: none;
    }
     
    .image-button:hover .image-button__hidden {
        opacity: 1;
        max-height: 300px;
        transition: all 0.5s ease-in-out;
    }

    .image-button__description {
        font-weight: normal;
        padding-bottom: 16px;
    }

    .image-button:hover .image-button__hover {
        background: var(--medium);
    }

    .image-button:hover .image-button__title {
        color: var(--white);
    }

    .image-button .image-button__cta {
        color: var(--primary-color);
    }

    .image-button:hover .image-button__cta,
    .bg-medium .image-button:hover .image-button__cta,
    .bg-dark .image-button:hover .image-button__cta {
        color: var(--white);
        border-color: var(--white);
    }

    .bg-medium .image-button:hover .image-button__hover {
        background: var(--dark);
    }

    .image-button-slider .image-button__hover {
        padding: 32px;
    }
}

