/* Breadcrumb */
.breadcrumb {
    min-height: 280px;
    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; */
}

.cs-row img {
    border-radius: 10px;
}

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

    &:last-child {
        margin-bottom: 0;
    }
}

.noi-dung h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--color-3);
}

.noi-dung h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--color-3);
}

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

.c-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.4;

    @media (max-width: 1200px) {
        font-size: 18px;
    }

    >* {
        display: block;
    }

    /* >* {
        display: block;

        .icon {
            display: inline-block;
            width: 25px;
            height: 20px;
            background: currentColor;
            mask-image: url(../images/icon-02-removebg-preview.png);
            mask-size: 100%;
            mask-repeat: no-repeat;
            mask-position: center;
            margin-right: 5px;
        }
    } */

    .c-title-color1 {
        color: var(--color-3);
    }

    .c-title-color2 {
        color: var(--color-4);
    }
}

.c-title-line {
    &.text-center {
        &:after {
            margin-left: auto;
            margin-right: auto;
        }
    }

    &:after {
        content: "";
        height: 3px;
        width: 160px;
        background: linear-gradient(90deg, var(--color-3) 0%, var(--color-4) 100%);
        display: block;
        border-radius: 8px;
        margin-top: 5px;

        @media (max-width: 575px) {
            height: 3px;
        }
    }
}

.btn-common01 {
    border-radius: 99px;
    background: var(--color-3);
    letter-spacing: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    padding: 13px 20px;
    font-weight: 600;
    color: #FFF;

    /* gap: 10px; */
    &:hover {
        color: #FFF;
        background: var(--color-4);
    }

    .icon {
        width: 20px;
        height: 20px;
        background-color: currentColor;
        mask-image: url(../images/right-arrow-svgrepo-com.png);
        mask-size: 100%;
        mask-repeat: no-repeat;
        mask-position: center;
    }
}

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

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

.category-news {
    display: flex;
    gap: 10px 30px;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 30px;
}

.category-news .item {
    position: relative;
    font-size: 16px;
}

.category-news .item::before {
    content: "";
    height: 1px;
    width: 25px;
    background: currentColor;
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    transition: all .3s ease;
}

.category-news .item:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 19px;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #c4c4c4;
}

@media (max-width: 992px) {
    .category-news {
        white-space: nowrap;
        overflow-x: auto;
        justify-content: start;
    }

    .category-news .item::before {
        display: 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;
    }

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