.card-item{
    background: #ECF0F3;
    border-radius: 30px;
    overflow: hidden;
    height: auto;


}
a.card-item{
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}
.card__image>img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}
.card__content{
    padding: 24px;
}
h4.card__title{
    margin-top: 0;
    margin-bottom: 8px;
}
.card__description>p,
.card__description{
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #3c3c3c;

}
.card__description>h4{
    margin-top: 0;
}
a.card-item:hover{
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 50px 160px rgba(34, 46, 56, 0.15);
}

.card-item svg {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease;
    will-change: transform;
    margin-top: 30px;
}

.card-item:hover svg {
    transform: translateX(8px) scale(1.08);
}

@media screen and (max-width: 991.98px){
    .card__image>img{
        height: 230px;
    }
}
@media screen and (max-width: 460.98px){
    .card__image>img{
        height: 175px;
    }
}