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

.image-button {
    height: 295px;
    display: block;
    background: none;
    position: relative;
    box-shadow: 0 0 15px rgba(0,0,0,0.16);
    overflow: hidden;
}

.image-button--sml {
    height: 167px;
    box-shadow: none;
}

.image-button__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s ease;
}

.image-button__hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 13px 9px;
    z-index: 1;
}

.image-button__hover::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 143px;
    z-index: -1;
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(34,34,34,1) 100%);
}

.image-button__hover::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: #707070;
}

.image-button__cta {
    color: var(--color-primary);
    display: inline-block;
    position: relative;
    background: none;
    border: none;
    margin: 0;
    padding: 0 26px 0 0;
    /* line-height: 1em; */
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.image-button__cta::after {
    /* content: '\e904'; */
    content: '\e90f';
    font-family: 'icomoon';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    font-weight: normal;
    font-size: 14px;
    line-height: 1em;
}

.image-button__details {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    text-align: center;
    padding: 0 35px;
}

.image-button__title {
    color: var(--color-white);
    padding: 0;
    font-size: 24px;
    line-height: 1.333em;
}
.image-button-item {
    z-index: 1;
}

@media (min-width: 768px) {
    .image-button-item {
        margin-top: 32px;
    }

    .image-buttons__sml-wrap {
        padding: 0 58px;
    }

    .image-button__details {
        padding: 0 24px;
    }
    
}

@media (min-width: 1200px) {

    .image-buttons__sml-wrap {
        padding: 0;
    }
    
    .image-button {
        height: 365px;
    }
    
    .image-button--sml {
        height: 184px;
    }

    .image-button__hover {
        padding: 14px 32px;
    }
    
    .image-button__hover::before {
        height: 216px;
    }
    
    
    .image-button__cta {
        padding: 0 34px 0 0;
        font-size: 18px;
    }
    
    .image-button__cta::after {
        font-size: 21px;
        margin-top: -1.5px;
    }
    
    .image-button__details {
        padding: 0 24px;
    }

    .image-button:hover .image-button__hover::before {
       
        height: 365px;
    }
    

    .image-button--sml:hover .image-button__img {
        filter: blur(5px);
    }
    .justify-center{
        justify-content: center;
    }
    
}

.paragraph_text{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 14px 16px;
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(34,34,34,1) 100%);
    color: var(--color-white);
    display: flex;
    align-content: flex-end;
    flex-wrap: wrap;
    padding-bottom: 65px;

}
.paragraph_text p {
    z-index: 99;
}

@media (min-width: 1200px) {
    .paragraph_text{
        padding: 14px 32px;
        padding-bottom: 65px;
    }
    
}