

.image-cards__headlines {
    text-align: center;
    padding-bottom: 10px;
}

.image-cards__title {
    margin-bottom: 20px;
}

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

.image-card-item {
    margin-top: 20px;
}

.image-card {
    border-radius: 45px;
    height: 125px;
    display: block;
    overflow: hidden;
    position: relative;
}

.image-card::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom,  #003c71 0%,#001e39 100%);
    opacity: 0.8;
}

.image-card__details {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}


.image-card__details h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    padding: 0 23px 0 0;
    display: inline-block;
    position: relative;
    max-width: 85%;
}

.image-card__details h4::after {
    content: '\e902';
    font-family: 'chemtreat';
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 13px;
    font-weight: normal;
    transform: translate(0, -50%);
    transition: all ease-in-out 0.3s;
    color: #FF6720;
    line-height: 1em;
}
.image-card.no-link{
    pointer-events: none;
}
.image-card.no-link .image-card__details h4::after{
    display: none;
}
.image-card.no-link .image-card__details h4{
    padding-right: 0;
}

@media (min-width: 1200px) {
    .image-cards__headlines {
        text-align: left;
        display: flex;
        align-items: flex-end;
        flex-wrap: wrap;
    }

    .image-cards__title {
        margin-bottom: 0;
        width: calc(100% - 253px);
        padding-right: 95px;
    }

    .image-cards__title-no-cta {
        width: 100%;
        text-align: center;
        padding: 0 95px;
    }

    .image-cards__headlines .btn {
        width: 253px;
    }

    .image-card {
        height: 160px;
        transition: all .3s;
    }

    .image-card:hover {
        box-shadow: 0px 0px 20px rgba(0,60,113,0.35);
        transform: translate3d(0,-10px,0);
        transition: all .3s;
    }

    .image-card:hover::after {
        opacity: 0.9;
    }
}