@font-face{
    font-family:'UTM-Bebas';
    src:url('../fonts/UTM-Bebas.ttf');
    font-display:swap; 
} 
@font-face{
    font-family:'UTM-Avo';
    src:url('../fonts/UTM-Avo.ttf');
    font-display:swap; 
}
@font-face{
    font-family:'UTM-Avo-Bold';
    src:url('../fonts/UTM-AvoBold.ttf');
    font-display:swap; 
} 
*,
*::before,
*::after{
	transition:all .3s ease-in-out;
}
:root {
    --color1: #136d4a;
    --color2: #ff6600;
    --color3: #199364;
    --color4: #36e5eb;
}
html {
  	font-size: 62.5%;
}
body{
	font-family:'Arial';
	color: #666666;
}
p {
    margin-block-start: 0;
    margin-block-end: 0;
}
ul {
	margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
}
ul,li,ol{ 

	list-style: none; 

}
a{
	text-decoration:none;
	color: #000;
}
img{
	max-width: 100%;
}
.max-w{max-width:1920px;margin:0 auto;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
.min-w{max-width:1070px;margin:0 auto;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
.container{position: relative;}
.left{float:left;}
.right{float:right;}
.clear{clear:both;}
.clearfix:after{content:" ";visibility:hidden;display:block;clear:both;}
.border-box{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
.divclr:after {
	content: '';
	clear: both;
	display: block;
}
.clear-ul{list-style-type:none;padding:0;margin:0;}
@-webkit-keyframes hvr-pulse{
	25%{-webkit-transform:scale(1.1);transform:scale(1.1)}
	75%{-webkit-transform:scale(0.9);transform:scale(0.9)}
}
@keyframes hvr-pulse{
	25%{-webkit-transform:scale(1.1);transform:scale(1.1)}
	75%{-webkit-transform:scale(0.9);transform:scale(0.9)}
}
.hvr-pulse{
	display: block;
	-webkit-animation-name: hvr-pulse;
    animation-name: hvr-pulse;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
/*HEADER*/
header{
	
}
header .header-top{
	background-color: #ffffff;
	border-bottom: solid 3px var(--color2);
}
header .header-top .content{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
header .header-top .top-l{
	padding-left: 13rem;
}
header .header-top .top-l .header-address{
	font-size: 1.2rem;
	display: flex;
    align-items: center;
}
header .header-top .top-l .header-address img{
	margin-right: 7px;
}
header .header-top .top-l .header-name{
	color: var(--color1);
	font-size: 3rem;
	text-transform: uppercase;
	font-family: 'UTM-Bebas';
}
header .header-top .top-l .header-name span{
	color: var(--color2);
}
header .header-top .top-r{}
header .header-top .top-r .header-phone{
	font-family: 'UTM-Bebas';
	font-size: 3rem;
	color: var(--color2);
	display: flex;
    justify-content: center;
    align-items: center;
}
header .header-top .top-r .header-phone img{
	margin-right: 8px;
}
header .header-top .top-r .header-timework{
	font-size: 1rem;
	color: #999999;
	text-align: right;
}
header .header-top .top-r .header-timework span{
	color: var(--color1);
}
header .header-bottom{
	background-color: var(--color1);
}
header .header-bottom .content{
	position: relative;
}
header .header-bottom .content .header-logo{
	position: absolute;
	left: 0;
	top: -60px;
}
/* CSS MENU */
.header-menu>ul{
	display:flex;
	align-items:center;
	justify-content:flex-end;
	gap: 10px;
	height: 64px;
}
.header-menu>ul>li{
	height:100%;
}
.header-menu>ul>li>a{
	padding:4px 15px;
	height:100%;
	display:flex;
	align-items:center;
	color:#fff;
	position:relative;
	z-index:1;
	font-size: 1.8rem;
}
.header-menu>ul>li.chat{
	height: auto;    
	border: solid 1px #fff;
	border-radius: 11px;
	font-size: 1.8rem;
	font-weight:bold;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header-menu>ul>li.chat img{
	margin-left: 2rem;
}
.header-menu>ul>li.node-menu:hover .submenu{
	opacity:1;
	top:100%;
	z-index:99;
	visibility:visible;
}
ul.submenu>li>a{
	padding:8px 20px; 
	font-size: 1.6rem; 
	box-sizing:border-box;
	display:flex; 
	align-items: center;
}
ul.submenu>li>a{
	color:white;
}
ul.submenu>li>a img{
	width: 10px;
	margin-right: 1rem;
}
ul.submenu>li>a:hover{
	padding-left: 25px;
}
ul.submenu{
	transform-origin:0 0;
	background:var(--color1);
	position:absolute;
	width:80%;
	left: 0;
	right:0;
	margin: auto;
	top:calc(100% + 30px);
	display:flex;
	flex-flow:row wrap;
	opacity:0;
	z-index:-111;
	visibility:hidden;
	box-shadow: 0 14px 28px rgb(0 0 0 / 25%), 0 10px 10px rgb(0 0 0 / 10%);
    border-radius: 0 0 8px 8px;
}
ul.submenu li{
	width:25%;
	text-align:left;
	position:relative;
}
/*-------------END CSS MENU-----------------*/
/*---------------END HEADER------------------------*/
/*TRANG CHU*/
section.danhmuc-bv{
	display: flex;
	margin: 2rem auto;
}	
section.danhmuc-bv .ct-left{
	width: 245px;
}
section.danhmuc-bv .ct-left .box-icon{
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: var(--color1);
    color: #fff;
    text-align: center;
}
section.danhmuc-bv .ct-left .box-icon .item{
	padding: 2rem 1rem;
	border-bottom: solid 1px #0e5238;
	border-right: solid 1px #0e5238;
}
section.danhmuc-bv .ct-left .box-icon .item.active{
	background-color: var(--color2);
}
section.danhmuc-bv .ct-left .box-icon .item:nth-child(2),
section.danhmuc-bv .ct-left .box-icon .item:nth-child(4) {
    border-right: none;
}
section.danhmuc-bv .ct-left .box-icon .item .thumb{
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 1.5rem;
}
section.danhmuc-bv .ct-left .box-icon .item .info{
	font-size: 1.2rem;
}
section.danhmuc-bv .ct-left .box-icon .item .info span{
	font-size: 1.4rem;
	font-weight: bold;
}
section.danhmuc-bv .ct-right{
	width: calc(100% - 245px - 2rem);
	margin-left: 2rem;
}
section.danhmuc-bv .ct-right .baiviet{

}
section.danhmuc-bv .ct-right .baiviet .title{
	background-color: var(--color1);
	color: #fff;
	text-transform: uppercase;
	font-size: 1.8rem;
	position: relative;
	padding-left: 57px;
	height: 33px;
    display: flex;
    align-items: center;
}
section.danhmuc-bv .ct-right .baiviet .title:before{
	content: '';
	background-image: url('../img/icon-bv-1.png');
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--color2);
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 39px;
    height: 33px;  
}
section.danhmuc-bv .ct-right .baiviet .title:after{
	content: '';
    border: 6px solid transparent;
    border-left: 6px solid var(--color2);
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 39px;
    bottom: 0;
    margin: auto;
}
section.danhmuc-bv .ct-right .baiviet .box{
	display: flex;
	margin-top: 2.5rem;
	margin-bottom: 2rem;
}
section.danhmuc-bv .ct-right .baiviet .box .box-l{
	display: flex;
	width: 50%;
}
section.danhmuc-bv .ct-right .baiviet .box .box-l .thumb{
	width: 50%;
}
section.danhmuc-bv .ct-right .baiviet .box .box-l .info{
	width: calc(100% / 2 - 1.5rem);
	margin-left: 1.5rem;
	font-size: 1.2rem;
}
section.danhmuc-bv .ct-right .baiviet .box .box-l .info a{
	font-size: 1.6rem;
	font-weight: bold;
}
section.danhmuc-bv .ct-right .baiviet .box .box-l .info a:hover{
	color: var(--color2);
}
section.danhmuc-bv .ct-right .baiviet .box .box-l .info .des{
	margin: 1rem 0;
}
section.danhmuc-bv .ct-right .baiviet .box .box-l .info .read-main{
	background-color: var(--color2);
	color: #fff;
	font-size: 1.2rem;
	font-weight: bold;
	text-align: center;
	width: 70px;
	padding: .7rem 0;
	border-radius: 4px;
}
section.danhmuc-bv .ct-right .baiviet .box .box-r{
	width: 50%;
	margin-left: 2rem;
	border-left: solid 1px #cccccc;
}
section.danhmuc-bv .ct-right .baiviet .box .box-r .items{
	position: relative;
	padding-left: 3.5rem;
	font-size: 1.4rem;
	margin-bottom: 1.1rem;
}
section.danhmuc-bv .ct-right .baiviet .box .box-r .items a:hover{
	color: var(--color2);
}
section.danhmuc-bv .ct-right .baiviet .box .box-r .items:before{
	content: '';
	background: url('../img/icon-bv-2.png') no-repeat;
	width: 12px;
	height: 10px;
	position: absolute;
	left: 13px;
	top: 3px;
}
section.danhmuc-bv .ct-right .danhmuc{
	background-color: #eeeeee;
	border-radius: 4px;
	padding: 1.4rem 1.8rem;
}
section.danhmuc-bv .ct-right .danhmuc .title{
	text-transform: uppercase;
	font-size: 1.7rem;
	color: #333333;
	display: flex;
	align-items: center;
}
section.danhmuc-bv .ct-right .danhmuc .title img{
	margin-right: 1.8rem;
}
section.danhmuc-bv .ct-right .danhmuc .list-danhmuc{
	display: grid;
	grid-template-columns: repeat(4,1fr);
	grid-gap: 5px 15px;
	margin-top: 1rem;
}
section.danhmuc-bv .ct-right .danhmuc .list-danhmuc .item a{
	display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color1);
    width: 100%;
    background-color: #fff;
	font-size: 1.4rem;
	border-radius: 4px;
	border: solid 1px #cccccc;
	height: 38px;
}
section.danhmuc-bv .ct-right .danhmuc .list-danhmuc .item a:hover{
    background-color: var(--color1);
    color: #fff;
}
section.danhmuc-bv .ct-right .form-baiviet{
    background: url('../img/bg-form-bv.png') no-repeat;
    width: 100%;
    height: 83px;
   	margin-top: 1rem;
   	padding-top: 2.5rem;
    padding-left: 2rem;
}
section.danhmuc-bv .ct-right .form-baiviet form{
	position: relative; 
}
section.danhmuc-bv .ct-right .form-baiviet form input[type=text] {
    width: 240px;
    height: 40px;
    padding-left: 2.5rem;
    outline: none;
    font-size: 1.4rem;
    border: solid 2px #045033;
    border-radius: 8px;
}
section.danhmuc-bv .ct-right .form-baiviet form input[type=submit] {
	position: absolute;
	left: 212px;
    top: 3px;
   	width: 53px;
    height: 38px;
    background-color: var(--color2);
    color: #fff;
    font-size: 1.4rem;
    border: none;
    font-weight: bold;
    text-align: center;
    outline: none;
    cursor: pointer;
    border-radius: 5px;
}

section.baochi{}
section.baochi .title{
	font-size: 1.8rem;
	color: #333333;
    text-transform: uppercase;
}
section.baochi .bc-list{
	display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 1.5rem;
    padding: 3rem 0px;
}
section.baochi .bc-list .bc-item{
	padding: 2rem 0;
	border: solid 1px #cccccc;
	border-radius: 1.2rem;
	position: relative;	
}
section.baochi .bc-list .bc-item .bc-icon{
	text-align: center;
	margin-bottom: 1.5rem;
	height: 4.5rem;
}
section.baochi .bc-list .bc-item .bc-info{
	font-size: 1.4rem;
	color: #333333;
	font-weight: bold;
	padding: 1.5rem .4rem;
}
section.baochi .bc-list .bc-item .read{
	background-color: var(--color1);
	border-radius: 50%;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
    left: 0;
    right: 0;
    bottom: -2rem;
    margin: auto;
}


section.uudiem{
	background: linear-gradient( to right, var(--color1) 424px, white 424px);
	display: flex;
	position: relative;
	height: 345px;
	margin: 3rem auto;
}
section.uudiem .ct-left{
	width: 424px;
	padding-top: 5rem;
	padding-left: 4rem;
	position: relative;
}
section.uudiem .ct-left:after{
	content: '';
	background-color: #0e5439;
	width: 159px;
	position: absolute;
	right: -40px;
	height: 180px;
	top: 0;
}
section.uudiem .ct-left p{
	color: #fff;
	font-size: 2.5rem;
}
section.uudiem .ct-left p:nth-child(2){
	font-size: 2.7rem;
	text-transform: uppercase;
	font-weight: bold;
	position: relative;
	padding-top: 1.3rem;
	margin-top: 1rem;
}
section.uudiem .ct-left p:nth-child(2) span{
	font-size: 4.2rem;
	font-weight: bold;
}
section.uudiem .ct-left p:nth-child(2):before{
	content: '';
	width: 70px;
	height: 3px;
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 0;
}
section.uudiem .ct-right{
	width: 730px;
	position: absolute;
    left: 339px;
    top: 40px;
}
section.uudiem .ct-right .list-ud{
	display: flex;
}
section.uudiem .ct-right .list-ud .slick-next {
    background: url(../img/icon-next.png) no-repeat;
    width: 72px;
    height: 40px;
    position: absolute;
    left: -218px;
    top: 250px;
}
section.uudiem .ct-right .list-ud .slick-prev {
    background: url(../img/icon-prev.png) no-repeat;
    width: 72px;
    height: 40px;
    position: absolute;
    left: -300px;
   	top: 250px;
}

section.uudiem .ct-right .list-ud .slick-current {
    color: #fff!important;
}
section.uudiem .ct-right .list-ud .slick-next:before,
section.uudiem .ct-right .list-ud .slick-prev:before{
	content:none;
}
section.uudiem .ct-right .list-ud .item{
	text-align: center;
	color: #333333;
}
section.uudiem .ct-right .list-ud .item .title{
	font-size: 1.8rem;
	font-weight: bold;
	padding-bottom: 2rem;
}


section.moitruong{}
section.moitruong .title{
	font-size: 1.8rem;
    text-transform: uppercase;
    color: #333333;
}
section.moitruong .list-mt{
	margin: 2rem 0;
}
section.moitruong .slick-slide {
  margin: 0 2px;
}
section.moitruong .slick-list {
  margin: 0 -2px;
}
section.formdathen{
	display: flex;
	height: 120px;
	margin-bottom: 2.5rem;
}
section.formdathen .content-left{
	width: 25%;
	background-color: var(--color2);
	color: #fff;
	font-size: 1.7rem;
	padding-top: 2.7rem;
	padding-left: 3.2rem;
	position: relative;
}
section.formdathen .content-left:before{
	content: '';
	background: url('../img/bg-formdathen-1.png') no-repeat;
	width: 138px;
	height: 67px;
	position: absolute;
	left: 0;
	bottom: 0;
}
section.formdathen .content-left p:nth-child(2){
	font-weight: bold;
	font-size: 1.8rem;
}
section.formdathen .content-right{
	width: 75%;
	background: url('../img/bg-formdathen-2.png') no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
}
section.formdathen .content-right form{
	display: flex;
	align-items: center;
	gap: 10px;
}
section.formdathen .content-right form input[type=text] {
   	width: 25%;
   	height: 40px;
   	padding-left: 2.5rem;
   	border: none;
    outline: none;
    font-size: 1.4rem;
}
section.formdathen .content-right form input[type=submit] {
    width: 25%;
    height: 40px;
    background-color: var(--color1);
    color: #fff;
    text-transform: uppercase;
    font-size: 1.6rem;
    font-weight: bold;
    border: none;
    font-weight: bold;
    text-align: center;
    outline: none;
    cursor: pointer;
}
/*TRANG LOẠI*/
article.trangloai{}
article.trangloai .content{
	padding: 2rem 0;
}
article.trangloai .content .left{
	width: calc(100% - 260px - 2rem);
}
article.trangloai .content .right{
	width: 260px;
}
article.trangloai .content .left .list-item .item{
	padding: 10px 0;
	display: flex;
	align-items: center;
}
article.trangloai .content .left .list-item .item:first-child{
	padding-top: 0;
}
article.trangloai .content .left .list-item .item:last-child{
	border-bottom: none;
}
article.trangloai .content .left .list-item .item .img{
	width: 189px;
	height: auto;
}
article.trangloai .content .left .list-item .item img{
	max-width: 100%;
	height: auto!important;
    vertical-align: middle;
}
article.trangloai .content .left .list-item .item .text{
	width: 596px;
	margin-left: 30px;
}
article.trangloai .content .left .list-item .item .text a h3{
	margin-top: 0;
}
article.trangloai .content .left .list-item .item .text a h3{
	font-size: 14pt;
	color: #333333;
	margin: 15px 0 10px 0;
}
article.trangloai .content .left .list-item .item .text a h3:hover{
	color: var(--color2);
}
article.trangloai .content .left .list-item .item .text .excerpt .des{
	padding-right: 57px;
	font-size: 16px;
	color: #666666;
}
article.trangloai .content .left .list-item .item .text .box-readmore {
    position: relative;
    margin: 20px 0;
}
article.trangloai .content .left .list-item .item .text .box-readmore a.readmore {
	background: linear-gradient(#fefefe, #d4d4d4);
	color: #666;
}
article.trangloai .content .left .list-item .item .text .box-readmore a.tuvan{
	background: linear-gradient(#fffdfb, #ff6804);
}
article.trangloai .content .left .list-item .item .text .box-readmore a.lichhen {
    background: linear-gradient(#fbfdfc, #176f4d);
}
article.trangloai .content .left .list-item .item .text .box-readmore a {
    padding: 12px 36px;
    font-size: 14px;
    margin-right: 20px;
    color: #fff;
    border: solid 1px #dddddd;
}
article.trangloai .content .left .list-item .item .text a:hover{
	opacity: 0.8;
}
.phantrang{
	font-weight: bold;
	font-size: 16px; 
	text-align:center;
	margin:28px 0 60px 0;
}
.phantrang span,
.phantrang a{
	background: linear-gradient(#fefefe, #d4d4d4);
	border: solid 1px #dddddd;
    color: #333;
   	padding: 8px 20px;
    margin: 0 5px;
    width: 42px;
    height: 42px;
    font-size: 16px;
}
.phantrang span,.phantrang a:hover{
    color: var(--color2);
    font-weight: bold;
    background: linear-gradient(#d4d4d4, #fefefe);
}
/*End Trang Loai*/

/*TRANG CHI TIẾT*/
.article-detail{}
.article-detail .container{padding: 2rem 0;}
.article-detail .container .left{margin: 0 auto;
    max-width: 1000px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;}
.article-detail .container .right{width: 260px;}
.article-detail .container .left .title{color: var(--color2); font-size: 2rem;line-height: 1.8rem;text-transform: uppercase;font-weight: bold;}
.article-detail .container .left .date-view{display: flex;align-items: center;justify-content: space-between;font-size: 1.2rem;color: #999;padding: 1rem 0;border-top: solid 1px #ccc;margin: 1.5rem 0;}
.article-detail .container .left .date-view span{color: #289159;}
.article-detail .content{font-size: 1.6rem;text-align:justify;}
.article-detail .content p{margin-block-start: 1em;margin-block-end: 1em;}
.article-detail .inner .relate-article{background-color: #ceebe0;border-radius: 3px;padding: 2rem;}
.article-detail .inner .relate-article ul{}
.article-detail .inner .relate-article ul h3{color: var(--color1);font-weight: bold;font-size: 1.8rem;text-transform: uppercase;margin-block-start: 0;}
.article-detail .inner .relate-article ul li{border-bottom:1px dashed #88a89c; padding-bottom: 15px;margin-bottom: 15px;position: relative;}
.article-detail .inner .relate-article ul li::after{content: '';background: url(../img/bc-icon-read.png) no-repeat var(--color1);width: 23px;height: 23px;background-position: center;background-size: 25%;border-radius: 50%;position: absolute; right: 0;top: 0;bottom: 0;margin: auto;}
.article-detail .inner .relate-article ul li:last-child{border-bottom: 0;margin-bottom: 0;padding-bottom: 0;}
.article-detail .inner .relate-article ul li a{display:flex;}
.article-detail .inner .relate-article .description{margin-left: 2rem}
.article-detail .inner .relate-article .description .title{font-weight: bold; font-size: 1.4rem;color: #333333;position: relative;padding-left: 2.2rem;}
.article-detail .inner .relate-article .description .title:hover{color: var(--color2);}
.article-detail .inner .relate-article .description .title::before{content: '';background-color: var(--color2);width: 4px;height: 4px;position: absolute;left: 0;top: 0;bottom: 0;margin: auto;}
.article-detail .content img{max-width:100%;height: auto !important;}
.article-detail .category{}
.article-detail .category li{}
.article-detail .category li a{display:block;-webkit-transition:ease 0.3s;-moz-transition:ease 0.3s;-ms-transition:ease 0.3s;-o-transition:ease 0.3s;transition:ease 0.3s;}
.article-detail .category li a:hover{background-color:#1171a5;color:#fff;padding-left:10px;}
.article-detail .title h1{ color: #ff6c00; line-height: 28px; font-size: 24px; }
.article-detail h2{
   	font-size: 16px;
    text-transform: uppercase;
    display: block;
    border-left: 5px solid var(--color3);
    position: relative;
    color: var(--color3);
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 10px 0;
}
.article-detail table {
	border-collapse: collapse;
	border: 2px solid #000;
	width: 100%;
	margin-bottom: 15px; 
}
.article-detail table th{
   font-weight: normal ;
}
.article-detail table tr td {
	border: 2px solid #000;
}
.article-detail table.bang-3-cot-1 {
	border-collapse: separate;
}
.article-detail table.bang-3-cot-1 tr td {
	padding: 5px 10px;
	background-color: #ffcdff;
}
.article-detail table.bang-3-cot-1 tr td:first-child(3) {
	background-color: #cdffff;
}
.article-detail table.bang-3-cot-1 tr td:last-child(3) {
	background-color: #ffffcd;
}
.article-detail table.bang-3-cot-1 tr:first-child td {
	background-color: #cdffcd;
	text-align: center;
}
.article-detail table.bang-3-cot-2 {
	border-collapse: separate;
}
.article-detail table.bang-3-cot-2 tr td {
	padding: 5px 10px;
	background-color: #ffcdff;
}
.article-detail table.bang-3-cot-2 tr:first-child td,
.article-detail table.bang-3-cot-2 tr td:first-child {
	background-color: #cdffcd;
}
.article-detail table.bang-3-cot-2 tr:first-child td {
	text-align: center;
}
.article-detail table.bang-2-cot-1 {
	border-collapse: separate;
}
.article-detail table.bang-2-cot-1 tr td {
	padding: 5px 10px;
}
.article-detail table.bang-2-cot-1 tr td:first-child {
	background-color: #cdffcd;
}
.article-detail table.bang-2-cot-1 tr td:last-child {
	background-color: #ffcdff;
}
/*.article-detail em { color: #e5262b; }
.article-detail strong em, .article-detail em strong { color: #006400; }*/
.article-detail a > em { color: #e5262b; }
.article-detail .hotline-chitiet { color: #ff0000; font-weight: bold; font-style: italic; }
blockquote {
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
}
blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
blockquote p {
  display: inline;
}
.khungxanh {
	border: 2px solid #ff9933;
    background: #fff8de;
    padding: 22px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #000;
    position: relative;
}
.khungxanh::before {
	content: '';
    background: url(../img/icon-khungxanh.png) no-repeat top;
    position: absolute;
    height: 100%;
    top: -1px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.khungtuvan {
    border-radius: 10px;
    padding: 5px 10px 10px;
    border: 2px solid var(--color2);
}
.hvr-ripple {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}
.hvr-ripple:before {
    content: '';
    position: absolute;
    border: var(--color2) solid 2px ;
    border-radius: 10px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    z-index: -1;
}
.hvr-ripple:before{
    -webkit-animation-name: hvr-ripple;
    animation-name: hvr-ripple;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
@-webkit-keyframes hvr-ripple {
        0%{
            opacity:0;
        }
        20%{
            opacity:1;
        }
        100% {
            top: -12px;
            right: -12px;
            bottom: -12px;
            left: -12px;
            opacity: 0;
          }
        }
@keyframes hvr-ripple{
        0%{
            opacity:0;
        }
        20%{
            opacity:1;
        }
        100% {
            top: -12px;
            right: -12px;
            bottom: -12px;
            left: -12px;
            opacity: 0;
          }
        }

.ImgThumbnail {
cursor: pointer;
transition: 0.3s;
}
.modal {
display: none;
position: fixed;
z-index: 9;
padding-top: 100px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0, 0, 0);
background-color: rgba(0, 0, 0, 0.9);
}
.modalImage {
margin: auto;
display: block;
width: 100%;
height: auto;
max-width: 700px;
}
/* Add Animation - Zoom in the Modal */
.modalImage{
  animation-name: zoom;
  animation-duration: 0.6s;
}
@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}
.close {
position: absolute;
top: 15px;
right: 235px;
color: #f1f1f1;
font-size: 40px;
font-weight: bold;
transition: 0.3s;
}
.close:hover,
.close:focus {
color: rgb(255, 0, 0);
cursor: pointer;
}

/*------------------------------end trang chi tiet------------------------*/
/*------------------------------SIDEBAR------------------------*/
@-moz-keyframes namviet-alo-circle-img-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg)
    }
    10% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg)
    }
    20% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg)
    }
    30% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg)
    }
    40% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg)
    }
    50% {
        -moz-transform: rotate(0) scale(1) skew(1deg)
    }
    100% {
        -moz-transform: rotate(0) scale(1) skew(1deg)
    }
}

@-webkit-keyframes namviet-alo-circle-img-anim {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }
    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }
    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }
    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }
    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }
    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }
    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }
}
@-o-keyframes namviet-alo-circle-img-anim {
    0% {
        -o-transform: rotate(0) scale(1) skew(1deg)
    }
    10% {
        -o-transform: rotate(-25deg) scale(1) skew(1deg)
    }
    20% {
        -o-transform: rotate(25deg) scale(1) skew(1deg)
    }
    30% {
        -o-transform: rotate(-25deg) scale(1) skew(1deg)
    }
    40% {
        -o-transform: rotate(25deg) scale(1) skew(1deg)
    }
    50% {
        -o-transform: rotate(0) scale(1) skew(1deg)
    }
    100% {
        -o-transform: rotate(0) scale(1) skew(1deg)
    }
}
.blink_me {
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-name: blinker;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
    animation-name: blinker;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
@-moz-keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}
@-webkit-keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}
@keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

#cd-lateral-nav {
    
}
#cd-lateral-nav ul{
    padding-bottom: 1rem;
}
#cd-lateral-nav .cd-navigation > .item {
    background: linear-gradient(#fcfff3, #e7e7cc);
    position: relative;
    border: solid 1px #c4c5a6;
    margin-top: 1px;
}
#cd-lateral-nav .cd-navigation > .home{
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    background: #006e2e!important;
    border: solid 1px #005122;
    position: relative;
}
#cd-lateral-nav .cd-navigation > .home::before{
   content: '';
   background: url(../img/icon-menu-sidebar.png) no-repeat;
   width: 13px;
   height: 10px;
   position: absolute;
   left: 13px;
   top: 0;
   bottom: 0;
   margin: auto;
}
#cd-lateral-nav .cd-navigation > .home > a{
   	color: #fff !important;
   	padding-left: 35px!important;
}
#cd-lateral-nav .cd-navigation > .item > a {
    color: #006e2e;
    line-height: 1;
    font-size: 1.6rem;
    text-transform: uppercase;
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    margin-right: 50px;
    display: flex;
}
#cd-lateral-nav .cd-navigation > .item:hover > a{
	padding-left: 30px;
}
#cd-lateral-nav .cd-navigation > .item::after {
    content: '';
    display: block;
   	margin-bottom: 1px;
}
#cd-lateral-nav .cd-navigation > .item:last-child::after{
     border-bottom: none;
}
#cd-lateral-nav .has-children > .sub-1 {
    content: '';
    display: block;
    height: 46px;
    width: 50px;
    position: absolute;
    top: 0;
    right: 0;
   	background-image: url(../img/sub-2.png);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
}
#cd-lateral-nav .has-children > .sub-1.submenu-open {
    background-image: url(../img/sub-1.png);
    background-repeat: no-repeat;
    background-position: center center;
}
#cd-lateral-nav .cd-navigation > .item.has-children .sub-menu {
    display: none;
}
#cd-lateral-nav .cd-navigation > .item.has-children > .sub-menu > li {
    position: relative;
    border-top: 1px solid var(--color3);
}
#cd-lateral-nav .cd-navigation > .item.has-children > .sub-menu > li > a {
    color: #ffffff;
    padding: 10px 50px 10px 20px;
    display: block;
    position: relative;
    font-size: 14px;
}
#cd-lateral-nav .has-children > .sub-menu > li > .sub-2.sub-open{
    background: url(../img/sub-1.png) no-repeat center center;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    top: 12px;
    right: 12px;
}
#cd-lateral-nav .has-children > .sub-menu > li > .sub-2.submenu-open{
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
#cd-lateral-nav .has-children > .sub-menu > li.has-child > .sub-child{
    display: none;
}
#cd-lateral-nav .has-children > .sub-menu > li.has-child > .sub-child li {
    position: relative;
    border-top: 1px solid #bdd0d1;
}
#cd-lateral-nav .has-children > .sub-menu > li.has-child > .sub-child li::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background-color: #01bace;
    position: absolute;
    top: 0;
    left: 30px;
    bottom: 0;
    margin: auto;
}
#cd-lateral-nav .has-children > .sub-menu > li.has-child > .sub-child li a {
    padding-top: 10px;
    padding-bottom: 10px;
    display: block;
    margin-left: 48px;
    color: #666666;
    font-size: 88.88888888888889%;
}
#cd-lateral-nav.lateral-menu-is-open {
    -webkit-transition: -webkit-transform .4s 0s, visibility 0s 0s;
    -moz-transition: -moz-transform .4s 0s, visibility 0s 0s;
    transition: transform .4s 0s, visibility 0s 0s;
    -webkit-overflow-scrolling: touch;
    visibility: visible;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
#wrapper.lateral-menu-is-open, header#masthead.lateral-menu-is-open, #main-menu.lateral-menu-is-open {
    -webkit-transform: translateX(610px);
    -moz-transform: translateX(610px);
    -ms-transform: translateX(610px);
    -o-transform: translateX(610px);
    transform: translateX(610px);
}
#cd-lateral-nav .has-children > .sub-menu > li > .sub-2 {
    content: '';
    display: block;
    height: 55px;
    width: 49px;
    position: absolute;
    top: -10px;
    right: 0;
    background: url(../img/sub-2.png) no-repeat center center;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: .2s;
    -moz-transition-duration: .2s;
    transition-duration: .2s;
}
/*------------------------------end sidebar------------------------*/

/*FOOTER*/
footer{
}
section.thongtin {
	background-color: #e8e8e8;
	border-top: solid 1px #9e9e9e;
	border-bottom: solid 1px #2b8698;
	padding: 20px 0;
}

section.thongtin .box-1 {
}

section.thongtin .box-1 ul {
	padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0 1rem;
}

section.thongtin .box-1 ul li {
	border-left: solid 1px #d4d4d4;
    display: flex;
}
section.thongtin .box-1 ul li:first-child{
	border-left: 0;
}

section.thongtin .box-1 ul li .divclr {
	margin: auto;
}
section.thongtin .box-1 ul li a{
	display: flex;
	align-items: center;
}
section.thongtin .box-1 ul li a .avatar-1,
section.thongtin .box-1 ul li a .avatar-2,
section.thongtin .box-1 ul li a .avatar-3,
section.thongtin .box-1 ul li a .avatar-4 {
	float: left;
	display: block;
}

section.thongtin .box-1 ul li a .avatar-1 {
	background: url(../img/ava_lienhe_1.png) no-repeat;
	width: 43px;
	height: 43px;
}

section.thongtin .box-1 ul li a .avatar-2 {
	background: url(../img/ava_lienhe_2.png) no-repeat;
	width: 48px;
	height: 48px;
}

section.thongtin .box-1 ul li a .avatar-3 {
	background: url(../img/ava_lienhe_3.png) no-repeat;
	width: 43px;
	height: 35px;
}

section.thongtin .box-1 ul li a .avatar-4 {
	background: url(../img/ava_lienhe_4.png) no-repeat;
	width: 23px;
	height: 33px;
}

section.thongtin .box-1 ul li a .text {
	float: left;
	margin-left: 1rem;
	text-align: left;
	line-height: 20px;
	text-transform: uppercase;
}

section.thongtin .box-1 ul li a .text .row-1 {
	color: #666666;
	font-size: 1.2rem;
}

section.thongtin .box-1 ul li a .text .row-2 {
	font-size: 1.4rem;
	line-height: 1.8rem;
	color: var(--color1);
	font-weight: bold;
}
section.thongtin .box-1 ul li:first-child a .text .row-2 {
	color: var(--color2);
	font-size: 1.8rem;
}
footer .lienhe{
	background-color: var(--color3);
	border: solid 1px #cccccc;
	padding: .8rem 4.8rem;
}
footer .lienhe .title{
	font-size: 1.6rem;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	text-align: center;
	padding: 1rem;
    position: relative;
}
footer .lienhe .title:after{
	content: '';
	width: 239px;
	height: 1px;
	background-color: #d4d4d4;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
footer .lienhe .sub-title{
	font-size: 1.4rem;
	color: #d0f6ff;
	text-align: center;
	margin-top: 1.5rem;
}
footer .lienhe .box{
	display: flex;
    justify-content: space-between;
    background-color: var(--color1);
    margin: 1rem 0;
    padding: 3rem 0;
    color: #fff;
    font-size: 1.6rem;
}
footer .lienhe .box .mini-title{
	text-transform: uppercase;
	font-weight: bold;
}
footer .lienhe .box .contact,
footer .lienhe .box .menu-ft,
footer .lienhe .box .map-ft{
	width: calc(100% / 3);
	padding: 0 3rem;
	border-right: solid 1px var(--color3);
}

footer .lienhe .box .contact{
	
}
footer .lienhe .box .contact > div{
	display: flex;
	align-items: center;
	padding: 1.5rem 0;	
}
footer .lienhe .box .contact > div{
	border-bottom: solid 1px var(--color3);
}
footer .lienhe .box .contact > div:first-child,
footer .lienhe .box .contact > div:last-child{
	border-bottom: 0;
}
footer .lienhe .box .contact .img {
   	width: 18px;
    margin: auto 0;
    margin-right: 1rem;
}
footer .lienhe .box .contact p{
	color: #fff;
	line-height: 2rem;
}
footer .lienhe .box .contact p.hl{
}
footer .lienhe .box .menu-ft{

}
footer .lienhe .box .menu-ft > div{
	text-transform: uppercase;
	padding: 1.5rem 0;
}
footer .lienhe .box .menu-ft > div{
	border-bottom: solid 1px var(--color3);
}
footer .lienhe .box .menu-ft > div:first-child,
footer .lienhe .box .menu-ft > div:last-child{
	border-bottom: 0;
}
footer .lienhe .box .menu-ft a{
	color: #fff;
}
footer .lienhe .box .map-ft{
	border-right: 0;
}
footer .lienhe .box .map-ft .mini-title{
	padding: 1.5rem 0;
}

section.footer-fixed{
	background: var(--color2);
	padding: .9rem;
}
section.footer-fixed .content{
	display: flex;
	align-items: center;
	position: relative;
}
section.footer-fixed .content .ft-phone{
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-size: 2.1rem;
	margin-left: 4rem;
}
section.footer-fixed .content .ft-phone span{
	font-weight: bold;
}
section.footer-fixed .content .ft-form form input[type=text] {
    width: 229px;
    padding: .9rem;
    border-radius: 4px;
    border: none;
    outline: none;
    font-size: 1.2rem;
}
section.footer-fixed .content .ft-form form input[type=submit] {
    padding: .9rem 0;
    width: 63px;
    background-color: var(--color1);
    color: #fff;
    text-transform: uppercase;
    font-size: 1.2rem;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    outline: none;
    cursor: pointer;
    margin-left: 5px;
}
section.footer-fixed .content .ft-tuvan{
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: center;
	position: absolute;
    right: 193px;
    bottom: 0;
}
section.footer-fixed .content .ft-tuvan a{
	position: relative;
}
section.footer-fixed .content .ft-tuvan a:nth-child(1):hover::before,
section.footer-fixed .content .ft-tuvan a:nth-child(2):hover::before,
section.footer-fixed .content .ft-tuvan a:nth-child(3):hover::before{
	background-color: #093625;
	width: 100%;
	text-align: center;
	padding: .2rem 0;
	color: #fff;
	position: absolute;
	top: -25px;
	left: 0;
	right: 0;
	margin: auto;
	border-radius: 5px;
	font-size: 1rem;
	font-family: 'Times New Roman';
	font-size: 1rem;
}
section.footer-fixed .content .ft-tuvan a:nth-child(1):hover::before{
	content: 'Gọi Điện';
}
section.footer-fixed .content .ft-tuvan a:nth-child(2):hover::before{
	content: 'Tư Vấn';
}
section.footer-fixed .content .ft-tuvan a:nth-child(3):hover::before{
	content: 'Đặt Hẹn';
}
section.footer-fixed .content .ft-tuvan a:nth-child(1):hover::after,
section.footer-fixed .content .ft-tuvan a:nth-child(2):hover::after,
section.footer-fixed .content .ft-tuvan a:nth-child(3):hover::after{
	content: '';
	border: 3px solid transparent;
    border-top : 3px solid #093625;
    width: 0;
    height: 0;
    position: absolute;
	top: -10px;
	left: 0;
	right: 0;
	margin: auto;
}
section.footer-fixed .content .qr-code{
	position: absolute;
	right: 0;
	bottom: -10px;
}
@-webkit-keyframes ex {
	0% {
		transform:translateY(-10px);
	}
	50% {
		transform:translateY(0);
	}
	100% {
		transform:translateY(-10px);
	}
}
/*BREADCRUMB*/
.breadcrumb_main{
	background-color: #e5f7e5;
}
.breadcrumb_main .content{
	display: flex;
	align-items: center;
    padding: 1.6rem 0;
}
.breadcrumb_main .content .breadcrumb{
    display:inline-block;
    position: relative;
    margin-right: 1rem;
    padding-right: 1rem;
    font-size: 1.2rem;
}
.breadcrumb_main .content .breadcrumb::after{
	content: "";
	position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
	width: 10px;
    height: 1px;
    background-color: var(--color2);
}
.breadcrumb_main .content .breadcrumb:last-child:after{
    content: none;
}
.breadcrumb_main .content .breadcrumb a{
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #999;
}
/*------------END BREADCRUM--------------*/