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

.image-cards__headlines {
    margin-bottom: 20px;
    padding: 0 10px;
}

.image-cards__bg {
    position: absolute;
    z-index: -1;
    object-fit: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.image-card-flex {
    justify-content: center;
    row-gap: 10px;
    position: relative;
}

.image-card {
    position: relative;
    height: 335px;
    display: block;
    background: none;
    transition: transform .2s linear;
}

.image-card img {
    border-radius: 25px;
}

.image-card__details {
    position: absolute;
    left: 6px;
    bottom: 6px;
    width: calc(100% - 12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.26) 50%, rgba(0, 0, 0, 0.49) 100%), linear-gradient(180deg, rgba(49, 43, 161, 0.50) 0%, rgba(115, 106, 255, 0.50) 50%, rgba(183, 96, 255, 0.50) 100%);
    backdrop-filter: blur(15px);
    padding: 20px 20px 15px;
    text-align: center;
}

.image-card__title {
    color: #FFF;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 8px;
}

.image-card__description {
    color: #F2F2F2;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.60em;
    margin-bottom: 5px;
}

.image-card__btn {
    color: #FFF;
    position: relative;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2em;
    padding: 0 25px 0 0;
    vertical-align: middle;
    text-decoration: none;
}

.image-card__btn::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 4px;
    background: #D29CFF;
    transition: all ease-in-out 0.3s;
}

.image-card__btn::after {
    content: '\e906';
    font-family: 'smartLinx-icon';
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
    background: #FCA700;
    color: #885A00;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 1px;
    padding-left: 2px;
    font-size: 7px;
}

.image-card__details .btn-tertiary {
    color: #fff;
}

.image-cards__bttn {
    margin-top: 20px;
}

@media (min-width: 768px) {

    .image-cards__headlines {
        margin-bottom: 35px;
        padding: 0;
    }

    .image-cards__bttn .btn-group {
        margin-top: 35px;
    }

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

    .image-card {
        height: 375px;
    }


    .image-card__details {
        padding: 20px 15px 15px;
    }

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

    .image-card__description {
        font-size: 15px;
    }

    .image-card__btn {
        font-size: 16px;
    }

    .image-cards__bttn {
        margin-top: 35px;
    }

}

@media (min-width: 1200px) {

    a.image-card:hover {
        transform: translate3d(0, -10px, 0);
    }

    .image-card__btn {
        font-size: 18px;
        padding: 0 32px 0 0;
        transition: all ease-in-out 0.3s;
    }

    .image-card__btn::after {
        right: 0;
        font-size: 10px;
        width: 25px;
        height: 25px;
        padding-bottom: 0;
        padding-left: 2px;
        transition: all ease-in-out 0.2s;
    }

    .image-card:hover .image-card__btn {
        padding: 0 44px 0 0;
        transition: all ease-in-out 0.3s;
    }

    .image-card:hover .image-card__btn::before {
        width: calc(100% - 43px);
        transition: all ease-in-out 0.3s;
    }

    .image-card:hover .image-card__btn::after {
        width: 30px;
        height: 30px;
        font-size: 12px;
        padding-bottom: 0;
        transition: all ease-in-out 0.3s;
    }

    .image-cards__headlines {
        margin-bottom: 50px;
    }

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


    .image-card__details {
        padding: 20px 19px 19px;
    }

    .image-cards__bttn {
        margin-top: 50px;
    }

}