.image-buttons {overflow: hidden;}

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

.image-buttons__headlines :last-child {
    margin-bottom: 0;
}

.image-buttons .btn-group {
    margin-top: 30px;
}

.btn-group--center {
    justify-content: center;
}

.image-button-flex {
    row-gap: 30px;
    justify-content: center;
}

.image-button {
    background: var(--grey);
    border-radius: var(--border-radius);
    font-family: var(--primary-font);
    display: flex;
    flex-wrap: wrap;
    position: relative;
    font-weight: normal;
    align-items: center;
    height: 236px;
    text-decoration: none;
    overflow: hidden;
}

.bg-grey .image-button {
    background: var(--white);
}

.image-button__image {
    width: 116px;
    position: relative;
    height: 100%;
}

.image-button__details {
    position: relative;
    width: calc(100% - 116px);
    padding-right: 25px;
}

.image-button__title {
    color: var(--black);
    font-family: var(--secondary-font);
    font-size: 22px;
    line-height: 1.181em;
    margin-bottom: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.image-button__price {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--sky-blue);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2em;
}

.image-button__description {
    padding-top: 8px;
    color: var(--black);
}

.image-button::after {
    content: '\e91e';
    font-family: 'iv-icon';
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--deep-navy);
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-button-slider {
    margin: 0 -16px;
    padding: 0 22px 60px;
    justify-content: center;
    display: flex;
}

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

.image-buttons__headlines h2 {
    font-size: 42px;
}

.image-button__image img {
    object-fit: contain;
}

.image-button__image img.placeholder {
    padding: 30px;
}

@media (min-width: 768px) {
    .image-buttons__headlines {
        margin-bottom: 50px;
    }

    .image-buttons .btn-group {
        margin-top: 50px;
    }

    .image-button-flex {
        row-gap: 32px;
    }

    .image-button {
        height: 246px;
    }

    .image-button__image {
        width: 171px;
    }

    .image-button__details {
        width: calc(100% - 171px);
        padding-right: 94px;
        padding-left: 61px;
    }

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

    .image-button__price {
        font-size: 28px;
    }

    .image-button::after {
        right: 25px;
        bottom: auto;
        top: 50%;
        transform: translate(0, -50%);
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .image-button-slider {
        padding: 0 0 80px;
    }

    .image-button-slider .image-button {
        width: 665px;
    }

    .image-buttons__headlines h2 {
        font-size: 48px;
    }

    .image-buttons__bttn .btn-group {
        column-gap: 50px;
    }
}


@media (min-width: 1200px) {


    .image-button-flex {
        row-gap: 38px;
    }

    .image-button {
        height: 284px;
    }

    .image-button__image {
        width: 198px;
    }

    .image-button__details {
        width: calc(100% - 198px);
        padding-right: 51px;
        padding-left: 0;
    }

    .image-button::after {
        right: 32px;
        bottom: 23px;
        top: auto;
        transform: translate(0, 0);
    }

    .image-button {
        overflow: hidden;
    }

    .image-button:hover {
        background: var(--deep-navy);
        box-shadow: 0 0 17px 8px rgba(15, 35, 53, 0.19);
    }

    .image-button:hover::after {
        background: var(--white);
        color: var(--deep-navy);
    }

    .image-button:hover .image-button__title,
    .image-button:hover .image-button__price {
        color: var(--white);
        border-color: rgba(255, 255, 255, 0.15);
    }

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

    .image-button__image img {
        transition: all .3s;
    }

    .image-button:hover .image-button__image img {
        transform: rotate(-10deg);
        margin-bottom: -8px;
    }

    .image-button-slider {
        margin-top: -16px;
    }

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

    .image-button-slider .image-button {
        width: 507px;
    }

    .image-button-item .image-button:hover {
        background: var(--deep-navy);
        box-shadow: 0 0 16px rgba(15, 35, 53, 0.19);
    }

    .image-buttons__headlines h2 {
        font-size: 65px;
    }

}


/*
 * Center slider items if no paging
 */
.image-button-slider.no-paging {
    padding-bottom: 0;
}

.image-button-slider.no-paging .slick-track {
    transform: none !important;
    justify-content: center;
    display: flex;
    width: auto !important;
}