.synergy-services-grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;

    direction: rtl;
}


.synergy-service-card {
    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 300px;

    padding: 24px;

    background: #fff;

    border: 1px solid #e8ecf1;
    border-radius: 18px;

    box-shadow:
        0 1px 2px rgba(16, 24, 40, 0.02),
        0 8px 24px rgba(16, 24, 40, 0.04);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.synergy-service-card:hover {
    transform: translateY(-4px);

    border-color: #dce3e9;

    box-shadow:
        0 4px 10px rgba(16, 24, 40, .04),
        0 16px 35px rgba(16, 24, 40, .08);
}


/* Label */

.synergy-service-label {
    display: inline-flex;

    width: fit-content;

    padding: 5px 10px;

    margin-bottom: 18px;

    background: #eef8fb;

    border-radius: 100px;

    color: #28778b;

    font-size: 11px;
    font-weight: 500;
}


/* Title */

.synergy-service-title {
    margin: 0 0 12px;

    color: #182230;

    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
}


/* Description */

.synergy-service-description {
    color: #667085;

    font-size: 13px;
    line-height: 2;
}

.synergy-service-description p:last-child {
    margin-bottom: 0;
}


/* Bottom */

.synergy-service-card-bottom {
    margin-top: 30px;
}


/* Price */

.synergy-service-price {
    margin-bottom: 18px;
}

.synergy-price-label {
    display: block;

    margin-bottom: 5px;

    color: #98a2b3;

    font-size: 11px;
}

.synergy-service-price .amount {
    color: #182230;

    font-size: 17px;
    font-weight: 700;
}


/* Button */

.synergy-service-button {
    width: 100%;
    min-height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 8px 15px;

    background: #172554;

    border-radius: 10px;

    color: #fff !important;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none !important;

    transition:
        opacity .2s ease,
        transform .2s ease;
}


.synergy-service-button:hover {
    color: #fff !important;

    opacity: .92;

    transform: translateY(-1px);
}


/* Tablet */

@media (max-width: 1100px) {

    .synergy-services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* Mobile */

@media (max-width: 600px) {

    .synergy-services-grid {
        grid-template-columns: 1fr;
    }

    .synergy-service-card {
        min-height: auto;
        padding: 20px;
    }

}