@import "/Lib/assert/css/loading.css";

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Roboto", sans-serif;
  color: #000;
}
a {
  color: #000;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}
img {
    width: 100%!important;
    object-fit: cover!important;
}

::-webkit-scrollbar {
    width: 8px;
    height: 40px;
}
::-webkit-scrollbar-thumb {
    background: #9a9a9a;
    border-radius: 3px;
}
::-webkit-scrollbar-track {
    border-radius: 3px;
    background-color: rgba(43, 43, 43, 0.08);
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0d6efd;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background-color: white;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(40, 58, 90, 0.9);
}

#header .logo a {
  /*color: #fff;*/
}

.logo_company {
  max-width: 170px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 25px 5px 25px;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: none !important;
    color: #000;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #000;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #000;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  color: black;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #0c3c53;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}


/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #000;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #000;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
  visibility: visible !important;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 72px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #37517e;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}
/*Style css editor*/
/*block social footer*/
.block_social {
    display: inline-block;
    float:right;
}
.block_social .iconBlock {
    height: 40px;
    line-height: 40px;
    display: inline-block;
    margin-left: 10px;
    vertical-align: top;
    cursor: pointer;
}
.block_social i {
    background: white;
    color: black;
    border-radius: 3000px;
    width: 35px;
    height: 35px;
    display: block;
    font-size: 18px;
    line-height: 35px;
    text-align: center;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.box_search .icon_menu{
    font-size: 25px;
    margin-left: 15px;
    color: #000;
}

.toggle-sidebar .sidebar {
    /*left: -300px;*/
}
.box_mobile{
    position:relative;
} 
.sidebar {
    transition: .3s;
    display:none;
    position: absolute;
    top: -30px;
    right: 0;
    /*bottom: 0;*/
    width: 300px;
    z-index: 996;
    /*transition: all 0.3s;*/
    /*padding: 20px;*/
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #aab7cf transparent;
    box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
    background-color: #fff;
}
.sidebar.active{
    display:block;
}
.sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}
.sidebar-nav li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.sidebar-nav .nav-item {
  margin-bottom: 5px;
  text-transform: capitalize;
}
.sidebar-nav .nav-heading {
  font-size: 11px;
  text-transform: uppercase;
  color: #899bbd;
  font-weight: 600;
  margin: 10px 0 5px 15px;
}
.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  font-size: 16px;
  transition: 0.3;
  background: #f6f9ff;
  padding: 10px 15px;
  border-radius: 4px;
}
.sidebar-nav .nav-link i {
  font-size: 16px;
  margin-right: 10px;
  color: #000;
}
.sidebar-nav .nav-link.collapsed {
  color: #000;
  background: #fff;
}
.sidebar-nav .nav-link:hover {
  color: #4154f1;
  background: #f6f9ff;
}
.sidebar-nav .nav-link:hover i {
  color: #4154f1;
}
.sidebar-nav .nav-link .bi-chevron-down {
  margin-right: 0;
  transition: transform 0.2s ease-in-out;
}
.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
  transform: rotate(180deg);
}
.sidebar-nav .nav-content {
  padding: 5px 0 0 0;
  margin: 0;
  list-style: none;
}
.sidebar-nav .nav-content a {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #012970;
    transition: 0.3;
    padding: 10px 0 10px 40px;
    transition: 0.3s;
}
.sidebar-nav .nav-content a i {
    font-size: 16px;
    margin-right: 23px;
    line-height: 0;
    border-radius: 50%;
}
.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
  color: #4154f1;
}

.sidebar-nav .nav-content a.active i {
  background-color: #4154f1;
}
/*box author siderbar menu*/
.bx_author{
    color: #fff;
    background: #000;
    min-height: 212px;
    position: relative;
}
.bx_author_top{
    height: 65px;
    border-bottom: 1px solid white;
    display: flex;
    align-items: center;       
    justify-content: space-between;
    padding: 0 15px;
}
.bx_info{
    color: #fff;
    font-weight: 600;
    font-size: 30px;
}
.bx_close i {
    font-size: 25px!important;
    color:#fff!important;
} 
.bx_image_bg{
    position: absolute;
    bottom: 0;
    width: 269px;
    height: 167px;
    right: 0;
    background-size: 177px 167px;
    background-repeat: no-repeat;
    background-position-x: 119px;
    background-position-y: 8px;
    pointer-events: none;
}
.bx_image_text{
    width: 170px;
    margin-left: 16px;
    padding-top: 16px;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.1px;
    font-weight: 700;
}
/*block categoryloai*/
.bx_cateloai {
    border-bottom: 1px solid #ccc;
    padding: 10px 15px;
}
/*block social menu*/
.block_social_menu{
    float: none;
    display: block;
    border-top: 1px solid #ccc;
    padding: 15px 0;
    text-align:center;
}
.block_social_menu i {
    background: black;
    color: white;
}
.rotate {
    transform: rotate(-135deg);
    transition: .3s;
    transition-delay: .1s;
}


/*template html landing cate*/
.timeline {
    width: 100%
}

.timeline.timeline-one .timeline-item {
    position: relative;
    width: 50%;
    margin-left: 50%;
    padding-bottom: 1.5rem;
    padding-left: 1.5rem;
           
}

.timeline.timeline-one .timeline-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    margin-top: 0.425rem;
    margin-left: -0.3rem;
    border: 2px solid #000;
    border-radius: 50%;
}
.timeline.timeline-one .timeline-item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: -0.1875rem;
    width: 1.4px;
    margin-top: 1.875rem;
    margin-left: -0.0625rem;
    background-color: #000;
}
.timeline.timeline-one .timeline-item:nth-child(2n+1) {
    margin-left: 0;
    padding-right: 1.5rem;
    padding-left: 0;
}

.timeline.timeline-one .timeline-item:nth-child(2n+1):after,.timeline.timeline-one .timeline-item:nth-child(2n+1):before {
    right: 0;
    left: auto
}

.timeline.timeline-one .timeline-item:nth-child(2n+1):before {
    margin-right: -0.3rem
}
.timeline.timeline-one .timeline-item:nth-child(2n+1):after {
    margin-right: -.0625rem
}
.timeline.timeline-one.dark .timeline-item:before {
    border: .0625rem solid #b7c3d2
}
.timeline.timeline-one.dark .timeline-item:after {
    background-color: #b7c3d2
}
.timeline.timeline-two .timeline-item {
    position: relative;
    background-color: #fff;
    padding: 2rem;
    text-align: left;
    margin-bottom: 1.5rem
}
.timeline.timeline-two .timeline-item:after,.timeline.timeline-two .timeline-item:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0
}
.timeline.timeline-two .timeline-item:before {
    border: 4px double #dce6f3;
    content: "";
    left: auto;
    width: 16px;
    height: 16px;
    margin-right: -2rem;
    border-radius: 50%
}
.timeline.timeline-two .timeline-item:after {
    background-color: #dce6f3;
    width: .0625rem;
    height: 100%;
    margin-top: 2rem;
    left: auto;
    margin-right: -1.575rem
}
.timeline.timeline-two .timeline-item .post-meta a,.timeline.timeline-two .timeline-item .post-meta span {
    font-size: .875rem;
    padding-right: .125rem
}
.timeline.timeline-four {
    margin: 1.25rem 0;
    position: relative
}
.timeline.timeline-four::before {
    content: "";
    display: block;
    width: .0625rem;
    height: 100%;
    background: #dce6f3;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0
}

.timeline.timeline-four .timeline-item {
    margin-bottom: 1.5rem;
    position: relative
}
.timeline.timeline-four .timeline-item::after {
    content: "";
    display: block;
    clear: both
}
.timeline.timeline-four .timeline-item:hover .date-outer::before {
    left: 6px
}
.timeline.timeline-four .timeline-item:hover .date-outer::after {
    left: -6px
}
.timeline.timeline-four .timeline-item:nth-child(2n) .date-content {
    float: right
}
.timeline.timeline-four .timeline-item:nth-child(2n) .timeline-content {
    padding: .625rem 3.125rem .625rem 0;
    text-align: right
}

.timeline.timeline-four .icon {
    width: 16px;
    height: 16px;
    margin: auto;
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    border: .0625rem solid #dce6f3;
    margin-top: 1rem;
    top: 0;
    left: 0;
    right: 0
}

.timeline.timeline-four .date-content {
    width: 50%;
    float: left;
    position: relative
}

.timeline.timeline-four .date-outer {
    width: 150px;
    height: 150px;
    text-align: center;
    margin: auto;
    z-index: 1
}
.timeline.timeline-four .date-outer::before {
    content: "";
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    border: .0625rem solid #893168;
    left: -6px;
    transition: all .9s all .2s ease
}

.timeline.timeline-four .date-outer::after {
    content: "";
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    border: .0625rem solid #242e4c;
    left: 6px;
    transition: all .9s all .2s ease
}


.timeline.timeline-four .date {
    width: 100%;
    margin: auto;
    position: absolute;
    top: 40%;
    left: 0
}

.timeline.timeline-four .year {
    display: block;
    font-weight: 700;
    font-size: 1rem
}

.timeline.timeline-four .icon {
    font-size: 1.5rem
}

.timeline.timeline-four .timeline-content {
    width: 50%;
    padding: .625rem 0 .625rem 3.125rem;
    float: right
}


.timeline.timeline-five .row [class*=col-] {
    position: relative
}

.timeline.timeline-five .row .avatar-separator {
    width: 30px;
    height: 30px
}

.timeline.timeline-five .row .col.middle-line {
    border-right: .0625rem solid #dce6f3
}

.timeline.timeline-six .row [class*=col-] {
    position: relative
}

.timeline.timeline-six .row .col.middle-line {
    border-right: .0625rem solid #dce6f3
}

.timeline.timeline-six .row .avatar-separator img {
    border: .0625rem solid #dce6f3;
    padding: .125rem
}

.image-left {
    display: flex;
    align-items: center;
    /*justify-content: flex-end;*/
    gap: 15px;
    flex-direction: row-reverse;
    text-align: left;
}
.image-center{
    display: flex;
    /*align-items: flex-end;*/
    /*justify-content: flex-end;*/
    gap: 15px;
    flex-direction: column;

}
.image-right{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    text-align: right;
}
.timeline_Title{
    text-align: center;
    font-size: 40px;
}
        
/*Css hotline*/
.bt-hotro-pos {
    position: fixed;
    bottom: 20px;
    left: 10px;
    z-index: 10;
}
.bt-hotro {
    -webkit-animation: my .7s infinite;
    -moz-animation: my .7s infinite;
    -o-animation: my .7s infinite;
    animation: my .7s infinite;
    border-radius: 30px;
    padding: 10px 15px;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
}
.bt-hotro i{
    font-size: 25px;
}
/*fix width container*/
/* -------------------------------CSS Header------------------------------ */
.logo a{
    white-space: nowrap;
    color: #0d6efd;
}

/* -------------------------------CSS trang chi tiet------------------------------ */
.card-title{
    font-size: 14px;
    text-align: justify;
    color: black;
    text-decoration: none;
}

.card-title a{
    color: #000;
    text-decoration: none;
}
.list-top-view, .shadow_detail{
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}


/*--------------------homepage--------------------*/
.home_top{
    /*padding:24px 0;*/
}
.c_top_one{
    margin-block: 24px;
}
.c_top_one--img{
    aspect-ratio: 5/3;
}
.c_top_one--cate a{
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0px;
    margin-bottom: 0px;
    border-bottom: 3px solid black;
}
.c_top_one--title a{
    font-size: 30px;
    line-height: 40px;
    font-weight: 900;
    margin-bottom: 18px;
    margin-top: 18px;
}
.c_top_one--description {
    margin-block: 18px;
}
.c_top_one--byline {
    font-size: 12px;
    line-height: 16px;
}
.c_top_one--chim { 
    font-size: 16px;
    line-height: 16px;
    margin-left: 7px;
    margin-right: 7px;
}
.c_top_one--bydate {
    font-size: 12px;
    line-height: 16px;
    display: inline-block;
}

.c_top_other {
    margin-bottom: 40px;
}
.c_top_other--item {
    width: 23.9%;
}
.c_top_other--title {
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    margin-top: 20px;
    margin-bottom: 9px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.c_top_other--description {
    font-size: 14px;
    line-height: 20px;
    overflow-wrap: break-word;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

/*--------------------home danh muc--------------------*/
.c_home {
    /*padding:30px;*/
    margin-bottom:40px;
}
.style_black{
    background: #000;
    padding: 25px
}
.style_black .c_home_link{
    margin-top: 20px;
}
.style_black a,.style_black a:hover{
    color:#fff;
}
.style_black .btn_style_black{
    color: white;
    border-radius: 5px;
    border: 1px solid white;
    padding: 3px 15px;
}       
.c_home--danhmuc {
    padding-bottom:15px;
} 
.c_home--danhmuc_title{
    border-bottom: 3px solid black;
    white-space: nowrap;
}
.c_home--danhmuc_title a{
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 23px;
}
.c_home--danhmuc_title span{
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 23px;
}
.c_home--danhmuc_readmore a {
    font-size: 14px;
    margin-left: 5px;
    line-height: 14px;
    margin-top: 0px;
}
.style_black .c_home--title a,.style_white .c_home--title a{
    text-transform: capitalize;
    font-weight: 700;
    font-size: 17px;
    line-height: 20px;
    margin-top: 14px;
    margin-bottom: 7px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.style_black .c_home--des,.style_white .c_home--des{
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.style_black img,.style_white img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.style_black .img_first{
    aspect-ratio: 13/10;
}
        
.style_black .img_second{
    aspect-ratio: 13/10;
}
.style_white .img_first{
    aspect-ratio: 25/12;
}


/*--------------------template newsdetails--------------------*/
.c_blog_details {
    font-size: 18px;
    line-height: 30px;
}
.c_blog_content{
    max-width:780px;
    margin:0 auto;
}
.c_blog_content .breadcrumb {
    font-size: 15px;
    font-weight: 600;
}
.c_blog_title {
    font-size: 20px;
    padding: 0;
    margin: 0;
    line-height: 36px;
}
.c_blog_sapo{
    font-size: 16px;
    line-height: 30px;
    color: #333;
    font-weight: 400;
}
.c_article_top_byline {
    font-size: 16px;
    line-height: 16px
}
.c_article_top_dateline {
    color: #757575;
    margin-top: 4px;
    font-size: 15px;
    line-height: 16px;
    margin-left: 0px;
}

/*--------------------tin cùng chuyên mục--------------------*/
.c_article_cate {
    margin-bottom:40px;
}
.c_article_cate--label h3{
    display: inline-block;
    border-bottom: 2px solid black;
    white-space: nowrap;
    font-weight: 600;
    font-size: 19px;
    letter-spacing: 0px;
    line-height: 23px;
    text-transform: uppercase;
    padding-bottom: 5px;
    margin-bottom: 15px;
}
.c_article_title{
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    margin-top: 20px;
    margin-bottom: 9px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.c_article_des{
    font-size: 14px;
    line-height: 20px;
    overflow-wrap: break-word;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

/*--------------------Blog_cate show--------------------*/
.c_blog_cate--box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    vertical-align: top;
    margin-bottom: 16px;
}
.c_blog_cate--box .c_blog_cate--image {
    width: 33%;
}
.c_blog_cate--box .c_blog_cate--content{
    width: 62%;
}
.c_blog_cate--content .c_blog_cate--title {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.c_blog_cate--box_top .c_blog_cate--content .c_blog_cate--title {
    margin: 20px 0 9px;   
    font-size: 20px;
    text-transform: uppercase;
}
.c_blog_cate--content .c_blog_cate--des {
    font-size: 14px;
    line-height: 20px;
    overflow-wrap: break-word;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.c_blog_cate--content .c_blog_cate--des{
    -webkit-line-clamp: 2;
}
.c_blog_cate--image img{
    aspect-ratio: 13/8;
}
.c_blog_cate--box .c_blog_cate--image img{
    aspect-ratio: 1/1;
    object-fit: cover;
}

/*--------------------Blog_list--------------------*/
.c_blog_list--title{
    font-size: 16px;
    line-height: 22px;
    margin-top: 20px;
    margin-bottom: 9px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.c_blog_list--des{
    font-size: 14px;
    line-height: 20px;
    overflow-wrap: break-word;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

/*--------------------css footer--------------------*/
footer .text_logo{
    font-size: 30px
}
footer .box_icon{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}
.social-links-two a{
    font-size:1.2rem;
    margin-bottom:5px;
    display:block;
    text-align:right;
}
/* ------------------------------ Custome lib ------------------------------ */
.aspect-square
{
    aspect-ratio: 1/1;
}

.aspect-rectangle
{
    aspect-ratio: 2/1;
}

.error
{
    color: red !important;
}
.btn-core{
    border: 1px solid rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    border-radius: 5px;
    padding: 3px 15px;
    font-weight: 700;
}

.button-banner
{
    background: #0078D4;
}

.xtrust_navbar
{
    position: fixed;
    top: 0;
    left: -100%;
    right: 0;
    width: 80%;
    height: 100vh;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    list-style: none;
    z-index: 100;
    transition: .3s;
}

.xtrust_navbar.active
{
    transition: .3s;
    left: 0;
}

.js-btn-closenav
{
    margin-right: 10px;
}

.search-menu .btn-color-search {
    border: 1px solid #194787;
    border-left: none;
}

.wrapper-form {
    position: absolute;
    z-index: 10;
    width: 300px;
    right: -15px;
    padding: 15px;
    background-color: #ffffff;
    box-shadow: 1px 1px 15px rgb(0 0 0 / 15%);
    border: 2px solid #ddd;
    display: none;
}

.hold-search:hover .wrapper-form {
    display: block;
    color: white;
}

.dropdown-icon {
    position: absolute;
    right: 26px;
    top: -10px;
    color: white;
}

.btn-color-search {
    border-radius: 0 5px 5px 0;
    background-color: #194787;
    color: white;
}

.btn-show_form {
    background-color: #194787;
    color: #ffffff;
    margin-left: 20px;
    display: flex;
    align-items: center;
    padding: 8px;
}
.is-divider {
    height: 3px;
    background-color: rgba(0, 0, 0, .1);
    margin: 5px auto;
    width: 100%;
    max-width: 30px;
    height: 2px;
}
.card-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.Blog .card-img-top {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.news-hover:hover {
    box-shadow: 0 0.5rem 1rem #177358;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
}

.product-header{
    padding-bottom: 50px;
    padding-top: 50px;
    border-radius: 8px;
    padding-left: 20px;
    padding-right: 20px;
    box-shadow: 0px 0px 30px 0px rgb(0 44 122 / 13%);
    background: #ffffff;
    margin-bottom: 3rem;
}
.product-body .product-title{
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}
.product-body .product-des-banner{
    font-size: 1.2rem;
    font-weight: 600;
    color: #194787;
    padding: 0.5rem 0;
}
.product-body .p-current{
    color: #e18726;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.3rem;
    margin-right: 1rem;
}
.product-body .p-through{
    font-size: 1.5rem;
    text-decoration: line-through;
    font-weight: normal;
}
.product_content .product-des{
    background-color: #fff;
    padding: 40px 15px;
    border-radius: 8px;
}
.button-register .elButton{
    border-color: rgba(0, 0, 0, 0.13);
    border-radius: 3px;
    border-style: solid;
    border-width: 1px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 12px;
    padding-bottom: 12px;
    box-shadow: 0px 4px 8px 0px rgb(0 28 56 / 15%);
    background: #194787;
}
.button-register .elButton .elButtonText {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 200%;
}
#show_price .title-packet{
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2.5rem
}

.position-absolute-vt{
    position: absolute;
     bottom:0%; 
     left: 7%;
  }
.button-banner-xtube{
    margin-bottom: 50px;
}
.linearHorzontalLineLeft-blue {
    width: 60px;
    height: 4px;
    background: linear-gradient(97.21deg, #0067B8 5.82%, #50E6FF 134%);
    margin-top: 32px !important;
    margin-bottom: 8px;
    position: relative;
    padding: 0px !important;
    margin: 0;
}

/*question homepage*/
.q-hide{
    display:none;
}
.q-common {
    background-color:#fff;
    padding:40px 0px;
}
.q-common .elHeadline {
    font-weight: 600;
    letter-spacing: -0.05rem;
    line-height: 120%;
    font-size: 2rem;
    text-align: center;
    color: #1d2e3b;
}
.q-header{
    display: flex;
    justify-content: space-between;
    padding: 10px 20px 3px
}
.q-header:hover {
    background-color: #f4f9fc;
    border-color: #f4f9fc;
}
.q-header h2{
    font-size:1.2rem;
}  
.q-notes{
    padding: 40px 20px;
    padding-top: 10px;
    border: 1px solid rgb(232, 238, 240);
    border-top: none !important;
    border-right: none !important;
    border-left: none !important;
}


/*---------------------------------------- Register ----------------------------------------*/
.resgister-title
{
    font-size: 40px;
    color: #01afe9;
    font-weight: bold;
}

.register-contet__title
{
    font-size: 28px;
    color: #01afe9;
    line-height: 1.5;
    font-weight: bold;
}
.register-hover
{
    overflow: hidden;
    cursor: pointer;
}

.register-hover__content
{
    cursor: pointer;
    max-height: 0;
    transition: max-height 1s;
}

.register-hover__content.active
{
    max-height: 1000px;
    transition: max-height 3s;
}

.register-hover-border
{
    cursor: pointer;
    padding-left: 20px;
    border-left: 3px solid #dee2e6;
    overflow: hidden;
    position: relative;
}

.register-hover-border h3
{
    line-height: 1.3;
}

.register-hover-border:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0; 
    border: solid transparent;
    border-width: 0;
    border-right-color: #01afe9; 
    margin-top: -6px;
    transition: all .5s;
    transform: rotate(180deg);
}

.register-hover-border.active:after {
    border-width: 6px;
    transition: all .5s;
}


.register-hover-border.active
{
    border-left: 3px solid #01AFE9;
    transition: max-height 3s, border-color 1s;
}

.content-style
{
    font-size: 18px;
    line-height: 1.8;
    color: #838383;
}

.register-hover-border__content
{
    cursor: pointer;
    max-height: 0;
    transition: max-height 1s;
}

.register-hover-border__content.active
{
    max-height: 1000px;
    transition: max-height 3s;
}

.c_blog_body img
{
    height: unset !important;
    width: unset !important;
    max-width: 100%;
}


.zalo
{
    width: 25px;
    height: 25px;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 10px;
    color: white;
}
.text-justify{
    text-align: justify;
}

@media (min-width: 996px) {
    .w-lg-75
    {
        width: 75% !important;
    }
}

.Hr-toppic {
    font-size: 27px;
    font-weight: 600;
    text-align: center;
    position: relative;
    color: #194787;
    margin-bottom:40px;
}

.modal-backdrop {
    background-color: none !important;
}
#modal_Regcourse .modal-lg {
    max-width: 1024px;
}
.modal-form .modal-header button.close {
    color: #fff;
}
.modal-form .input-group {
    margin-bottom: 3px;
}
.modal-form .modal-footer, .modal-form .modal-header {
    background: #194787;
    color: #fff;
}
.modal-form .modal-body {
    background: url(/images/bkg-faq.png);
    padding: 1.5rem;
}
.modal-form legend {
    font-size: 15px;
    color: #b80b0d;
    font-weight: 600;
}
.modal-form fieldset label {
    padding-left: 5px;
}
.modal-form fieldset input[type=radio] {
    width: 18px;
    height: 18px;
    position: relative;
    top: 3px;
}
.modal-form .validation {
    color: red;
    margin: 0 5px 20px;
    font-weight: 600;
    font-size: 13px;
}
