/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
}

.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-pages .hero-section {
    position: relative;
    overflow: hidden;
    padding: 185px 0 70px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}
.breadcrumb-pages .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    z-index: 1;
}
.breadcrumb-pages .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    width: 100%;
    text-align: center;
}
.breadcrumb-pages .hero-title {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.breadcrumb-pages .hero-title {
    font-size: 30px;
    letter-spacing: .5rem;
    margin-bottom: 0rem;
    opacity: 1;
    color: #fff;
}
.breadcrumb-pages .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all .3s ease;
    position: relative;
}
.breadcrumb-pages .breadcrumb span {
    color: #fff;
    font-weight: 500;
}

.breadcrumb-pages .breadcrumb-separator {
    margin: 0 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    transition: transform .3s ease;
}
.breadcrumb-pages .breadcrumb span {
    color: #fff;
    font-weight: 500;
}


/* End breadcrumb  */



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

.noi-dung p{
    margin-bottom: 10px;
    text-align: justify;
    line-height: 1.5;
    font-size: 16px;
    /* font-weight: 300; */
}

.noi-dung h2{
    font-size: 21px;
    margin-bottom: 15px;
}

.noi-dung h3{
    font-size: 18px;
    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 #016275;
    padding: 8px 15px;
	background: #eee;
    border-radius: 10px;
    margin-bottom: 15px;
}

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

.noi-dung ul,
.noi-dung ol {
    margin-left: 24px;
	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;
}

.image-caption {
    margin-bottom: 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: #016275;
    color: #fff;
    border-color: #016275;
}

.pagination .page-item.active .page-link {
    background: #016275;
    color: #fff;
    border-color: #016275;
    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%;
        height: auto !important;
    }
}

@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-pages .hero-section {
  	padding-top:90px
  }
}