﻿

.choose-us-area .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.single-choose {
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .single-choose h3,
    .single-choose p,
    .single-choose a {
        margin-bottom: auto;
    }


.single-services {
    height: 90%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    /* margin-bottom: 30px; */
}

.single-blog {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .single-blog img {
        width: 100%;
        height: 220px;
    }

.blog-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .blog-content ul {
        padding: 0;
        margin-bottom: 15px;
        list-style: none;
    }

    .blog-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

.read-more {
    align-self: flex-start;
}


.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

    .pagination li {
        list-style: none;
        margin: 0 5px;
    }

        .pagination li a {
            display: block;
            padding: 10px 15px;
            color: #f9c326;
            text-decoration: none;
            border: 1px solid #dee2e6;
        }

        .pagination li.active a {
            background-color: #f9c326;
            color: white;
            border-color: #f9c326;
        }



.page-item {
    margin: 0 5px;
}

    .page-item.active .page-link {
        font-weight: bold;
        color: #f9c326;
    }

.page-link {
    cursor: pointer;
}