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

.image-buttons h2 {
    padding-bottom: 7px;
}

.image-button {
    position: relative;
    display: block;
    width: 100%;
    height: 184px;
    z-index: 1;
    margin-top: 12px;
}

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


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


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

.image-button__hover {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    padding: 12px;
}

.image-button__title {
    color: #fff;
    font-size: 25px;
    text-transform: uppercase;
    text-shadow: 0 0 90px #000;
    position: relative;
    z-index: 1;
}

.image-button__cta {
    position: absolute;
    bottom: 12px;
    width: 100%;
    left: 2px;
    display: flex;
}

.image-button__cta .btn {
    padding: 14px 12px;
    font-size: 14px;
    border-color: #fff;
    cursor: pointer;
    margin: 0 0 0 10px;
}


.image-button__white {
    background-color: #fff;
    color: #001830;
    z-index: 2;
}

.image-button__transparent {
    background-color: rgba(255,255,255,0.24);
    color: #fff;
    box-shadow: 0 0 30px #444;
}

.image-buttons h6 {
    font-size: 18px;
    margin-bottom: 1px;
}

.image-button[href*="#"] {
    pointer-events: none;
}

@media (min-width: 768px) {
    .image-buttons {
        padding: 52px 0 67px 0;
    }

    .image-buttons h2 {
        padding-bottom: 0;
    }
    
    .image-button {
        margin-top: 32px;
        min-height: 233px;
    }

    .image-button__hover {
        padding: 16px;
    }

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

    .image-button__cta {
        bottom: 16px;
        left: 6px;
    }

    .image-buttons h6 {
        font-size: 20px;
        margin-bottom: 8px;
    }
}

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

    .image-buttons h2 {
        padding-bottom: 6px;
    }
    
    .image-button {
        min-height: 312px;
    }

    .image-button__title {
        font-size: 28px;
        padding-bottom: 15px;
    }

    .image-button__description {
        font-size: 16px;
        line-height: 1.75em;
        color: #fff;
        padding-right: 20px;
        opacity: 0;
        transform: scale(0.8);
        visibility: hidden;
        transition: opacity .3s ease-in-out, visibility .3s ease-in-out, transform 0.3s ease-in-out;
    }

    .image-button__cta {
        bottom: 16px;
    }

    .image-button__cta {
        bottom: 16px;
        left: 6px;
    }

    .image-button__hover {
        padding-top: 25px;
        background-color: rgba(0,24,48,0.1);
        transition: all .3s ease-in-out;
    }

    .image-button__cta .btn {
        padding: 14px 24px;
    }

    .image-button__hover:hover {
        background-color: rgba(0,24,48,0.6);
        transition: all .3s ease-in-out;
    }

    .image-button__hover:hover .image-button__description {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

}