.services-archive {
    padding: 70px 0;
    direction: rtl;
    background: #fff;
}

.services-header {
    max-width: 650px;
    margin: 0 auto 50px;
}

.services-label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #777;
}

.services-header h1 {
    margin-bottom: 14px;
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    color: #161616;
}

.services-header p {
    margin: 0;
    font-size: 15px;
    line-height: 2;
    color: #777;
}


/* Card */

.service-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    transition: .3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #ddd;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}


/* Image */

.service-image {
    position: relative;
    display: block;
    height: 240px;
    overflow: hidden;
    background: #f7f7f7;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.04);
}

.service-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-no-image i {
    font-size: 50px;
    color: #ccc;
}


/* Content */

.service-content {
    padding: 24px;
}

.service-content h2 {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.8;
}

.service-content h2 a {
    color: #1c1c1c;
    text-decoration: none;
}

.service-description {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 2;
    color: #777;
}


/* Link */

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
}

.service-link i {
    transition: transform .25s ease;
}

.service-card:hover .service-link i {
    transform: translateX(-4px);
}


/* Pagination */

.services-pagination {
    margin-top: 50px;
}

.services-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.services-pagination .page-numbers {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    border-radius: 10px;
    color: #333;
    text-decoration: none;
    transition: .25s;
}

.services-pagination .page-numbers.current,
.services-pagination .page-numbers:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}


/* Empty */

.services-empty {
    padding: 80px 20px;
    text-align: center;
}

.services-empty i {
    display: block;
    margin-bottom: 20px;
    font-size: 55px;
    color: #ddd;
}

.services-empty h2 {
    margin-bottom: 10px;
    font-size: 22px;
}

.services-empty p {
    color: #888;
}


/* Responsive */

@media (max-width: 767.98px) {

    .services-archive {
        padding: 45px 0;
    }

    .services-header {
        margin-bottom: 35px;
    }

    .services-header h1 {
        font-size: 25px;
    }

    .service-image {
        height: 220px;
    }

}