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

.image-button {
    position: relative;
    display: block;
    width: 100%;
    height: 180px;
    overflow: hidden;
    margin-bottom: 0;
    border: none;
    border-radius: 3px;
}

.image-button__img {
    position: absolute;
    display: block;
    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: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.image-button__hover {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 11px 10px;
    color: #fff;
    height: 100%;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}

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

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

.image-button__title {
    padding: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.image-button-item {
    padding: 20px 10px;
}

.image-button {
    margin-bottom: 0;
}

.js-image-buttons,
.js-image-buttons-text {
    margin: 0 -16px;
    padding-bottom: 55px;
}

.image-buttons .slick-arrow {
    width: 50px;
    height: 50px;
    color: #13307F;
    background: #FFFFFF;
    margin-bottom: 0px;
    top: auto;
    bottom: 0;
    border: 1px solid #DDDDDD;
}

.image-buttons .slick-arrow:focus,
.image-buttons .slick-arrow:hover {
    color: #fff;
    background: #13307F;
    border: 1px solid #13307F;
}

.image-buttons .slick-prev {
    left: 50%;
    margin-left: -50px;
    border-radius: 3px 0px 0 3px;
}

.image-buttons .slick-next {
    right: 50%;
    margin-right: -50px;
    border-radius: 0 3px 3px 0;
    border-left: 0;
}

.image-buttons__top-content {
    padding-bottom: 15px;
}

.image-buttons__btn {
    padding-top: 30px;
}

.image-buttons-curve {
    position: absolute;
    right: 0;
    top: 120px;
    z-index: -1;
}

.image-button--no-link .image-button__hidden {
    opacity: 1;
    max-height: 100%;
}

.image-button--link:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transform: scale(1.075);
    transform: scale(1.075);
}

.image-button--link:hover:after {
    background: linear-gradient(to bottom, rgba(22, 22, 22, 0.75) 100%, rgba(22, 22, 22, 0.75) 100%);
}

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

.image-button--link:hover .image-button__title {
    text-decoration: underline;
}

.image-button__title::after {
    content: '\e91a';
    font-family: 'icomoon' !important;
    font-weight: 400;
    font-size: 16px;
    opacity: 0;
    margin-left: 5px;
    display: inline-block;
}

.image-button.image-button--link:hover .image-button__title:after {
    opacity: 1;
}

@media (min-width: 768px) {

    .image-button {
        height: 216px;
    }

    .image-buttons--without-description .image-button {
        height: 200px;
    }

    .image-button__hover {
        padding: 13px 10px;
    }

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

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

    .js-image-buttons,
    .js-image-buttons-text {
        margin: 0 -16px;
        padding-bottom: 58px;
    }

    .image-buttons .slick-arrow {
        width: 50px;
        height: 50px;
        color: #13307F;
        background: #FFFFFF;
        margin-bottom: 0px;
        top: auto;
        bottom: 0;
        border: 1px solid #DDDDDD;
    }

    .image-buttons .slick-prev {
        left: auto;
        right: 66px;
        margin-left: 0;
        border-radius: 3px 0px 0 3px;
    }

    .image-buttons .slick-next {
        right: 16px;
        margin-right: 0;
        border-radius: 0 3px 3px 0;
        border-left: 0;
    }

    .image-buttons__btn {
        padding-top: 0;
        margin-top: -45px;
    }

    .image-buttons__btn .btn {
        padding: 13px 45px 13px 25px;
    }
}

@media (min-width: 1200px) {
    .image-button {
        height: 420px;
        z-index: 1;
        transition: all 0.5s ease-in-out;
    }

    .image-buttons--without-description .image-button {
        height: 307px;
    }

    .image-button__hover {
        z-index: 2;
        bottom: 0;
        color: #fff;
        display: block;
        height: auto;
        padding: 30px 35px;
    }

    .image-button__hover:after {
        height: 100%;
    }

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

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

    .image-button__description {
        padding: 10px 0 28px 0;
    }

    .image-button__cta {
        font-size: 20px;
    }

    .image-button__hover:after {
        display: none;
    }

    .image-button:after {
        content: '';
        position: absolute;
        z-index: 1;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    }

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

    .js-image-buttons,
    .js-image-buttons-text {
        padding-bottom: 75px;
    }

    .image-buttons__btn {
        padding-top: 0;
        margin-top: -45px;
    }

    .image-buttons__btn .btn {
        padding: 14px 50px 14px 30px;
    }

    .image-buttons--no-arrow {
        padding-bottom: 0;
    }

}