﻿

.service-card {
    text-align: center;
}

.service-card .service-icon {
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
}

.service-card .service-title {
    margin-bottom: 25px;
    text-align: center;
}

.specialty-text {
    margin: 25px auto;
    max-width: 90%;
}

.specialty-item {
    font-size: 14px;
    color: #343a46;
    margin-bottom: 12px;
    line-height: 1.5;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

    .specialty-item::before {
        content: "•";
        position: absolute;
        left: 0;
        color: inherit;
    }

.service-card:hover .specialty-item {
    color: #fff;
}

@media (min-width: 1200px) {
    .service-card {
        min-height: 550px;
        position: relative;
    }

        .service-card .btn {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            margin-top: 0;
        }
}

.service-card .btn {
    margin-top: 20px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}


