.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 20px;
}

.service-card {
    background: #f2f2f2;
    padding: 1.5rem 2.5rem 2.5rem 2.5rem;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    background: #fff;
    box-shadow: 0 0px 15px 0 rgba(30, 30, 30, 0.1);
}

.service-card-icon {
    margin-bottom: 1.25rem;
}

.service-card-icon svg,
.service-card-icon i,
.service-card-icon img{
    /* width: 48px; */
    height: 50px;
    color: #2fb6a2;
    fill: #2fb6a2;
}

.service-card-title {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.service-card-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
}

.service-card-readmore {
    position: absolute;
    bottom: 2rem;
    right: 1.5rem;
    color: #2fb6a2;
    font-weight: 500;
}
/* START CARD */
.service-card--start {
    background: transparent;
    box-shadow: none;
    display: flex;
    align-items: center;
}

.service-card--start h3 {
    font-size: 1.6rem;
    font-weight: 500;
}

.service-card--start:hover {
    background: transparent;
    box-shadow: none;
}

/* END CARD */
.service-card--end {
    background: transparent;
    box-shadow: none;
    display: flex;
    flex-direction: column;
}

.service-card.service-card--end:hover {
    box-shadow: 0 2px 4px 0 rgba(30, 30, 30, 0.2);
}

.service-card--end h3 {
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 1.25rem;
    text-align: center;
    font-weight: 500;
}

.service-card-end-icon {
    width: 32px;
    height: 32px;
    align-items: center;
    transition: 0.3s;
    transform: rotate(0deg);
    /* padding: 10px; */
    background: #2fb6a2;
    border-radius: 50%;
    display: flex;
    align-self: end;
    justify-content: center;
}

.service-card-end-icon:hover {
    width: 27px;
    vertical-align: middle;
    align-items: center;
    transform: scale(1.5);
    height: 27px;
    padding: 6px;
}

.service-card-end-icon svg {
    fill: #fff;
    width: 18px;
    height: 18px;
}


/* Responsive */
@media (max-width: 1024px) {
    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .service-cards-grid {
        grid-template-columns: 1fr;
    }
}
