@charset "utf-8";

@font-face {
    font-family: 'Inter';
    font-weight: 300;
    src: url('fonts/Inter/Inter-Light.ttf');
}
@font-face {
    font-family: 'UTM_Avo';
    font-weight: 700;
    src: url('fonts/UTMAvo/UTM_AvoBold.ttf');
}

@font-face {
    font-family: 'Inter';
    font-weight: 400;
    src: url('fonts/Inter/Inter-Regular.ttf');
}


@font-face {
    font-family: 'Inter';
    font-weight: 500;
    src: url('fonts/Inter/Inter-Medium.ttf');
}

@font-face {
    font-family: 'Inter';
    font-weight: 700;
    src: url('fonts/Inter/Inter-Bold.ttf');
}

@font-face {
    font-family: 'Playfair_Display';
    font-weight: 700;
    src: url('fonts/Playfair_Display/PlayfairDisplay-Bold.ttf');
}

@font-face {
    font-family: 'Playfair_Display';
    font-weight: 400;
    src: url('fonts/Playfair_Display/PlayfairDisplay-Regular.ttf');
}
@font-face {
    font-family: 'Playfair_Display_Italic';
    font-weight: 400;
    src: url('fonts/Playfair_Display/PlayfairDisplay-Italic.ttf');
}

@font-face {
    font-family: 'Playfair_Display_Italic';
    font-weight: 700;
    src: url('fonts/Playfair_Display/PlayfairDisplay-BoldItalic.ttf');
}

* {
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    line-height: 1.5;
    min-width: 1280px;
    background-color: #1e1f29;
}

.siteCenter {
    width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    border: none;
    color: inherit;
    transition: .3s ease all;
}

img {
    border: none;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

input,
button {
    border: 0;
    outline: 0;
}

ul,
ol {
    list-style: none;
}

strong {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.fw {
    width: 100%;
}

.lt {
    display: block;
    float: left;
}

.rt {
    display: block;
    float: right;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0;
    width: 100%;
    clear: both;
}

/* gotop */
.gotop {
    width: 48px;
    height: 48px;
    line-height: 48px;
    background-color: #2e3192;
    border-radius: 50%;
    display: none;
    position: fixed;
    bottom: 180px;
    right: 42px;
    cursor: pointer;
    z-index: 999;
    text-align: center;
    transition: .3s ease all;
    opacity: 1;
}

.gotop>svg {
    vertical-align: -6px;
}

.gotop:hover {
    opacity: 0.7;
}

.mobile-button {
    display: none;
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    background: #ed1b24;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 12px;
    z-index: 9999;
}

#header {
    background-color: #ab1818;
    transition: .3s ease all;
    position: relative;
    z-index: 999;
}
#header.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0px 1px 10px #ebebeb;
}
#header.fixed-top .header-main {
    padding-block: 10px;
}
.hr-logo {
    transition: .35s ease;
}
#header.fixed-top .hr-logo{
    width: 100px;
}
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-block: 26px;
    transition: .3s ease all;

}

.hr-bar {
    display: flex;
    align-items: center;
    column-gap: 25px;
}

.bar-menu {
    text-transform: uppercase;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #fff;
}

.bars {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 7px;
    width: 46px;
    height: 46px;
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 5px;
}

.bar-icon {
    background-color: #fff;
    height: 1px;
    width: 30px;
    transition: all 0.3s ease;
}

/* Khi mở menu, chuyển sang dấu X */
.bars.open .bar-icon:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    top: 8px;
}

.bars.open .bar-icon:nth-child(2) {
    opacity: 0;
}

.bars.open .bar-icon:nth-child(3) {
    transform: rotate(-45deg);
    position: relative;
    top: -8px;
}

.hr-left {
    display: flex;
    align-items: center;
    column-gap: 40px;
}

.hr-social {
    display: flex;
    column-gap: 10px;
}

.hr-icon {
    background-image: url(../../images/topics/social-topic.png);
    background-repeat: no-repeat;
    height: 28px;
    display: block;
}

.ic-xt {
    background-position: 0 0;
    width: 16px;

}

.ic-wa {
    background-position: -24px 0;
    width: 25px;
}

.ic-tt {
    background-position: -60px 0;
    width: 24px;

}

.ic-fb {
    background-position: -96px 0;
    width: 26px;
}

.hr-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.hr-right {
    display: flex;
    align-items: center;
    column-gap: 25px;
}

.hna-site-link {
    font-size: 12px;
    color: #000;
    background: url(../../images/topics/ico-user.png) 0 0 no-repeat;
    width: 30px;
    height: 31px;
    display: block;
}

.ico-line {
    width: 1px;
    height: 28px;
    border-left: 1px solid #e1e1e1;
}

.ico-search {
    background: url(../../images/topics/ico-search.png) right center no-repeat;
    width: 28px;
    height: 28px;
    cursor: pointer;
    text-align: right;
}

.ico-close {
    background: unset;
}

.ico-close::before {
    content: '\D7';
    font-size: 32px;
    line-height: 28px;
    display: block;
}

.bx-search {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% - 20px);
    padding: 8px;
    background-color: #41318a;
    border-radius: 3px;
    z-index: 9;
}

.bx-search.show {
    display: block;
}

#frmSearch {
    display: block;
    width: 300px;
    height: 32px;
    overflow: hidden;
    border-radius: 3px;
    background-color: #fff;
}

#frmSearch input[type="text"] {
    height: 100%;
    float: left;
    border: 0;
    width: calc(100% - 32px);
    width: calc(100% - 32px);
    padding: 0 15px;
    background-color: transparent;
}

#frmSearch button[type="submit"] {
    width: 32px;
    height: 100%;
    line-height: 100%;
    background: url(../../images/topics/ico-search.png) left 5px center no-repeat;
    border: 0;
    cursor: pointer;
    outline: none;
    float: right;
    background-color: #41318a;
}

#header.hd-expand {
    overflow: hidden;
    height: 100vh;
}
.main-menu-special {
    display: none;
    transition: .3s ease;
}
.main-menu-special.open-nav {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 98px;
    overflow-y: scroll;
    background-color: #ebebeb;
    z-index: 9;
    bottom: 0;
    transition: .3s ease all;
}
#header.fixed-top .main-menu-special.open-nav {
    top: 66px;
}

.navigation {
    padding: 20px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px 20px;
    align-items: flex-start;
    overflow-y: scroll;
}

.navigation a.active,
.navigation a:hover {
    color: #ed1c24 !important;
}

.navigation::-webkit-scrollbar {
    width: 4px;
}

.navigation::-webkit-scrollbar-track {
    background: transparent;
}

.navigation::-webkit-scrollbar-thumb {
    background: #d7d7d7;
}

.navigation::-webkit-scrollbar-thumb:hover {
    background: transparent;
}

.main-menu-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: calc((100% - 3*25px) / 4);
}

.main-menu-item a {
    width: 100%;
    font-size: 14px;
    line-height: 1.5;
    display: block;
    font-weight: 400;
    color: #333;
}

.main-menu-item .navigation-link {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}
.article-image {
    position: relative;
    display: block;
    background: url(../../images/ldcd/images.jpg) center center no-repeat;
    background-size: cover;
    overflow: hidden;
}
.article-meta {
    display: flex;
    justify-content: flex-start;
}
.article-image::before {
    padding-top: 100%;
    content: '';
    display: block;
}

.article-image img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}
.article-desc {
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}
.row-60 {
    display: flex;
    flex-direction: column;
    row-gap: 60px;
}
.row-30 {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}
.article-title {
    font-family: 'Playfair_Display', sans-serif;
    font-weight: 700;
}
.article-title:hover {
    color: #ffc7c9;
}
.layout-cover {
    background: url(../../images/topics/bg-cover.png) center 0 no-repeat;
    z-index: 1;
}
.layout-cover.layout-a80 {
    background: url(../../images/topics/bg-a80.webp) center center no-repeat;
    background-size: cover;
    position: relative;
}
.layout-cover.layout-mai-am-db {
    background: url(../../images/topics/madb.webp) center center no-repeat;
    background-size: cover;
    position: relative;
    padding-bottom: 30px;
}
.layout-cover.layout-nudv {
    background: url(../../images/topics/bg-nu-dv.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
    padding-bottom: 30px;
}
.layout-cover.layout-tdyn {
    background: url(../../images/topics/bg-tdyn.png) center center no-repeat;
    background-size: cover;
    position: relative;
    padding-bottom: 30px;
}
.layout-cover.layout-tdyn::before,
.layout-cover.layout-nudv::before,
.layout-content-madb::before,
.layout-cover.layout-mai-am-db::before,
.layout-cover.layout-a80::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgb(0 0 0 / 60%);
}
.nhung_nu_doa_n_vien_nang_dong_sang_tao_trach_nhiem .layout-content-madb::before {
    background: rgb(30 31 41 / 85%);
}
.layout-cover.layout-mai-am-db::before {
    background: rgb(0 0 0 / 70%);
}
.layout-cover.layout-nudv::before {
    background: rgb(0 0 0 / 75%);
}
.mai_am_cho_dong_bao_noi_y_dang_gap_long_dan .layout-content-madb {
    background: url(../../images/topics/logo-madb.png) center center no-repeat;
    background-size: contain;
    position: relative;
    padding-bottom: 30px;
}
.layout-cover.layout-a80::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    min-height: 300px;
    /* z-index: -1; */
}
.bx-madb {
    padding-top: 30px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 9;
}
.bx-madb .tab-content {
    border: 1px solid #eee;
    /* background: #fff; */
    padding: 15px 50px 30px;
    border-radius: 30px;
    /* overflow-y: scroll; */
    box-shadow: 1px 2px 1px #eee;
    font-size: 16px;
    word-break: break-word;
    /* padding-top: 30px; */
}
.bx-madb .tab-item {
    padding: 0;
}
.bx-madb .tab-item p {
    text-align: left;
}
.layout-cover .siteCenter {
    position: relative;
    z-index: 99;
}
.heading-topic {
    font-size: 70px;
    font-family: 'Playfair_Display', sans-serif;
    text-align: center;
    padding: 50px 0;
}
body.\38 0_nam_cach_mang_thang_tam_va_quoc_khanh_29_hao_khi_viet_nam_suc_manh_dai_doan_ket .heading-topic {
    font-size: 50px;
}
.bd-topic {
    position: relative;
    padding-top: 65px;
}
.bd-topic::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background: #EC121B;
    background: linear-gradient(90deg, rgba(236, 18, 27, 0) 0%, rgba(236, 18, 27, 1) 50%, rgba(236, 18, 27, 0) 100%);
    width: 100%;
    height: 1px;
}

.tab-name {
    display: flex;
    align-items: center;
    column-gap: 40px;
    margin-bottom: 30px;
}

.tab-name span {
    font-family: 'Inter-Regular', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    line-height: 42px;
    background-color: #333840;
    position: relative;
}
.tab-name span.active {
    background-color: #ee3940;
}
.tab-intro {
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    padding-inline: 20px 15px;

}
.tab-goal {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    padding-inline: 15px 20px;

}
.tab-intro::before {
    content: '';
    position: absolute;
    left: 100%;
    top: 0;
    width: 0;
    height: 0;
    border-left: 42px solid #333840;
    border-bottom: 42px solid transparent;
}
.tab-goal::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 0;
    width: 0;
    height: 0;
    border-right: 42px solid #333840;
    border-top: 42px solid transparent;
}
.tab-intro.active::before {
    border-left: 42px solid #ee3940;

}
.tab-goal.active::before {
    border-right: 42px solid #ee3940;
}
.tab-item {
    padding-inline: 100px;
}
.cong_doa_n_viet_nam_96_nam_giuong_cao_ngon_co_tien_phong .tab-item {
    display: none;
    opacity: 0;
    transition: .3s ease-in-out all;
}
.cong_doa_n_viet_nam_96_nam_giuong_cao_ngon_co_tien_phong .tab-item.active {
    display: block;
    opacity: 1;
}
.intro-content.active {
    animation: moveToLeft 1s forwards;
}
.goal-content.active {
    animation: moveToRight 1s forwards;
}
@keyframes moveToLeft {
  from {
    transform: translateX(100px); 
  }
  to {
    transform: translateX(0);
  }
}
@keyframes moveToRight {
  from {
    transform: translateX(-100px); 
  }
  to {
    transform: translateX(0);
  }
}

.tab-item p {
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.8;
    margin-top: 10px;
}
.video-cd {
    margin: 60px auto 0;
    width: 100% !important;
    max-width: 800px;
    position: relative;
}

.video-cd::before {
    content: '';
    padding-top: 56.25%;
    display: block;
}

.video-cd iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.bx-square,
.bx-history {
    margin-block: 80px 100px;
    position: relative;
    z-index: 9;
}
.story-link {
    text-align: center;
    display: block;
    font-family: 'Playfair_Display', sans-serif;
    font-size: 50px;
    text-transform: uppercase;
    color: #f00;
    font-weight: 700;
     text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff;
    /* Tùy chọn thêm nếu dùng Chrome/Safari */
    -webkit-text-stroke: 0.5px #fff;
    padding-bottom: 20px;
}
.bx-movement .story-link,
.bx-portraits .story-link {
    font-size: 40px;
}
.timeline-square,
.timeline-nudv,
.timeline {
    position: relative;
    padding-top: 100px;
    background: url(../../images/topics/bg-timeline.png) center 20px no-repeat, url(../../images/topics/border-star.png) left 240px top 328px no-repeat, url(../../images/topics/border-star.png) right 50px top 600px no-repeat, url(../../images/topics/stroke-star.png) left 150px top 680px no-repeat, url(../../images/topics/stroke-star-small.png) left 625px top 1070px no-repeat;
}
.timeline-square,
.timeline-nudv{
    display: flex;
    flex-wrap: wrap;
    gap: 40px 1px;
    background: url(../../images/topics/bg-timeline.png) center 20px no-repeat, url(../../images/topics/border-star.png) left 150px top 280px no-repeat, url(../../images/topics/border-star.png) right 50px top 600px no-repeat, url(../../images/topics/stroke-star.png) left 150px top 680px no-repeat, url(../../images/topics/stroke-star-small.png) left 625px top 1070px no-repeat;
    /* padding-top: 60px; */
}

body.mai_am_cho_dong_bao_noi_y_dang_gap_long_dan .timeline,
body.\38 0_nam_cach_mang_thang_tam_va_quoc_khanh_29_hao_khi_viet_nam_suc_manh_dai_doan_ket .timeline{
    background: url(../../images/topics/timeline-MTTQVN.png) center 20px no-repeat, url(../../images/topics/border-star.png) left 240px top 328px no-repeat, url(../../images/topics/border-star.png) right 50px top 600px no-repeat, url(../../images/topics/stroke-star.png) left 150px top 680px no-repeat, url(../../images/topics/stroke-star-small.png) left 625px top 1070px no-repeat;
}
.timeline-square {
    padding-top: 50px;
    background: url(../../images/topics/logo-tdyn-filter.png) center 20px no-repeat, url(../../images/topics/border-star.png) left 150px top 280px no-repeat, url(../../images/topics/border-star.png) right 50px top 600px no-repeat, url(../../images/topics/stroke-star.png) left 150px top 680px no-repeat, url(../../images/topics/stroke-star-small.png) left 625px top 1070px no-repeat;
}
.timeline-nudv::before,
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background: #fff;
    background: linear-gradient(90deg, rgba(236, 18, 27, 0) 0%, #fff 50%, rgba(236, 18, 27, 0) 100%);
    width: 100%;
    height: 1px;
}
.timeline::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    background-color: #fff;
    width: 1px;
    height: 100%;
}
.event {
    display: flex;
    flex-direction: column;
    position: relative;
    width: calc((100% - 1px) / 2);
    margin-top: -36px;
}
.timeline .event:nth-child(2n) {
    align-items: end;
    padding-right: 38px;
    left: 0;
}
.timeline .event:nth-child(2n+1){
    left: calc((100% - 1px) / 2);
    padding-left: 38px;
}
.event-date {
    width: 345px;
    background-color: #ee3940;
    padding: 18px;
    font-family: 'UTM_Avo', sans-serif;
    font-size: 28px;
    position: relative;
}
.timeline .event-date::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    background-color: #ee3940;
    left: 38px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}
.mai_am_cho_dong_bao_noi_y_dang_gap_long_dan .timeline .event-date::before,
.mai_am_cho_dong_bao_noi_y_dang_gap_long_dan .event-date {
    background-color: #015351;
}
.timeline .event:nth-child(2n+1) .event-date::before {
    left: unset;
    right: 38px;
}
.timeline .event-date::after {
    content: '';
    width: 32px;
    height: 32px;
    position: absolute;
    background-color: #fff;
    top: 50%;
    transform: translateY(-50%);
    right: -52px;
    border-radius: 50%;
    border: 5px solid #ee3940;
    z-index: 2;
}
.mai_am_cho_dong_bao_noi_y_dang_gap_long_dan .timeline .event-date::after {
    border-color: #015351;
}
.timeline .event:nth-child(2n+1) .event-date::after {
    right: unset;
    left: -52px;
}
.event-title {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    width: 275px;
    background-color: #fff;
    color: #000;
    padding: 20px;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
}
.event-link {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.event-detail {
    position: absolute;
    width: 290px;
    padding: 15px 30px;
    background-color: #fff;
    color: #000;
    border-radius: 20px;
    left: -38px;
    bottom: calc(100% + 25px);
}
.timeline .event:nth-child(2n) .event-detail{
    animation: showEventLeft 1s ease;

}
.timeline .event:nth-child(2n+1) .event-detail{
    animation: showEventRight 1s ease;

}
@keyframes showEventLeft {
    from {
        transform: translateX(80px); 
    }
    to {
        transform: translateX(0);
    }
}
@keyframes showEventRight {
    from {
        transform: translateX(-80px); 
    }
    to {
        transform: translateX(0);
    }
}
.timeline .event:nth-child(2n+1) .event-detail {
    right: -38px;
    left: unset;
}
.event-detail::before {
    content: '';
    position: absolute;
    right: 50px;
    bottom: -21px;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 22px solid #fff;
}
.timeline .event:nth-child(2n+1) .event-detail::before {
    left: 50px;
    right: unset;
    bottom: -21px;
}
/* timeline-nudv */
.nhung_nu_doa_n_vien_nang_dong_sang_tao_trach_nhiem .layout-content-madb {
    background: url(../../images/topics/laurel.png) center center no-repeat;
    background-size: contain;
}
.person {
    width: calc((100% - 1px)/2);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-inline: 50px;
    text-align: center;
}

.person-img {
    width: 200px;
    height: 200px;
    position:relative;
    overflow:hidden;
    border-radius: 50%;
}
.person-img::before {
    padding-top: 100%;
    content: '';
    display: block;
    
}
/* .person-img::after {
    content: '';
    background: url(../../images/topics/laurel.png) 0 0 no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
} */
.person-img img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

.person-title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 24px;
    margin-top: 20px;
    font-family: 'UTM_Avo', sans-serif;
    color: #f5d44a;
}

.person-meta {    
    font-weight: 700;
    font-size: 18px;
    margin-top: 10px;
    font-family: 'UTM_Avo', sans-serif;
    color: #FFF;
}
/* .bx-square */
.bx-square .article {
    width: calc((100% - 1px)/2);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-inline: 50px;
    text-align: center;
}

.bx-square .article-image {
    width: 300px;
    height: 300px;
    position:relative;
    overflow:hidden;
    /* border-radius: 50%; */
}
.bx-square .article-image::before {
    padding-top: 100%;
    content: '';
    display: block;
    
}
.bx-square .article-image img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

.bx-square .article-title {
    font-weight: 700;
    font-size: 18px;
    margin-top: 10px;
    font-family: 'UTM_Avo', sans-serif;
    color: #FFF;
}
.bx-cdvn-one .bx-cat-content {
    display: flex;
    flex-wrap: wrap;
    gap: 80px 52px;
}
.bx-cdvn-one .article {
    width: calc((100% - 52px) / 2);
}
.bx-cdvn-one .article-image::before {
    padding-top: 66.67%;
}
.bx-cdvn-one .article-title {
    font-size: 24px;
    line-height: 1.5;
    text-align: center;
    margin-top: 40px;
}
.topic-title {
    display: flex;
    justify-content: center;
}
.topic-link {
    font-size: 52px;
    font-weight: 700;
    color: #ee3940;
    font-family: 'Playfair_Display', sans-serif;
    position: relative;
    text-transform: uppercase;
}
.bd-flower {
    padding-bottom: 40px;
}
.bd-flower::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background: #1e1f29 url(../../images/topics/flower.png) center center no-repeat;
    width: 355px;
    height: 24px;
}
.bx-cdvn-two .bx-cat-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 40px;
}
.bx-cdvn-two .article {
    width: calc((100% - 40px*3) / 4);
}
.bx-cdvn-two .article-title {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 25px;
}
.bx-cdvn-three .article {
    width: 270px;
    float: left;
    margin-left: 40px;
    margin-top: 40px;
}
.bx-cdvn-three .article:first-child {
    width: 580px;
    margin-left: 0;
}
.bx-cdvn-three .article:nth-child(4n+6) {
    margin-left: 0;
    clear: both;
}
.bx-cdvn-three .article:nth-child(-n+3) {
    margin-top: 0;
}
.bx-cdvn-three .article:not(:first-child) .article-desc {
    display: none;
}
.bx-cdvn-three .article-title {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 25px;
}
.bx-cdvn-three .article:first-child .article-title {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 20px;
}
.bx-cdvn-four::after {
    background: url(../../images/topics/bg-cdtt.png) center center no-repeat;
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background-size: 120%;
    z-index: -1;
}
.bx-cdvn-four .article-title {
    font-weight: 700;
    font-size: 18px;
}
.bx-four-cover .article {
    display: flex;
    flex-direction: row;
    column-gap: 45px;
}
.bx-four-cover .article-image {
    width: 580px;
}
.bx-four-cover .article-image::before {
    padding-top: 66.67%;
}
.ico-play {
    position: absolute;
    background: #2e3192 url(../../images/topics/ico-play.png) center center no-repeat;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    z-index: 1;
    border-radius: 50%;
}
.bx-four-cover .article-title {
    margin-top: -5px;
}
.quote-topic {
    width: 580px;
    color: #ee3940;
    font-size: 48px;
    font-family: 'Playfair_Display', sans-serif;
    font-weight: 700;
    text-align: right;
    margin-top: 70px;
    padding-top: 30px;
    position: relative;
}
.quote-topic::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 280px;
    height: 2px;
    background-color: #ee3940;
}
.bx-four-list {
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}
.slick-four {
    margin: 0 -20px;
}
.bx-four-list .article {
    padding: 0 20px;
    float: left;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.bx-four-list .slick-dots {
    bottom: 0;
}
.slick-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.slick-dots li.slick-active button {
    background-color: #ec121b;
}
.slick-dots li {
    width: 8px;
    height: 8px;
    margin: 0 4px;
    display: inline-block;
}

.slick-dots li button {
    width: 8px;
    height: 8px;
    background-color: #d7d7d7;
    border-radius: 50%;
    font-size: 0;
    display: block;
    cursor: pointer;
}

.slick-arrow{position: absolute;width: 80px;height: 80px;z-index: 1;top: calc(50% - 40px);background: #2e3192 url(../../images/topics/slick-arrow.png) center center no-repeat;border-radius: 50%;cursor: pointer;}
.four-prev{left: 10px;}
.four-next{right: 10px;transform: scaleX(-1);}

.bx-listing .bx-cat-content {
    display: flex;
    gap: 35px 50px;
    flex-wrap: wrap;
    margin-top: 50px;
}
.bx-listing .article {
    width: 360px;
    flex-shrink: 0;
    flex-grow: 0;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.bx-listing .article-content, .bx-listing .article {
    display: flex;
    row-gap: 10px;
    flex-direction: column;
}
.bx-listing .article-title {
    font-weight: 700;
    line-height: 1.4;
    font-size: 26px;
    color: #fff;
}
.bx-listing .article-cat {
    color: #2e3192;
    background-color: #f6f6fb;
    display: block;
    padding: 7px 15px;
    font-size: 14px;
    display: none;
}
.bx-listing .article-desc {
    display: none;
}
.__PC_ARTICLE_PAGING,
.__MB_ARTICLE_PAGING {
    display: block;
    margin-block: 48px 20px;
    width: 100%;
    text-align: center;
    /* justify-content: center;
    align-items: center;
    column-gap: 10px; */
}
.__MB_ARTICLE_PAGING span {
    padding: 10px 20px 8px;
    background-color: #2e3192;
    border-radius: 46px;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    cursor: pointer;
}
.__PC_ARTICLE_PAGING>span:hover,
.__PC_ARTICLE_PAGING span.current,
.__MB_ARTICLE_PAGING>span:hover,
.__MB_ARTICLE_PAGING span.current {
    background-color: #eb3940;
    cursor: pointer;
}
/* loading more */

.loader-ellips {
    font-size: 20px;
    position: relative;
    width: 4em;
    height: 1em;
    margin: 48px auto 0;
}

.loader-ellips__dot {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--main-color);
    position: absolute;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

.loader-ellips__dot:nth-child(1),
.loader-ellips__dot:nth-child(2) {
    left: 0;
}

.loader-ellips__dot:nth-child(3) {
    left: 1.5em;
}

.loader-ellips__dot:nth-child(4) {
    left: 3em;
}

@keyframes reveal {
    from {
        transform: scale(0.001);
    }

    to {
        transform: scale(1);
    }
}

@keyframes slide {
    to {
        transform: translateX(1.5em);
    }
}

.loader-ellips__dot:nth-child(1) {
    animation-name: reveal;
}

.loader-ellips__dot:nth-child(2),
.loader-ellips__dot:nth-child(3) {
    animation-name: slide;
}

.loader-ellips__dot:nth-child(4) {
    animation-name: reveal;
    animation-direction: reverse;
}

.diary-content {
    margin-right: 410px;
    padding-inline: 85px 200px;
    background: url(../../images/topics/ico-letter.png) right 0 no-repeat;
    padding-bottom: 60px;
    margin-top: 30px;
}
.diary-link {
    display: block;
    text-align: right;
    color: #ee3940;
    font-size: 36px;
    font-family: 'Playfair_Display_Italic', sans-serif;
}
.diary-link strong{
    display: block;
    font-family: 'Playfair_Display_Italic', sans-serif;
}
.bx-cdvn-topic {
    margin-bottom: 30px;
}

.bx-cdvn-topic .article {
    position: relative;
}

.bx-cdvn-topic .article:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background: #fff;
    background: linear-gradient(90deg, rgba(236, 18, 27, 0) 0%, #fff 50%, rgba(236, 18, 27, 0) 100%);
    width: 100%;
    height: 1px;
}

.bx-cdvn-topic .bx-cat-content {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}
.bx-cdvn-topic .article-title {
    text-align: center;
}
.bx-cdvn-topic .article-link  {
    font-size: 28px;
    font-family: 'Playfair_Display', sans-serif;
    text-align: center;
    padding: 25px 0 15px;
    display: block;
    line-height: 1.3;
}
.bx-cdvn-topic .article-link:hover {
    color: #ed1c24;
}

/* footer */
.footer-info {
    border-top: 4px solid #ebebeb;
    padding-block: 25px 40px;
    text-align: right;
    font-family: 'Playfair_Display', sans-serif;
}
.footer-info strong {
    font-family: 'Playfair_Display', sans-serif;
}
.personnel {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
}
.footer-text {
    width: 640px;
    position: relative;
    margin-top: 20px;
    padding-top: 15px;
    float: right;
}
.footer-text p {
    font-size: 16px;
    line-height: 1.75;
}
.footer-text::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 190px;
    height: 1px;
    right: 0;
    background-color: #e1e1e1;
}
.footer-info .footer-text:first-child {
    margin-top: 0;
}
.footer-info .footer-text:first-child::before {
    content: unset;
}
.footer-cms a {
    border-top: 1px solid #555;
    color: #fff;
    display: block;
    padding: 20px 0;
}
@media screen and (max-width: 900px) {
    .mobile-button {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}