.cards-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 32px 35px 39px;
    position: relative;
}
.cards-grid::before {
    content: '';
    position: absolute;
    background: var(--color3);
    width: calc(100% + 16px);
    right: -8px;
    border-radius: 12px;
    height: 90%;
    bottom: 10%;
    z-index: -1;
}
.card-image {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
    transition: 0.4s ease;
}
.item-card:hover .card-image {
    box-shadow: 0 2px 8px 0 #00000087;
}
.item-card .title {
    text-align: center;
    font-size: 14px;
}
.card-image img {
    width: 100%;
}
.item-service {
    box-shadow: 0 7px 15.5px rgba(142, 142, 142, 0.2);
    padding: 22px 15px 15px;
    border-radius: 12px;
}
.item-card img {
    width: 100%;
}
.item-service .title {
    font-size: 14px;
    margin: 10px 0 5px;
    line-height: 1.4;
}
.item-service .link {
    display: flex;
    align-items: center;
    font-size: 10px;
    color: var(--color1);
    gap: 7px;
    font-family: var(--bold_font);
    white-space: nowrap;
}
.item-service .link i {
    font-size: 9px;
}
@media screen and (min-width: 768px){

    .item-service {
        padding: 22px 22px 15px;
    }
    .item-service .title {
        font-size: 20px;
    }
    .item-service .link {

        font-size: 14px;
    }
    .item-service .link i {
        font-size: 12px;
    }
}
@media screen and (min-width: 992px){

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 26px 55px 29px;
    }
    .cards-grid::before {
        height: 80%;
        bottom: 8px;
    }
}
@media screen and (min-width: 1200px){
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 82px;
    }
}
@media screen and (min-width: 1400px){}