/*-------------------------------menu-------------------------------*/
/*background-color: rgba(0, 0, 0, 0.65);*/

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 100%;
}

.menu_main {
    background-size: 100% 100%;
}

/* Content wrapper */

.wrapper {
    /*width: 94%;*/
    /*max-width: 75%;*/
    margin: 0 auto;
}
.wrapper-small {
    max-width: 728px;
}
.wrapper-flush {
    width: 100%;
}
.nav.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
   /* background-color: #efefef;*/
}
.nav-container {
    position: fixed;
    top: 62px;
    left: 0;
    z-index: 9999;
    overflow-y: auto;
    visibility: hidden;
    width: 300px;
    max-width: 70%;
    height: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    -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%);
    /*background-color: #c0c0c0;*/
    -webkit-overflow-scrolling: touch;
}
.nav-container.is-visible {
    visibility: visible;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
.nav-toggle {
    margin-top: 5px;
    line-height: 1;
    display: inline-block;
    padding: 0.75rem 0.2rem;
    border: 0;
    background-color: #fff;
        border: 1px solid #0342ac;
    float: left;
    width: 45px;
    /*position: fixed;*/
    z-index: 99;
}
.nav-toggle .icon-menu {

    position: relative;
    display: inline-block;
    width: 22px;
    height: 16px;
    vertical-align: middle;
    fill: none;
}
.icon-menu .line {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 4px;
    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000);
    background-color: #0342ac;
}
.icon-menu .line-1 {
    top: 0;
}
.is-active .icon-menu .line-1 {
    -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
    -ms-transform: translateY(8px) translateX(0) rotate(45deg);
    transform: translateY(8px) translateX(0) rotate(45deg);
}
.icon-menu .line-2 {
    top: 50%;
    margin-top: -2px;
}
.is-active .icon-menu .line-2 {
    opacity: 0;
}
.icon-menu .line-3 {
    bottom: 0;
}
.is-active .icon-menu .line-3 {
    -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
    -ms-transform: translateY(-8px) translateX(0) rotate(-45deg);
    transform: translateY(-8px) translateX(0) rotate(-45deg);
}
.menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-menu {
    background-color: #0d7cd6; /* 1 */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; /* 2 */
}
.nav-menu .menu-item {
    border-top: 1px solid #ffffff;
}
.nav-menu > .menu-item.is-active {
    background: #085a9c;
}
.nav-menu > .menu-item:hover {
    background: #ff7200;
}
.nav-menu > .menu-item.is-active.has-dropdown:after,
.nav-menu > .menu-item:hover.has-dropdown:after {
    color: #ffffff;
}
.nav-menu > .menu-item.is-active a,
.nav-menu > .menu-item:hover a {
    color: #ffffff;
}
.nav-dropdown > .menu-item {
    padding-left: 10px;
}
.nav-dropdown > .menu-item:hover {
    opacity: 0.85;
}
.nav-menu .menu-link {
    color: #fff;
    font-size: 14px;
    display: block; /* 1 */
    text-decoration: none;
    padding: 8px 15px;
    

}
.has-dropdown {
    position: relative;
    cursor: pointer;
}
.has-dropdown > .menu-link {
    display: inline-block;
}
.has-dropdown:after {
    padding-top: 0px;
    font-size: 24px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    content: "+";
    color: #fff;
    line-height: 32px;
    width: 57px;
    height: 37px;
    text-align: center;
}
.has-dropdown.is-active:after {
    content: "\2013"; /* 1 */
}
.nav-dropdown {
    display: none;
    background-color: #0a4c82;
}
.has-dropdown.is-active > .nav-dropdown {
    display: block; /* 1 */
}
.nav-dropdown .nav-dropdown {
    background-color: #aaa;
}
.nav-dropdown .menu-item {
    border-color: #ffffff;
}
.nav-dropdown .nav-dropdown .menu-item {
    background-color: rgb(15, 155, 163) !important;
}
.logo_mobile {
    text-align: center;
}
.logo_mobile img {
    width: 180px;
    height: auto;
}
.nav-menu > .menu-item > .menu-link {
    padding: 8px 15px;
}


/*=================================================== menu_desktop =====================================================*/
@media(min-width: 1200px){
    .container, .container-lg, .container-md, .container-sm, .container-xl{
    max-width: 1200px;
}
.container_pc{
    width: 995px;
    margin: auto;
}
}

@media (min-width: 992px) {
    .nav {
        background-color: rgba(0, 0, 0, 0.65);
    }
    .nav,
    .nav-container,
    .nav-container.is-visible {
        position: static;
        top: auto;
        left: auto;
        z-index: auto;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    .nav-container,
    .nav-container.is-visible {
        visibility: visible;
        height: auto;
        min-height: 0;
        overflow-y: visible;
        width: 100%;
        max-width: 100%;
    }
    .nav-toggle {
        display: none;
    }
    .nav-menu > .menu-item:hover,
    .nav-menu > .menu-item.is-active {
        background-color: transparent;
    }
    .nav-menu .menu-item {
        -webkit-transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
        transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
    }
    .has-dropdown:after {
        content: "" !important;
    }
    .nav-menu > .menu-item:hover.has-dropdown:after {
        border-color: transparent transparent transparent transparent !important;
    }
    .menu-item:hover.has-dropdown:after {
        border-color: rgb(117, 173, 33) transparent transparent transparent !important;

    }
    .nav-menu > .has-dropdown:after {
        position: absolute;
        top: 50%;
        /*right: 0.3rem;*/
        width: 0;
        height: 0;
        margin-top: -2px;
        margin-left: -4px;
        content: "";
        border-width: 5px 5px 0 5px;
        border-style: solid;
        border-color: transparent transparent transparent transparent;
    }
    .has-dropdown > .menu-link {
        padding-right: 2rem;
    }
    .nav-dropdown {
        left: 0px;
        display: block;
        opacity: 0;
        position: absolute;
        top: 100%;
        width: 215px;
        margin: 0;
        background-color: transparent;
        border-radius: 0px;
        box-shadow: 0 0 4px hsla(0, 0%, 0%, 0.15);
        visibility: hidden;
        -webkit-transition: visibility 0s linear 0.25s, opacity 0.25s linear;
        transition: visibility 0s linear 0.25s, opacity 0.25s linear;
    }
    .has-dropdown:hover > .nav-dropdown {
        visibility: visible;
        opacity: 1;
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
    }
    .nav-dropdown .menu-item {
        border: 0;
        margin-top: 1px;
    }
    .nav-dropdown .menu-item:last-child {
        border: 0;
        border-bottom: none;
    }
    .nav-dropdown .menu-item:hover,
    .nav-dropdown .nav-dropdown .menu-item:hover {
        background-color: #2350a5;
    }
    .nav-dropdown .menu-item:hover .menu-link,
    .nav-dropdown .menu-item:hover .menu-link {
        color: #ffffff;
    }
    .nav-dropdown .nav-dropdown,
    .nav-dropdown .nav-dropdown .menu-item {
        background-color: #dedede;
    }
    .nav-dropdown .nav-dropdown {
        z-index: 998;
        top: 0;
        left: 100%;
    }
    .content {
        margin-top: 0;
    }
    .nav-menu > .menu-item > .menu-link {
        display: block;
        line-height: 20px;
        padding: 10px 35px 10px 35px;
            font-size: 17px;
    font-weight: bold;
        color: #000;
        font-family: 'GoogleSans';
      
        -webkit-transition: all 0.15s linear;
        -moz-transition: all 0.15s linear;
        -o-transition: all 0.15s linear;
        transition: all 0.15s linear;

    }
    .nav-menu > .menu-item.active
    .nav-menu > .menu-item:hover {
        background: #0098da;
    }
    .nav-menu > .menu-item {
        position: relative;
        float: left;
        padding: 0px 0px 0px 0px;
        border-top: 0px;
    }
    .nav-menu,
    .nav {
        background: none;
    }
    .nav-menu > .menu-item.is-active > .menu-link,
    .nav-menu > .menu-item:hover > .menu-link {
        color: #fff;
        background: #043a94;
    }
    .nav-menu > .menu-item > a:hover {
        color: #2350a5;
    }
    .nav-dropdown > .menu-item {
        padding: 0;
        background: #ffffff;
    }
    .nav-menu .menu-link {
        padding: 8px 15px 8px 15px;;
    }
    .nav-dropdown>.menu-item>.menu-link {
        color: #0d0d0d !important;
    }
    .nav-dropdown>.menu-item:hover>.menu-link {
        color: #ffffff !important;
    }
    .nav-menu > .menu-item {
        position: relative;
    }
    .nav-dropdown{
        -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    }
    .has-dropdown:hover > .nav-dropdown{
        -webkit-transform: scaleY(1) !important;
    transform: scaleY(1) !important;
    }
    .nav-dropdown .has-dropdown .nav-dropdown{
        -webkit-transform: scaleX(0) !important;
    transform: scaleX(0) !important;
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    }
    .nav-dropdown .has-dropdown:hover .nav-dropdown{
        -webkit-transform: scaleX(1) !important;
    transform: scaleX(1) !important;
    }
}
/*----------------------------------------------------------end menu-------------------------------*/
@font-face {
    font-family: 'UTM_HelvetIns';
    src: url('./fonts/UTMHelvetIns.eot');
    src: url('./fonts/UTMHelvetIns.eot') format('embedded-opentype'), url('./fonts/UTMHelvetIns.woff')
    format('woff2'), url('./fonts/UTMHelvetIns.woff') format('woff'), url('./fonts/UTMHelvetIns.ttf')
    format('truetype'), url('./fonts/UTMHelvetIns.svg#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
  font-family: 'Roboto-Regular';
  src: url('./fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),  url('./fonts/Roboto-Regular.woff') format('woff'), url('./fonts/Roboto-Regular.ttf')  format('truetype'), url('./fonts/Roboto-Regular.svg#Roboto-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto-Bold';
  src: url('./fonts/Roboto-Bold.eot?#iefix') format('embedded-opentype'),  url('./fonts/Roboto-Bold.woff') format('woff'), url('./fonts/Roboto-Bold.ttf')  format('truetype'), url('./fonts/Roboto-Bold.svg#Roboto-Bold') format('svg');
  font-weight: normal;
  font-style: normal;
}

 @font-face {
    font-family: 'GoogleSans';
    font-style: normal;
    font-weight: normal;
    src: url('./fonts/google-sans/GoogleSans-Regular.otf') format("opentype"),
        url('./fonts/google-sans/GoogleSans-Regular.ttf') format("truetype");
}

@font-face {
    font-family: 'GoogleSans Bold';
    font-style: normal;
    font-weight: normal;
    src: url('./fonts/google-sans/GoogleSans-Bold.otf') format("opentype"),
        url('./fonts/google-sans/GoogleSans-Bold.ttf') format("truetype");
}

@font-face {
    font-family: 'GoogleSans';
    font-style: normal;
    font-weight: bold;
    src: url('./fonts/google-sans/GoogleSans-Bold.otf') format("opentype"),
        url('./fonts/google-sans/GoogleSans-Bold.ttf') format("truetype");
}

@font-face {
    font-family: 'GoogleSans Italic';
    font-style: normal;
    font-weight: normal;
    src: url('./fonts/google-sans/GoogleSans-Italic.otf') format("opentype"),
        url('./fonts/google-sans/GoogleSans-Italic.ttf') format("truetype");
}

@font-face {
    font-family: 'GoogleSans';
    font-style: italic;
    font-weight: normal;
    src: url('./fonts/google-sans/GoogleSans-Italic.otf') format("opentype"),
        url('./fonts/google-sans/GoogleSans-Italic.ttf') format("truetype");
}

/* @font-face {
    font-family: 'GoogleSans';
    font-style: normal;
    font-weight: lighter;
    src: url('../fonts/google-sans/GoogleSans-Light.otf') format("opentype");
}

@font-face {
    font-family: 'GoogleSans';
    font-style: italic;
    font-weight: lighter;
    src: url('../fonts/google-sans/GoogleSans-Light_Italic.otf') format("opentype");
} */

@font-face {
    font-family: 'GoogleSans Medium';
    font-style: normal;
    font-weight: 500;
    src: url('./fonts/google-sans/GoogleSans-Medium.otf') format("opentype"),
        url('./fonts/google-sans/GoogleSans-Medium.ttf') format("truetype");
}

@font-face {
    font-family: 'GoogleSans MediumItalic';
    font-style: italic;
    font-weight: 500;
    src: url('./fonts/google-sans/GoogleSans-MediumItalic.otf') format("opentype"),
        url('./fonts/google-sans/GoogleSans-MediumItalic.ttf') format("truetype");
}

@font-face {
    font-family: 'GoogleSans BoldItalic';
    font-style: normal;
    font-weight: normal;
    src: url('./fonts/google-sans/GoogleSans-BoldItalic.otf') format("opentype"),
        url('./fonts/google-sans/GoogleSans-BoldItalic.ttf') format("truetype");
}

@font-face {
    font-family: 'GoogleSans';
    font-style: italic;
    font-weight: bold;
    src: url('./fonts/google-sans/GoogleSans-BoldItalic.otf') format("opentype"),
        url('./fonts/google-sans/GoogleSans-BoldItalic.ttf') format("truetype");
}
/*---------------------------------------------------set-media---------------------------------*/

/*------------------------------------------------------end set-media-----------------------*/
p {
    margin: 0px;
}

a {
    text-decoration: none;
    color: #333333;
}

a:hover,
a:focus {
    color: #0d7cd6;
    text-decoration: none;
}

* {
    margin: 0px;
    padding: 0px;
}

ul, ol {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}
h1,h2,h3,h4,h5,h6{
    margin: 0;
}

.fixed {
    position: fixed !important;
    top: 0px;
    z-index: 99;
    width: 100%;
}
.clearfix-130{
    clear: both;
    height: 130px;
}
.clearfix-100{
    clear: both;
    height: 100px;
}
.clearfix-80{
    clear: both;
    height: 80px;
}
.clearfix-60{
    clear: both;
    height: 60px;
}
.clearfix-55{
    clear: both;
    height: 55px;
}
.clearfix-50{
    clear: both;
    height: 50px;
}
.clearfix-45{
    clear: both;
    height: 45px;
}
.clearfix-40{
    clear: both;
    height: 40px;
}
.clearfix-35{
    clear: both;
    height: 35px;
}
.clearfix-30{
    clear: both;
    height: 30px;
}
.clearfix-32{
    clear: both;
    height: 32px;
}
.clearfix-25{
    clear: both;
    height: 25px;
}
.clearfix-20{
    clear: both;
    height: 20px;
}
.clearfix-15{
    clear: both;
    height: 15px;
}
.clearfix-12{
    clear: both;
    height: 12px;
}
.clearfix-10{
    clear: both;
    height: 10px;
}
.clearfix-5{
    clear: both;
    height: 5px;
}

body {
    background: #fff;
    font-size: 12px;
    font-family: 'GoogleSans';
    color: #000;
}

del {
    font-size: 12px;
    color: #999;
}

/*===========All=============*/ 
.w_100 {
    width: 100%;
}

.w_40 {
    width: 40%;
}

.w_60 {
    width: 60%;
}

/*==========Main============*/
.menu_mb{
    position: fixed;
    width: 100%;
    background: #132d65;
    z-index: 999;
    padding: 1px 15px;
    border-bottom: 1px solid #ccc;
}
@media(max-width: 767px){
	.menu_mb{
		padding: 1px 5px;
	}
}
#go_top {
    position: fixed;
    width: 24px;
    height: 25px;
    background: #000;
    color: #fff;
    text-align: center;
    line-height: 25px;
    font-size: 18px;
    font-weight: bold;
    background-size: 100% 100%;
    display: inline-block;
    z-index: 100;
    bottom: 25px;
    right: 25px;
}
.img_logo_mb{
    max-height: 60px;
    max-width: 100%
}
.menu_main .nav.is-fixed{
    position: relative;
    z-index: 105;
}
/*----------------header---------------*/
.item_ol {
    float: left;
    margin-right: 30px;
       margin-top: 15px;
    margin-bottom: 15px;
}
.item_ol img {
    float: left;
    margin-right: 10px;
}
.sub_ol{
    margin-top: 10px;
    text-align: left;
}
.sub_ol h2{
        font-size: 0.58rem;
    text-transform: uppercase;
    font-family: 'GoogleSans';
    color: #fff;
    margin-bottom: 5px;
}
.sub_ol p {
    font-family: 'GoogleSans';
    font: 1em;
    color: #fff;
}
.sub_ol{
    overflow: hidden;
}
.logo_pc {
    margin:25px 0;
}
.logo_pc img{
    height: 50px;
    width: 50px;
}
.sky_mess {
        display: flex;
    margin-top: 30px;
    padding-left: 10px;
}
.form_search {
    max-width: 210px;
    width: 100%;
    margin: auto;
    margin-bottom: 15px;
    margin-top: 20px;
    float: left;
}
.form_search .btn-default {
    background: #fff;
    color: #000;
}
.sky_mess img {
    margin-right: 10px;
}
.qts_head_mid {
    background: #fff;
}
.menu_main .fa {
    margin:0 15px;
}
.nav-menu > .menu-item:first-child >.menu-link {
    padding-left: 0;
}
/*---------------*/
.tieude h2 {
    font-family: 'GoogleSans';
    font-size: 24px;
    padding:10px 0;
    color: #fff;
    background:rgba(15, 48, 100, 0.45);
   
}
.tieude .txt_td {
    font-family: 'GoogleSans';
    font-size: 20px;
    padding: 20px  0;
    line-height: 30px;
    color:#fff;
    background: rgba(129, 115, 16, 0.5294117647058824);
    margin-bottom: 15px;
}
.tieude {
   margin:0 85px;
}
.chitiet {
    padding-top: 18px;
}
.chitiet a {
    font-family: 'GoogleSans';
    font-size: 18px;
    color: #fff;
    background: rgba(109, 118, 135, 0.5);
    border-radius: 5px;
    padding: 15px 25px;
    margin-top: 15px;
   
}
.slide {
position: relative;
}
.tieude {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    max-width: 1025px;
    margin:auto;
}

.qts_head_top{
        background-color: #132d65;
}
.header-searh .form_search .form-control{
        border: 1px solid #fdfeff;
        border-radius: inherit;
}
.header-searh .form_search .btn-default{
    background: #fff;
    color: #132d65;
     border-radius: inherit;
}
 
/*----------------------------Reponsive desktop-------------------*/
@media (min-width:1200px) {
    .item_ol {
        width: 100%;
    }
     .visible-xs {
        display: none;
    }
}
/*----------------------------Reponsive Ipad-------------------*/
@media (min-width:992px) and (max-width:1199px) {
    .item_ol {
        width: 100%;
    }
     .visible-xs {
        display: inherit;
    }
}

@media (min-width:768px) and (max-width:991px) /* sm*/{
     .visible-xs {
        display: inherit;
    }
    .qts_head_top {
        margin-top: 25px;
    }
    .nav-toggle {
        margin-top: 7px;
    }
    .item_ol {
        margin:0;
        float: left;
        margin:0 20px;
    }
    .hd_online {
        display: flex;
        justify-content: center;
        align-items: center;
        padding:10px 0 ;
    }
    .form_search {
        max-width: 500px;
        margin-bottom: 10px;
    }
    .sky_mess {
        padding: 10px 0;
    }
    .tieude {
        top: 15%;
    }
    .chitiet a{
             padding: 10px 22px; 
             font-size: 14px;
    }
    .tieude .txt_td {
        font-size: 16px;
        padding: 15px 0;
        line-height: 22px;
    }
}

@media (max-width:767px) /* xs*/{
     .visible-xs {
        display: inherit;
    }
    .qts_head_top {
        margin-top: 25px;
    }
    .item_ol {
        margin:0;
        float: left;
        margin:0 20px;
    }
    .hd_online {
        display: flex;
        justify-content: center;
        align-items: center;
        padding:10px 0 ;
    }
    .form_search {
        max-width: 330px;
        margin-bottom: 10px;
    }
    .logomobile{
         /*   float: left;*/
    margin-top: 1px;
    }
    .mobile_lgo img{
            margin-top: -5px;
    margin-left: 5px;
    }
  /*  .sky_mess {
        padding: 10px 0;
    }*/
    .tieude {
        top: 0;
    }
    .tieude .txt_td {
        font-size: 16px;
        padding: 15px 0;
        line-height: 22px;
    }
    .chitiet a{
             padding: 10px 22px; 
             font-size: 14px;
    }
    .qts_head_top {
        display: none;
    }

}

@media (max-width:480px) {
    .visible-xs {
        display: inherit;
    }
    .hd_online {
        display: unset;
    }
    .item_ol {
        margin:10px 0;
        float: none;
    }
    .tieude {
        position: inherit;
        margin-bottom: 50px;
    }
    .tieude h2 {
        background: rgb(15, 48, 100)
    }
    .tieude .txt_td {
        background: rgb(129, 115, 16);
    }


}
#menu_tpoa
{
     font-size: 0.7rem;
}
#menu_tpoa ul
{
  margin-top:  32px;
      float: right;
}
#menu_tpoa ul li{
   list-style-type: none;
  display: inline;
  margin-left: 10px;
}
 #menu_tpoa ul li a{
    color: #fff;
 }
 /*tinmoinhat*/
 .qts_news{
    margin: 0px 0px;
}
.full_news{
    float: left;
    width: 100%;
}
.name_news_home{
    font-size: 12px;
    line-height: 22px;
    font-weight: bold;
    margin: 10px 0px 8px 0px;
    max-height: 44px;
    overflow: hidden;
    min-height: 44px;

        font-size: 1rem;
}
.name_news_home> a {
    color: #772527;
}
.name_news_home> a:hover{
    color: #34c0e7;
    text-decoration: underline;
}
.name_news_home> a span{
    padding-left: 0.4em;
    color: rgb(143, 37, 37);
    font-weight: bold;
        display: contents;
}
 .h_7407 a{
    display: block;
    position: relative;
    overflow: hidden;

 }
 .h_7407 a:before{
    content: '';
    display: block;
    padding-bottom:70%;
 }
 .h_7407 a img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
 }
.box_news{
    margin-bottom: 30px;
}
.ul_comment{
    border-bottom: 1px solid #d9d9d9;
    border-top: 1px solid #d9d9d9;

}
.ul_comment > li {
    color: #999999;
    font-size: 12px;
    padding-bottom: 8px;
    padding-top: 10px;
    font-style: italic;
    display:inline-table;
    margin: 0px 30px;

}
.ul_comment > li:last-child{
    margin-right: 0px;
}
.ul_comment > li:first-child{
    margin-left: 0px;
}
.ul_comment>  li > i {
    font-size: 14px;
    margin-right: 7px;
    color: #999999;
}
.mota_news{
        margin: 5px 0px;
    color: #5a5a5a;
    font-size: 12px;
    line-height: 22px;
    overflow: hidden;
    text-align: justify;
}

.click_me_news> a {
    display: inline-block;
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
    padding: 10px 15px 7px 15px;
    background: #4c3019;
    outline-offset: 2px;
    outline: 1px solid #4c3019;
    text-transform: uppercase;
}
.click_me_news> a:hover{
    background: #2f7b3d;
}
.title_slider_box_news{
    color: #4c3019;
    text-transform: uppercase;
    font-family: 'GoogleSans';
        margin: 20px auto;
    color: #1f236e;
    font-size: 18px;
    font-weight: bold;
        display: inline-block;
}
.title_slider_box_news> span{
    position: absolute;
    position: inherit;
    left: 0px;
    z-index: 10;
    background: #ffffff;
}
.time_tt {
    font-size: 12px;
    line-height: 1.3;
    font-style: italic;
    color: black;
    font-weight: 700;
}
.xemtattacar{
        font-size: 17px;
    padding-right: 15px;
        float: right;
            margin: 12px auto;
}
.xemtattacar a{
    color: #000
}
.xemtattacar a:hover{
        text-decoration: underline;
}
 .new_view{
      display: block;
   }
   .clearfix-20 {
      clear: both;
      height: 20px;
   }
   .navigation {
         display: table;
    margin: auto;
    padding: 10px 0px;
   }
   .text-center{
      text-align: center;
   }
   .pagination a {
    
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
 
}
.pagination li.active a{
       background-color: #132d64;
    color: #fff;
}
    .text_deco {
      display: block;
          margin-top: 30px;
    font-size: 20px;
    }
    .new_new{
          margin-bottom: 40px;
    margin-top: 10px;
    }
     .img_news{
    display: block;
    position: relative;
    overflow: hidden;

 }
 .img_news:before{
    content: '';
    display: block;
    padding-bottom:70%;
 }
 @media(max-width: 767px){
 	.font-centur-bold{
 		    padding-top: 10px;
    display: flex;
 	}

 	 .h_7407:before{
    
    padding-bottom:inherit;
 }
 .hidden-xs{
 	display: none;
 }
 }
 .img_news img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
 }
 .time_new{
  display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 15px;
    margin: 7px 20px;
    justify-content: space-between;
    margin-bottom: 1rem !important;
 }
 .text_name{
    font-size: 20px;
     margin-bottom: 16px;
 }
 .text_name a{
  
   
    color: #000;
    text-align: justify;
        font-weight: 500;
    line-height: 1.2;
 }
 .text_name a:hover {
    text-decoration: none;
    text-decoration: underline;
}
.contetn_dec{
   font-size: 15px;
    line-height: 1.8;
    font-weight: 400;
    color: #606e7f;
    text-align: justify;
}

 /*endtinmoi*/
.list-unstyled{
        background-color: #0d7cd6;
            padding: 5px 0;
}
.active-show {
    float: left;
        float: left;
    margin-left: 5px;
    margin-right: 20px;
}
.list-unstyled li a{
    color: #fff;
}