/* Breadcrumb */
.breadcrumb {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.breadcrumb.no-banner {
    height: unset;
    padding: 15px 0;
    background-color: #eee;
}

.breadcrumb.no-banner ul li a {
    color: #000;
}

.breadcrumb-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.breadcrumb-img::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(69 69 69 / 65%);
    z-index: 2;
}

.breadcrumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breadcrumb .content {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    z-index: 3;
    text-align: center;
    color: #FFF;
}

.breadcrumb .content h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.breadcrumb ul {
    display: block;
    white-space: normal;
}

.breadcrumb ul li{
    display: inline;
}

.breadcrumb ul li:not(:last-child) {
    position: relative;
    padding-right: 15px;
}

.breadcrumb ul li:not(:last-child)::before{
    content: '/';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 6px;
}

.breadcrumb ul li:last-child {
	color: var(--color-5);
}

.breadcrumb ul li a {
    color: #FFF;
}

.breadcrumb ul li a:hover {
    color: #000;
}
/* End breadcrumb  */

/* Content cho editor  */
.noi-dung{
    font-size: 15px;
}

.noi-dung p{
    margin-bottom: 10px;
    text-align: justify;
    line-height: 1.5;
}

.noi-dung h2{
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.noi-dung h3{
    font-size: 17px;
    margin-bottom: 15px;
    font-weight: 600;
}

.noi-dung hr{
    margin: 15px 0;
}

.noi-dung table td img{
    border-radius: 20px;
}

.noi-dung table td {
    width: 50%;
}

.noi-dung blockquote{
    border-left: 5px solid var(--color-3);
    padding: 8px 15px;
	background: #FFF;
    border-radius: 10px;
    margin-bottom: 15px;
}

.noi-dung blockquote h3,
.noi-dung blockquote h2{
    margin-bottom: 0;
}

.noi-dung ul,
.noi-dung ol {
    margin-left: 30px;
	margin-bottom: 10px;
}

.noi-dung ul li,
.noi-dung ol li {
	margin-bottom: 5px;
}

.noi-dung table tr td {
    padding: 10px;
}

.noi-dung table {
	margin: 0 -10px;
}
/* end  */

/* pagination  */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin-top: 30px;
    gap: 6px;
}

.pagination .page-item {
    display: inline-block;
}

.pagination .page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #FFF;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
}

.pagination .page-link:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.pagination .page-item.active .page-link {
    background: #000;
    color: #fff;
    border-color: #000;
    pointer-events: none;
}

.pagination .page-item.disabled .page-link {
    background: #f5f5f5;
    color: #aaa;
    border-color: #ddd;
    pointer-events: none;
}

@media (max-width: 1100px) {
    .noi-dung table tr td {
        width: 50%;
    }

    .noi-dung img {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
	.noi-dung table tr td {
        width: 100% !important;
        display: block;
    }
}

@media (max-width: 768px) {
    .pagination .page-link {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .noi-dung h2 {
        font-size: 18px;
    }

    .noi-dung h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

@media (max-width: 550px) { 
    .breadcrumb {
        height: 180px;
    }

    .breadcrumb .content h1 {
        font-size: 20px;
    }
}