@font-face {
	font-family: UTM;
	font-weight: 400;
	font-style: normal;
	src: url(UTMHELVETINS.TTF) format("truetype");
	font-display: swap;
}

@font-face {
	font-family: SVN;
	font-weight: 400;
	font-style: normal;
	src: url(SVN-Lobster.ttf) format("truetype");
	font-display: swap;
}
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

:root{
	--color_main: #3D398D;
	--color_main_2: #3D398D;
	--color_btn_top: #3D398D;
	--color_time_header: #DB9AD0;
	--color_form_header: #AA89DA;
	--color_btn_chat: #0082CB;
	--color_btn_detail: #F28705;
	--color_footer_form: #1B1464;
}

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: 10px;
}
.grid-temp-2{
	grid-template-columns: repeat(2, 1fr);
}
.grid-temp-4{
	grid-template-columns: repeat(4, 1fr);
}
.gap-10{
	gap:10px;
}
.gap-15{
	gap:15px;
}
.gap-20{
	gap:20px;
}
.pt-45{
	padding-top: 4.5rem !important;
}
.flex-1{
	flex: 1;
}
.flex-2{
	flex: 2;
}
.flex-3{
	flex: 3;
}

/*===============HEADER================*/
.header{
	padding: 20px 0;
	border-top: 10px solid;
	border-image-slice: 1;
	border-width: 5px;
	/*border-image-source:  linear-gradient(90deg, #055903 26%, #055903 26%);*/
	border-color:  var(--color_main_2);
	margin-bottom: 20px;
}
.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: 1em;
	font-weight: 500;
	margin-bottom: -5px
}
.phone_content div:nth-child(2){
	font-size: 1.1rem;
	font-weight: 600;
	color: #D85C05;
}
.info_header{
	color: #4D4D4D;
}
.info_header i{
	color: #000;
	font-weight: 700;
	font-size: 1.1rem;
}
/*===============HEADER================*/
/*===============MENU================*/
.nav_main{
	border-top: 1px solid var(--color_main);
	position: relative;
}
.nav_main > .icon_home{
	position: absolute;
	top: 42%;
	left: 14%;
	background: transparent;
	color: var(--color_main);
	padding: 2px 10px 0;
	font-size: 1.5rem;
	transform: translateY(-50%);
}
/*.nav_main > .icon_home:before{
	content: '';
	position: absolute;
	height: 0;
	width: 100%;
	background: transparent;
	bottom: -10px;
	left: 0;
	border-top: 10px solid var(--color_main_2);
	border-right: 22px solid transparent;
	border-left: 22px solid transparent;
}
.nav_main > .icon_home:after{
	content: '';
	position: absolute;
	height: 0;
	width: 141%;
	background: transparent;
	top: 0px;
	left: -9px;
	border-bottom: 12px solid var(--color_main_2);
	border-right: 9px solid transparent;
	border-left: 9px solid transparent;
	z-index: -1;
	}*/
	.menu_header
	{
		max-width: 900px;
		justify-content: space-around;
		margin: auto !important;
	}
	.menu_header > li > a
	{
		color: #000;
		font-weight: 600;
		display: inline-block;
		padding: 13px;
		text-transform: uppercase;
		min-width: 138px;
		text-align: center;
		transition: background .5s ease;
	}
	.menu_header > li > a:hover,.submenu_main > a.active
	{
		background: var(--color_main);
		color: #fff !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 > 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: 100%;
	}
	/*===============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: 2rem;
		color: var(--color_main_2);
		margin-bottom: 20px;
	}
	.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================*/

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

	/************==========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================*/
	.list_category_item:nth-child(1){
		background: var(--color_main);
		font-size: 1.156rem;
		font-weight: 600;
		padding: 15px;
		display: flex;
		align-items: center;
		flex-basis: 18%;
		justify-content: center;
		text-align: center;
		border-radius: 5px;
		transition: all .5s ease;
		--shadow:rgba(0,77,142);
	}
	.list_category_item:nth-child(1) > a{
		display: inline-flex;
		width: 130px;
		height: 100%;
		color: #fff;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.list_category_item:nth-child(1) img{
		width: 75%;
	}
	.list_cate_item_2{
		background: #eee;
		border-radius: 5px;
		padding: 10px 0;
		display: flex;
		justify-content: center;
		transition: all .5s ease;
		--shadow:rgba(0,0,0,.5);
	}
	.list_cate_item_2:hover, .list_category_item:nth-child(1):hover{
		transform: translateY(-5px);
		box-shadow: 0 1px 6px var(--shadow);
	}
	.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;
	}
	.list_cate_item_2 img{
		max-width: 100px;
		min-height: 88px;
	}
	.list_cate_item_2_name{
		font-weight: 500;
		color: var(--cl_tc);
	}
	.list_category_intro{
		font-size: 1rem;
		font-weight: 600;
	}
	.list_category_intro ul{
		color: var(--color_main_2);
		font-size: 1rem;
	}
	.list_category_intro img{
		width: 100%;
		height: auto;
		border: 10px solid var(--color_main_2);
		margin: 15px 0;
	}
	/*==============LIST_CATEGORY================*/


	/*==============LEVEL================*/
	.list_level_item{
		padding: 10px 0 10px 15px;
		border: 1px solid #4A53BB;
		border-left: 10px solid #4A53BB;
		margin-bottom: 10px;
		font-size: 1rem;
	}
	.des_level{
		text-align: center;
		font-size: 1rem;
	}
	.list_level_item:nth-child(even){
		border-color: #AA89DA;
	}
	.level_padding{
		padding-top: 38px;
	}
	/*==============LEVEL================*/
	


	/*==============POST_OUTSTANDING================*/
	.post_outstanding_name,.post_outstanding_item_name{
		font-size: 1.2rem;
		color: #000;
		font-weight: 600;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		margin-bottom: 8px;
	}
	.post_outstanding_des, .post_outstanding_item_des{
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
		color: #413f3f;
		text-align: justify;
	}
	.post_outstanding_item_des{
		-webkit-line-clamp: 5;
	}
	.post_outstanding_item_img{
		width: 44%
	}
	.post_outstanding_item_content{
		width: 58%
	}
	.img_post_outstanding_1{
		border: 2px solid var(--color_main);
	}
	/*==============POST_OUTSTANDING================*/



	/*===============POST_CATE================*/
	.post_cate_menu{
		padding: 5px 13px;
		background: linear-gradient(0deg, #6E69B0 50%,#483F99 100%);
		border-radius: 2px;
	}
	.title_post_cate
	{
		color: #fff;
		width: 23%;
		text-align: left;
		font-size: 1.1rem;
		font-weight: 600;
		position: relative;
		padding-left: 7px;
	}
	.title_post_cate:before
	{
		content: '';
		width: 6px;
		height: 155%;
		background: #fff;
		position: absolute;
		top: -8px;
		right: 10px;
		transform: skew(-25deg);
	}
	.post_cate_menu_ul{
		width: 77%;
		padding: 0 20px;
	}
	.post_cate_menu_ul li{
		padding: 5px 15px;
		background: #fff;
		color: #000;
		cursor: pointer;
		transition: background .5s ease;
		border-radius: 3px;
		width: max-content;
		display: inline-block;
	}
	.post_cate_menu_ul li:not(:last-child){
		margin-right: 10px;
	}
	.post_cate_menu_ul li:hover{
		background: var(--color_main_2);
		color: #fff;
	}
	.post_cate_menu_ul li.active{
		background: var(--color_main_2);
		color: #fff;
	}
	.post_cate_post_left img{
		max-height: 256px;
		min-height: 256px;
		border: 1px solid var(--color_main_2);
		padding: 2px;
	}
	.post_cate_post_left_content_name{
		color: #fff;
		font-size: 0.98rem;
		font-weight: 500;
		background: var(--color_main_2);
		border-radius: 0 0 5px 5px;
		padding: 5px 9px;
	}
	.post_cate_post_left_content_des{
		color: #59595C;
		text-align: justify;
	}
	.post_cate_post_right_top img,.list_post_col_3 img{
		width: 37%;
		border: 1px solid #0697F2;
		padding: 2px;
	}
	.post_cate_post_right_content{
		width: 60%
	}
	.post_cate_post_right_content_name{
		color: var(--color_main_2);
		font-size: 0.98rem;
		font-weight: 500;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
	}
	.post_cate_post_right_content_des{
		color: #59595C;
		text-align: justify;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	.post_cate_post_right_content_view span{
		display: inline-flex;
		padding: 5px 15px;
		border: 1px solid var(--color_main_2);
		color: var(--color_main_2);
		align-items: center;
		line-height: 1;
		gap:10px;
	}
	.subtime span{
		font-size: 0.7rem;
		padding: 6px 2px;
	}
	.subtime span:nth-child(2){
		width: 52px;
	}
	.post_cate_post_right > a{
		color: var(--color_main_2);
		font-size: 1rem;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
		display: inline-block;
		width: 100%;
		line-height: 1;
	}
	.post_cate_post_right > a:hover{
		color: var(--color_main);
	}
	.post_cate_item_post > a{
		display: grid;
		grid-template-columns: 30% 67%;
		grid-gap: 10px;
	}
	.post_cate_menu_ul > .slick-prev,.post_cate_menu_ul > .slick-next{
		position: absolute;
		top: 0;
		display: inline-block;
		width: 20px;
		height: 100%;
		background: url(../img/arrow_next.png) center center no-repeat;
		cursor: pointer;
	}
	.post_cate_menu_ul > .slick-prev{
		left: -15px;
		transform: rotate(180deg) translate(-50%);
	}
	.post_cate_menu_ul > .slick-next{
		right: -5px;
	}
	.list_post_col_3_name{
		color: #000;
	}
	/*===============POST_CATE================*/

	/*===============FORM_MIDDLE================*/
	.form_middle .row{
		background: url(../img/bg_form_mid.jpg) no-repeat;
		background-position-x: 50px;
		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;
	}
	/*===============FORM_MIDDLE================*/

	/*===============LIST_IMG================*/
	.list_img_web{
		background: url(../img/bg_list_img.jpg) top left no-repeat;
		background-size: 100% 100%;
	}
	.cl-blue{
		color: #195180;
	}
	.title_addmore p{
		color: #CF5655;
		font-weight: 500;
		font-size: 1.5rem;S
	}
	.list_img_grid{
		display: inline-grid;
		grid-template-columns: repeat(3,1fr);
		grid-template-rows: repeat(3,1fr);
		grid-gap: 10px;
	}
	.list_img_grid > .img_1{
		grid-column: 1 / span 2;
		grid-row: 1 / span 2;
	}
	/*===============LIST_IMG================*/
	/*===============ABOUT_CUSTOMER================*/
	.about_customer{
		background: url('../img/bg_person.jpg') top left no-repeat;
		background-size:100% 100%;
	}
	.item_about{
		padding: 15px;
		box-shadow: 0 0 10px rgba(0,0,0,.4);
		border-radius: 8px;
		position: relative;
		background: #fff;
	}
	.bxs-quote-alt-left{
		font-size: 1.5rem;
		color: #8BC243;
		position: absolute;
		left: 25px;
		top: 25px;
	}
	.info_per img{
		width: auto;
		height: 85px;
	}
	/*===============ABOUT_CUSTOMER================*/
	/*===============FOOTER================*/
	.footer{
		background:var(--color_main);
		color: #fff;
		font-size: 1rem
	}
	.info_bottom{
		background: var(--color_footer_form);
		/*background: linear-gradient(87deg, rgba(4,118,217,1) 8%,rgba(4,164,217,1) 84%, rgba(4,118,217,1) 96%);*/
	}
	.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: #F25C05;
		border-radius: 4px;
		width: 350px;
	}
	.form_footer button{
		color: #fff;
		border: 0;
	}
	.title_hethong{
		border-bottom: 1px solid #fff;
		font-size: 1.2rem;
	}
	/*===============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_main_2);
		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_form_header);
	}
	.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================*/


