@font-face {
	font-family: Bango;
	font-weight: 400;
	font-style: normal;
	src: url(SVN-Bango.otf) format("truetype");
	font-display: swap;
}
@font-face {
	font-family: Avo;
	font-weight: 400;
	font-style: normal;
	src: url(utm-avo.woff) format("truetype");
	font-display: swap;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

:root{
	--color_main: #F15A25;
	--color_main_2: #F15A25;
	--color_btn_top: #B17662;
	--color_time_header: #70463A;
	--color_form_header: #D77C6A;
	--color_btn_chat: #0779BF;
	--color_btn_detail: #F15A25;
	--color_footer_form: #F15A24;
	--shadow: rgba(0,0,0,0.5);
	--color_right_1:#0779BF;
	--color_right_2:#eb6e1e;
	--color_bottom:#EBB97F;
}

body
{
	font-size: 14px !important;
}
ul
{
	list-style: none;
	padding: 0;
	margin: 0 !important;
}
p
{
	text-align: justify;
}
a
{
	text-decoration: none !important;
}
a:hover
{
	text-decoration: none !important;
}
form
{
	margin: 0;
}
.d-grid{
	display: grid;
	grid-gap: 15px;
}
.grid-temp-2{
	grid-template-columns: repeat(2, 1fr);
}
.grid-temp-3{
	grid-template-columns: repeat(3, 1fr);
}
.grid-temp-4{
	grid-template-columns: repeat(4, 1fr);
}
.grid-temp-5{
	grid-template-columns: repeat(5, 1fr);
}
.grid-temp-6{
	grid-template-columns: repeat(6, 1fr);
}
.gap-10{
	gap:10px;
}
.gap-15{
	gap:15px;
}
.gap-20{
	gap:20px;
}
.gap-40{
	gap:40px;
}
.pt-45{
	padding-top: 4.5rem !important;
}
.flex-1{
	flex: 1;
}
.flex-2{
	flex: 2;
}
.flex-3{
	flex: 3;
}
.place-center{
	place-items:center;
}
/*===============HEADER================*/
.header{
	padding-top: 20px;
	border-top: 10px solid;
	border-image-slice: 1;
	border-width: 5px;
	border-image-source:  linear-gradient(90deg, #000 26%, #000 26%);
	border-color: transparent;);
}
.form_main{
	position: relative;
}
.form_main > input{
	border-color: #BF9003;
	border-radius: 25px;
	padding-right: 10px;
	width: 100%;
}
.form_main > i{
	position: absolute;
	top: 50%;
	right: 10px;
	font-size: 1.5rem;
	transform: translateY(-50%);
	cursor: pointer;
}
.phone_content div:first-child{
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: -5px
}
.phone_content div:nth-child(2){
	font-size: 1.6rem;
	font-weight: 600;
	color: #000;
}
.info_header{
	color: #4D4D4D;
	font-size: 1.1rem; 
}
.info_header i{
	color: #000;
	font-weight: 700;
	font-size: 1.1rem;
}
/*===============HEADER================*/
/*===============MENU================*/
.nav_main{
	/*background:var(--color_main);*/
	position: relative;
	padding: 10px 0; 
	border-bottom: 8px solid var(--color_main)
}
.menu_header
{
	justify-content: space-around;
	/*width: 458px;*/
}
.menu_header:first-child
{
	/* margin-left: 8% !important; */
	position: relative;
}
.menu_header > li:not(:last-child, :first-child)
{	
	border-right: 1px solid #000;
}
.logo_header{
	position: absolute;
	z-index: 999;
	left: 106%;
}
.menu_header:nth-child(2){
	margin-left: auto !important;
}
.menu_header > li > a
{
	color: #000 !important;
	font-weight: 600;
	display: inline-block;
	padding:6px  12px;
	text-transform: uppercase;
	min-width: 138px;
	text-align: center;
	transition: background .5s ease;
	font-size: 1rem;
}
.menu_header > li > a:hover,.submenu_main > a.active
{
	/*background: var(--color_main);*/
	color: #000 !important;
	cursor: pointer;
}
.menu_header > li > a > .bxs-down-arrow
{
	font-size: 0.7rem;
}
.submenu_main, .menu_header
{
	position: relative;
}
.submenu_main:hover + .submenu_header,.submenu_header:hover, .submenu_main:hover .submenu_header_nosub,.submenu_header_nosub:hover
{
	opacity: 1;
	pointer-events: all;
}
.submenu_header,.submenu_header_nosub
{
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	padding:15px;
	background: #fff;
	box-shadow: 0 14px 28px rgb(0 0 0 / 25%), 0 10px 10px rgb(0 0 0 / 10%);
	border-radius: 0 0 8px 8px;
	opacity: 0;
	pointer-events: none;
	transition: all .5s;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	z-index: 999999
}
.submenu_header_nosub{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
.submenu_header > li > a, .submenu_header_nosub > li > a
{
	display: inline-block;
	margin-bottom: 10px;
	color: var(--color_main);
	font-size: 0.85rem;
	border-bottom: 2px solid var(--color_main_2);
	width: 100%;
	min-width: 168px;
	transition: padding-left .5s;
	font-weight: 500;
	padding-left: 3px;
}
.submenu_header > li > a:hover, .subsub_menu > li > a:hover, .submenu_header_nosub > li > a:hover, .submenu_header_nosub > li > a:hover
{
	padding-left: 10px;
}
/*
.contain_submenu{
	width: 23%;
	}*/
	.subsub_menu > li >a{
		color:#4D4D4D;
		transition: all .5s;
		margin-bottom: 8px;
		width: 100%;
		display: inline-block;
	}
	.contain_submenu:hover > a,.submenu_header > li > a:hover{
		background: var(--color_main);
		color: #fff;
		transition: all .5s;
		border-radius: 5px 5px 0 0; 
		padding-left: 10px;
	}
	.submenu_header_nosub
	{
		flex-direction: column;
		width: max-content;
	}
	/*===============MENU================*/


	/*===============BANNER================*/
	.banner img{
		max-width: 1350px;
	}
	/*===============BANNER================*/


	/*==============TITLE_MAIN================*/
	.title_main{
		gap: 25px;
		font-size: 1.6rem;
		color: #5D5D5D;
		margin-bottom: 20px;
		position: relative;
	}
	.title_addmore p {
		color: #CF5655;
		font-weight: 500;
		font-size: 1.5rem;
	}
	.cl-blue {
		color: #195180;
	}
	.small_title {
		color: #D95C05;
		text-align: center;
		font-size: 1.3rem;
		font-weight: 500;
		margin-top: -25px;
	}
	.title_main_sub{
		font-size: 15px;
		margin-top: -22px;
		font-weight: 600;
	}
	.title_main_phone{
		display: inline-block;
		margin: auto;
		background:var(--color_main_2);
		padding: 10px 25px;
		border-radius: 3px;
		font-size: 1.3rem;
		color: #fff; 
		z-index: 1;
	}
	.title_main_phone:before{
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		width: 100%;
		height: 2px;
		background: var(--color_main_2);
		z-index: -1
	}
	.dot {
		height: 3px;
		width: 3px;
		background-color: var(--color_main_2);
		border-radius: 50%;
		display: block;
		margin-bottom: 5px;
		position: relative;
	}
	.dot:before {
		content: '';
		position: absolute;
		height: 3px;
		width: 3px;
		background-color: var(--color_main_2);
		border-radius: 50%;
		top: 0;
		left: -10px;
	}
	.dot:after {
		content: '';
		position: absolute;
		height: 3px;
		width: 3px;
		background-color: var(--color_main_2);
		border-radius: 50%;
		top: 0;
		right: -10px;
	}
	.title_main_dot {
		gap: 25px;
		font-size: 1.6rem;
		color: var(--color_main);
		margin-bottom: 20px;
		font-weight: 600;
		font-family: Bango;
	}
	.title_main_plus{
		padding-bottom: 5px;
		border-bottom: 2px solid #CCCCCC; 
		color: var(--color_main_2);
		text-transform: uppercase;
		font-size: 1.4rem;
	}
	.title_main_plus i{
		border: 2px solid var(--color_main_2);
		border-radius: 5px;
	}
	.title_main_plus span{
		margin-left: 10px;
		font-size: 1rem;
		color: #000;
		font-weight: 600;
	}
	/*==============TITLE_MAIN================*/
	/*gioi thieu*/
	.gioithieu{display:flex;justify-content:space-between;}
	div#gioithieu{padding:30px 0;}
	.gioithieu-r ul{display:grid;grid-template-columns:repeat(4,1fr);grid-gap:10px;margin-bottom:20px;}
	.gioithieu-r li{width:calc(100%/4);}
	.gioithieu-r ul li{width:100%;}
	.gioithieu-r ul li a{display:flex;flex-direction:column;width:100%;align-items:center;background:#F2F2F2;height:100%;padding:13px;align-items:center;justify-content:space-between;}
	.gioithieu-l{width:30%;}
	.gioithieu-r ul li a span{font-family:SVN-Franko;text-transform:uppercase;color:#0779bf;}
	.gioithieu-r ul li a:hover{background:#0779bf;}
	.gioithieu-r ul li a:hover span{color:white;}
	.gioithieu-r ul li a:hover img{filter:brightness(0) invert(1);}
	.gioithieu-r ul li a img{margin-bottom:10px;}
	.title{text-align:center;padding:20px 0;}
	.title h2{font-family:SVN-Bango;color:var(--color_main);font-size:25px;}
	.title span{font-size:22px;text-transform:uppercase;color:#4AA0CB;}
	.gioithieu-r{width:68%;}
	.gioithieu-main p{color:#1A1A1A;text-align:justify;margin-bottom:15px;}
	.gioithieu-main{padding:20px 0;border-top:1px solid gray;border-bottom:1px solid gray;}

	/**/
	/*phan hoi*/

	div#phanhoi{padding:50px 0;}
	.phanhoi-slider{display:grid;grid-gap:50px;grid-template-columns:repeat(2,1fr);}
	.phanhoi-item{background:#EDEDED;border-radius:25px;padding:20px; box-shadow: 0 0 10px rgba(0,0,0,.3)}
	.phanhoi-main{display:flex;justify-content:space-between;}
	.ph-img{width:40%;}
	.ph-content{width:50%;}
	.ph-content h3{font-family:'Avo';font-size:19px;}
	.ph-content span{font-family:Avo;display:block;font-size:19px;margin-bottom:15px;}
	.ph-content p{font-size:12px;text-align:justify;margin-bottom:10px;}
	.ph-danhgia{	/*font-size: 12px;*/
		position:relative;line-height:26px;}
		.ph-danhgia ul{position:absolute;display:flex;top:50%;right:72px;transform:translateY(-50%);}
		.ph-danhgia img{vertical-align:text-bottom;}
	/*==============INFO_UNDER_BANNER================*/
	/*==============REASON================*/
	.item_reason{
		display: flex;
		flex-direction: column;
		border-radius: 25px;
		box-shadow: 0 0 10px rgb(0 0 0 / 30%);
		padding-bottom: 15px;
		overflow: hidden;
	}
	.item_reason img{
		width: 80%;
		margin: auto;
	}
	.item_reason .name_reason{
		margin-top: auto;
		width: 100%;
		padding:5px;
		text-align: center;
		background:var(--color_main);
		color: #fff;
		font-weight: 600;
		text-transform: uppercase;
	}
	/*==============REASON================*/

	/************==========FORM=========**************/
	.cover_info_under_post > form{
		flex: 1 1 25%;
	}
	.cover_info_under_post > form input{
		width: 100%;
		height: 100%;
		border: 0;
		padding-left: 10px;
	}
	.cover_info_under_post > form input:focus-visible{
		outline: 0;
	}
	.cover_info_under_post > form .item_right{
		flex-basis: 65%;
	}
	.cover_info_under_post > form button{
		background: transparent;
		border: 0;
		color: #fff;
		text-transform: uppercase;
	}
	/************==========FORM=========**************/

	.item_info_under_banner{
		display: flex;
		align-items: stretch;
		background: var(--color_main);
		padding: 2px;
		flex: 1 1 25%;
		border-radius: 2px;
		transition: box-shadow .5s ease,transform .5s ease;
	}
	.cover_info_under_post > .item_info_under_banner:last-child{
		flex-basis: 10%;
		background: var(--color_btn_top);
	}
	.cover_info_under_post > .item_info_under_banner:last-child:hover{
		box-shadow: 0 7px 10px rgba(0,0,0,.5);
		transform: translateY(-2px);
	}
	.item_info_under_banner [class^='item_']{
		flex: 1;
		text-align: center;
		padding: 8px 15px;
	}
	.item_info_under_banner .item_right{
		flex-basis: 30%;
		color: var(--color_main);
		background: #fff;
		font-weight: 600;
	}
	.item_info_under_banner .item_left{
		color: #fff;
		text-transform: uppercase;
	}
	.item_info_under_banner:nth-child(2) .item_right{
		color: var(--color_time_header)
	}
	.item_info_under_banner:nth-child(2){
		background: var(--color_time_header);
	}
	.item_info_under_banner.form{
		background: var(--color_form_header);
	}

	/*==============INFO_UNDER_BANNER================*/



	/*==============LIST_CATEGORY================*/
	.title_list_category{
		color: var(--color_main);
		font-size: 1.9rem;
		font-family: Avo;
		margin: 15px;
	}
	.title_list_category > span{
		font-family: Bango;
		font-size: 2.6rem;
		font-weight: 600
	}
	.list_cate_item_2{
		background: #eee;
		border-radius: 5px;
		padding: 10px 0;
		display: flex;
		justify-content: center;
		transition: all .5s ease;
		border-radius: 50%;
		width: 180px;
		height: 180px;
	}
	.list_cate_item_2:hover{
		transform: translateY(-5px);
		box-shadow: 0 4px 6px var(--shadow);
		background: linear-gradient(163deg, rgba(252,161,126,1) 34%, rgba(213,122,105,1) 99%);
	}
	.list_cate_item_2:hover .list_cate_item_2_name{
		color: #fff ;
	}
	.list_cate_item_2:hover img{
		filter: brightness(12)
	}
	.list_cate_item_2.active{
		transform: translateY(-5px);
		box-shadow: 0 4px 6px var(--shadow);
		background: linear-gradient(163deg, rgba(252,161,126,1) 34%, rgba(213,122,105,1) 99%);
	}
	.list_cate_item_2.active .list_cate_item_2_name{
		color: #fff ;
	}
	.list_cate_item_2.active img{
		filter: brightness(12)
	}
	.list_cate_item_2 > a{
		font-size: 1.1rem;
		height: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: space-between;
		padding-top: 20px;
		cursor: pointer;
	}
	.list_cate_item_2 img{
		display: block;
		margin: auto;
	}
	.list_cate_item_2_name{
		font-weight: 500;
		color: var(--color_main);
	}
	/*.des_cate_item{
		background: #F2F2F2;
		border-radius: 25px;
		box-shadow: 0 4px 6px rgba(0,0,0,.4);
		padding: 15px;
	}*/
	.des_category{
		background: url(../img/bg_gioithieu.jpg) center center no-repeat;
		background-size: contain;
		background-position-x: 160px;
	}
	.des_cate_item:nth-child(2){
		box-shadow:unset;
	}
	.des_cate_item:nth-child(2){
		flex: 1 1 30%;
		position: relative;
	}
	.des_cate_item:nth-child(1){
		flex: 1 1 65%;
	}
	.img_maccai{
		position: absolute;
		top: 25px;
		right: -60px;
	}
	.des_cate_item > img{
		border-radius: 8px;
	}
	.des_cate_name{
		font-size: 1.9rem;
		color: var(--color_main);
		font-weight: 600;
		font-family: Avo;
	}
	.des_cate_name > span{
		font-family: Bango;
		font-size: 2.6rem;
	}
	.des_cate_content{
		font-size: 1.3rem;
		color: #403e3e;
		padding: 0 40px;
	}
	.des_cate_content span{
		color: var(--color_main);
	}
	/*==============LIST_CATEGORY================*/


	/*===============FORM_MIDDLE================*/
/*.form_middle{
	background: url(../img/bg_form_mid.jpg) no-repeat;
	background-size: cover;
	}*/
	.form_main_midle form label{
		color: #666666
	}
	.form_main_midle form textarea{
		resize: none;
	}
	.btn_mid{
		background: url(../img/btn_form_mid.png) top left no-repeat;
		background-size: 100% 100%;
		padding: 8px 38px;
		border: 0;
		box-shadow: 0 4px 10px rgb(0 0 0 / 40%);
		color: #fff;
		border-radius: 25px;
		font-size: 1rem;
		font-weight: 500;
	}
	.cover_form_middle{
		width: 70%;
		margin: auto;
		padding: 15px;
		border-radius: 20px;
		box-shadow: 0 4px 6px var(--shadow);
		background: #fff;
		height: 100%;
	}
	/*===============FORM_MIDDLE================*/

	/*===============ABOUT_CUSTOMER================*/
	.about_customer{
	/*background: url('../img/bg_person.jpg') top left no-repeat;
	background-size:100% 100%;*/
}
.item_about{
	padding: 30px;
	box-shadow: 0 0 10px rgb(0 0 0 / 40%); 
	border-radius: 8px;
	width: 68%;
}
.info_per img{
	width: auto;
	height: 100%;
}
.info_per .img_per_cuts{
	/*filter: drop-shadow(-1px 6px 3px rgba(0, 0, 0, 0.5));*/
	display: block;
	width: 180px;
	height: 180px;
}
.content_about{
	margin-top: 2rem;
}
.name_per i{ color: #E5B515 }
/*===============ABOUT_CUSTOMER================*/
/*===============CONTAINER_POST================*/
.conatiner_post{min-height:751px;}
.item_post_index .item_post_index_name{
	font-size: 1rem;
	color: var(--color_main);
	font-weight: bold;
	min-height: 48px;
}
.item_post_index span{
	display: inline-block;
	margin-top: 15px;
	padding: 5px 15px;
	border-radius: 5px;
	color: #fff;
	text-align: center;
	background: var(--color_main);
}
.item_post_index_img{border: 2px solid var(--color_main)}
/*===============CONTAINER_POST================*/

/*===============FOOTER================*/
.footer{
	background:var(--color_bottom);
	font-size: 1rem;
	position: relative;
	color: #000;
}
.footer:before{
	content: '';
	top: -40px;
	left: 0;
	position: absolute;
	background: var(--color_bottom);
	border-top: 0px solid;
	border-bottom: 40px solid var(--color_bottom);
	border-right: 40px solid #fff;
	border-left: 270px solid var(--color_bottom);
}
.info_bottom{
	background: var(--color_footer_form);
	/*background: linear-gradient(to bottom,#0D71BA,#50CEE2);*/
}
.phone_bottom{
	font-size: 1.5rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	text-transform: uppercase;
	color: #fff;
}
.phone_bottom i{
	font-size: 2.5rem;
	margin-right: 15px;
}
.form_footer{
	background: #fff;
	border-radius: 25px;
	width: 350px;
}
.form_footer button{
	color: var(--color_main);
	border: 0;
	font-weight: bold;
	border-left: 1px solid var(--color_main) ;
}
.form_footer button:hover{
	background: #ffff;
	color: var(--color_main);
}
.form_footer input{
	border: 0;
	border-radius: 25px;
}
.title_hethong{
	border-bottom: 1px solid;
	font-size: 1.6rem;
	font-weight: 600;
}
.list_menu_footer > a{
	color: #000;
	flex: 1;
	text-align: center;
	font-weight: 600;
	font-size: 1.1rem;
}
.list_menu_footer > a:hover{
	color: #fff;
}
.list_menu_footer > a:not(:last-child){
	border-right: 2px solid #000;
}
.img_index_1{
	position: absolute;
	left: 0;
	top: 25%;
	z-index: -1;
}
.img_index_2{
	position: absolute;
	right: 0;
	top: 48%;
	z-index: -1;
}
.font-cs{ font-weight: bold;border-bottom: 1px solid #000; margin-bottom: 5px; }
/*===============FOOTER================*/
/*===============LOAI_RIGHT================*/
.tag_time_loai{
	padding: 8px;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #E1E1E1;
	border-radius: 7px;
}
.tag_time_loai span{
	font-weight: 500;
}
.tag_time_loai > i{
	font-size: 4.5rem;
	margin-right: 8px;
	color: #4D4E50;
}
.item_info_right{
	background: var(--color_right_1);
	padding: 15px;
	text-align: center;
	color: #fff;
	font-size: 1rem;
	font-weight: 500;
	display: flex;
	line-height: 1.2;
	align-items: center;
	text-transform: uppercase;
	height: 100%;
	border-radius: 6px;
}
.item_info_right:hover{
	color: #fff;
}
.item_info_right > img{
	width: 30%;
	margin-right: 10px;
}
.bg_or
{
	background: var(--color_right_2);
}
.breadcrumb{
	background: transparent !important;
}
h1.title_detail_post
{
	border-bottom: 2px solid var(--color_main);
	font-size: 1.4rem;
	padding-bottom: 5px;
	text-transform: uppercase;
	color: var(--color_main);
}
.post-main h2{
	font-size: 1.5rem;
	color: var(--color_main);
	border-bottom: 1px solid var(--color_main);
	padding-bottom: 10px;
}
.post-main img{
	max-width: 100% !important;
	height: auto !important;
}
.right-khung {
	padding: 10px;
	border-radius: 5px;
	margin: 1rem 10px;
	box-shadow: 0px 0px 2px green;
	background: rgba(0, 77, 220, 0.1);
}
.title_lienquan{
	padding-bottom: 1px;
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--color_main);
	border-bottom: 1px solid;
	margin-bottom: 10px;
}
.cover_img_post{
	width: 30%;
	display: inline-block;
	min-width: 228px;
}
.content_post_loai
{
	width: 65%;
	padding:0 15px;
}
.cl-or
{
	color: var(--color_main_2);
}
.btn_gre_loai, .btn_or_loai{
	padding: 5px 10px;
	color: #fff;
	background: var(--color_btn_detail);
	border-radius: 5px;
}
.btn_gre_loai:hover, .btn_or_loai:hover{
	color: #fff;
}
.btn_or_loai{
	padding: 5px 10px;
	color: #fff;
	background: var(--color_btn_chat);
	border-radius: 5px;
}
.page-link{
	border-color: var(--color_main_2) !important;
	color: var(--color_main_2) !important;
	font-weight: 500;
}
.page-item.active .page-link{
	background: var(--color_main_2) !important;
	color: #fff !important;
}
.count_online
{
	background: var(--color_main_2);
	color: #fff;
}
.count_online .numbe_count
{
	line-height: 0.5;
}
.main-breacrumd > .breadcrumb {
	border-bottom: 2px solid var(--color_main_2);
}
.main-breacrumd .breadcrumb-item > a{
	color: var(--color_main_2);
}
/*===============LOAI_RIGHT================*/


