/* Breadcrumb */
.breadcrumb {
    padding: 12px 0;
    background: #14332d;
    color: #fff;
    border-top: solid 1px #728581;
    border-bottom: solid 1px #728581;
}

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

.breadcrumb ul li{
    display: inline;
    color: #ffffffa3;
    font-size: 16px;
}
.breadcrumb ul li a {
    color: #ffffffa3;
}
.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: #ffffffa3;
}
/* End breadcrumb  */



/* Content cho editor  */
.noi-dung{
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
}

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

.noi-dung h2{
    font-size: 20px;
    margin-bottom: 15px;
    color: #ab7549;
}

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

.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: 16px;
    margin-bottom: 10px;
}

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

.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 #ab7549;
    background: #14332d;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
}

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

.pagination .page-item.active .page-link {
    background: #c1c5c8;
    color: #14332d;
    border-color: #c1c5c8;
    pointer-events: none;
    border: solid 1px #c1c5c8;
}

.pagination .page-item.disabled .page-link {
    background: #14332d;
    color: #aaa;
    border-color: #ab7549;
    pointer-events: none;
}
.page-mv {
	position: relative;
	overflow: hidden;
	min-height: 100px;
	padding: 80px 0 20px;
	display: flex;
	flex-direction: column;
	justify-content: end;
}

.page-mv__ttl {
	font-size: 30px;
	color: #fff;
	font-weight: 600;
	margin-bottom: 5px;
	text-align: center;
}

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

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

.page-mv__img::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #14332d;
	z-index: 2;
}

.page-mv__ct {
	position: relative;
	z-index: 10;
	color: black;
}

.breadcrumbs {
	text-align: center;
	font-size: 15px;
	color: #fff;
}

.breadcrumbs-item:not(:last-child)::after {
	content: "/";
	margin: 0 5px;
	color: currentColor;
}

.breadcrumbs a {
	color: #fff;
	text-decoration: none;
}

.breadcrumbs a:hover {
	color: var(--color-main3);
}

.breadcrumbs-item {
	display: inline;
}

@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;
    }
    .breadcrumb ul li {
        font-size: 14px;
    }
    .page-mv {
        min-height: 75px;
        padding: 55px 0 20px;
    }
    .page_mv img {
        width: 100%;
        height: 80vh;
        object-fit: cover;
    }

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

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