/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.image-cards {
    position: relative;
}

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

.image-cards__top-content {
    margin-bottom: 32px;
    text-align: center;
}

.image-cards__top-content h2 {
    margin-bottom: 32px;
}

.image-cards__wrap .row {
    gap: 32px 0;
}

.image-card {
    padding: 10px 92px 10px 32px;
    display: block;
    position: relative;
    text-decoration: none;
    width: 100%;
    height: 126px;
    overflow: hidden;
    border-radius: 20px;
    background: -o-radial-gradient(0% 99.92%, 379.52% 139.72%, #D9D9D9 0%, #ECEDF0 50%, #FFF 100%);
    background: radial-gradient(379.52% 139.72% at 0% 99.92%, #D9D9D9 0%, #ECEDF0 50%, #FFF 100%);
    -webkit-transition: -webkit-transform .2s linear;
    transition: -webkit-transform .2s linear;
    -o-transition: transform .2s linear;
    transition: transform .2s linear;
    transition: transform .2s linear, -webkit-transform .2s linear;
}

.image-card--blue {
    background: -o-linear-gradient(315deg, #793df0 0%, #00558c 44%, #0085ca 100%);
    background: linear-gradient(135deg, #793df0 0%, #00558c 44%, #0085ca 100%);
}

.image-card::after {
    content: '\e903';
    font-family: 'mini-link-icons';
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
    font-weight: normal;
    font-size: 16px;
    border-radius: 100px;
    color: var(--white);
    background: var(--primary-color);
    -webkit-box-shadow: 0 0 20px 0 rgba(96, 110, 178, 0.40);
            box-shadow: 0 0 20px 0 rgba(96, 110, 178, 0.40);
    width: 52px;
    height: 52px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.image-card--blue:after {
    color: var(--primary-color);
    background: var(--white);
}

.image-card__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.image-card__info h4 {
    font-size: 20px;
    color: var(--black);
    display: block;
    margin: 0;
}

.image-card--blue .image-card__info h4 {
    color: var(--white);
}

.image-card__graphic {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
}

.image-cards-slider-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .image-cards__top-content {
        margin-bottom: 50px;
    }

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

    .image-cards__wrap {
        margin-right: -52px;
    }

    .image-cards__wrap .slick-slide {
        margin: 0 16px;
    }

    .image-cards__wrap .row {
        gap: 20px;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .image-card {
        padding: 46px 32px 20px;
        height: auto;
        min-height: 290px;
        width: 397px;
        text-align: center;
    }

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

    .image-card__image {
        width: 100px;
        margin: 0 auto 16px;
        position: relative;
        z-index: 2;
    }

    .image-card__info {
        display: block;
        height: auto;
    }

    .image-card__info h4 {
        font-size: 30px;
        margin: 0 0 16px;
    }

}


@media (min-width: 1200px) {
    .image-cards__top-content {
        margin-bottom: 36px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 0 64px;
    }

    .image-cards__top-content h2:last-child {
        margin-bottom: 0;
    }

    .image-cards__wrap {
        margin-right: 0px;
    }

    .image-card {
        padding: 64px 45px 20px;
        height: auto;
        width: 100%;
        min-height: 330px;
    }

    .image-card__btn{
        display: block;
        margin-bottom: 60px;
    }

    .image-card__image {
        margin: 0 auto 22px;
    }

    .image-card__info h4 {
        margin-bottom: 20px;
    }

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

    .image-cards__wrap .row {
        gap: 0 0;
    }

}