@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: Roboto Regular;
    src: url(../fonts/Roboto-Regular.ttf)
}

@font-face {
    font-family: Roboto Medium;
    src: url(../fonts/Roboto-Medium.ttf)
}

@font-face {
    font-family: Roboto Bold;
    src: url(../fonts/Roboto-Bold.ttf)
}

@font-face {
    font-family: Lobster;
    src: url(../fonts/Lobster-Regular.ttf)
}

body {
    font-size: 14px;
    font-family: Be Vietnam Pro, sans-serif;
    overflow-x: hidden;
    color: #ffffff;
    line-height: 20px;
    background-color: #010920;
}

@media(min-width: 1200px) {
    .container {
        width: 1200px;
        max-width: 100%;
        line-height: 20px;
    }
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    /* margin-bottom: 0; */
}

ul {
    /* padding: 0; */
    margin: 0;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: #2e3192;
}

img {
    max-width: 100%;
    height: auto;
}

.color {
    color: #2e3192;
}

.page-nav {
    text-align: center
}

.pn-item {
    color: #d8d8d8;
    font-size: 20px;
    padding: 5px 11px;
    border: 1px solid #d8d8d8;
    border-radius: 50%;
    margin: 0px 5px;
    font-weight: 600;
}

.pn-item.current {
    color: #fff;
    border: 1px solid #2e3192;
    background: #2e3192
}

.toolbar-products .pages {
    padding: 20px 0px;
}

.sc_introduce-img {
    border-radius: 12px;
}

.sc_introduce-img img {
    border-radius: 12px;
}

/*==================================*/
.topbar {
    padding: 10px 0;
    background: #23273b;
    color: #fff;
}

.topbar_inner {
    display: flex;
    justify-content: space-between;
}

.topbar_inner .contact_info {
    display: flex;
    justify-content: flex-end;
}

.topbar_inner .contact_info a {
    display: inline-block;
    margin-left: 20px;
    color: #fff;
}

.topbar_inner .contact_info a:first-child {
    margin-left: 0px;
}

.topbar_inner .contact_info i.fa {
    margin-right: 8px;
}

.topbar_inner .contact_info a:hover {
    text-decoration: underline;
}

.menu_main {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header {
    background-color: #0b1026;
    transition: transform 0.2s, -webkit-transform 0.2s, -moz-transform 0.2s, -o-transform 0.2s;
}

.header_main .logo img {
    max-width: 170px;
    margin-right: 25px;
    padding: 8px 0;
}

/* .search_top {
    padding: 20px 0 20px 5px;
}

.icon_search {
    font-size: 18px;
    padding-left: 20px;
    color: #000;
    cursor: pointer;
    border-left: 1px solid #000;
} */

.icon_search i {
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    background-color: var(--mainColor-20);
    color: var(--mainColor);
    text-align: center;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.6s;
}

.icon_search i:hover {
    background-color: var(--mainColor);
    color: #ffffff;
}

.form_search {
    position: absolute;
    top: 100px;
    right: 0;
    width: 320px;
    opacity: 0;
    pointer-events: none;
    margin-top: 40px;
    transition: all 0.4s;
    z-index: 9;
}

.form_search input::placeholder {
    font-size: 14px;
}

.form_search.active {
    opacity: 1;
    pointer-events: all;
    margin-top: 0;
}

.form_search input {
    height: 40px;
    line-height: 40px;
    border-radius: 25px;
}

.form_search .search {
    height: 38px;
    padding: 0px 20px;
    font-size: 18px;
    background: #fff;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    position: absolute;
    right: 0;
    top: 1px;
    color: #204682;
    border: 0;
    outline: 0;
}

/*==========MENU=============*/
.menu_main .nav.is-fixed {
    position: relative;
    z-index: 105;
}

.nav-dropdown {
    display: none;
}

.fixed {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    /* background: #ffffff; */
}

@media (min-width: 992px) {
    .nav-menu {
        display: flex;
    }

    .nav-menu>.menu-item {
        position: relative;
    }

    .nav-menu>.menu-item>.menu-link {
        display: inline-block;
        padding: 25px 16px;
        color: #fff;
        font-size: 14px;
        text-transform: uppercase;
    }

    .nav-menu>.menu-item:first-child>.menu-link {
        padding-left: 0;
    }

    .nav-menu>.menu-item:hover>.menu-link {
        color: var(--mainColor);
        font-weight: 500;
    }

    .nav-menu>.has-dropdown>.nav-dropdown {
        left: 0;
        opacity: 0;
        position: absolute;
        top: 100%;
        width: 200px;
        display: block;
        background: #d8d8d8;
        visibility: hidden;
        -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
        transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }

    .has-dropdown:hover>.nav-dropdown {
        visibility: visible;
        opacity: 1;
        -webkit-transition: all 0.35s linear;
        -moz-transition: all 0.35s linear;
        -o-transition: all 0.35s linear;
        transition: all 0.35s linear;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    .nav-dropdown .nav-dropdown {
        display: block;
    }

    .nav-dropdown>.menu-item>.menu-link {
        color: #204682;
        font-weight: bold;
        padding: 10px 25px;
        display: block;
        border-bottom: 1px solid #0071af;
    }
}

.nav-dropdown>.menu-item>.menu-link:hover {
    background: #fece00;
}


/*=================Home page ===========*/
.banner-home .item {
    margin: 0 5px;
    position: relative;
}

.banner-home .slick-slide {
    position: relative;
    margin: 0 5px;
}

.banner-home .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    cursor: pointer;
}

.banner-home .left-arrow {
    left: 140px;
}

.banner-home .left-arrow:after {
    content: '\f177';
    font: normal 100 1em / 1 "Font Awesome 6 Pro";
    color: #fff;
    font-size: 40px;
}

.banner-home .right-arrow {
    right: 140px;
}

.banner-home .right-arrow:after {
    content: '\f178';
    font: normal 100 1em / 1 "Font Awesome 6 Pro";
    color: #fff;
    font-size: 40px;
}

.banner-home .text_banner {
    position: absolute;
    top: 35%;
    left: 80px;
    font-family: Lobster;
    font-size: 56px;
    color: #fff;
    display: inline-block;
    max-width: 500px;
    line-height: 60px;
    animation-delay: 2s;
    z-index: 99;
}

.banner-home .slick-slide .text_banner {
    opacity: 0;
}

.banner-home .slick-slide.slick-active .text_banner {
    animation: bounceInDown 2s 0s ease;
    opacity: 1;
}

.banner-home .slick-slide.slick-active a:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 46, 46, 0.6);
    opacity: 0;
}

.banner-home .slick-slide.slick-active:hover a:after {
    /*opacity: 1;*/
}

.sc_introduce {
    padding: 48px 0 48px;
}

.sc_introduce-inner {
    font-size: 16px;
    line-height: 1.6;
}

.sc_introduce-inner>img {
    max-width: 195px;
    padding-bottom: 5px;
    border-bottom: 2px solid #fece00;
    margin-bottom: 30px;
}

.sc_introduce-inner .sc_introduce-title {
    color: #2e3192;
    font-size: 24px;
    font-family: Be Vietnam Pro, sans-serif;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.6;
}

.sc_introduce-inner .view_detail {
    padding: 8px 24px;
    background: var(--mainColor);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    display: inline-block;
    margin-top: 40px;
    cursor: pointer;
}

.sc_introduce-inner .view_detail:hover {
    background: var(--navyColor);
    color: #fff;
}

.sc_banner-home {
    padding: 15px 0;
    background: #bdbdbd;
}

.sc_title {
    font-size: 26px;
    /* color: #2e3192; */
    /* margin-bottom: 25px; */
    line-height: 1.8;
    /* font-style: italic; */
    font-weight: 600;
}

.sc_event {
    padding: 0px 0 40px;
    /* background: #eeeeee; */
}

/* .sc_event .sc_title {
    padding-bottom: 10px;
    position: relative;
} */

/* .sc_event .sc_title:after {
    content: "";
    width: 190px;
    height: 2px;
    background: #fece00;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
} */

.sc_list-event {
    margin: 0 -15px;
    position: relative;
}

.sc_list-event .item {
    margin: 0 15px;
    border-radius: 12px;
}

.sc_list-event .sc_event-inner {
    position: relative;
    background-color: #ffffff;
    border-radius: 12px;
}

.sc_list-event .sc_event-inner img {
    height: 100%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 3/2;
}

.sc_list-event .sc_event-inner .sc_event-content {
    padding: 16px 8px;
}

.sc_list-event .slick-list .slick-slide {
    height: inherit !important;
    /* Ensures the slide inherits height from the track */
    display: flex !important;
    /* Enables flexbox for content alignment within the slide */
}

.sc_list-event .sc_event-info {
    font-weight: 600;
    color: #333;
    opacity: 1;
}

.sc_list-event .sc_event-title {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondColor);
}

.sc_list-event .sc_event-title:hover {
    color: var(--mainColor);
}

.sc_list-event .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
}

.sc_list-event .left-arrow {
    left: 0px;
    color: #9f9292;
    border: 1px solid #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.sc_list-event .right-arrow {
    right: 0px;
    color: #9f9292;
    border: 1px solid #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.sc_data {
    padding: 30px 0;
    /* background-color: #123456; */
    background-size: cover;
    background-position: bottom;
    color: #fff;
}

.sc_data-item img {
    height: 75px;
    /* margin-bottom: 20px; */
}

.sc_data-item .count {
    font-family: Be Vietnam Pro, sans-serif;
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
}

.sc_data-item .count:after {
    content: "+";
}

.sc_why-choose {
    padding: 50px 0 40px;
    background: url(../images/bg-why-choose.png) no-repeat;
    background-size: cover;
}

.sc_why-choose .sc_title {
    color: #000;
    margin-bottom: 30px;
}

.sc_why-choose-item img {
    height: 110px;
    margin-bottom: 25px;
}

.sc_why-choose-item .sc_title-item {
    font-size: 24px;
    color: #333;
    font-family: Be Vietnam Pro, sans-serif;
    line-height: 30px;
}

.sc_news-home {
    padding: 40px 0 50px;
}

.sc_news-home img {
    border-radius: 12px;
}

.sc_news-home img:hover {
    opacity: 0.7;
}

.sc_news-left img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    margin-bottom: 10px;
    aspect-ratio: 3/2;
}

.sc_news-left .sc_title-news {
    font-size: 18px;
    font-family: Be Vietnam Pro;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    -webkit-line-clamp: 2;
    line-height: 28px;
}

.sc_news-left .sc_title-news:hover {
    color: #fff;
}

.sc_news-left .sc_news-des {
    -webkit-line-clamp: 4;
    color: #c4c4cf;
}

.sc_news-right .sc_news-item {
    position: relative;
    padding-left: 185px;
    min-height: 100px;
    margin-bottom: 20px;
}

.sc_news-right .sc_news-item .img_news-right {
    position: absolute;
    width: 175px;
    top: 0;
    left: 0;
}

.sc_news-right .sc_news-item .img_news-right img {
    height: 100px;
    object-fit: cover;
    aspect-ratio: 3/2;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.sc_news-right .sc_news-item .sc_title-news {
    font-size: 15px;
    margin-bottom: 10px;
    -webkit-line-clamp: 2;
    color: #fff;
}

.sc_news-right .sc_news-item .sc_title-news:hover {
    color: #fff;
}

.sc_news-right .sc_news-item .sc_news-des {
    font-size: 14px;
    -webkit-line-clamp: 3;
    color: #c4c4cf;
}

.sc_news-home .view_all {
    padding: 8px 25px;
    background: #fece00;
    color: #333;
    display: inline-block;
    margin-top: 35px;
    border-radius: 8px;
}

.sc_news-home .view_all:hover {
    background: #2e3192;
    color: #fff;
}

.sc_news-home .link_qc {
    display: block;
    margin-top: 70px;
}

.sc_news-home .link_qc img {
    height: 460px;
    object-fit: cover;
}

.sc_contact-us {
    /* padding: 30px 0; */
    /* background: #f0f0f0; */
}

.sc_contact-intro img {
    max-width: 90px;
}

.sc_contact-us .link_contact {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: var(--mainColor);
    color: #fff;
    margin: 26px 0;
    font-weight: 600;
    font-size: 16px;
    /* text-transform: uppercase; */
}

.sc_contact-us .link_contact img {
    max-height: 26px;
}

.sc_contact-us .link_contact:hover {
    background: var(--navyColor);
}

.link_contact-us img {
    max-width: 36px;
    margin: 0px 12px;
}

footer {
    padding-top: 50px;
}

footer,
footer a {
    color: #fff;
}

.footer_top {
    padding-bottom: 60px;
    /* margin-bottom: 15px; */
    border-bottom: 1px solid #fff;
}

.footer_top .title_footer {
    font-family: Be Vietnam Pro, sans-serif;
    margin-top: 15px;
    text-transform: uppercase;
}

.footer_top .page_title {
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 15px;
    position: relative;
    line-height: 25px;
}

.footer_top .page_title:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer_right>p {
    /*font-weight: bold;*/
}

.footer_right p i {
    padding-right: 10px;
}

.info_footer .sc_title-col {
    font-family: Be Vietnam Pro, sans-serif;
    font-weight: 600;
    color: var(--mainColor);
    margin: 15px 0 10px;
}

.info_footer ul li {
    list-style: none;
    margin-bottom: 10px;
    font-weight: 500;
}

/* .info_footer ul li:before {
    content: "\f101";
    font-family: FontAwesome;
    margin-right: 10px;
    color: #fece00;
} */

.info_footer ul li a:hover {
    color: #FFD700;
}

/*===========Giới thiệu==========*/
.sc_banner-introduce,
.sc_banner-service {
    padding: 80px 0;
    /* background-color: rgb(245, 245, 243); */
    background-size: cover;
}

.sc_banner-service {
    background-color: rgb(245, 245, 243);
    background-size: cover;
}

.sc_banner-introduce .title_introduce,
.sc_banner-service .title_service,
.sc_news-page .title_news {
    /* width: 42%; */
    font-size: 24px;
    font-family: Be Vietnam Pro;
    line-height: 35px;
    /* text-transform: uppercase; */
    color: #000000;
    font-weight: 600;
    margin-bottom: 5px;
}

.sc_banner-service .title_service,
.sc_news-page .title_news {
    width: 100%;
}

.sc_banner-introduce .title_introduce span,
.sc_banner-service .title_service span {
    /* color: #FFD700; */
}

.description {
    padding: 40px 0;
}

.description img {
    border-radius: 10px;
}

.description .txt_description {
    font-size: 22px;
    line-height: 35px;
    margin-top: 25px;
}

.sc_voting {
    padding: 40px 0;
}

.sc_voting .sc_title,
.sc_vision .sc_title,
.core_values .sc_title {
    position: relative;
    padding-bottom: 10px;
    /* margin-bottom: 30px; */
}

/* .sc_voting .sc_title:after{
    content: "";
    width: 150px;
    height: 2px;
    background: var(--mainColor);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
} */

.voting_item {
    padding: 25px 20px;
    background: #ffffff;
    color: #333;
    border-radius: 20px;
}

.voting_item img {
    height: 80px;
    margin-bottom: 16px;
}

.voting_item .voting_title {
    font-family: Be Vietnam Pro, sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
}

.voting_item .voting_content {
    line-height: 25px;
    /* min-height: 150px; */
}

.sc_vote {
    padding: 15px 0;
    background: url(../img/bg-why-choose.png) no-repeat;
    background-size: cover;
}

.sc_vote span {
    font-size: 30px;
    font-family: Be Vietnam Pro, sans-serif;
    padding-right: 15px;
}

.sc_vote img {
    height: 70px;
    margin: 0 15px;
}

.sc_contact {
    padding: 40px 0;
    color: #fff;
}

.sc_vision {
    padding: 50px 0;
    /* background-color: var(--navyColor); */
    color: #fff;
}

.sc_vision .sc_title {
    color: #fff;
}

.sc_vision .vision_content {
    line-height: 25px;
    font-size: 18px;
}

.core_values {
    padding: 40px 0 80px;
    color: #fff;
}

.list_core .core_item {
    position: relative;
    padding: 20px;
    /* background: var(--navyColor);
    border: 2px solid #3395f7; */
}

.list_core .core_position {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.list_core .core_item img {
    max-width: 100%;
    width: 80px;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    /* position: absolute; */
}

.core_center img {
    border: 6px solid var(--thirdColor);
    border-radius: 50rem;
}

.core_position .core_content {
    line-height: 25px;
    -webkit-line-clamp: 5;
    min-height: 100px;
    display: flex;
    align-items: center;
}

.w-40 {
    flex: 0 0 35%;
    max-width: 35%;
}

.w-20 {
    flex: 0 0 30%;
    max-width: 30%;
    z-index: 99;
}

.core_left .core_item,
.core_right .core_item {
    border-radius: 20px;
}

/* Event */
.filter_service {
    display: flex;
    justify-content: space-between;
    /* padding-bottom: 40px; */
}

.filter_service .input_event {
    height: 42px;
    border: 2px solid #ffffff;
    border-radius: 25px;
    background-clip:unset;
}

.filter_service .select_field {
    width: 260px;
    margin: 0 15px;
    height: 42px;
    border: 2px solid #d8d8d8;
    border-radius: 25px;
}

.filter_service .btn_filter {
    flex: none;
    height: 42px;
    line-height: 42px;
    padding: 0 40px;
    margin-left: 15px;
    color: #fff;
    border-radius: 20px;
    background: #ffffff1a;
}

.filter_service .btn_filter:hover,
.filter_service .btn_filter:active {
    background: #fff;
    color: #000;
}

/* .sc_filter {
    padding: 60px 0;
} */

.sc_filter .sc_list-event .item {
    margin: 0;
    background-color: #fff;
}

.sc_filter .sc_list-event .item .sc_event-title {
    -webkit-line-clamp: 1;
}

/*==========News==========*/
.sc_news-page {
    padding: 80px 0;
    background: url(../images/bg_news2.jpg) no-repeat;
    background-size: cover;
}

.news_page {
    padding: 0 0 60px;
}

.news_page-detail {
    padding: 60px 0;
}

.news_page .list_news .news_item {
    /* position: relative;
    padding-left: 245px; */
    min-height: 150px;
    margin-bottom: 24px;
}

.news_page .list_news .news_item .news_item-img {
    /* width: 225px; */
    /* position: absolute; */
    width: 100%;
    background-color: #fff;
    border-radius: 16px;
    /* left: 0;
    top: 0; */
}

.news_page .list_news .news_item .news_item-img img {
    aspect-ratio: 16/10;
    object-fit: cover;
}

.news_page .list_news .news_item .news_item-img img:hover {
    opacity: 0.7;
}

.news_page .list_news .news_item .news_item-title {
    font-family: Be Vietnam Pro, sans-serif;
    margin-bottom: 10px;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    line-height: 22px;
}

.news_page .list_news .news_item .news_item-title:hover {
    color: #fff;
}

.news_page .list_news .news_item .news_item-des {
    font-size: 14px;
}

.news_other-title {
    padding: 12px 10px 12px 20px;
    background: #fff;
    border-left: 8px solid var(--navyColor);
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 24px;
    border-top-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.list_other .other_item {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #d2d2d2;
}

.list_other .other_item:last-child {
    border-bottom: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.list_other .other_item img {
    aspect-ratio: 16/10;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.other_item .other_time {
    font-family: Be Vietnam Pro, sans-serif;
    color: #c1c1c1;
    margin-bottom: 5px;
    font-size: 12px;
}

.other_item .other_title {
    font-family: Be Vietnam Pro, sans-serif;
    font-size: 14px;
    color: #fff;
    line-height: 20px;
}

.other_item .other_title:hover {
    color: #fff;
}

/*Responsive*/
.limit-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

#flag_lang {
    display: none
}

@media (max-width: 1400px) {
    .banner-home .left-arrow {
        left: 30px;
    }

    .banner-home .right-arrow {
        right: 30px;
    }

    .banner-home .left-arrow:after,
    .banner-home .right-arrow:after {
        font-size: 30px;
    }
}

@media (max-width: 1200px) {
    .nav-menu>.menu-item>.menu-link {
        padding-right: 10px;
    }

    .banner-home .text_banner {
        font-size: 52px;
        max-width: 290px;
    }

    .sc_banner-introduce .title_introduce {
        width: 100%;
    }

    /* .core_left .core_item:first-child,
    .core_right .core_item:first-child {
        margin-top: -95px;
    } */
}

@media(max-width: 991px) {

    .core_position .core_content {
        -webkit-line-clamp: inherit;
    }

    .header_main .logo {
        width: 100%;
        text-align: center;
    }

    .header_main .logo img {
        margin: 0;
    }

    .icon_search {
        border: 0;
    }

    .header_right {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: rgba(11, 11, 11, .6);
        top: 0;
        left: 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
    }

    .header_right.active {
        opacity: 1;
        visibility: visible;
    }

    .header_right .ic_close {
        position: absolute;
        top: 15px;
        right: 15px;
        color: #fff;
        width: 20px;
    }

    .search_top {
        padding: 25px 0 20px 5px;
    }

    .nav-toggle {
        padding: 18px 0;
        font-size: 24px;
        color: #fff;
    }

    .opacity_menu.open_opacity {
        content: " ";
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        position: fixed;
        top: 0px !important;
        left: 0px;
        z-index: 99;
    }

    .icon_close {
        display: none;
        color: #fff;
        width: 15px;
        height: 15px;
        stroke-width: 1.5px;
        position: absolute;
        right: 15px;
        top: 15px;
        transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    }

    .opacity_menu.open_opacity .icon_close {
        display: block;
    }

    .icon_close:hover {
        transform: translate(0%, 0%) rotate(360deg);
    }

    .nav-container {
        position: fixed;
        background: rgba(255, 255, 255, .95);
        top: 0;
        left: 0;
        z-index: 9999;
        overflow-y: auto;
        visibility: hidden;
        width: 300px;
        height: 100%;
        min-height: 100%;
        -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
        transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    .nav-container.is-visible {
        visibility: visible;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .nav-menu>.menu-item {
        text-transform: uppercase;
        border-top: 1px solid #e6e6e6;
    }

    .nav-menu>.menu-item:hover,
    .has-dropdown.is-active {
        background: rgba(0, 0, 0, .05)
    }

    .menu-item .menu-link {
        color: #333;
        display: inline-block;
        padding: 15px 10px;
        text-transform: initial;
    }

    .nav-dropdown>.menu-item>.menu-link {
        color: #333;
        padding: 15px 10px;
    }

    .nav-menu>.menu-item.is-active>.menu-link,
    .has-dropdown.is-active>.menu-link {
        color: #204682;
    }

    .nav-dropdown.is-visible {
        display: block;
    }

    .has-dropdown {
        position: relative;
        cursor: pointer;
    }

    .has-dropdown:after {
        font-size: 30px;
        position: absolute;
        top: 0;
        right: 1rem;
        bottom: 0;
        content: "\f107";
        font-family: FontAwesome;
        color: #bbb;
        line-height: 51px;
        padding: 0 10px;
        -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
        transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    }

    .has-dropdown.is-active:after {
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg);
        height: 51px;
        line-height: 51px;
        color: #000;
    }

    .sc_news-left {
        margin-bottom: 25px;
    }

    .sc_news-home .link_qc img {
        height: auto;
    }

    .banner-home .text_banner {
        font-size: 18px;
        max-width: 150px;
        line-height: 25px;
    }

    .sc_list-event {
        margin: 0;
    }

    .list_core {
        margin-top: 0;
    }

    .w-40 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .w-20 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* .core_item {
        margin: 0 0 25px 0 !important;
        padding: 30px 15px !important;
        border-radius: 80px !important;
    } */

    /* .core_position {
        padding-left: 85px !important;
        padding-right: 0 !important;
    } */

    .core_item img {
        width: 65px !important;
        /* left: 0 !important; */
    }

    .filter_service .input_event {
        width: 150px;
    }

    .filter_service .select_field {
        width: calc(100% - 320px);
    }

    /* .news_page .list_news .news_item {
        padding-left: 190px;
    } */

    /* .news_page .list_news .news_item .news_item-img {
        width: 180px;
    } */

    .sc_banner-introduce{
        padding: 40px 0;
    }

    .news_page .list_news .news_item {
        margin-bottom: 12px;
    }

    /* .news_page .list_news .news_item .news_item-img img {
        height: 135px;
    } */
    .news_page .list_news .news_item .news_item-title{
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 5px;
     }

    .news_page .list_news .news_item .news_item-des {
        font-size: 12px;
    }

    .other_item .other_time {
        font-size: 11px;
    }

    .news_page .list_news .news_item {
        min-height: 140px;
    }

    #flag_lang {
        display: block !important;
    }
}

@media(max-width: 768px) {
    .core_position .core_content {
        -webkit-line-clamp: inherit;
    }

    .banner-home .text_banner {
        font-size: 14px;
        max-width: 100px;
        line-height: 25px;
    }

    .banner-home .left-arrow {
        left: 10px;
    }

    .banner-home .right-arrow {
        right: 10px;
    }

    .banner-home .left-arrow:after,
    .banner-home .right-arrow:after {
        font-size: 24px;
    }

    .sc_title {
        font-size: 28px;
    }

    .sc_why-choose-item {
        margin-bottom: 30px;
    }

    .sc_vote .d-flex,
    .sc_vote .d-flex span {
        display: block !important;
        text-align: center;
    }

    .sc_vote .d-flex span {
        margin: 20px 0;
    }

    .filter_service {
        display: block;
    }

    .filter_service .input_event {
        width: 100%;
        margin: 0 0 15px 0;
    }

    .filter_service .select_field {
        width: 100%;
        margin: 0 0 15px 0;
    }

    .filter_service .btn_filter {
        display: block;
        margin: 0 auto;
    }

    .core_values {
        padding: 0px;
    }

    .news_page-detail {
        padding: 12px 0 40px;
    }

    .voting_item img {
        height: 60px;
        margin-bottom: 12px;
    }

    .voting_item .voting_title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .voting_item .voting_content {
        line-height: 22px;
    }

    .footer_left img{
        max-width: 200px;
    }
}

@media(max-width: 479px) {
    .topbar_inner .contact_info a {
        font-size: 12px;
        margin-left: 10px;
    }

    .topbar_inner .contact_info i.fa {
        margin-right: 5px;
    }
}
