.category-tittle {
    margin: 0;
    font-size: 45px;
    font-weight: 700;
    color: #000;
    border-bottom: 4px solid #000;
    display: inline-block;
    margin-bottom: 15px;
}

.category-para {
    margin: 0;
    font-size: 17px;
    color: #000;
}

.category-para a {
    color: #000;
}

.two-part-section {
    display: flex;
    gap: 20px;
    padding: 20px 0px;
}

.left-part {
    width: 60%;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
}

.right-part {
    width: 40%;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
}

.cateagory-main-img {
    width: 100%;
    height: auto;
}

.three-part-section {
    display: flex;
    gap: 20px;
    padding: 20px 0px;
}

.three-part-grid {
    width: 33.33%;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
}

.category-grid-para {
    margin: 0;
    font-size: 16px;

    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.category-grid-para a {
    color: #000;
}


.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    padding: 30px 0px;
}


.page {
    display: inline-block;
    padding: 6px 12px;
    text-decoration: none;
    color: #000;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.page:hover {
    border-color: #000;
}

.page.active {
    border: 1px solid #999;
    font-weight: bold;
}

.dots {
    color: #666;
}


@media (max-width: 767px) {
    .category-tittle {
        font-size: 35px;
        border-bottom: 2px solid #000;
    }
    .two-part-section {
    display: block;
}

.left-part {
    width: 100%;
}

.right-part {
    width: 100%;
}
.three-part-section {
    display: block;
}

.three-part-grid {
    width: 100%;
}
}