.bg-body-2 {
    background: var(--bg-site);
}

.ad-banner {
    background: var(--bg-site);
    padding-top: var(--space-3);
    padding-bottom: var(--space-3);
    position: relative;
    z-index: 4;
}

.ad-banner__image {
    text-align: center;
}

.ad-banner__image a {
    display: inline-block;
}

@media (max-width:575px) {
    .ad-banner {
        display: none;
    }
}

@media (min-width:576px) and (max-width:767px) {
    .ad-banner {
        padding: 0;
    }
}

/* End Banner */


/* Top Stock */
.header-top_stock {
    background: #65653D;
    position: relative;
    z-index: 4;
}

.layout-header-top_stock {
    display: flex;
    align-items: center;
    height: 32px;
    gap: 0 12px;
    padding: 0 24px;
}

.user-nav {
    display: flex;
    align-items: center;
    gap: 0 16px;
    margin-left: auto;
}

.user-nav .nav-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.block-slide-stock {
    width: calc(100% - 100px);
    overflow: hidden;
}

.block-stock-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* width: 100%;
    will-change: transform;
    animation-name: stock-scroll;
   animation-duration: var(--duration);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: running; */
    width: max-content;
    animation: stockScroll var(--duration, 30s) linear infinite;
    will-change: transform;
}

.block-stock-buttons>div {
    margin-right: 40px;
}

.stock-item-button {
    white-space: nowrap;
}

.stock-item_wapper {
    display: flex;
    align-items: center;
    gap: 0 6px;
    font-family: "VNBDisplay";
    outline: none;
    cursor: pointer;
    background: #65653d;
    border: none;
    padding: 0;
    margin: 0;
}

.stock-item_wapper .stock-item-name {
    font-size: 14px;
    color: #fff;
    font-weight: 700;
}

.stock-item-data {
    display: flex;
    align-items: center;
    gap: 0 6px;
}

.stock-item-data .stock-price-number {
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
}

.stock-item-data .stock-change-text {
    color: #fff;
    font-size: 12px;
    line-height: 1.2;
    position: relative;
    top: 1px;
}

.stock-item-data .stock-arrow-icon {
    width: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 14px;
    position: relative;
    top: 1px;
}

.stock-item.item-down .stock-item-data .stock-change-text {
    color: #FFAD33;
}

@keyframes stockScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.block-slide-stock:hover .block-stock-buttons {
    animation-play-state: paused;
}

.block-stock-buttons::-webkit-scrollbar {
    display: none;
}

@media (prefers-reduced-motion:reduce) {
    .stock-anim {
        animation: none !important
    }

    .stock {
        overflow-x: auto;
        scrollbar-width: thin
    }
}

@media (max-width:575px) {
    .user-nav {
        display: none;
    }

    .block-slide-stock {
        width: 100%;
    }

    .block-slide-stock .swiper-slide:last-child {
        padding-right: 12px;
    }
}

@media (min-width: 576px) and (max-width:767px) {
    .user-nav {
        padding-right: 12px;
        gap: 0 12px;
    }
}

@media (max-width:991px) {
    .user-nav {
        display: none;
    }

    .header-top_stock .container {
        max-width: 100%;
        padding: 0;
    }

    .header-top_stock {
        z-index: 5;
    }

    .ad-banner {
        z-index: 5;
    }

    .block-slide-stock .swiper-slide:first-child {
        width: auto;
        padding-left: 12px;
    }

    .block-slide-stock {
        width: 100%;
    }
}

@media (max-width:1199px) {
    .block-stock-buttons>div {
        margin-right: 16px;
    }
}



/* END Top Stock */

/* news-event */
.slide-topic {
    width: calc(100% - 160px);
    height: 100%;
    align-items: center;
    display: flex;
    justify-content: flex-start;
    position: relative;
    padding-right: 72px;
}

.topic-list {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.05);
    width: calc(100% - 48px);
    margin: 0 auto;
    border-radius: 0 0 8px 8px;
    padding: 0 var(--space-6);
    height: 72px;
}

.event-box {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 140px;
    margin-right: 12px;
    position: relative;
    top: 2px;
}

.event-box__icon img {
    width: 16px;
    height: auto;
}

.event-box .event-box__text {
    font-size: 16px;
    font-family: 'VNBSerif';
    color: var(--text-main);
    font-weight: 700;
    font-style: italic;
}

.event-box .event-box__icon {
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-topic .swiper-slide {
    width: auto;
}

.topic-item {
    display: inline-flex;
    align-items: flex-start;
    color: var(--text-main);
    font-size: 18px;
    font-family: 'VNBDisplay';
    transition: all .3s;
}

.topic-item .icon {
    color: var(--text-title);
    font-size: 18px;
    font-weight: 700;
    font-family: 'VNBDisplay';
    margin-right: 4px;
    display: inline-block;
}

.topic-item:hover {
    color: var(--text-title);
}

.news-event {
    margin-bottom: var(--space-12);
}

.slide-topic .ct-nav-slide {
    opacity: 1;
    width: var(--space-6);
    height: var(--space-6);
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    position: absolute;
    margin: 0;
    z-index: 1;
    background: var(--text-title);
    padding: 0;
    border: none;
}

.slide-topic .ct-nav-slide.swiper-button-disabled {
    opacity: .2;
}

.slide-topic .ct-nav-slide.swiper-button-next {
    right: 0;
    left: auto;
    padding-left: 2px;
}

.slide-topic .ct-nav-slide.swiper-button-prev {
    right: 32px;
    left: auto;
}

.slide-topic .swiper {
    margin: 0;
}

@media (max-width:767px) {
    .slide-topic .swiper-slide {
        width: auto !important;
        height: calc((100% - 12px) / 2) !important;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        align-items: center;
        margin-top: 0 !important;
    }

    .slide-topic {
        width: calc(100% + 24px);
        padding: 0;
    }

    .slide-topic .swiper {
        padding: 0 12px;
        height: 97px;

    }

    .event-box {
        width: 100%;
        top: 0;
        margin: 0;
        margin-bottom: var(--space-3);
    }

    .topic-list {
        height: auto;
        width: calc(100% - 24px);
        flex-direction: column;
        padding: var(--space-3);
    }

    .slide-topic .ct-nav-slide {
        display: none;
    }

    .news-event {
        margin-bottom: var(--space-8);
    }
}

@media (min-width: 768px) and (max-width:991px) {
    .topic-list {
        padding: 0 var(--space-4);
    }

    .event-box {
        width: 120px;
    }

    .slide-topic {
        width: calc(100% - 140px);
    }
}

@media (max-width:1199px) {
    .layout-header-top_stock {
        padding: 0;
    }
}


/* End news-event */


/* Section featured banner */
.news-overview__layout {
    display: flex;
    align-items: flex-start;
    gap: var(--space-12);
}

.news-featured__list:after {
    content: '';
    position: absolute;
    top: 0;
    right: -24px;
    width: 1px;
    height: 100%;
    background: var(--border-1);
}

.news-overview__sidebar {
    width: 392px;
}

.news-featured__list {
    width: calc(100% - 414px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    position: relative;
}

.news-featured__list .news-item {
    min-width: 0;
}

.news-item.news-item-horizontal {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.news-item.news-item-horizontal .news-item__image-wrapper {
    width: 180px;
    height: 180px;
}

.image-container--1x1 {
    aspect-ratio: 1/1;
}

.news-item.news-item-horizontal .news-item__image-wrapper .news-item__thumb {
    margin: 0;
}

.news-item.news-item-horizontal .news-item__content {
    flex: 1;
    margin-left: var(--space-3);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-item.news-item-horizontal .image-container {
    border-radius: 6px;
}

.news-featured__list .news-item__title-link {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 102px;
}

.news-featured__list .news-item__description {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: auto;
}


.news-featured__list .news-overview__layout .news-item {
    position: relative;
}

.section-overview-banner {
    margin-bottom: 62px;
}

.news-featured__list:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: var(--border-1);
}

.section-overview-banner .news-overview__layout .news-item:before {
    content: '';
    position: absolute;
    bottom: -24px;
    width: 100%;
    height: 1px;
    left: 0;
    background: var(--border-1);
}

.event-featured__thumb {
    position: relative;
    text-align: center;
    width: 280px;
    height: 300px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.event-featured__thumb .image-container {
    width: 198px;
    height: 267px;
    border-radius: 0;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 1);
    margin: 0 auto;
    cursor: auto;
}

.event-featured__thumb .texture-event-featured {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
}

.event-featured__content .news-item__title {
    text-align: center;
    position: relative;
    margin-bottom: var(--space-12);
    max-width: 230px;
    margin-left: auto;
    margin-right: auto;
}

.event-featured__content {
    text-align: center;
}

.event-featured__content .news-item__description {
    font-size: 18px;
    font-style: italic;
    margin-bottom: var(--space-4);
}

.event-featured__content .news-item__title:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -32px;
    width: 72px;
    height: 1px;
    background: var(--text-title);
}

.btn-bg a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    height: 32px;
    border-radius: 4px;
    background: var(--text-title);
    color: #ffff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.event-featured__slider .ct-pagination {
    display: flex;
    position: absolute;
    top: 320px;
    width: 60%;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: auto;
}

.event-featured__slider {
    position: relative;
}

.event-featured__slider .swiper-button-next.ct-nav-slide {
    top: 328px;
    right: 10%;
}

.event-featured__slider .swiper-button-prev.ct-nav-slide {
    bottom: auto;
    top: 328px;
    left: 10%;
}

.news-overview__sidebar .event-featured__slider {
    padding: 0 24px;
}


.news-overview__layout .news-overview__sidebar .event-featured__slider {
    padding: 0;
}

@media (min-width:992px) {

    .section-overview-banner .news-overview__layout .news-item:nth-child(5):before,
    .section-overview-banner .news-overview__layout .news-item:nth-child(6):before {
        display: none;
    }
}

@media (max-width:575px) {
    .news-featured__list {
        width: 100%;
        gap: var(--space-8);
        grid-template-columns: 1fr;
    }

    .news-overview__sidebar {
        width: 100%;
    }

    .section-overview-banner .news-overview__layout .news-item:before {
        bottom: -16px;
    }

    .news-item.news-item-horizontal .news-item__image-wrapper {
        width: 90px;
        height: 90px;
    }

    .news-featured__list:after {
        display: none;
    }

    .section-overview-banner .news-overview__layout .news-item:last-child:before {
        display: none;
    }

    .news-featured__list .news-item__title-link {
        -webkit-line-clamp: 4;
        height: auto;
    }

    .news-featured__list .news-item__description {
        display: none;
    }

    .news-featured__list:before {
        display: none;
    }

    .section-overview-banner {
        margin-bottom: 40px;
    }

    .news-overview__layout {
        flex-direction: column;
    }

    .news-overview__sidebar {
        display: none;
    }

    .news-multimedia .news-video__sidebar .event-featured__slider {
        margin-bottom: 82px;
    }

    .event-featured__content .news-item__title {
        max-width: 100%;
    }
}

@media (min-width: 576px) and (max-width:767px) {
    .event-featured__content .news-item__title {
        max-width: 100%;
    }

    .news-multimedia .news-video__sidebar .event-featured__slider {
        margin-bottom: 42px;
    }

    .news-overview__sidebar {
        display: none;
    }

    .news-featured__list {
        width: 100%;
        gap: var(--space-8);
        grid-template-columns: 1fr;
    }

    .news-overview__sidebar {
        width: 100%;
    }

    .section-overview-banner .news-overview__layout .news-item:before {
        bottom: -16px;
    }

    .news-item.news-item-horizontal .news-item__image-wrapper {
        width: 120px;
        height: 120px;
    }

    .news-featured__list:after {
        display: none;
    }

    .section-overview-banner .news-overview__layout .news-item:last-child:before {
        display: none;
    }

    .news-featured__list .news-item__title-link {
        -webkit-line-clamp: 2;
        height: 52px;
    }

    .news-featured__list .news-item__description {
        -webkit-line-clamp: 3;
        margin-top: 6px;
    }

    .news-featured__list:before {
        display: none;
    }

    .section-overview-banner {
        margin-bottom: 40px;
    }

    .news-overview__layout {
        flex-direction: column;
    }
}

@media (min-width: 768px) and (max-width:991px) {
    .news-featured__list {
        width: calc(100% - 350px);
        gap: var(--space-8);
        grid-template-columns: 1fr;
    }

    .news-overview__sidebar {
        width: 302px;
    }

    .section-overview-banner .news-overview__layout .news-item:before {
        bottom: -16px;
    }

    .news-item.news-item-horizontal .news-item__image-wrapper {
        width: 120px;
        height: 120px;
    }

    .news-featured__list .news-item__title-link {
        -webkit-line-clamp: 2;
        height: 52px;
    }

    .news-featured__list .news-item__description {
        -webkit-line-clamp: 3;
        margin-top: 6px;
    }

    .news-featured__list:before {
        display: none;
    }

    .section-overview-banner {
        margin-bottom: 40px;
    }
}


@media (min-width: 992px) and (max-width:1199px) {
    .news-featured__list {
        width: calc(100% - 350px);
        gap: var(--space-8);
    }

    .news-overview__sidebar {
        width: 340px;
    }

    .news-overview__sidebar .event-featured__slider {
        padding: 0;
    }

    .section-overview-banner .news-overview__layout .news-item:before {
        bottom: -16px;
    }

    .news-item.news-item-horizontal .news-item__image-wrapper {
        width: 140px;
        height: 140px;
    }

    .news-featured__list .news-item__title-link {
        -webkit-line-clamp: 3;
        height: 77px;
    }

    .news-featured__list .news-item__description {
        -webkit-line-clamp: 3;
    }

    .section-overview-banner .news-item.news-item-horizontal {
        flex-direction: column;
    }

    .section-overview-banner .news-item.news-item-horizontal .news-item__image-wrapper {
        width: 100%;
        height: 100%;
        margin-bottom: 8px;
    }

    .section-overview-banner .news-item.news-item-horizontal .news-item__content {
        margin: 0;
    }
}

@media (min-width: 1200px) and (max-width:1399px) {
    .news-featured__list {
        width: calc(100% - 350px);
        gap: var(--space-8);
    }

    .news-overview__layout .news-overview__sidebar {
        width: 302px;
    }

    .section-overview-banner .news-overview__layout .news-item:before {
        bottom: -16px;
    }
}

/* END Section featured banner */


/* new Hightlight */

.highlight__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-6);
    padding: 0 var(--space-6);
}

.highlight__list .news-card {
    min-width: 0;
}

.highlight__title {
    position: relative;
    padding: 0 24px;
    text-align: center;
    margin-bottom: var(--space-6);
}

.highlight-section {
    margin-bottom: var(--space-11);
}

.highlight__title .title-site-big:before {
    display: none;
}

.highlight__title:before {
    content: '';
    position: absolute;
    bottom: 13px;
    width: calc(100% - 48px);
    height: 1px;
    background: var(--text-title);
    left: 0;
    right: 0;
    margin: auto;
}

.highlight__title .title-site-big {
    margin: 0;
    background: #faf0e4;
    padding: 0 16px;
    min-height: 48px;
}

@media (max-width:1399px) {
    .highlight__list {
        padding: 0;
    }

    .highlight__title {
        padding: 0;
    }

    .highlight__title:before {
        width: 100%;
    }
}

@media (max-width:575px) {
    .highlight-section {
        margin-bottom: var(--space-8);
    }

    .highlight__list {
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }

    .highlight__list .news-card+.news-card {
        border-top: 1px solid var(--border-1);
        padding-top: var(--space-4);
        margin-top: var(--space-4);
    }

    .highlight__title {
        padding: 0;
        margin-bottom: var(--space-2);
    }

    .highlight__title .title-site-big {
        min-height: 40px;
        padding-left: 0;
        padding-right: 0;
    }

}

@media (min-width: 576px) and (max-width:767px) {
    .highlight__list {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight__title .title-site-big {
        min-height: 40px;
    }
}

@media (min-width: 768px) and (max-width:1199px) {

    .highlight__list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* new Hightlight */


/* Section Finance */
.finance__layout {
    padding: var(--space-6);
    background: #fff;
    border-radius: var(--space-2);
    position: relative;
}

.title-site-center .title-site-big:before {
    width: 100px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.title-site-center {
    text-align: center;
}

.finance__content {
    display: grid;
    grid-template-columns: 1fr 344px;
    align-items: flex-start;
    gap: var(--space-6);
    padding-bottom: var(--space-6);
    margin-bottom: var(--space-6);
    border-bottom: 1px solid var(--border-1);
}

.finance__content .finance__main {
    min-width: 0;
}

.finance__sidebar {
    min-width: 0;
}

.finance__main .news-item {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: var(--space-6);
}

.finance__main .news-item .news-item__image-wrapper {
    width: 712px;
}

.finance__main .news-item .news-item__content {
    flex: 1;
}

.finance__main .news-item .news-item__image-wrapper .news-item__thumb {
    margin: 0;
}

.finance__main .news-item .news-item__content .news-item__description {
    margin-top: var(--space-3);
}

.list-news-item-finance .news-item.news-item-horizontal .news-item__image-wrapper {
    height: auto;
    width: 150px;
}

.list-news-item-finance .news-item.news-item-horizontal .news-item__content {
    display: block;
    height: auto;
}

.list-news-item-finance .news-item.news-item-horizontal .news-item__content .news-item__title {
    font-size: 17px;
    font-weight: 400;
    font-family: 'VNBDisplay';
}

.list-news-item-finance .news-item.news-item-horizontal .news-item__image-wrapper .image-container {
    border-radius: 8px;
}

.list-news-item-finance .news-item.news-item-horizontal {
    margin-bottom: var(--space-5);
}

.list-news-item-finance .news-item.news-item-horizontal:last-child {
    margin: 0;
}

.finance__products {
    display: flex;
    gap: 0 16px;
    align-items: flex-start;
}

.finance__products .finance__products-content {
    flex: 1;
}

.finance__products-qc {
    width: 344px;
    text-align: center;
}

.finance__products-qc a {
    display: inline-block;
}

.finance__products-content .list-news-item-finance {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.finance__products .list-news-item-finance .news-item.news-item-horizontal {
    margin: 0;
}

.finance {
    margin-bottom: 56px;
}

.finance__layout:before {
    content: '';
    position: absolute;
    height: 8px;
    background: var(--bg-2-darker);
    width: calc(100% - 48px);
    left: 0;
    right: 0;
    margin: auto;
    bottom: -8px;
    border-radius: 0 0 8px 8px;
}

.title-site-center .title-site-big {
    margin-bottom: var(--space-6);
}


@media (max-width:575px) {
    .finance {
        margin-bottom: 36px;
    }

    .finance__main .news-item .news-item__image-wrapper {
        width: 100%;
    }

    .finance__products-content .list-news-item-finance {
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }

    .list-news-item-finance .news-item.news-item-horizontal .news-item__image-wrapper {
        width: 110PX;
    }

    .finance__main .news-item {
        flex-direction: column;
        gap: var(--space-3);
    }

    .finance__layout {
        padding: var(--space-3);
    }

    .title-site-center .title-site-big:before {
        width: 80px;
    }

    .finance__content {
        grid-template-columns: 1fr;
    }

    .finance__products-qc {
        width: 100%;
    }

    .finance__products {
        flex-direction: column;
        gap: 20px;
    }

    .list-news-item-finance .news-item.news-item-horizontal {
        margin-bottom: var(--space-4);
        padding-bottom: var(--space-4);
        border-bottom: 1px solid var(--border-1);
    }

    .list-news-item-finance .news-item.news-item-horizontal:last-child {
        border: none;
        padding: 0;
        margin: 0;
    }

    .finance__products .finance__products-content .list-news-item-finance {
        display: flex;
        flex-wrap: nowrap;
        gap: 0 16px;
        overflow-x: auto;
        padding: 0;
        margin: 0 -12px;
        padding: 0 12px;
    }

    .finance__products .finance__products-content .list-news-item-finance::-webkit-scrollbar {
        display: none;
    }

    .finance__products .list-news-item-finance .news-item.news-item-horizontal .news-item__image-wrapper {
        width: 100%;
    }

    .finance__products .list-news-item-finance .news-item.news-item-horizontal {
        margin: 0;
        padding: 0;
        border: none;
        white-space: nowrap;
        flex-direction: column;
        min-width: 280px;
    }

    .list-news-item-finance .news-item.news-item-horizontal .news-item__image-wrapper .image-container {
        border-radius: 4px;
    }

    .finance__products .list-news-item-finance .news-item.news-item-horizontal .news-item__content {
        margin: 0;
        white-space: normal;
        margin-top: 8px;
        width: 100%;
        flex: none;
    }

    .finance__products .finance__products-content {
        flex: none;
        width: 100%;
    }
}

@media (min-width: 576px) and (max-width:767px) {
    .finance {
        margin-bottom: 36px;
    }

    .finance__main .news-item .news-item__image-wrapper {
        width: 100%;
    }

    .finance__products-content .list-news-item-finance {
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }

    .list-news-item-finance .news-item.news-item-horizontal .news-item__image-wrapper {
        width: 150px;
    }

    .finance__main .news-item {
        flex-direction: column;
    }

    .finance__layout {
        padding: var(--space-5);
    }

    .finance__layout:before {
        width: calc(100% - 40px);
    }

    .finance__content {
        grid-template-columns: 1fr;
    }

    .finance__products-qc {
        width: 100%;
    }

    .finance__products {
        flex-direction: column;
        gap: 20px;
    }

    .list-news-item-finance .news-item.news-item-horizontal {
        margin-bottom: var(--space-4);
        padding-bottom: var(--space-4);
        border-bottom: 1px solid var(--border-1);
    }

    .list-news-item-finance .news-item.news-item-horizontal:last-child {
        border: none;
        padding: 0;
        margin: 0;
    }

    .finance__products .list-news-item-finance .news-item.news-item-horizontal {
        margin-bottom: var(--space-4);
    }
}

@media (min-width: 768px) and (max-width:991px) {
    .finance {
        margin-bottom: 48px;
    }

    .finance__main .news-item .news-item__image-wrapper {
        width: 100%;
    }

    .finance__products-content .list-news-item-finance {
        grid-template-columns: repeat(1, 1fr);
        gap: var(--space-5);
    }

    .list-news-item-finance .news-item.news-item-horizontal .news-item__image-wrapper {
        width: 120px;
    }

    .finance__main .news-item {
        flex-direction: column;
    }

    .finance__layout {
        padding: var(--space-5);
    }

    .finance__layout:before {
        width: calc(100% - 40px);
    }

    .finance__content {
        grid-template-columns: 1fr 280px;
    }

    .finance__products-qc {
        width: 300px;
    }
}

@media (min-width: 992px) and (max-width:1199px) {
    .finance__main .news-item .news-item__image-wrapper {
        width: 100%;
    }

    .finance__products-content .list-news-item-finance {
        grid-template-columns: repeat(1, 1fr);
        gap: var(--space-5);
    }

    .list-news-item-finance .news-item.news-item-horizontal .news-item__image-wrapper {
        width: 130px;
    }

    .finance__main .news-item {
        flex-direction: column;
    }
}

@media (min-width: 1200px) and (max-width:1399px) {
    .finance__main .news-item .news-item__image-wrapper {
        width: 450px;
    }

    .finance__products-content .list-news-item-finance {
        grid-template-columns: repeat(2, 1fr);
    }

    .finance__content {
        grid-template-columns: 1fr 300px;
    }

    .list-news-item-finance .news-item.news-item-horizontal {
        margin-bottom: var(--space-3);
    }

    .list-news-item-finance .news-item.news-item-horizontal .news-item__image-wrapper {
        width: 130px;
    }
}

@media (min-width: 1400px) and (max-width:1599px) {
    .finance__main .news-item .news-item__image-wrapper {
        width: 600px;
    }

    .finance__products-content .list-news-item-finance {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* END Section Finance*/


/* News-Dual */
.news-dual__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
}

.news-dual__layout .news-block {
    min-width: 0;
    background: #fff;
    border-radius: var(--space-2);
    padding: var(--space-6);
    position: relative;
}

.news-dual__layout .news-block:before {
    content: '';
    position: absolute;
    height: 8px;
    background: var(--bg-2-darker);
    width: calc(100% - 48px);
    left: 0;
    right: 0;
    margin: auto;
    bottom: -8px;
    border-radius: 0 0 8px 8px;
}

.news-block__title.w-100-before .title-site-big:before {
    width: 100%;
}

.news-dual {
    margin-bottom: var(--space-12);
}

.news-block__title .title-site-big:before {
    width: 100px;
}

.news-dual__layout .news-block.news-block-vncoop:before {
    background: #EEE4D9;
}

.news-dual__layout .news-block.news-block-vncoop {
    background: var(--bg-section);
}

.news-block__title .title-site-big {
    margin-bottom: var(--space-6);
}

.horizontal-news-main .news-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-6);
}

.horizontal-news-main .news-item .news-item__image-wrapper {
    width: 400px;
}

.horizontal-news-main .news-item .news-item__content {
    flex: 1;
}

.horizontal-news-main .news-item .news-item__image-wrapper .news-item__thumb {
    margin: 0;
}

.horizontal-news-main {
    margin-bottom: var(--space-6);
}

.list-news-item-horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
}

.list-news-item-horizontal .news-item {
    min-width: 0;
}

.list-news-item-horizontal .news-item.news-item-horizontal .news-item__image-wrapper {
    height: auto;
    width: 160px;
}

.list-news-item-horizontal .news-item.news-item-horizontal .news-item__title {
    font-size: 17px;
    font-family: 'VNBDisplay';
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
}

.horizontal-news-main .news-item .news-item__description {
    margin-top: var(--space-2);
}

.flex-news-block-dual {
    display: grid;
    align-items: flex-start;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
}

.flex-news-block-dual .list-news-item-horizontal {
    grid-template-columns: 1fr;
}

.news-item.news-item-horizontal.hidden-desktop {
    display: none;
}

.flex-news-block-dual .finance__products-qc {
    width: 100%;
}

@media (max-width:575px) {
    .news-item.news-item-horizontal.hidden-mobile {
        display: none;
    }

    .news-item.news-item-horizontal.hidden-desktop {
        display: flex;
    }

    .news-dual {
        margin-bottom: var(--space-10);
    }

    .news-dual__layout {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .news-dual__layout .news-block {
        padding: var(--space-3);
    }

    .news-block__title.w-100-before .title-site-big:before {
        width: 100%;
    }

    .news-dual .news-block__title {
        text-align: center;
    }

    .news-block__title .title-site-big:before {
        width: 80px;
    }

    .news-dual .news-block__title .title-site-big:before {
        left: 0;
        right: 0;
        margin: auto;
    }

    .news-dual__layout .news-block:before {
        width: calc(100% - 24px);
    }

    .list-news-item-horizontal {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .list-news-item-horizontal .news-item+.news-item {
        margin-top: var(--space-4);
        padding-top: var(--space-4);
        border-top: 1px solid var(--border-2);
    }

    .list-news-item-horizontal .news-item.news-item-horizontal .news-item__image-wrapper {
        width: 110px;
    }

    .news-item.news-item-horizontal .image-container {
        border-radius: 4px;
    }

    .horizontal-news-main .news-item {
        flex-direction: column;
        gap: var(--space-3);
    }

    .horizontal-news-main .news-item .news-item__image-wrapper {
        width: 100%;
    }

    .horizontal-news-main .news-item .news-item__title--large {
        font-size: 22px;
    }

    .horizontal-news-main {
        margin-bottom: var(--space-4);
        padding-bottom: var(--space-4);
        border-bottom: 1px solid var(--border-1);
    }

    .news-block__title .title-site-big {
        margin-bottom: var(--space-6);
    }

    .flex-news-block-dual {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
}

@media (min-width: 576px) and (max-width:767px) {
    .news-dual .news-block__title {
        text-align: center;
    }

    .news-block__title .title-site-big:before {
        width: 80px;
        margin: 0 auto;
        left: 0;
        right: 0;
    }

    .news-dual .news-block__title .title-site-big:before {
        left: 0;
        right: 0;
        margin: auto;
    }

    .news-dual {
        margin-bottom: var(--space-8);
    }

    .news-block__title.w-100-before .title-site-big:before {
        width: 100%;
    }

    .news-dual__layout {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .news-dual__layout .news-block {
        padding: var(--space-5);
    }

    .news-dual__layout .news-block:before {
        width: calc(100% - 40x);
    }

    .list-news-item-horizontal {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .list-news-item-horizontal .news-item+.news-item {
        margin-top: var(--space-4);
        padding-top: var(--space-4);
        border-top: 1px solid var(--border-1);
    }

    .list-news-item-horizontal .news-item.news-item-horizontal .news-item__image-wrapper {
        width: 130px;
    }

    .news-item.news-item-horizontal .image-container {
        border-radius: 4px;
    }

    .horizontal-news-main .news-item {
        flex-direction: column;
        gap: var(--space-3);
    }

    .horizontal-news-main .news-item .news-item__image-wrapper {
        width: 100%;
    }

    .horizontal-news-main .news-item .news-item__title--large {
        font-size: 22px;
    }

    .horizontal-news-main {
        margin-bottom: var(--space-4);
        padding-bottom: var(--space-4);
        border-bottom: 1px solid var(--border-1);
    }

    .news-block__title .title-site-big {
        margin-bottom: var(--space-6);
    }

    .flex-news-block-dual {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
}

@media (min-width: 768px) and (max-width:991px) {
    .news-dual {
        margin-bottom: var(--space-8);
    }

    .news-dual__layout {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .news-dual__layout .news-block {
        padding: var(--space-5);
    }

    .news-dual__layout .news-block:before {
        width: calc(100% - 40x);
    }

    .list-news-item-horizontal .news-item.news-item-horizontal .news-item__image-wrapper {
        width: 130px;
    }

    .news-item.news-item-horizontal .image-container {
        border-radius: 4px;
    }

    .horizontal-news-main .news-item {}

    .horizontal-news-main .news-item .news-item__image-wrapper {
        width: 350px;
    }

    .horizontal-news-main .news-item .news-item__title--large {
        font-size: 22px;
    }

    .news-block__title .title-site-big {
        margin-bottom: var(--space-6);
    }

    .flex-news-block-dual {
        gap: var(--space-4);
    }
}

@media (min-width: 992px) and (max-width:1199px) {
    .horizontal-news-main .news-item .news-item__image-wrapper {
        width: 100%;
    }

    .horizontal-news-main .news-item {
        flex-direction: column;
    }

    .list-news-item-horizontal {
        grid-template-columns: 1fr;
    }

    .flex-news-block-dual {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1200px) and (max-width:1399px) {
    .horizontal-news-main .news-item .news-item__image-wrapper {
        width: 100%;
    }

    .horizontal-news-main .news-item {
        flex-direction: column;
    }

    .list-news-item-horizontal {
        grid-template-columns: 1fr;
    }

    .flex-news-block-dual {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1400px) and (max-width:1599px) {
    .horizontal-news-main .news-item .news-item__image-wrapper {
        width: 300px;
    }

    .horizontal-news-main .news-item {
        gap: var(--space-5);
    }

    .list-news-item-horizontal {
        grid-template-columns: 1fr 1fr;
    }

    .flex-news-block-dual {
        gap: var(--space-4);
    }

    .list-news-item-horizontal .news-item.news-item-horizontal .news-item__image-wrapper {
        width: 110px;
    }

    .list-news-item-horizontal .news-item.news-item-horizontal .news-item__title {
        font-size: 16px;
    }
}

/* END News-Dual */


/* News Cooperative Perspectivee  */
.expert-perspective__slider {
    position: relative;
    margin-top: -4px;
    padding-bottom: 32px;
}

.news-cooperative-perspective__layout {
    display: grid;
    grid-template-columns: 1fr 512px;
    gap: 0 48px;
}

.new-block-expert-perspective {
    width: 100%;
    margin-top: 16px;
}

.news-block-cooperative {
    width: 100%;
    position: relative;
    padding: 0 24px;
}

.cooperative__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    position: relative;
}

.news-block-cooperative .news-block__title {
    padding-top: var(--space-4);
}

.news-block-cooperative:before {
    content: '';
    position: absolute;
    border-radius: var(--space-2);
    background: #E1D8CD;
    top: 68px;
    left: 0;
    width: 100%;
    height: 360px;
}

.news-block-cooperative .news-block__title .logo {
    position: absolute;
    height: auto;
    display: inline-block;
    left: 0;
    top: -11px;
}

.news-block-cooperative .news-block__title .title-site-big {
    padding-left: 86px;
}

.new-block-expert-perspective .news-block__title {
    text-align: right;
    padding-right: var(--space-6);
}

.new-block-expert-perspective .news-block__title .title-site-big:before {
    right: 0;
    z-index: 2;
}

.new-block-expert-perspective .news-block__title .title-site-big {
    padding-bottom: var(--space-2);
    margin: 0;
}

.card-expert__layout {
    border: 4px solid #E1D8CD;
    border-radius: var(--space-2);
    padding: var(--space-6);
    display: flex;
    align-items: flex-start;
    gap: 0 var(--space-3);
    margin-right: 24px;
}

.card-expert__content {
    flex: 1;
    margin-right: -12px;
}

.card-expert__sidebar {
    width: 180px;
}

.card-expert__info {
    text-align: right;
}

.card-expert__image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: var(--space-2);
    position: relative;
    right: -48px;
    margin-bottom: var(--space-3);
}

.card-expert__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.expert-perspective__slider .ct-nav-slide {
    margin: 0;
    top: auto;
    bottom: -4px;
}

.expert-perspective__slider .ct-pagination {
    display: flex;
    bottom: -25px;
    margin: auto;
    top: auto;
    width: 215px;
}

.card-expert__info h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.card-expert__info h4 span {
    font-weight: 400;
}

.card-expert__info p {
    font-size: 16px;
    line-height: 1.4;
    font-style: italic;
    font-weight: 400;
}

.expert-perspective__slider .ct-nav-slide.swiper-button-prev {
    left: 110px;
}

.expert-perspective__slider .ct-nav-slide.swiper-button-next {
    right: 110px;
}

.card-expert__title {
    font-size: 18px;
    font-family: 'VNBDisplay';
    line-height: 1.4;
    line1/FONT-VARIANT: JIS83;
    margin: 0;
}

.card-expert__desc {
    font-size: 16px;
    line-height: 1.4;
    margin-top: var(--space-3);
}

.cooperative__list .news-card {
    min-width: 0;
}

@media (max-width:575px) {
    .news-cooperative-perspective__layout {
        display: block;
    }

    .card-expert__image {
        right: 0;
        width: 100px;
        height: 100px;
        border-radius: 4px;
    }

    .card-expert__info {
        text-align: left;
        flex: 1;
    }

    .expert-perspective__slider .ct-nav-slide.swiper-button-prev {
        left: 30px;
    }

    .expert-perspective__slider .ct-nav-slide.swiper-button-next {
        right: 30px;
    }

    .cooperative__list {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .news-block-cooperative .news-block__title {
        padding: 0;
        min-width: 0;
        margin-bottom: 16px;
        text-align: left;
    }

    .news-block-cooperative .news-block__title .title-site-big {
        padding-left: 64px;
    }

    .news-block-cooperative .news-block__title .logo {
        width: 56px;
        height: 56px;
        top: -1px;
        left: 0;
    }

    .news-block-cooperative:before {
        display: none;
    }

    .news-block-cooperative {
        background: var(--border-2);
        border-radius: 8px;
        padding: var(--space-3);
        width: 100%;
    }

    .news-block-cooperative .news-block__title .title-site-big {
        margin-bottom: var(--space-2);
    }

    .news-block-cooperative:after {
        content: '';
        position: absolute;
        height: 8px;
        background: #EEE4D9;
        width: calc(100% - 24px);
        left: 0;
        right: 0;
        margin: auto;
        bottom: -8px;
        border-radius: 0 0 8px 8px;
    }


    .new-block-expert-perspective {
        padding-top: 24px;
    }

    .new-block-expert-perspective .news-block__title .title-site-big:before {
        right: 0;
        left: 0;
        margin: auto;
    }

    .new-block-expert-perspective .news-block__title .title-site-big {
        padding-bottom: 0;
        margin: 0;
        margin-bottom: var(--space-5);
        width: 100%;
        text-align: center;
    }

    .card-expert__layout {
        margin: 0;
        gap: 24px;
        padding: var(--space-3);
        border-width: 2px;
        flex-direction: column;
        height: 100%;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .expert-perspective__slider .swiper-wrapper .swiper-slide {
        height: auto;
    }

    .card-expert__content {
        margin: 0;
    }

    .new-block-expert-perspective .news-block__title .title-site-big:before {
        width: 80px;
    }

    .news-block-cooperative .news-block__title .title-site-big:before {
        width: 80px;
        margin: 0 auto;
        right: 0;
        left: 0;
    }

    .card-expert__sidebar {
        width: 100%;
        display: flex;
        align-items: flex-start;
        gap: 0 12px;
    }

    .expert-perspective__slider .swiper {
        padding: 0 12px;
    }

    .expert-perspective__slider {
        margin: 0 -12px;
    }

    .cooperative__list .news-card {
        margin-bottom: var(--space-4);
        padding-bottom: var(--space-4);
        border-bottom: 1px solid #D8C9BB;
    }

    .cooperative__list .news-card:last-child {
        margin: 0;
        padding: 0;
        border: none;
    }
}

@media (min-width: 576px) and (max-width:767px) {
    .news-block-cooperative .news-block__title .title-site-big {
        padding-left: 68px;
    }

    .news-block-cooperative .news-block__title .logo {
        width: 56px;
        height: 56px;
        top: -1px;
        left: 0;
    }

    .news-cooperative-perspective__layout {
        display: block;
    }

    .card-expert__image {
        right: 0;
        width: 100%;
    }

    .card-expert__info {
        text-align: left;
        flex: 1;
    }

    .expert-perspective__slider .ct-nav-slide.swiper-button-prev {
        left: 112px;
    }

    .expert-perspective__slider .ct-nav-slide.swiper-button-next {
        right: 112px;
    }

    .cooperative__list {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-block-cooperative .news-block__title {
        grid-column: 1 / 3;
        padding: 0;
        text-align: center;
    }

    .news-block-cooperative:before {
        display: none;
    }

    .news-block-cooperative {
        background: var(--border-2);
        border-radius: 8px;
        padding: var(--space-5);
        width: 100%;
    }

    .news-block-cooperative .news-block__title .title-site-big {
        margin-bottom: var(--space-2);
    }

    .news-block-cooperative:after {
        content: '';
        position: absolute;
        height: 8px;
        background: #EEE4D9;
        width: calc(100% - 40px);
        left: 0;
        right: 0;
        margin: auto;
        bottom: -8px;
        border-radius: 0 0 8px 8px;
    }


    .new-block-expert-perspective {
        padding-top: 24px;
    }

    .new-block-expert-perspective .news-block__title {
        text-align: center;
    }

    .new-block-expert-perspective .news-block__title .title-site-big:before {
        right: 0;
        left: 0;
    }

    .new-block-expert-perspective .news-block__title .title-site-big {
        padding-bottom: 0;
        margin: 0;
        margin-bottom: var(--space-5);
    }

    .card-expert__layout {
        margin: 0;
        gap: 0 24px;
    }
}

@media (min-width: 768px) and (max-width:991px) {
    .news-block-cooperative .news-block__title .title-site-big {
        padding-left: 68px;
    }

    .news-block-cooperative .news-block__title .logo {
        width: 56px;
        height: 56px;
        top: -1px;
        left: 0;
    }

    .news-cooperative-perspective__layout {
        display: block;
    }

    .card-expert__sidebar {}

    .card-expert__image {
        right: 0;
        width: 100%;
    }

    .card-expert__info {
        text-align: left;
        flex: 1;
    }

    .expert-perspective__slider .ct-nav-slide.swiper-button-prev {
        left: 200px;
    }

    .expert-perspective__slider .ct-nav-slide.swiper-button-next {
        right: 200px;
    }

    .cooperative__list {
        grid-template-columns: repeat(3, 1fr);
    }

    .news-block-cooperative .news-block__title {
        grid-column: 1/4;
        padding: 0;
    }

    .news-block-cooperative:before {
        display: none;
    }

    .news-block-cooperative {
        background: var(--border-2);
        border-radius: 8px;
        padding: var(--space-5);
        width: 100%;
    }

    .news-block-cooperative .news-block__title .title-site-big {
        margin-bottom: var(--space-2);
    }

    .news-block-cooperative:after {
        content: '';
        position: absolute;
        height: 8px;
        background: #EEE4D9;
        width: calc(100% - 40px);
        left: 0;
        right: 0;
        margin: auto;
        bottom: -8px;
        border-radius: 0 0 8px 8px;
    }


    .new-block-expert-perspective {
        padding-top: 24px;
    }

    .new-block-expert-perspective .news-block__title {
        text-align: left;
    }

    .new-block-expert-perspective .news-block__title .title-site-big:before {
        right: auto;
    }

    .new-block-expert-perspective .news-block__title .title-site-big {
        padding-bottom: 0;
        margin: 0;
        margin-bottom: var(--space-5);
    }

    .card-expert__layout {
        margin: 0;
        gap: 0 24px;
    }
}

@media (min-width: 992px) and (max-width:1199px) {
    .news-block-cooperative .news-block__title .title-site-big {
        padding-left: 68px;
    }

    .news-block-cooperative .news-block__title .logo {
        width: 56px;
        height: 56px;
        top: 3px;
        left: 0;
    }

    .news-cooperative-perspective__layout {
        grid-template-columns: 1fr 332px;
        gap: 0 24px;
    }

    .card-expert__layout {
        flex-direction: column;
    }

    .card-expert__sidebar {
        width: 100%;
        display: flex;
        align-items: center;
        margin-top: var(--space-4);
        gap: 0 12px;
    }

    .card-expert__image {
        right: 0;
        margin: 0;
        width: 120px;
        height: 200px;
    }

    .card-expert__info {
        text-align: left;
        flex: 1;
    }

    .expert-perspective__slider .ct-nav-slide.swiper-button-prev {
        left: 45px;
    }

    .expert-perspective__slider .ct-nav-slide.swiper-button-next {
        right: 45px;
    }

    .cooperative__list {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-block-cooperative .news-block__title {
        grid-column: 1/3;
        padding: 0;
    }

    .news-block-cooperative:before {
        display: none;
    }

    .news-block-cooperative {
        background: var(--border-2);
        border-radius: 8px;
        padding: var(--space-5);
    }

    .news-block-cooperative .news-block__title .title-site-big {
        margin-bottom: var(--space-2);
    }

    .news-block-cooperative:after {
        content: '';
        position: absolute;
        height: 8px;
        background: #EEE4D9;
        width: calc(100% - 40px);
        left: 0;
        right: 0;
        margin: auto;
        bottom: -8px;
        border-radius: 0 0 8px 8px;
    }

}

@media (min-width: 1200px) and (max-width:1399px) {
    .news-block-cooperative .news-block__title .title-site-big {
        padding-left: 37px;
        font-size: 30px;
    }

    .news-block-cooperative .news-block__title .logo {
        width: 52px;
        height: 52px;
        top: 4px;
        left: -21px;
    }

    .news-cooperative-perspective__layout {
        grid-template-columns: 1fr 380px;
        gap: 0 24px;
    }

    .card-expert__layout {
        flex-direction: column;
    }

    .card-expert__sidebar {
        width: 100%;
        display: flex;
        align-items: center;
        margin-top: var(--space-4);
        gap: 0 12px;
    }

    .card-expert__image {
        right: 0;
        margin: 0;
        width: 120px;
        height: 200px;
    }

    .card-expert__info {
        text-align: left;
        flex: 1;
    }

    .expert-perspective__slider .ct-nav-slide.swiper-button-prev {
        left: 45px;
    }

    .expert-perspective__slider .ct-nav-slide.swiper-button-next {
        right: 45px;
    }
}

@media (min-width: 1400px) and (max-width:1599px) {
    .expert-perspective__slider .ct-nav-slide.swiper-button-prev {
        left: 90px;
    }

    .expert-perspective__slider .ct-nav-slide.swiper-button-next {
        right: 90px;
    }

    .news-cooperative-perspective__layout {
        grid-template-columns: 1fr 480px;
        gap: 0 24px;
    }

    .news-block-cooperative .news-block__title .title-site-big {
        padding-left: 40px;
    }

    .news-block-cooperative .news-block__title .logo {
        width: 60px;
        height: 60px;
        top: -1px;
        left: -26px;
    }
}



/* END News Cooperative Perspective  */



/* Readmore */
.news-readmore {
    margin-bottom: 64px;
}

.list-news-readmore {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 48px;
}

.list-news-readmore .news-sections__col {
    min-width: 0;
    padding-bottom: var(--space-6);
    margin-bottom: var(--space-6);
    border-bottom: 1px solid var(--border-1);
}

.news-item__content-readmore {
    display: flex;
    align-items: flex-start;
    gap: 0 12px;
}

.news-item__content-readmore .number {
    width: 24px;
    line-height: 1;
    color: #C4B09A;
    font-size: 36px;
    font-family: 'VNBSerif';
    font-weight: 700;
}

.news-item__content-readmore .news-item__title--small {
    flex: 1;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
}

@media (max-width:575px) {
    .list-news-readmore .news-sections__col {
        padding-bottom: var(--space-4);
        margin-bottom: var(--space-4);
    }
}

@media (min-width:768px) {

    .list-news-readmore .news-sections__col:nth-child(4),
    .list-news-readmore .news-sections__col:nth-child(5),
    .list-news-readmore .news-sections__col:nth-child(6) {
        margin: 0;
        padding: 0;
        border: none;
    }
}

@media (max-width:767px) {
    .news-readmore {
        margin-bottom: 44px;
    }

    .list-news-readmore {
        gap: 0 24px;
        grid-template-columns: 1fr;
    }

    .list-news-readmore .news-sections__col:last-child {
        padding: 0;
        margin: 0;
        border: none;
    }

    .news-item__content-readmore .news-item__title--small {
        font-size: 18px;
    }
}

@media (min-width: 768px) and (max-width:991px) {
    .news-readmore {
        margin-bottom: 44px;
    }

    .list-news-readmore {
        gap: 0 24px;
    }

    .news-item__content-readmore .news-item__title--small {
        font-size: 18px;
    }

    .news-item__content-readmore .number {
        font-size: 32px;
    }
}

@media (min-width: 992px) and (max-width:1199px) {
    .list-news-readmore {
        gap: 0 24px;
    }
}

@media (min-width: 1200px) and (max-width:1399px) {
    .list-news-readmore {
        gap: 0 24px;
    }
}

/* END Readmore */

/* business-cards */
.business-cards__list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-4);
}

.business-cards__list .business-card {
    min-width: 0;
}

.business-card .business-card__layout {
    display: block;
    aspect-ratio: 228 / 362;
    position: relative;
    overflow: hidden;
    border-radius: var(--space-2);
}

.business-card .business-card__layout img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}


.business-card .business-card__layout .business-card__title {
    position: absolute;
    top: 66%;
    width: 100%;
    padding: 0 12px;
    color: #fff;
    text-align: center;
    font-family:
        'VNBDisplay';
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    display:
        -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    z-index: 2;
}

.business-card .business-card__layout picture {
    display: block;
    width: 100%;
    aspect-ratio: 228 / 267;
}

.business-card .business-card__layout:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
}

.business-card .business-card__layout:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
}

.business-card:nth-child(1) .business-card__layout:before {
    background: linear-gradient(180deg, rgba(83, 90, 101, 0) 50%, #535A65 95%);
}

.business-card:nth-child(1) .business-card__layout:after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), #A6B3C9;
}

.business-card:nth-child(2) .business-card__layout:before {
    background: linear-gradient(180deg, rgba(31, 39, 31, 0) 67.77%, #1F271F 96.78%);
}

.business-card:nth-child(2) .business-card__layout:after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), #3D4D3E;
}

.business-card:nth-child(3) .business-card__layout:before {
    background: linear-gradient(180deg, rgba(127, 121, 106, 0) 67.77%, #7F796A 96.78%);
}

.business-card:nth-child(3) .business-card__layout:after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), #FDF1D3;
}

.business-card:nth-child(4) .business-card__layout:before {
    background: linear-gradient(180deg, rgba(60, 61, 59, 0) 67.77%, #3C3D3B 96.78%);
}

.business-card:nth-child(4) .business-card__layout:after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), #777A76;
}

.business-card:nth-child(5) .business-card__layout:before {
    background: linear-gradient(180deg, rgba(86, 15, 25, 0) 50%, #560F19 95%);
}

.business-card:nth-child(5) .business-card__layout:after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), #AB1E31;
}

.business-card:nth-child(6) .business-card__layout:before {
    background: linear-gradient(180deg, rgba(32, 39, 58, 0) 50%, #20273A 95%);
}

.business-card:nth-child(6) .business-card__layout:after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), #20273A;
}





@media (max-width:575px) {
    .business-cards__list {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        margin: 0 -12px;
        padding: 0 12px;
        gap: var(--space-3);
    }

    .business-cards__list::-webkit-scrollbar {
        display: none;
    }

    .business-cards__list .business-card {
        width: 148px;
        white-space: nowrap;
        min-width: 148px;
    }

    .business-card .business-card__layout .business-card__title {
        width: 132px;
        white-space: normal;
        font-size: 14px;
        top: 116px;
        left: 0;
        right: 0;
        margin: auto;
        padding: 0;
    }
}

@media (min-width: 576px) and (max-width:767px) {
    .business-cards__list {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        margin: 0 -12px;
        padding: 0 12px;
        gap: var(--space-3);
    }

    .business-cards__list::-webkit-scrollbar {
        display: none;
    }

    .business-cards__list .business-card {
        width: 200px;
        white-space: nowrap;
        min-width: 200px;
    }

    .business-card .business-card__layout .business-card__title {
        width: 178px;
        white-space: normal;
        top: 190px;
        left: 0;
        right: 0;
        margin: auto;
        padding: 0;
    }
}

@media (min-width: 768px) and (max-width:991px) {
    .business-cards__list {
        grid-template-columns: repeat(3, 1fr);
    }

    .business-card .business-card__layout .business-card__title {
        top: 62%;
    }
}

@media (min-width: 992px) and (max-width:1199px) {
    .business-cards__list {
        grid-template-columns: repeat(4, 1fr);
    }

    .business-card .business-card__layout .business-card__title {
        top: 62%;
    }
}

@media (min-width: 1200px) and (max-width:1399px) {
    .business-card .business-card__layout .business-card__title {
        top: 60%;
    }

    .business-cards__list {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 1400px) and (max-width:1599px) {
    .business-card .business-card__layout .business-card__title {
        top: 60%;
    }
}

/*  End Business-cards */



/* VNBUSINESS */
.text-center {
    text-align: center;
}

.ethnic-religion {
    margin-bottom: var(--space-12);
}

.ethnic-religion__layout {
    display: grid;
    grid-template-columns: 1fr 392px;
    gap: 0 24px;
}

.ethnic-religion__main {
    width: 100%;
    background: var(--bg-section);
    padding: var(--space-6);
    position: relative;
    border-radius: var(--space-2);
}

.ethnic-religion__main:before {
    content: '';
    position: absolute;
    height: 8px;
    background: #EEE4D9;
    width: calc(100% - 48px);
    left: 0;
    right: 0;
    margin: auto;
    bottom: -8px;
    border-radius: 0 0 8px 8px;
}

.logo-vnb-block {
    margin-bottom: var(--space-6);
}

.ethnic-religion__heading {
    text-align: center;
    margin-bottom: var(--space-3);
}

.ethnic-religion__heading .title-site-big:before {
    width: 100px;
    left: 0;
    right: 0;
    margin: auto;

    bottom: -4px;
}

.ethnic-religion__sidebar {
    background: #fff;
    border-radius: var(--space-2);
    padding: var(--space-6);
    position: relative;
}

.ethnic-religion__sidebar:before {
    content: '';
    position: absolute;
    height: 8px;
    background: var(--border-1);
    width: calc(100% - 48px);
    left: 0;
    right: 0;
    margin: auto;
    bottom: -8px;
    border-radius: 0 0 8px 8px;
}

.ethnic-religion__list .news-item {
    margin-bottom: 24px;
}

.ethnic-religion__list .news-item:last-child {
    margin: 0;
}

.ethnic-religion__list .news-item.news-item-horizontal .news-item__image-wrapper {
    height: auto;
    width: 150px;
}

.ethnic-religion__list .news-item.news-item-horizontal .news-item__title {
    color: var(--text-main);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.3;
    font-family: 'VNBDisplay';
}

@media (max-width:575px) {
    .ethnic-religion__layout {
        display: block;
    }

    .ethnic-religion__heading .title-site-big:before {
        width: 80px;
    }

    .ethnic-religion__main {
        margin-bottom: 40px;
        padding: var(--space-3);
    }

    .ethnic-religion__sidebar {
        padding: var(--space-3);
    }

    .ethnic-religion__sidebar:before {
        width: calc(100% - 24px);
    }

    .ethnic-religion__main:before {
        width: calc(100% - 24px);
    }

    .ethnic-religion {
        margin-bottom: 88px;
    }

    .ethnic-religion__list .news-item {
        margin-bottom: var(--space-4);
        padding-bottom: var(--space-4);
        border-bottom: 1px solid var(--border-1);
    }

    .ethnic-religion__list .news-item:last-child {
        margin: 0;
        padding: 0;
        border: none;
    }

    .ethnic-religion__list .news-item.news-item-horizontal .news-item__image-wrapper {
        width: 110px;
    }
}

@media (min-width: 576px) and (max-width:991px) {

    .ethnic-religion__layout {
        display: block;
    }

    .ethnic-religion__main {
        margin-bottom: 40px;
        padding: var(--space-5);
    }

    .ethnic-religion__sidebar {
        padding: var(--space-5);
    }

    .ethnic-religion {
        margin-bottom: 80px;
    }

    .ethnic-religion__sidebar:before {
        width: calc(100% - 40px);
    }

    .ethnic-religion__main:before {
        width: calc(100% - 40px);
    }
}

@media (min-width: 992px) and (max-width:1199px) {
    .ethnic-religion__layout {
        grid-template-columns: 1fr 340px;
    }

    .ethnic-religion__list .news-item.news-item-horizontal .news-item__image-wrapper {
        width: 126px;
    }
}

/* END VNBUSINESS */

/* Video  */
.news-video__layout {
    display: grid;
    align-items: flex-start;
    gap: 0 40px;
    grid-template-columns: 1fr 392px;
}

.horizontal-video__main {
    display: flex;
}

.video__sidebar-qc {
    text-align: center;
}

.news-video__sidebar {
    width: 100%;
    min-width: 0;
}

.news-video__main {
    min-width: 0;
    background: rgba(125, 125, 89, 1);

    border-radius: var(--space-2);
    padding: var(--space-6);
    margin-top: 52px;
}

.slide_news-video .swiper-slide:before {
    content: '';
    position: absolute;
    top: 0;
    right: -24px;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
}

.horizontal-video__main .news-item {
    display: flex;
    flex-direction: row-reverse;
}

.horizontal-video__main .news-item .news-item__image-wrapper {
    width: 712px;
    position: relative;
    margin-left: -130px;
    margin-top: -72px;
}

.horizontal-video__main .news-item .news-item__content {
    width: 500px;
    position: relative;
    z-index: 1;
}

.horizontal-video__main .news-item .news-item__image-wrapper .news-item__thumb {
    margin: 0;
}

.horizontal-video__main .news-item .news-item__image-wrapper .icon-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-video__heading {
    margin-top: -75px;
}

.horizontal-video__main .news-item .news-item__content .news-item__title {
    font-size: 36px;
    line-height: 1.4;
}

.horizontal-video__main .news-item .news-item__content .news-item__title .news-item__title-link {
    color: #fff;
}

.horizontal-video__main .news-item .news-item__content .news-item__description {
    color: #fff;
    font-size: 20px;
    margin-top: var(--space-4);
}

.horizontal-video__main .news-item .news-item__image-wrapper:before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(270deg, rgba(125, 125, 89, 0) 71.29%, rgba(125, 125, 89, 0.8) 89.95%);

    border-radius: 8px;
    z-index: 1;
    pointer-events: none;
}

.news-video {
    margin-bottom: 48px;
}

.news-item.news-item__video {
    display: flex;
    align-items: flex-start;
}

.news-item.news-item__video .news-item__image-wrapper {
    width: 150px;
    position: relative;
}

.news-item.news-item__video .news-item__content {
    flex: 1;
    margin-left: var(--space-3);
}

.news-item.news-item__video .news-item__content .news-item__title {
    font-size: 17px;
    line-height: 1.4;
    margin: 0;
    font-family: 'VNBDisplay';
    font-weight: 400;
}

.news-item.news-item__video .news-item__content .news-item__title a {
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item.news-item__video .news-item__content .news-item__title a:hover {
    text-decoration: underline;
}

.news-item.news-item__video .news-item__image-wrapper .icon-video {
    position: absolute;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    pointer-events: none;
}

.news-item.news-item__video .news-item__image-wrapper .news-item__thumb {
    margin: 0;
}

.slide_news-video {
    margin-top: 62px;
    padding-right: 48px;
    position: relative;
}

.slide_news-video .ct-nav-slide {
    background: transparent;
    border: none;
}

.slide_news-video .ct-nav-slide svg {
    width: auto;
    height: auto;
}

.slide_news-video .ct-nav-slide.swiper-button-next {
    bottom: 47px;
    top: auto;
    right: 0;
}

.slide_news-video .ct-nav-slide.swiper-button-prev {
    bottom: 12px;
    top: auto;
    left: auto;
    right: 0;
}

.slide_news-video:before {
    content: '';
    position: absolute;
    top: 0;
    right: 48px;
    background: linear-gradient(270deg, #7d7d59 0%, rgb(125 125 89 / 0%) 100%);
    height: 100%;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}


@media (max-width:575px) {
    .slide_news-video .swiper-slide:after {
        content: '';
        position: absolute;
        bottom: -16px;
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.2);
        left: 0;
    }

    .slide_news-video .swiper-slide:before {
        display: block;
        content: '';
        position: absolute;
        top: 0;
        width: 1px;
        height: calc(100% + 32px);
        background: rgba(255, 255, 255, 0.2);
        right: -16px;
    }

    .slide_news-video .swiper-wrapper {
        padding: 0 12px;
    }

    .slide_news-video {
        margin-top: 0;
        margin-left: -12px;
        margin-right: -12px;
        padding: 0;
        padding-top: 16px;
    }

    .slide_news-video .ct-nav-slide.swiper-button-prev {
        bottom: 4px;
    }

    .slide_news-video .ct-nav-slide.swiper-button-next {
        bottom: 38px;
    }

    .horizontal-video__main .news-item .news-item__image-wrapper {
        width: calc(100% + 24px);
        margin: 0 -12px;
    }

    .horizontal-video__main .news-item .news-item__content .news-item__title {
        font-size: 26px;
    }

    .horizontal-video__main .news-item .news-item__content .news-item__description {
        font-size: 18px;
        margin-top: var(--space-3);
    }

    .horizontal-video__main .news-item .news-item__content {
        width: 100%;
        margin-top: -42px;
    }

    .news-item.news-item__video .news-item__image-wrapper {
        width: 110px;
    }

    .news-video__layout {
        display: block;
    }

    .horizontal-video__main .news-item {
        flex-direction: column;
        margin-top: -20px;
    }

    .news-video__heading {
        margin-top: -58px;
        position: relative;
        z-index: 1;
    }

    .news-video__main {
        padding: var(--space-3);
        margin: 0;
        margin-bottom: 32px;
        border-radius: 0;
        margin: 0 -12px;
        margin-bottom: 32px;
    }

    .news-video__heading {
        text-align: center;
    }

    .horizontal-video__main .news-item .news-item__image-wrapper .news-item__thumb .image-container {
        border-radius: 0;
    }

    .horizontal-video__main .news-item .news-item__image-wrapper:before {
        background: linear-gradient(180deg, rgba(110, 112, 126, 0) 50%, rgba(110, 112, 126, 0.8) 87.5%);
    }

    .horizontal-video__main .news-item .news-item__image-wrapper .icon-video {
        width: 40px;
        height: 40px;
    }

    .horizontal-video__main {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 16px;
    }

    .slide_news-video:before {
        display: none;
    }

    .slide_news-video .ct-nav-slide {
        display: none;
    }
}

@media (min-width: 576px) and (max-width:767px) {
    .slide_news-video .swiper-slide:before {
        display: none;
    }

    .slide_news-video {
        margin-top: 24px;
    }

    .slide_news-video .ct-nav-slide.swiper-button-prev {
        bottom: 4px;
    }

    .slide_news-video .ct-nav-slide.swiper-button-next {
        bottom: 38px;
    }

    .horizontal-video__main .news-item .news-item__image-wrapper {
        width: 100%;
        margin: 0;
    }

    .horizontal-video__main .news-item .news-item__content .news-item__title {
        font-size: 28px;
    }

    .horizontal-video__main .news-item .news-item__content .news-item__description {
        font-size: 18px;
    }

    .horizontal-video__main .news-item .news-item__content {
        width: 100%;
        margin-top: 12px;
    }

    .news-item.news-item__video .news-item__image-wrapper {
        width: 120px;
    }

    .news-video__layout {
        display: block;
    }

    .horizontal-video__main .news-item {
        flex-direction: column;
    }

    .horizontal-video__main .news-item .news-item__image-wrapper:before {
        background: linear-gradient(180deg, rgba(110, 112, 126, 0) 50%, rgba(110, 112, 126, 0.8) 87.5%);
    }

    .news-video__heading {
        margin-top: -63px;
        position: relative;
        z-index: 1;
        text-align: center;
    }

    .news-video__main {
        padding: var(--space-5);
        margin: 0;
        margin-bottom: 32px;
    }
}

@media (min-width: 768px) and (max-width:991px) {
    .slide_news-video .swiper-slide:before {
        display: none;
    }

    .slide_news-video {
        margin-top: 24px;
    }

    .slide_news-video .ct-nav-slide.swiper-button-prev {
        bottom: 4px;
    }

    .slide_news-video .ct-nav-slide.swiper-button-next {
        bottom: 38px;
    }

    .horizontal-video__main .news-item .news-item__image-wrapper {
        width: 100%;
        margin: 0;
    }

    .horizontal-video__main .news-item .news-item__content .news-item__title {
        font-size: 28px;
    }

    .horizontal-video__main .news-item .news-item__content .news-item__description {
        font-size: 18px;
    }

    .horizontal-video__main .news-item .news-item__content {
        width: 100%;
        margin-top: 12px;
    }

    .news-item.news-item__video .news-item__image-wrapper {
        width: 120px;
    }

    .news-video__layout {
        display: block;
    }

    .horizontal-video__main .news-item {
        flex-direction: column;
    }

    .horizontal-video__main .news-item .news-item__image-wrapper:before {
        background: linear-gradient(180deg, rgba(110, 112, 126, 0) 50%, rgba(110, 112, 126, 0.8) 87.5%);
    }

    .news-video__heading {
        margin: 0;
    }

    .news-video__main {
        padding: var(--space-5);
        margin: 0;
        margin-bottom: 32px;
    }
}

@media (min-width: 992px) and (max-width:1199px) {
    .slide_news-video {
        margin-top: 24px;
    }

    .slide_news-video .ct-nav-slide.swiper-button-prev {
        bottom: 4px;
    }

    .slide_news-video .ct-nav-slide.swiper-button-next {
        bottom: 38px;
    }

    .horizontal-video__main .news-item .news-item__image-wrapper {
        width: 100%;
        margin: 0;
    }

    .horizontal-video__main .news-item .news-item__content .news-item__title {
        font-size: 28px;
    }

    .horizontal-video__main .news-item .news-item__content .news-item__description {
        font-size: 18px;
    }

    .horizontal-video__main .news-item .news-item__content {
        width: 100%;
        margin-top: 12px;
    }

    .news-item.news-item__video .news-item__image-wrapper {
        width: 120px;
    }

    .news-video__layout {
        grid-template-columns: 1fr 340px;
        gap: 0 24px;
    }

    .horizontal-video__main .news-item {
        flex-direction: column;
    }

    .horizontal-video__main .news-item .news-item__image-wrapper:before {
        background: linear-gradient(180deg, rgba(110, 112, 126, 0) 50%, rgba(110, 112, 126, 0.8) 87.5%);
    }

    .news-video__heading {
        margin: 0;
    }

    .news-video__main {
        margin: 0;
    }
}

@media (min-width: 1200px) and (max-width:1399px) {
    .slide_news-video .ct-nav-slide.swiper-button-prev {
        bottom: 4px;
    }

    .slide_news-video .ct-nav-slide.swiper-button-next {
        bottom: 38px;
    }

    .horizontal-video__main .news-item .news-item__image-wrapper {
        width: 480px;
    }

    .horizontal-video__main .news-item .news-item__content .news-item__title {
        font-size: 28px;
    }

    .horizontal-video__main .news-item .news-item__content .news-item__description {
        font-size: 18px;
    }

    .horizontal-video__main .news-item .news-item__content {
        width: 360px;
    }

    .news-item.news-item__video .news-item__image-wrapper {
        width: 120px;
    }
}

@media (min-width: 1400px) and (max-width:1599px) {
    .horizontal-video__main .news-item .news-item__image-wrapper {
        width: 560px;
    }

    .horizontal-video__main .news-item .news-item__content .news-item__title {
        font-size: 32px;
    }

    .horizontal-video__main .news-item .news-item__content .news-item__description {
        font-size: 18px;
    }

    .horizontal-video__main .news-item .news-item__content {
        width: 450px;
    }

}

/* End Video  */

/* multimedia */

.news-multimedia .news-video__main {
    margin: 0;
    background: transparent;
    position: relative;
    padding: 0;
    border-radius: 0;
}

.news-multimedia-content {
    background: rgba(125, 125, 89, 1);
    border-radius: var(--space-2);
    padding: var(--space-6);
    padding-bottom: 200px;
}

.texture-multimedia {
    position: absolute;
    top: var(--space-6);
    left: var(--space-6);
}

.link-category-news {
    padding: 12px 32px 0 32px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0 24px;
    position: relative;
    margin-bottom: 24px;
}

.link-category-news .link-category {
    color: #fff;
    font-size: 34px;
    font-family: 'VNBSerif';
    font-weight: 700;
    transition: all .3s;
    position: relative;
}

.news-multimedia .horizontal-video__main .news-item .news-item__image-wrapper {
    margin-top: 0;
}

.link-category-news .link-category:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all .4s;
    opacity: 0;
    visibility: hidden;
}

.link-category-news .link-category:hover:before {
    opacity: 1;
    visibility: visible;
}

.flex-label-news-item {
    display: flex;
    align-items: center;
    gap: 0 12px;
}

.label-category {
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
    border-radius: 4px;
    background: #B72124;
    height: 28px;
    gap: 0 8px;
}

.label-category .text {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.flex-label-news-item .text-category {
    color: #E31B21;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    margin: 0;
}

.news-multimedia .horizontal-video__main .news-item .news-item__image-wrapper:before {
    background: linear-gradient(270deg, rgba(125, 125, 89, 0) 71.29%, rgba(125, 125, 89, 0.8) 89.23%);
}

.news-multimedia .horizontal-video__main .news-item {
    align-items: center;
}

.news-multimedia {
    margin-bottom: 64px;
}

.flex-label-news-item .icon {
    width: var(--space-4);
    height: var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.multimedia__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    width: 864px;
    margin: 0 auto;
    margin-top: -180px;
}

.multimedia__list .flex-label-news-item {
    margin-bottom: 8px;
}

.horizontal-video__main .flex-label-news-item .text-category {
    color: #fff;
}

.widget-box {
    width: 344px;
    margin: 0 auto;
    background: #fff;
    margin-bottom: var(--space-6);
    border-radius: var(--space-2);
    padding: var(--space-4);
    position: relative;
}

.widget-header .widget-header__heading {
    color: var(--text-main);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    font-family: 'VNBDisplay';
    flex: 1;
}

.widget-header {
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
}

.widget-header__btn a {
    display: inline-flex;
    color: rgba(0, 125, 196, 1);
    font-size: 14px;
    transition: all .3s;
}

.widget-header__btn a:hover {
    text-decoration: underline;
    color: rgba(0, 125, 196, 1);
}

.widget-box .item-price+.item-price {
    margin-top: var(--space-2);
}

.widget-box .item-price {
    display: flex;
    align-items: center;
    column-gap: var(--space-3);
}

.widget-box .item-price .label {
    display: inline-block;
    min-width: 42px;
}

.widget-box .item-price .buy,
.widget-box .item-price .sell {
    color: rgba(128, 128, 128, 1);
    font-size: 14px;
}

.widget-box .item-price .buy strong,
.widget-box .item-price .sell strong {
    font-weight: 700;
    color: var(--text-main);
    margin-left: 4px;
}

.widget-box .item-price .up {
    position: relative;
    top: -2px;
    margin-left: 3px;
}

.widget-box .item-price .down {
    position: relative;
    top: -2px;
    margin-left: 3px;
}

.widget-box:before {
    content: '';
    position: absolute;
    height: 8px;
    background: var(--bg-2-darker);
    width: calc(100% - 32px);
    left: 0;
    right: 0;
    margin: auto;
    bottom: -8px;
    border-radius: 0 0 8px 8px;
}

.widget-box.box-price-gold:before {
    background: rgba(240, 214, 109, 1);
}

.widget-box.box-exchange-rate:before {
    background: rgba(115, 184, 94, 1);
}

.widget-box.box-info-iframe:before {
    background: rgba(145, 19, 28, 1);
}

.widget-box.box-info-iframe iframe {
    width: 100%;
}

.news-multimedia .video__sidebar-qc {
    margin-bottom: 16px;
}

@media (max-width:575px) {
    .news-multimedia {
        margin-bottom: 32px;
    }

    .link-category-news {
        justify-content: center;
        gap: 8px 16px;
        padding: 0 0 32px 0;
        margin-bottom: 0;
    }

    .texture-multimedia {
        top: var(--space-2);
        left: 0;
        width: 100%;
    }

    .news-multimedia .horizontal-video__main .news-item .news-item__content {
        margin-top: -62px;
    }

    .news-multimedia .horizontal-video__main .news-item .news-item__description {
        display: none;
    }

    .news-multimedia-content {
        margin: 0 -12px;
        border-radius: 0;
        padding-bottom: 6px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .link-category-news .link-category {
        font-size: 20px;
        line-height: 1.4;
    }

    .news-multimedia-content .horizontal-video__main {
        border: none;
    }

    .multimedia__list {
        display: none;
    }

    .multimedia__list .news-card+.news-card {
        border-top: 1px solid rgba(228, 223, 217, 1);
        padding-top: 16px;
        margin-top: 16px;
    }

    .news-multimedia .news-video__main {
        margin-bottom: 32px;
    }

    .news-multimedia .horizontal-video__main .news-item .news-item__image-wrapper .news-item__thumb .image-container {
        border-radius: 0;
    }

    .news-multimedia .horizontal-video__main .news-item .news-item__image-wrapper:before {
        border-radius: 0;
    }

    .widget-box {
        display: none;
    }
}

@media (min-width: 576px) and (max-width:767px) {
    .news-multimedia {
        margin-bottom: 32px;
    }

    .link-category-news {
        justify-content: center;
        gap: 8px 24px;
        padding: 0;
    }

    .link-category-news .link-category {
        font-size: 24px;
    }

    .news-multimedia .horizontal-video__main .news-item .news-item__content {
        padding: 0 16px;
        margin-top: -70px;
    }

    .widget-box {
        width: 100%;
    }

    .news-multimedia .news-video__sidebar {
        display: grid;
        grid-template-columns: 100%;
        gap: 0;
    }

    .multimedia__list {
        width: 100%;
        padding: 0 24px;
        margin-top: -60px;

    }

    .news-multimedia-content {
        padding-bottom: 90px;
    }

    .news-multimedia .news-video__main {
        margin-bottom: 32px;
    }
}

@media (min-width: 768px) and (max-width:991px) {

    .link-category-news {
        justify-content: center;
        gap: 0 48px;
        padding: 0;
    }

    .news-multimedia .horizontal-video__main .news-item .news-item__content {
        padding: 0 16px;
        margin-top: -70px;
    }

    .news-multimedia .news-video__sidebar {
        display: grid;
        grid-template-columns: 50% 50%;
        gap: 16px;
    }

    .multimedia__list {
        width: 100%;
        padding: 0 24px;
        margin-top: -60px;
    }

    .news-multimedia-content {
        padding-bottom: 90px;
    }

    .news-multimedia .news-video__main {
        margin-bottom: 24px;
    }
}

@media (min-width: 992px) and (max-width:1199px) {
    .link-category-news {
        justify-content: center;
        gap: 0 48px;
        padding: 12px 0 0 0;
    }

    .news-multimedia .horizontal-video__main .news-item .news-item__content {
        padding: 0 16px;
        margin-top: -70px;
    }

    .multimedia__list {
        width: 100%;
        padding: 0 24px;
        margin-top: -60px;
    }

    .news-multimedia-content {
        padding-bottom: 90px;
    }
}

@media (min-width: 1200px) and (max-width:1399px) {
    .link-category-news {
        padding: 12px 24px 0 24px;
    }

    .news-multimedia .horizontal-video__main .news-item {
        align-items: flex-start;
    }

    .multimedia__list {
        width: 100%;
        padding: 0 24px;
        margin-top: -60px;
    }

    .news-multimedia-content {
        padding-bottom: 90px;
    }

    .news-multimedia {
        margin-bottom: 48px;
    }
}

@media (min-width: 1400px) and (max-width:1599px) {
    .news-multimedia .horizontal-video__main .news-item {
        align-items: flex-start;
    }

    .multimedia__list {
        width: 100%;
        padding: 0 24px;
    }

    .news-multimedia {
        margin-bottom: 48px;
    }
}

@media (max-width:1199px) {
    .news-multimedia .horizontal-video__main .news-item .news-item__image-wrapper:before {
        background: linear-gradient(180deg, rgba(125, 125, 89, 0) 69.26%, rgba(125, 125, 89, 0.8) 86.17%);
    }
}

/* End multimedia */


/* News featured */
.news-block__featured {
    background: #fff;
    padding: var(--space-6);
    border-radius: var(--space-2);
    display: grid;
    align-items: flex-start;
    grid-template-columns: 344px 1fr 344px;
    gap: var(--space-6);
    position: relative;
}

.news-block__featured:before {
    content: '';
    position: absolute;
    height: 8px;
    background: var(--bg-2-darker);
    width: calc(100% - 48px);
    left: 0;
    right: 0;
    margin: auto;
    top: -8px;
    border-radius: 8px 8px 0 0;
}


.news-block-featured__small-items .news-item+.news-item {
    margin-top: var(--space-6);
}

.news-block__featured>div {
    min-width: 0;
}

.news-block-featured__small-items .news-item .news-item__description {
    margin-top: var(--space-2);
    /* display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden; */
}

.news-item--featured .news-item__description {
    font-size: 20px;
    margin-top: var(--space-12);
    position: relative;
}

.news-item--featured .news-item__description:before {
    content: '';
    position: absolute;
    top: -24px;
    left: 0;
    background: var(--text-main);
    width: 90px;
    height: 1px;
}

.news-list-small {
    padding-top: var(--space-9);
    position: relative;
}

.news-list-small:before {
    content: '';
    position: absolute;
    top: 16px;
    left: 0;
    background: #E4DFD9;
    width: 26px;
    height: 1px;
}

.news-list-small li+li {
    margin-top: var(--space-4);
}

.news-list-small li .news-list-small__link {
    color: var(--text-main);
    font-size: 16px;
    font-weight: 700;
    font-family: 'VNBDisplay';
    display: inline-block;
    transition: all .3s;
}

.news-list-small li .news-list-small__link:hover {
    color: var(--text-title);
}

.news-block-featured__banner {
    text-align: center;
    margin-bottom: var(--space-4);
}

.news-block-featured__banner a {
    display: inline-block;
}

.news-item--compact {
    border-bottom: 1px dashed var(--border-1);
    padding-bottom: var(--space-4);
    margin-bottom: var(--space-4);
}

.news-item--compact .news-item__title {
    font-size: 16px;
    font-family: 'VNBDisplay';
    font-weight: 700;
    line-height: 1.4;
}

.news-item--compact .news-item__title .news-item__link {
    color: var(--text-main);
    transition: all .3s;
    display: block;
}

.news-item--compact .news-item__title .news-item__link:hover {
    color: var(--text-title);
}

.news-item--compact .news-item__time {
    color: #808080;
    font-size: 14px;
    line-height: 1.4;
    margin-top: var(--space-2);
}

.news-block__view-more {
    display: inline-block;
    color: var(--text-title);
    font-size: 12px;
    text-transform: uppercase;
    transition: all .3s;
}

.news-block__view-more:hover {
    text-decoration: underline;
    color: var(--text-title);
}

.news-block-featured__main-item .news-item__thumb {
    margin-bottom: var(--space-3);
}

.news-featured {
    margin-top: var(--space-2);
}

@media (max-width:575px) {
    .news-item--compact .news-item__time {
        margin-top: var(--space-1);
    }

    .news-block-featured__sidebar-heading {
        text-align: center;
    }

    .news-block-featured__main-item .news-list-small {
        display: none;
    }

    .news-block__featured {
        grid-template-columns: 1fr;
        padding: var(--space-3);
        padding-top: 0;
    }

    .news-block-featured__small-items {
        order: 2;
        border-top: 1px solid var(--border-1);
        padding-top: 24px;
    }

    .news-block-featured__main-item {
        order: 1;
    }

    .news-block-featured__sidebar {
        order: 3;
    }

    .news-block__featured:before {
        width: calc(100% - 24px);
    }

    .news-item--featured .news-item__image-wrapper {
        margin: 0 -24px;
    }

    .news-item--featured .news-item__image-wrapper .image-container {
        border-radius: 0;
    }

    .news-item--compact {
        padding-bottom: var(--space-3);
        margin-bottom: var(--space-3);
    }

    .news-block-featured__small-items .news-item .news-item__description {
        display: none;
    }

    .news-block-featured__small-items .news-item+.news-item {
        border-top: 1px solid rgba(228, 223, 217, 1);
        margin-top: var(--space-4);
        padding-top: var(--space-4);
    }

    .news-block-featured__sidebar-footer {
        text-align: center;
    }
}

@media (min-width: 576px) and (max-width:767px) {
    .news-block-featured__sidebar-footer {
        text-align: center;
    }

    .news-block-featured__sidebar-heading {
        text-align: center;
    }

    .news-block-featured__small-items .news-item+.news-item {
        border-top: 1px solid rgba(228, 223, 217, 1);
        margin-top: var(--space-4);
        padding-top: var(--space-4);
    }

    .news-block-featured__main-item .news-list-small {
        display: none;
    }

    .news-block__featured {
        grid-template-columns: 1fr;
        padding: var(--space-4);
    }

    .news-block-featured__small-items {
        order: 2;
        border-top: 1px solid var(--border-1);
        padding-top: 24px;
    }

    .news-block-featured__main-item {
        order: 1;
    }

    .news-block-featured__sidebar {
        order: 3;
    }

    .news-block-featured__small-items .news-item .news-item__description {
        display: none;
    }
}

@media (min-width: 768px) and (max-width:991px) {
    .news-block__featured {
        grid-template-columns: 250px 1fr;
    }

    .news-block-featured__sidebar {
        grid-column: 1/3;
    }

    .news-block-featured__banner {
        text-align: left;
    }
}

@media (max-width:991px) {
    .news-featured {
        margin-top: 0;
    }
}

@media (min-width: 992px) and (max-width:1199px) {
    .news-block__featured {
        grid-template-columns: 250px 1fr 250px;
        padding: var(--space-4);
        gap: var(--space-4);
    }

    .news-item--featured .news-item__description {
        font-size: 18px;
    }
}

@media (min-width: 1200px) and (max-width:1399px) {
    .news-block__featured {
        grid-template-columns: 300px 1fr 300px;
        padding: var(--space-5);
        gap: var(--space-4);
    }
}

@media (min-width: 1400px) and (max-width:1599px) {
    .news-block__featured {
        grid-template-columns: 300px 1fr 300px;
    }
}



/* End News featured */





/* Tin tức  */
.news-sections__layout {
    padding: 0 24px;
}

.slide-news+.slide-news {
    margin-top: var(--space-12);
}

.news-sections__col {
    width: 100%;
}

.news-sections {
    padding-bottom: var(--space-12);
}

.cat-title {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    font-family: 'VNBSerif';
    margin-bottom: var(--space-3);
}

.cat-title a {
    display: inline-block;
    color: var(--text-title);
    transition: all .3s;
}

.cat-title a:hover {
    text-decoration: underline;
}

.image-container {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    border-radius: var(--space-2);
}

.image-container--5x3 {
    aspect-ratio: 5 / 3;
}

.image-container--16x9 {
    aspect-ratio: 16 / 9;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: filter .35s ease;
}

.news-item__thumb {
    display: block;
    margin-bottom: var(--space-2);
}

.news-item__thumb:hover img {
    transform: scale(1);
    filter: brightness(0.8);
}

.news-latest__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.news-card__meta {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-2);
}

.news-card__meta .news-card__category {
    color: var(--text-title);
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    flex: 1;
}

.news-card__meta .news-card__time {
    color: #808080;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    font-family: 'VNBDisplay';
}

.news-list {
    border-top: 1px solid var(--border-1);
    padding-top: var(--space-4);
    margin-top: var(--space-4);
}

.news-list li+li {
    border-top: 1px solid var(--border-1);
    padding-top: var(--space-4);
    margin-top: var(--space-4);
}

.news-list li .news-list__link {
    color: var(--text-main);
    transition: all .3s;
    font-size: 17px;
    line-height: 1.4;
    /* display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden; */
}

.news-list li .news-list__link:hover {
    color: var(--text-title);
}

.news-item__title-link {
    color: var(--text-main);
    transition: all .3s;
}

/* .news-card .news-item__title-link {
   display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
} */
.slide-news {
    position: relative;
}

.news-item__title-link:hover {
    color: var(--text-title);
}

.slide-news .ct-nav-slide {
    opacity: 0;
}

.title-hidden-desktop {
    display: none;
}

@media (max-width:575px) {
    .news-sections {
        padding-bottom: var(--space-82);
    }

    .news-latest__list {
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }

    .news-latest__list .news-card+.news-card {
        border-top: 1px solid var(--border-1);
        padding-top: var(--space-4);
        margin-top: var(--space-4);
    }

    .news-latest .highlight__title:before {
        width: 80px;
        bottom: 0;
        height: 4px;
        z-index: 1;
    }

    .title-hidden-desktop {
        display: inline;
    }

    .news-latest .highlight__title {
        margin-bottom: var(--space-4);
    }

    .slide-news+.slide-news {
        margin-top: var(--space-8);
    }

    .slide-news .ct-pagination {
        display: flex;
        width: 66%;
        margin: 0 auto;
        margin-top: 32px;
    }

    .slide-news {
        position: relative;
    }

    .slide-news .ct-nav-slide.swiper-button-prev {
        bottom: -3px;
        top: auto;
        left: 6%;
        opacity: 1;
    }

    .slide-news .ct-nav-slide.swiper-button-next {
        right: 6%;
        bottom: -3px;
        top: auto;
        opacity: 1;
    }

    .slide-news {
        margin: 0 -12px;
    }

    .slide-news .swiper {
        padding: 0 12px;
    }

    .news-sections {
        padding-bottom: var(--space-8);
    }
}

@media (min-width: 576px) and (max-width:767px) {
    .news-sections {
        padding-bottom: var(--space-82);
    }

    .news-latest__list {
        grid-template-columns: repeat(2, 1fr);
    }

    .slide-news .ct-pagination {
        display: flex;
        width: 66%;
        margin: 0 auto;
        margin-top: 32px;
    }

    .slide-news {
        position: relative;
    }

    .slide-news .ct-nav-slide.swiper-button-prev {
        bottom: -3px;
        top: auto;
        left: 6%;
        opacity: 1;
    }

    .slide-news .ct-nav-slide.swiper-button-next {
        right: 6%;
        bottom: -3px;
        top: auto;
        opacity: 1;
    }
}

@media (min-width: 768px) and (max-width:991px) {
    .news-latest__list {
        grid-template-columns: repeat(3, 1fr);
    }

    .slide-news .ct-pagination {
        display: flex;
        width: 36%;
        margin: 0 auto;
        margin-top: 32px;
    }

    .slide-news {
        position: relative;
    }

    .slide-news .ct-nav-slide.swiper-button-prev {
        bottom: -3px;
        top: auto;
        left: 26%;
        opacity: 1;
    }

    .slide-news .ct-nav-slide.swiper-button-next {
        right: 26%;
        bottom: -3px;
        top: auto;
        opacity: 1;
    }
}

@media (min-width: 992px) and (max-width:1199px) {
    .news-latest__list {
        grid-template-columns: repeat(3, 1fr);
    }

    .slide-news .ct-pagination {
        display: flex;
        width: 25%;
        margin: 0 auto;
        margin-top: 32px;
    }

    .slide-news {
        position: relative;
    }

    .slide-news .ct-nav-slide.swiper-button-prev {
        bottom: -3px;
        top: auto;
        left: 32%;
        opacity: 1;
    }

    .slide-news .ct-nav-slide.swiper-button-next {
        right: 32%;
        bottom: -3px;
        top: auto;
        opacity: 1;
    }
}

@media (min-width: 1200px) and (max-width:1399px) {
    .news-list {
        padding-top: var(--space-2);
        margin-top: var(--space-2);
    }

    .news-list li+li {
        padding-top: var(--space-2);
        margin-top: var(--space-2);
    }

    .news-list li .news-list__link {
        font-size: 16px;
    }
}

@media (max-width:1199px) {
    .news-sections__layout {
        padding: 0;
    }
}

/* End Tin tức */