/* Breadcrumb */
.breadcrumb {
    min-height: 340px; 
    position: relative;
    border-radius: 0px 0px 20px 20px;
    margin-top: -20px;
    display: flex;
    align-items: end;
    text-align: center;
    overflow: hidden;
}

.breadcrumb::before {
    content: '';
    background-color: rgba(0,0,0,.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.breadcrumb h1 {
    font-size: 40px;
    color: #FFF;
    margin-bottom: 8px;
}

.breadcrumb ul {
    display: block;
    white-space: normal;
    position: relative;
    z-index: 2;
    padding-bottom: 30px;
}

.breadcrumb ul li {
    display: inline;
    color: rgba(255,255,255,.8);
}

.breadcrumb ul li a {
     color: rgba(255,255,255,.8);
}

.breadcrumb ul li a:hover {
    color: #e4a452;
}

.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;
    color: #FFF;
}

/* 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: 22px;
    margin-bottom: 15px;
    color: #542a18;
}

.noi-dung h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #542a18;
}

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

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

.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,
.noi-dung blockquote p {
    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: 10px;
}

.noi-dung table tr td {
    padding: 0 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: 0px;
}

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

.btn-disabled {
    opacity: .3;
    cursor: not-allowed;
}

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

.pagination .page-link:hover {
    background: var(--color-3);
    color: #FFF;
    border-color: var(--color-3);
}

.pagination .page-item.active .page-link {
    background: var(--color-3);
    color: #FFF;
    border-color: var(--color-3);
    pointer-events: none;
}

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

.hover-effect_1 {
    position: relative;
    overflow: hidden;
    display: flex;
    margin-bottom: 10px
}

.hover-effect_1::after {
    position: absolute;
    width: 200%;
    height: 0;
    left: 50%;
    top: 50%;
    background-color: hsla(0, 0%, 100%, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    content: "";
    z-index: 1
}

.noi-dung ul li {
    list-style: disc;
}

.hover-effect_1:hover::after {
    height: 250%;
    transition: all .6s linear;
    background-color: transparent
}

@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;
    }

    .noi-dung table td img {
        margin-bottom: 10px;
    }

    .breadcrumb {
        min-height: 220px;
    }

    .breadcrumb h1 {
        font-size: 26px;
    }

    .breadcrumb ul li a {
        font-size: 14px;
    }

    .breadcrumb ul li {
        font-size: 14px;
    }
}