:root {
	--background-static: #e50b0b;
	--color-static: #343434;
	--background-hover: #004ea2;
	--color-hover: #e50b0b;
}

@font-face {
	font-family: 'Roboto-BoldItalic';
	src: url('font/Roboto-BoldItalic.woff');
	font-display: block;
}

@font-face {
	font-family: 'Roboto-Regular';
	src: url('font/Roboto-Regular.woff');
	font-display: block;
}

@font-face {
	font-family: 'Roboto-Bold';
	src: url('font/Roboto-Bold.woff');
	font-display: block;
}

@font-face {
	font-family: 'Roboto-Black';
	src: url('font/Roboto-Black.woff');
	font-display: block;
}

@font-face {
	font-family: 'Roboto-Medium';
	src: url('font/Roboto-Medium.woff');
	font-display: block;
}

@font-face {
	font-family: 'UTM-Alberta-Heavy';
	src: url('font/UTM-Alberta-Heavy.woff');
	font-display: block;
}

body {
	font-size: 14px;
	line-height: 25px;
	background: #fff;
	font-family: Arial, Helvetica, sans-serif;
	color: #343434;
	position: initial !important;
}

@font-face {
	font-family: 'MYRIADPRO';
	src: url('font/MYRIADPRO.OTF');
	font-display: block;
}

.hover_scale {
	overflow: hidden;
	display: block;
}

.hover_scale img {
	transition: .5s;
}

.hover_scale img:hover {
	transform: scale(1.2);
}

.center {
	width: 1200px;
	margin: auto;
}

div#wapper {
	margin: auto;
	max-width: 1200px;
	background: #fff;
}

.content_sp {
	margin: 0 -10px;
}
.w_top{
	background: #ebebeb;
}
.mod_top{
	height: 35px;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
	font-family: 'Roboto-Regular';
	color: #3f3f3f;
}
.mod_top .left{
	display: flex;
}
.mod_top .left p{}
.mod_top .left p:first-child{
    margin-right:40px;
}
.mod_top .left p img{
	margin-right:5px;;
}
#w_header {background: #fff url(images/bg_header.jpg) no-repeat right center;}

div#header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	height: 107px;
	padding-right: 170px;
}

.holtine_hd {background: url(images/icon_hotline.png) no-repeat left center;padding-left: 55px;text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 2px #fff;}

.holtine_hd .td1 {
	font-family: 'Roboto-Medium';
	font-size: 15px;
	color: #313131;
}

.holtine_hd .sodt {
	color: #cd0000;
	font-size: 25px;
	font-family: 'UTM-Alberta-Heavy';
}

.menu_login {
	list-style: none;
	position: absolute;
	top: 5px;
	right: 70px;
}

.menu_login li {
	display: inline-block;
}

.menu_login li a {
	text-decoration: none;
	color: #fff;
	border-right: 1px solid #fff;
	padding: 0px 5px;
}

div#lang {
	position: absolute;
	top: 5px;
	right: 10px;
}

div#lang a img {
	border: 1px solid #fff;
	margin-left: 3px;
}

.sang_header {
	position: absolute;
	top: 35px;
	left: 80px;
}

div#menu_mobi {
	display: block;
}

#w_menu {
	background: var(--background-static);
}
@-webkit-keyframes spMenuFadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 30px, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
	}
}
@keyframes spMenuFadeInUp {
	0% {
		opacity: 0;
		transform: translate3d(0, 30px, 0);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}
div#menu {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 45px;
	line-height: 45px;
}

div#menu ul {
	list-style: none;
	display: flex;
}

div#menu ul li {
	position: relative;
	z-index: 111;
}

div#menu ul li.line {
	height: 45px;
	width: 2px;
	background-image: linear-gradient(to right,#fff 0 50%,#000 50% 100%);
}

div#menu ul li a {
	color: #fff;
	font-size: 15px;
	padding: 0px 20px;
	text-decoration: none;
	text-transform: uppercase;
	font-family: 'Roboto-Bold';
	height: 100%;
	display: flex;
	align-items: center;
}

div#menu ul li a:hover, div#menu ul li a.active, div#menu ul li a.active2 {background: var(--background-hover);}

div#menu ul li ul {
	overflow: hidden;
	display: block;
	max-height: 0px;
	max-width: 0px;
	opacity: 0;
	position: absolute;
	top: 101%;
	left: 0px;
	width: 220px;
	padding: 0;
	box-shadow: 0 1px 2px 2px rgba(0, 0, 0, 0.2);
	background: var(--background-static);
}

div#menu ul li:hover>ul {
	overflow: visible;
	max-height: 3000px;
	max-width: 3000px;
	opacity: 1;
	-webkit-animation: spMenuFadeInUp 400ms;
	animation: spMenuFadeInUp 400ms;
}

div#menu ul li ul li {
	width: 100%;
	line-height: 1.5;
	border-bottom: 1px solid rgba(0, 0, 0, .5);
}

div#menu ul li ul li:last-child {
	border-bottom: none;
}

div#menu ul li ul li a {
	padding: 6px 10px;
	text-transform: none;
}

div#menu ul li ul li ul {
	left: 221px;
	top: 0px;
}

div#search {
	background: #fff;
	height: 35px;
	width: 250px;
	display: flex;
	align-items: center;
	justify-items: center;
	justify-content: space-between;
}

div#search input {
	border: none;
	background: none;
	outline: none;
	color: #777;
	padding: 0 10px;
	width: 100%;
}

div#search a {
	color: #222;
	font-size: 14px;
	cursor: pointer;
	width: 30px;
}

div.tieude {
	font-family: 'Roboto-Medium';
	font-size: 16px;
	margin-bottom: 25px;
	color: #555;
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
}

div.tieude:after {
	content: '';
	width: 45px;
	height: 2px;
	background-color: #b49149;
	margin-top: 5px;
}

div.danhmuc {
	margin-bottom: 20px;
}

div#danhmuc ul {
	list-style: none;
}

div#danhmuc ul li {
}

div#danhmuc ul li a {
	color: #666;
	font-size: 13px;
	position: relative;
	border-bottom: 1px solid #eaeaea;
	padding: 6px 10px 6px 20px;
	text-transform: uppercase;
	font-family: 'Roboto-Regular';
	display: block;
}

div#danhmuc ul li a:before {
	position: absolute;
	content: '\f0da';
	font-family: FontAwesome;
	left: 3px;
	top: 7px;
	transition: all 0.5s;
}

div#danhmuc ul li a:hover {
	color: #ffb72a;
	transition: 0.4s;
}

div#danhmuc ul li ul li a {
	padding-left: 40px;
}

div#danhmuc ul li ul li a:before {
	left: 20px;
}


.phone {
	background: url(images/bg_hl_l.png) no-repeat left center;
	position: relative;
	height: 63px;
	box-sizing: border-box;
	padding-left: 100px;
	padding-top: 29px;
	color: #da2522;
	font-size: 17px;
	font-weight: bold;
}

.item_hotro {
	font-size: 13px;
}

.item_hotro span {
	float: left;
	color: #009f0f;
	margin-top: 5px;
}

.item_hotro a {
	float: left;
	margin-left: 5px;
}

.item_hotro p {
	color: #222222;
}

form#frm_dknt {padding: 0 90px;}
.flex_dknt{
    display: flex;
    flex-flow: row wrap;
}
.flex_input{
    width: calc(100% - 330px);
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    padding-right: 10px;
}
.flex_dknt textarea{
    width: 330px;
    border: none;
    outline: none;
    padding: 15px;
    font-family: 'Roboto-Regular';
    color: #000;
    font-size: 14px;
    height: 90px;
    border-radius: 5px;
}
form#frm_dknt input[type='text'] {
	width: calc(100%/2 - 5px);
	padding: 0px 15px;
	border: none;
	outline: none;
	font-family: 'Roboto-Regular';
	color: #000;
	font-size: 14px;
	height: 40px;
	margin-bottom: 10px;
	border-radius: 5px;
}

form#frm_dknt input[type='text']::placeholder {
	font-family: 'Roboto-Regular';
	font-size: 14px;
}

form#frm_dknt input[type='button'],form#frm_dknt input[type='reset'] {
	color: #fff;
	width: 130px;
	height: 37px;
	border: none;
	cursor: pointer;
	outline: none;
	border-radius: 5px;
	background: #d70000;
	text-transform: uppercase;
	font-size: 14px;
	font-family: 'Roboto-Black';
}
form#frm_dknt input[type='button']{
	margin-right:5px
}
div#main_content {}

div#left {
	width: 280px;
	float: left;
	position: sticky;
	top: 50px;
}

div#right {
	float: right;
	overflow: hidden;
	width: calc(100% - 280px);
	padding-left: 20px;
}

div.tieude_giua {
    color: #004ea2;
    font-size: 30px;
    text-transform: uppercase;
    font-family: 'UTM-Alberta-Heavy';
    text-align: center;
    line-height: 40px;
    background: url(images/tieude-index.png) no-repeat bottom center;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

div.wap_item {
}

.w_product {
	display: flex;
	flex-flow: row wrap;
	margin: 0 -10px;
}

.item_spindex {
	margin: 0 10px;
}

.item_sp1 {
	width: calc(100%/4 - 20px);
	margin: 0 10px 20px 10px;
}

.item_sp {
	position: relative;
	font-family: 'Roboto-Regular';
	border: 1px solid #ebebeb;
	background: #fff;
	padding: 5px;
}

.item_sp .img {
	overflow: hidden;
	position: relative;
	display: block;
}

.item_sp .img a.a_img img {
	width: 100%;
	transition: 1s;
}

.item_sp .ten {
	color: #363636;
	font-size: 15px;
	display: block;
	text-align: center;
	font-family: 'Roboto-Black';
	font-weight: normal;
	line-height: 23px;
	text-transform: uppercase;
}

.item_sp .ten:hover {
	color: var(--color-hover);
}

.item_sp .gia {
	display: flex;
	justify-content: center;
	font-size: 14px;
}

.item_sp .gia .giaban {
	color: #db2121;
}

.item_sp .gia .giacu {
	text-decoration: line-through;
	color: #999999;
	margin-left: 15px;
}

.item_sp .giamgia {
	position: absolute;
	width: 40px;
	height: 40px;
	background: #f00;
	color: #fff;
	right: 10px;
	top: 10px;
	z-index: 1;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.item_sp .info {
	padding: 20px;
}
.item_sp .info .mota{
	color: #575757;
	text-align: center;
	-webkit-line-clamp:2;
}

@-webkit-keyframes star {
	0% {
		-webkit-transform: rotate(0) scale(0);
	}

	50% {
		-webkit-transform: rotate(180deg) scale(1.5);
	}

	100% {
		-webkit-transform: rotate(360deg) scale(0);
	}

}

@-o-keyframes star {
	0% {
		-o-transform: rotate(0) scale(0);
	}

	50% {
		-o-transform: rotate(180deg) scale(1.5);
	}

	100% {
		-o-transform: rotate(360deg) scale(0);
	}

}

@-moz-keyframes star {
	0% {
		-moz-transform: rotate(0) scale(0);
	}

	50% {
		-moz-transform: rotate(180deg) scale(1.5);
	}

	100% {
		-moz-transform: rotate(360deg) scale(0);
	}

}

.start-animate {
	z-index: 99999999999999999 !important;
	position: absolute;
	animation: star linear 1.75s infinite;
	-moz-animation: star linear 1.75s infinite;
	-webkit-animation: star linear 1.75s infinite;
	-o-animation: star linear 1.75s infinite;
}

@keyframes star {
	0% {
		transform: rotate(0) scale(0);
	}

	50% {
		transform: rotate(180deg) scale(1.5);
	}

	100% {
		transform: rotate(360deg) scale(0);
	}

}

.fcb_map_footer {
	text-decoration: underline;
	color: #000;
	display: block;
}

.fcb_dknt {
	display: block;
	color: #000;
}

/*bottom*/
#video{
	display: none;
}
.mod_bottom {
	display: flex;
	flex-flow: row wrap;
	overflow: hidden;
}

.hinhanhphai {
	width: calc(100% + 10px);
	margin: 0 -5px;
	padding: 15px 60px 8px 60px;
}

.hinhanhphai .slick-prev {
	opacity: 1;
	width: 20px;
	height: 35px;
	background: url(images/slick_l.png) no-repeat center center;
	margin: 0;
	top: calc(50% - 17px);
	left: 35px;
}

.hinhanhphai .slick-next {
	opacity: 1;
	width: 20px;
	height: 35px;
	background: url(images/slick_r.png) no-repeat center center;
	margin: 0;
	top: calc(50% - 17px);
	right: 35px;
}

.flex_tintuc {
	width: 60%;
	padding-right: 40px;
}

.mod_video {
	width: 40%;
}
.khunghinhanh{
	background: #363636;
}
.tieude_titnuc {
    font-size: 27px;
    text-transform: uppercase;
    font-family: 'UTM-Alberta-Heavy';
    line-height:40px;
    color:#000;
    margin-bottom:20px;
}

.tintuc_1 {
	text-align: justify;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 51%;
}

.tintuc_1 .xemthem {
	color: #fff;
	text-transform: uppercase;
	font-family: 'Roboto-Bold';
	margin-top: 20px;
	width: 120px;
	text-align: center;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--background-hover);
	font-size: 13px;
}

.tintuc_1 a.img {
	display: block;
	margin-bottom: 10px;
}

.tintuc_1 a.img img {
	width: 100%;
}

.tintuc_conlai {
	max-height: 395px;
	overflow: hidden;
	width: 49%;
	padding-left: 15px;
}

.tintuc_1 a.ten {
	-webkit-line-clamp: 2;
	color: #000;
	margin-bottom: 5px;
	font-family: 'Roboto-Bold';
	line-height: 23px;
	font-size: 16px;
}

.tintuc_1 a.ten:hover {
	color: var(--color-hover);
}

.tintuc_1 p.mota {
	color: #333333;
	-webkit-line-clamp: 3;
	font-family: 'Roboto-Regular';
	line-height: 20px;
}

.item_ttcl {
	margin-bottom: 15px;
}

.item_ttcl a.img {
	float: left;
	margin-right: 10px;
}

.item_ttcl p.mota {
	color: #333333;
	text-align: justify;
	font-family: 'Roboto-Regular';
	-webkit-line-clamp: 2;
	line-height: 20px;
}

.item_ttcl a.ten {
	color: #000;
	font-family: 'Roboto-Bold';
	font-size: 14px;
	-webkit-line-clamp: 2;
	line-height: 20px;
	margin-bottom: 5px;
}

.item_ttcl a.ten:hover {
	color: var(--color-hover);
}

.content_titnuc {
	display: flex;
	flex-flow: row wrap;
}

.item_vd1 {
	display: inline-block;
	position: relative;
	line-height: 0;
}

.item_vd1 .img1 {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.item_vd1 .img2 {
	width: 480px !important;
	height: 290px !important;
}

.item_vdcl1 {
	display: inline-block;
	position: relative;
	margin: 0 5px;
}

.item_vdcl1 .img1 {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	transform: scale(0.5);
}

.item_vdcl1 .img2 {
	width: 100%;
	box-sizing: border-box;
	height: 85px;
}

/*end bottom*/
#w_copyright {
	background: #464646;
}

#mod_copyright {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff;
	height: 50px;
	font-family: 'Roboto-Regular';
}

#w_footer {
	background: var(--background-static);
}

#footer {
	color: #fff;
	font-family: 'Roboto-Regular';
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

.item_ft:nth-child(1) {
	width: 50%;
}

.item_ft:nth-child(2) {width: 50%;}

.code_bando iframe{
	width:100%!important;
	height: 400px!important;
}
.ten_cty {
	font-size: 36px;
	text-transform: uppercase;
	margin-bottom: 20px;
	font-weight: normal;
	font-family: 'UTM-Alberta-Heavy';
	line-height: 40px;
}

.td_ft {
	text-transform: uppercase;
	position: relative;
	font-size: 16px;
	font-family: 'Roboto-Regular';
	margin-bottom: 10px;
	display: flex;
	flex-direction: column;
}

.td_ft:after {
	width: 32px;
	height: 2px;
	background: #fff;
	content: '';
	margin-top: 10px;
}

.item_tktc p {
	border-bottom: 1px solid #d08b25;
	padding: 9px 0;
}

.item_tktc p img {
	margin-right: 10px;
}

.item_tktc p span {
	float: right;
}
.cart {
    display: flex;
    color: #585858;
    font-size: 12px;
    background: #fff;
    border-radius: 50%;
    z-index: 111;
    box-shadow: 0 0 5px #555;
    position: fixed;
    right: 17px;
    width: 50px;
    height: 50px;
    bottom: 365px;
    align-items: center;
    justify-content: center;
}

.khunggio {
    text-align: left;
    float: right;
}

.cart img {
    width: 25px;
}

.box-gh {
    text-align: center;
    position: absolute;
    bottom: 10px;
    right: 6px;
    line-height: normal;
}

.kqgh {
    background: #000;
    font-size: 11px;
    color: #fff;
    font-weight: bold;
    border-radius: 3px;
    padding: 2px 4px;
    display: inline-block;
}
/*-- news run --*/
#tintuc_chay {
	padding: 3% 0;
}

.content_news {
	margin: 0 -10px;
}

.item_ttnb {
	margin: 0 10px;
}

.item_ttnb .img {
	display: block;
	overflow: hidden;
}

.item_ttnb .img img {
	width: 100%;
}

.item_ttnb .ten {
	font-family: 'Roboto-Bold';
	text-transform: uppercase;
	color: #000;
	line-height: 23px;
	-webkit-line-clamp:2;
	font-size: 14px;
    margin: 10px 0 2px 0;
}
.item_ttnb .ten:hover{
	color: var(--color-hover);
}

.item_ttnb .mota {
	text-align: justify;
	-webkit-line-clamp: 3;
}

/* -- end new run --*/
.w_ditac{
	background: #ebebeb;
}

.doitac_chay {
	padding: 0 35px;
}
.doitac_chay .slick-prev{
    width: 25px;
    height: 55px;
    background: url(images/slick_left.png) no-repeat center center;
    opacity: 1;
    margin: 0;
    top: calc(50% - 25px);
}
.doitac_chay .slick-next{
    width: 25px;
    height: 55px;
    background: url(images/slick_right.png) no-repeat center center;
    opacity: 1;
    margin: 0;
    top: calc(50% - 25px);
}

.item_doitac {
	margin: 0 5px;
	background: #fff;
}

#slider {
	width: 100%;
	position: relative;
	overflow: hidden;
	line-height: 1.5;
}

#slider img {
	max-width: initial !important;
}

.amazingslider-text-1 {
	display: none;
	width: 500px;
	max-width: 100%;
	padding: 0;
	margin-left: 80px;
}

#slider .amazingslider-title-1 {
	font-size: 35px;
	text-transform: uppercase;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	color: #fff;
	position: relative;
	padding-bottom: 20px;
}

#slider .amazingslider-description-1 {
	display: block;
	position: relative;
	font-style: normal;
	color: #fff;
	font-size: 20px;
	font-family: 'Montserrat', sans-serif;
	margin: 20px 0 40px 0;
}

.amazingsliderbutton {
	width: 130px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #fff;
	color: #fff;
	text-transform: uppercase;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 14px;
	background: none;
	cursor: pointer;
	outline: none;
}

.amazingslider-nav-1 {
	display: none !important;
}

.new_chinhsach {
}

.new_chinhsach a {
	font-family: 'Roboto-Regular';
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, .3);
	display: flex;
	align-items: center;
	padding: 8.5px 0;
}

.new_chinhsach a i {
	font-size: 5px;
	margin: 5px 15px 0 5px;
}

.new_chinhsach a:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.new_chinhsach a:hover {
	color: #fff200;
}

.xemthem_danhmuc {
	color: #fff;
	width: 130px;
	height: 37px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	margin-top: 20px;
	font-family: 'Roboto-Black';
	font-size: 15px;
	border: 2px solid #004ea2;
	color: #004ea2;
}
.item_vschon{
	display: flex;
	margin: 0 15px;
	font-family: 'Roboto-Regular';
	align-items: center;
}
.item_vschon .img{
    width: 80px;
}
.item_vschon .img img{
	transition: .5s;
}
.item_vschon:hover img{
	transform: rotate(45deg);
}
.item_vschon .info{
    width: calc(100% - 80px);
    padding-left: 10px;
}
.item_vschon .info .ten{
	color: #d60000;
	text-transform: uppercase;
	font-family: 'Roboto-Black';
	display: block;
}
.item_vschon .info .mota{
    -webkit-line-clamp: 2;
    color: #404040;
    font-size: 13px;
    line-height: 20px;
}
.w_vschon{
	background: #f5f5f5;
}
.vschon_run{
	margin: 0 -15px
}
.w_about{
	background: url(images/bg_about.jpg) no-repeat bottom center;
	background-size: 100%;
}
.mod_about{
	text-align: center;
}
.title-about{
	color: #d60000;
	font-size: 38px;
	text-transform: uppercase;
	font-family: 'UTM-Alberta-Heavy';
	line-height: 40px;
	margin-bottom: 30px;
}
.w_spnb{
	background: #f2f2f2;
}
.title-index{
	color: #004ea2;
	font-size: 30px;
	text-transform: uppercase;
	font-family: 'UTM-Alberta-Heavy';
	text-align: center;
	line-height: 30px;
}
.mota-index{
	text-align: center;
	color: #000;
	font-size: 16px;
	background: url(images/tieude-index.png) no-repeat bottom center;
	padding-bottom: 20px;
	margin-bottom: 20px;
	margin-top: 7px;
}
.w_albumanhthucte{
	background: url(images/bg_albumanh.jpg) no-repeat top center;
	background-size: cover;
}
.title-index-1{
	color: #fff;
	font-size: 30px;
	text-transform: uppercase;
	font-family: 'UTM-Alberta-Heavy';
	text-align: center;
	line-height: 30px;
}
.mota-index-1{
	text-align: center;
	color: #fff;
	font-size: 16px;
	background: url(images/tieude-dknt.png) no-repeat bottom center;
	padding-bottom: 20px;
	margin-bottom: 20px;
	margin-top: 7px;
}
.content_thucte{
	margin: 0 -10px;
}
.item_thucte{
	margin: 0 10px;
}
.item_thucte .ten{
	color: #fff;
	display: block;
	text-transform: uppercase;
	font-size: 15px;
	font-family: 'Roboto-Black';
	text-align: center;
	margin-top: 15px;
}
.item_thucte .ten:hover{
	color: #ff0;
}
.item_thucte .img{
	position: relative;
}
.item_thucte .img a{
	display: block;
}
.item_thucte .img a img{
	width: 100%;
}
.item_thucte .img .info{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,72,150,.8);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	transition: .4s;
	opacity: 0;
}
.item_thucte:hover .info{
	opacity:1;
}
.item_thucte .img .info .div{
	position:relative;
	padding:20px 0;
}
.item_thucte .img .info .div:before{
	content:'';
	width:147px;
	height:2px;
	background:#fff;
	position:absolute;
	top:0;
	left:0;
}
.item_thucte .img .info .div:after{
	content:'';
	width:147px;
	height:2px;
	background:#fff;
	position:absolute;
	bottom:0;
	right:0;
}
.item_thucte .img .info .mota{
	color: #fff;
	-webkit-line-clamp: 4;
	font-family: 'Roboto-Regular';
	text-align:center;
}
.w_dknt{
	background: url(images/bg_dknt.jpg) no-repeat top center;
	background-size: cover;
}
.social_footer{
	display:flex;
	align-items:center;
	flex-flow:row wrap;
	margin: 20px 0;
}
.social_footer span{font-family: 'Roboto-Bold';font-size: 17px;text-transform: uppercase;}
.social_footer a{
    margin-left: 5px;
    transition: .4s;
}
.social_footer a:hover{
	transform:rotate(20deg);
}
.tags_tukhoa{
    display: flex;
    flex-flow: row wrap;
}
.title-tags{
    font-family: 'Roboto-Bold';
    font-size: 17px;
    text-transform: uppercase;
    width: 100%;
    margin-bottom: 20px;
}
.tags_tukhoa a{
    color: #fff;
    font-size: 13px;
    border: 1px solid #fff;
    padding: 5px 10px;
    margin: 0 5px 5px 0;
    transition:.4s;
}
.tags_tukhoa a:hover{
	background:#fff;
	color:var(--color-hover);
}
.album_congtrinh{
	max-width: 620px;
	margin: auto;
}
/*-- css reponsive --*/
#menu_mb{
	height: 42px;
	overflow: hidden;
	display: none;
}
@media (max-width: 1024px){
	div#right{
		width: 100%;
		padding-left: 0;
	}
	div#left{
		display: none;
	}
	.item_sp .info{
		padding: 10px;
	}
	.center {
	    width: calc(100% - 20px);
	}	
	.padding_top_bottom{
		padding: 30px 0!important;
	}
	.khung_chay{
		overflow: hidden!important;
	}
	.ten_baiviet{
		font-size: 16px!important;
	}
	.w_product{
		margin:0 -5px;
	}
	.item_sp{
		margin:0 5px 10px 5px;
	}
	.item_sp1{
		width:calc(100%/4 - 10px);
	}
	.content_video, .wap_box_new{
		margin:0 -5px;
	}
	.item_video, .box_news{
		margin:0 5px 10px 5px!important;
	}
	.content_sp, .content_thucte{
		margin:0 -5px;
	}
	.item_spindex, .item_thucte{
		margin:0 5px;
	}
	#menu{
		display:none!important;
	}
	#menu_mb{
		display:block;
	}
}
@media (max-width: 966px){
	#w_copyright{
		padding-bottom: 50px;
	}
}
@media (max-width: 800px){
	.flex_dknt textarea{
		width: 100%;
		margin-bottom: 10px;
	}
	.flex_input{
		width: 100%;
		padding-right: 0;
	}
	form#frm_dknt{
		padding: 0;
	}
	.title-about, .ten_cty{
		font-size: 30px;
		line-height: 30px;
	}
	#w_header{
		background: #fff;
	}
	div#header{
		padding-right: 0;
		justify-content: space-around;
	}
	.holtine_hd{
		display: none;
	}
	.w_top{
		display: none;
	}
}
@media (max-width: 768px){
	.flex_xacnhandonhang .right {
    		width: 100%;
	}
	.flex_xacnhandonhang .left {
    		width: 100%;
    		padding-right: 0;
    		margin-bottom: 20px;
	}
	#video{
		display:block;
	}
	.khunghinhanh{
		display:none;
	}
	.flex_tintuc{
		width: 100%;
		padding-right:0;
		margin-bottom: 30px;
	}
	.mod_video{
		width: 100%;
	}
	.content table{
		width: 100%!important;
	}
	.content img{
		height:auto !important;
	}
	.content iframe{
		width: 100%!important;
	}
}
@media (max-width: 667px){
	.div_item:nth-child(2){
		border: none;
		border-top: 1px solid #ddd;
    		border-bottom: 1px solid #ddd;
	}
	.div_item{
		width: 100%;
		padding: 10px;
	}
	.item_sp1{
		width: calc(100%/3 - 10px);
	}
	#giohang {
    		min-width: 800px!important;
	}
	.form_ghh {
    		width: 100%!important;
    		overflow-x: scroll!important;
	}
}
@media (max-width: 640px){}
@media (max-width: 603px){}
@media (max-width: 600px){
	#mod_copyright{
		flex-direction: column;
		justify-content: center;
		height: auto;
		padding: 10px 0;
		text-align: center;
	}
	.item_ft:nth-child(2){
		width: 100%;
		margin-top: 30px;
	}
	.item_ft:nth-child(1){
		width: 100%;
	}
	.doitac_chay{
		padding: 0;
		margin: 0 -5px;
	}
	.doitac_chay .slick-prev, .doitac_chay .slick-next{
		display: none!important;
	}
	.product_info{
		width: 100%!important;
		padding-left: 0!important;
		margin-top: 20px;
	}
	.zoom_slick{
		width: 100%!important;
	}
	.item_sp1{
		width: calc(100%/2 - 10px);
	}
	div.frm_lienhe{
		width: 100%!important;
	}
	.bando{
		width: 100%!important;
		padding-left: 0px!important;
		margin-top: 20px;
	}
	.box_news{
		width: calc(100% - 10px)!important;
	}
	.frame_thanhtoan{
		width: 100%!important;
		padding-right: 0px!important;;
	}
	div.frm_lienhe{
		width: 100%!important;
	}
	
}
@media (max-width: 568px){}
@media (max-width: 480px){
	.title-about, .ten_cty, .title-index, .title-index-1, .tieude_titnuc, div.tieude_giua{
		font-size: 25px;
	}
	div#header{
		height: auto;
		padding: 10px 0;
	}
	div#header .logo{
		margin-bottom: 10px;
		width: 100px;
	}
	div#header{
		flex-direction: column;
		justify-content: center;
	}
	.tintuc_conlai{
		width: 100%;
		padding-left: 0;
	}
	.tintuc_1{
		width: 100%;
		margin-bottom: 20px;
	}
	.chicc{
		display:block!important;
	}
}
@media (max-width: 414px){
	form#frm_dknt input[type='text']{
		width: 100%;
	}
	.item_sp .ten{
		font-size: 14px;
	}
}
@media (max-width: 375px){
	div.tieude_giua{
		padding-bottom: 10px;
	}
	.title-about, .ten_cty, .title-index, .title-index-1, .tieude_titnuc, div.tieude_giua{
		font-size: 20px;
	}
}