.adm-glyphicon span {
	background: url('img/setting.png');
	background-size: cover;
}

/* @font-face {
    font-family: Roboto;
    src: url('fonts/Roboto-Medium.ttf') format('truetype'),
        url('fonts/Roboto-Medium.woff2') format('woff2');
    font-display: swap;

} */

@font-face {
    font-family: Roboto Medium;
    src: url('fonts/Roboto-Medium.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: Roboto Light;
    src: url('fonts/Roboto-Regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: Roboto Bold;
    src: url('fonts/Roboto-Bold.ttf') format('truetype');
    font-display: swap;
}

:root {
	--primary-color: #113253;
	--second-color: #fff; 
	--third-color: #666666;
	--fourth-color: #000;
	--fifth-color: #212121;
	--sixth-color: #333333;
	--seventh-color: #EDEDED;
	--eighth-color: #DBDBDB;
	--ninth-color: #f5f5f5;
	--tenth-color: #FFF3D3;
	--eleventh-color: #FFE7EE;
	--twelfth-color: #E0E0E0;
	--thirteenth-color: #bdbdbd;
	--fourteenth-color: #D9E9F5;
	--fifteenth-color: #8AC4F1;
	--sixteenth-color: #EA0000;
	--seventeenth-color: #007F86;
	--eighteenth-color: #00000099;

	--primary-background: #F8F8F8;
	--second-background: #EEF7FE;
	--background-hover: #0A538D;
} 

html,
body {
	font-family: "Roboto", sans-serif;
    font-weight: 400;
	font-size: 14px;
	color: var(--fourth-color);
	overflow-x: hidden;
}

body {
	top: 0px !important;
}

body.over {
	position: fixed !important;
	top: 0;
	width: 100%;
}

a {
	color: var(--fourth-color);
	transition: .3s;
}

a:hover, a:focus {
	text-decoration: none;
	color: var(--primary-color);
}

input, select{
	outline: none;
}

ul {
	list-style: none;
	padding: 0;
}

img {
	max-width: 100%;
	height: auto;
}

.img-404{
	max-width: 100%;
}

.wrap {
	max-width: 1310px;
	width: 100%;
	margin: 0 auto;
}

.stop-scroll {
    height: 100%;
    overflow: hidden;
}

.no-data{
	font-size: 22px;
}

.top-head{
	padding: 15px 0 10px;
}

.top-head .logo img{
	width: 80px;
}

@keyframes slide-down {
	0% {
		opacity: 0;
		transform: translateY(-100%);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.affix {
	z-index: 999;
	animation: slide-down .5s linear forwards;
	background-color: var(--second-color);
	box-shadow: 1px 2px 7px var(--seventh-color);
	top: 0;
	width: 100%;
}

.categories-menu {
	display: inline-block;
	margin-top: 5px;
	padding-left: 45px;
	position: relative;
}

.categories-menu a {
	color: var(--fourth-color);
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	position: relative;
	transition: .3s;
}

.categories-menu a:hover {
	color: var(--primary-color);
}

.categories-menu:nth-child(2) {
	padding-left: 30px;
}

.focus-category>a {
	border-bottom: 2px solid var(--primary-color);
	color: var(--primary-color);
}

.child-product {
	position: absolute;
	z-index: 999;
	width: 320px;
	border-radius: 20px;
	background-color: var(--second-color);
	padding-left: 20px;
	box-shadow: var(--seventh-color) 0px 0px 5px;
	display: none;
	top: 40px;
	transform: translate(-40%, 0);
}

.child-categories {
	border-radius: 10px;
	transition: .3s;
	height: 50px;
	/* line-height: 50px; */
	margin-right: 15px;
	display: flex;
}

.child-categories a:before {
	content: '';
	min-width: 6px;
	min-height: 6px;
	border-radius: 90%;
	background-color: var(--third-color);
	display: block;
	margin-right: 15px;
	margin-left: 15px;
	transition: .3s;
}

.child-categories a:hover:before {
	background-color: var(--primary-color);
}

.child-categories:first-child {
	margin-top: 15px;
}

.child-categories:last-child {
	margin-bottom: 15px;
}

.child-categories:hover {
	background-color: var(--second-background);
}

.categories-menu:hover .child-product {
	display: block;
	animation: prin 0.5s;
}

@keyframes prin {
	from {
		opacity: 0;
		top: 50px;
	}

	to {
		opacity: 1;
		top: 40px;
	}
}

@keyframes affix {
	from {
		top: -100px;
	}

	to {
		top: 0;
	}
}

.child-product .child-categories a {
	transition: .3s;
	text-transform: capitalize;
	line-height: 22px;
}

.child-product .child-categories a:hover {
	color: var(--primary-color);
}

.focus-category .child-categories a {
	border-bottom: none;
}

.categories-menu a {
	display: inline-block;
	position: relative;
}

.categories-menu a:after {
	display: block;
	content: '';
	border-bottom: solid 2px var(--primary-color);
	transform: scaleX(0);
	transition: transform 250ms ease-in-out;
}

.categories-menu a:hover:after {
	transform: scaleX(1);
}

.categories-menu a.fromRight:after {
	transform-origin: 100% 50%;
}

.categories-menu a.fromLeft:after {
	transform-origin: 0% 50%;
}

.focus-category .nav-dropdown::before {
	content: url('img/Chevron_Right_1_ (1).svg');
}

.focus-category a::after {
	display: none;
}

.child-categories a {
	display: flex;
	align-items: center;
}

#homepage>a>svg {
	transform: translate(0, 3px);
}

#homepage a {
	padding-left: 6px;
	padding-right: 6px;
}

#homepage svg path{
	fill: var(--primary-color);
}

.navbar-frame {
	text-align: right;
}

.navbar-frame ul{
	margin-bottom: 0px;
	margin-top: 17px;
}

.nav-dropdown::before {
	content: url('img/nav-dropdown.svg');
	position: absolute;
	right: -20px;
	bottom: 4px;
}

.nav-dropdown:hover::before {
	content: url('img/Chevron_Right_1_ (1).svg');
}

.footer {
	padding-top: 60px;
	padding-bottom: 25px;
	background-color: var(--primary-background);
}

.logo-footer img {
	max-width: 120px;
}

.follow {
	font-size: 18px;
	color: var(--third-color);
	font-weight: 500;
	transform: translate(0px, 4px);
	padding-right: 20px;
}

.media-item {
	display: inline-block;
	margin-top: 30px;
}

.media-icon-footer {
	padding-left: 10px;
	transform: translateY(7px);
}

.footer-cat {
	width: 232px;
	float: right;
}

.footer-company-info {
	display: inline-block;
}

.footer-des {
	padding-top: 32px;
}

.footer-map {
	padding-top: 32px;
}

.footer-info-wrap {
	width: calc(100% - 232px);
	display: inline-block;
}

.footer-company-info span {
	font-size: 16px;
}

.footer-company-info:not(:first-child) svg {
	transform: translate(0, 4px);
}

.company-name-footer {
	font-size: 24px !important;
	color: var(--sixth-color);
	font-weight: 500;
	margin-bottom: 20px;
	display: block;
	text-transform: uppercase;
}

.footer-add p {
	font-size: 16px;
	font-weight: 400;
	color: var(--third-color);
}

.footer-add {
	float: right;
	padding-right: 40px;
	padding-left: 20px;
	width: calc(100% - 25px);
}

.footer-company-info span:not(:first-child) {
	padding-left: 20px;
}

.footer-company-info:not(:first-child) {
	margin-bottom: 15px;
}

.phone-footer {
	font-weight: 500;
	font-size: 16px !important;
}

.footer-add p strong {
	font-size: 18px;
	font-weight: 500;
	color: var(--fourth-color);
}

.footer-add p:not(:first-child) strong {
	display: block;
	padding-top: 10px;
}

.footer-tab {
	font-size: 24px;
	color: var(--sixth-color);
	font-weight: 500;
	padding-bottom: 20px;
	text-transform: uppercase;
}

.footer-cat ul li {
	font-size: 16px;
	padding-bottom: 17px;
}

.footer-cat ul li a {
	font-weight: 500;
}

.google-map {
	height: 340px;
}

.copyright {
	padding-top: 25px;
	padding-bottom: 25px;
	text-align: center;
	font-size: 16px;
}

.copy-right p {
	color: var(--sixth-color);
	margin-bottom: 0;
}

.copy-right p strong {
	color: var(--primary-color);
}

/*--------------*/
.banner-wrap {
	position: relative;
}

.introduce-home {
	padding-top: 60px;
	padding-bottom: 60px;
	min-height: 350px;
}

.intro-text {
	display: inline-block;
	width: 45%;
	padding-top: 28px;
}

.introimg-wrap {
	float: right;
	position: relative;
	max-width: 46.9%;
}

.introimg-wrap img:last-child {
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translate(-50%, 3px);
	width: 135px;
}

.introimg-wrap img:first-child {
	border-bottom-right-radius: 100px;
	border-top-left-radius: 100px;
}

.introhome-title div:first-child {
	font-size: 16px;
	color: var(--primary-color);
	letter-spacing: 2.2px;
	font-weight: 500;
	padding-bottom: 15px;
}

.introhome-title h2 {
	font-size: 28px;
	font-weight: 500;
	color: var(--fifth-color);
	padding-bottom: 7px;
	text-transform: uppercase;
}

.introhome-des {
	font-size: 16px;
	color: var(--third-color);
	display: -webkit-box;
	-webkit-line-clamp: 8;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 26px;
	font-weight: 400;
	height: 179px;
}

.introhome-des p{
	margin: 0;
}

.showmore a {
	width: 150px;
	height: 49px;
	background: var(--primary-color);
	border-radius: 5px;
	display: block;
	text-align: center;
	line-height: 49px;
	font-weight: 500;
	margin-top: 20px;
	color: var(--second-color);
	font-size: 16px;
	transition: .4s;
}

.showmore a svg {
	transform: translate(10px, 1px);
}

.introhome-wrap .showmore a {
	margin-top: 13px;
}

.product-home {
	padding-bottom: 60px;
	background-color: var(--primary-background);
	padding-top: 60px;
}

.section-title {
	padding-bottom: 43px;
	text-align: center;
	font-size: 34px;
	font-weight: 500;
	text-transform: uppercase;
}

.section-title .line {
	display: block;
	height: 3px;
	width: 50px;
	border: none;
	background-color: var(--primary-color);
	margin: 17px auto;
}

.product-item {
	background-color: var(--second-color);
	box-shadow: 0px 10px 20px var(--seventh-color);
	border-radius: 20px;
	margin-bottom: 40px;
	padding: 15px;
}

.product-home .col-sm-4:nth-child(5) .product-item,
.product-home .col-sm-4:nth-child(6) .product-item,
.product-home .col-sm-4:nth-child(7) .product-item {
	margin-bottom: 0px;
}

.prditem-image {
	padding-top: 25px;
	padding-left: 25px;
	padding-right: 25px;
	text-align: center;
}

.prditem-name {
	margin: 20px 0 10px;
	font-size: 18px;
	font-weight: 500;
}

.product-item .img_100 {
	position: relative;
	height: 0;
	padding-bottom: 100%;
	overflow: hidden;
	display: block;
	border-radius: 10px;
}

.img_100>img {
	position: absolute;
	width: 100%;
	height: 100%;
	transition: .2s linear;
	object-fit: cover;
}

.img_100:hover img {
	transform: scale(1.05);
}

.product-item:hover .prditem-image img {
	transform: scale(1.05);
	transition: .3s ease-in-out;
	object-fit: cover;
}

.product-item:hover .prditem-name {
	color: var(--primary-color);
}

.product-item .content{
	text-align: center;
}

.product-item .prditem-price{
	font-size: 16px;
}

.service-item .img_100 {
	position: relative;
	height: 0;
	padding-bottom: 56.81818%;
	overflow: hidden;
	display: block;
	border-radius: 10px;
}

.service-home {
	background-image: linear-gradient(0deg, #FFFFFF 43%, var(--primary-color) 40%);
	padding: 60px 0;
	min-height: 465px;
}

.srchome-text {
	text-align: center;
	color: var(--second-color);
}

.srchome-text .section-title-2 .line {
	display: block;
	width: 50px;
	height: 3px;
	border: none;
	background-color: var(--second-color);
	margin: 14px auto 17px;
}

.section-title-2 {
	font-size: 34px;
	font-weight: 500;
}

.section-des-2 {
	font-size: 18px;
	line-height: 26px;
}

.service-item {
	padding: 25px;
	background-color: var(--second-color);
	border-radius: 20px;
	margin-top: 40px;
	box-shadow: 0px 10px 20px rgba(211, 211, 211, 0.25);
	cursor: default;
}

.service-name {
	margin-top: 25px;
	text-align: center;
	font-size: 22px;
	font-weight: 500;
	color: var(--fifth-color);
	transition: .3s;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: .3s;
	height: 62px;
}

.service-item a:hover .service-name {
	color: var(--primary-color);
}

.service-des {
	font-size: 15px;
	color: var(--third-color);
	text-align: center;
	padding-top: 16px;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: 102px;
}

.service-des strong {
	font-weight: 500;
}

.service-item .showmore a {
	height: 45px;
	line-height: 43px;
	margin: auto;
	margin-top: 30px;
	margin-bottom: 15px;
}

.srcicon-home {
	position: absolute;
	object-fit: cover;
	width: 50px !important;
	height: 50px !important;
	bottom: 10px;
	left: 10px;
}

.img_100:hover .srcicon-home {
	transform: scale(1);
}

.showmore a:hover {
	background-color: var(--background-hover);
}

.showmore a:hover svg {
	transform: translate(15px, 1px);
	transition: .4s;
}

.agency-home {
	padding-bottom: 30px;
}

.agency-title {
	font-size: 34px;
	color: var(--fifth-color);
	text-align: center;
	text-transform: uppercase;
	font-weight: 500;
	padding-bottom: 30px;
}

.agency-title .line{
	display: block;
	width: 50px;
	border: none;
	height: 3px;
	background-color: var(--primary-color);
	margin: 17px auto;
}

.agency-item img {
	height: 120px;
	object-fit: contain;
}

.agency-item {
	padding: 10px;
	text-align: center;
	border-radius: 20px;
	margin-top: 30px;
	margin-bottom: 30px;
	cursor: pointer;
}

.agency-item:hover {
	box-shadow: 0px 0px 20px var(--seventh-color);
}


.support {
	position: fixed;
	bottom: 20px;
	right: 20px;
	animation: pulse infinite;
	animation-duration: 4s;
	z-index: 999;
}

@keyframes pulse {
	0% {
		scale: 1;
	}

	50% {
		scale: 1.06;
	}

	100% {
		scale: 1;
	}
}

.fixed-social {
	position: fixed;
	right: 20px;
	bottom: 50px;
	z-index: 999;
	pointer-events: none;
}

.fixed-icon {
	text-align: right;
	transition: .3s linear;
	pointer-events: none;
}

.fixed-icon a {
	display: inline-block;
	transition-duration: .5s;
	transform-style: linear;
	transform: translate(100px, 0);
	opacity: 0;
	pointer-events: all;
}

.fixed-social .fixed-icon+.fixed-icon {
	margin-top: 10px;
}

.fixed-icon.show a {
	opacity: 1;
	transform: translate(0, 0);
}

.owl-dots {
	text-align: center;
}

.owl-dots span {
	width: 12px;
	height: 12px;
	border-radius: 99%;
	display: inline-block;
	background-color: var(--eighth-color);
}

.owl-dot:not(:first-child) span {
	margin-left: 10px;
}

.owl-dots .active span {
	background-color: var(--primary-color);
}



/*----Page----*/
.wrap-page {
	max-width: 992px;
	margin: auto;
}

.page-banner {
	position: relative;
	height: 200px;
}

/* .page-banner:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #D9E9F5 46%, rgba(255, 255, 255, .1) 69%, #D9E9F5 81%);
	z-index: 1;
} */

.page-banner img {
	position: absolute;
	height: 200px;
	left: 45%;
}

.banner-des {
    position: absolute;
    color: var(--second-color);
    font-size: 79px;
    font-weight: 500;
    z-index: 99;
    width: 50%;
    top: 50%;
    left: 0;
    margin: 0 calc((100% - 1280px) / 2);
    transform: translate(0, -50%);
    line-height: 100px;
    text-transform: uppercase;
}

.page-banner .banner-des {
	font-size: 40px;
	line-height: 46.33px;
	letter-spacing: 10px;
	width: 30%;
	color: var(--fifth-color);
}

.breadcrumb {
	max-width: 1310px;
	margin: auto;
}

.line-breacrumb {
	background-color: var(--ninth-color);
}

.page-intro {
	/* padding-bottom: 70px; */
	padding-bottom: 40px;
}

.page-intro .breadcrumb {
	margin-bottom: 0px;
}

.breadcrumb ol li a {
	color: var(--primary-color);
	font-size: 14px;
}

.page-title {
	text-align: center;
	padding-top: 42px;
}

.page-title span:first-child {
	display: block;
	letter-spacing: 3.2px;
	color: var(--primary-color);
	font-size: 16px;
	line-height: 19.09px;
	font-weight: 400;
}

.page-title span:last-child {
	display: block;
	color: var(--fifth-color);
	font-size: 32px;
	line-height: 40.57px;
	font-weight: 500;
	padding-top: 10px;
	padding-bottom: 18px;
	text-transform: uppercase;
}

.page-content {
	font-size: 16px;
	color: var(--fifth-color);
	line-height: 26px;
}

.page-content img,
.prd-detail-main .product-content img {
	padding-top: 20px;
	padding-bottom: 20px;
	max-width: 100% !important;
	height: auto !important;
}

.page-teams {
	margin-top: 20px;
}

.page-teams .teams-title {
	font-size: 24px;
	font-weight: 500;
	line-height: 28.64px;
	color: var(--fifth-color);
}

.teams-wrap {
	text-align: center;
}

.teams-section {
	display: inline-block;
	margin: 50px 37px 0 37px;
}

.teams-section img {
	border-radius: 99%;
}

.teams-section .team-content {
	padding-top: 31px;
}

.teams-section .team-content span {
	display: block;
}

.teams-section .team-content span:first-child {
	font-size: 22px;
	color: var(--fifth-color);
}

.teams-section .team-content span:last-child {
	font-size: 16px;
	color: var(--third-color);
	font-weight: 400;
}

.team-img-wrap {
	padding: 25px;
	background-color: var(--primary-background);
	border-radius: 99%;
	width: calc(100% - 50px);
	margin: auto;
}

.product-list-main .page-banner:before {
	background: linear-gradient(90deg, var(--tenth-color) 46%, var(--sixth-color) 69%, var(--tenth-color) 81%);
}

.productlist-content {
	padding-top: 54px;
	padding-bottom: 47px;
}

.prd-sidebar {
	font-weight: 500;
	font-size: 24px;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.prd-sidebar-item {
	margin-top: 10px;
	padding-left: 13px;
	font-size: 15px;
}

.prd-sidebar-item a {
	font-weight: 500;
}

.productlist-content .product-item,
.recommended_product .product-item {
	border: 1px solid var(--seventh-color);
	box-shadow: none;
}

.prditem-name {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: .3s;
	height: 48px;
}

.prditem-name-1-row {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: .3s;
	height: 50px;
}

/* .productlist-content .sidebar-product {
	padding-top: 3px;
} */

/* .sidebar-product .active a {
	color: var(--primary-color);
} */

.prd-sidebar a {
	color: var(--second-color);
}

.productlist-content .page-title {
	text-align: start;
	padding-top: 0px;
}

.productlist-content .page-title span:first-child {
	text-transform: uppercase;
}

.prd-sidebar-item span {
	min-width: 8px;
	min-height: 8px;
	border: var(--third-color) solid 1px;
	border-radius: 99%;
	display: block;
	margin-right: 10px;
}

/* .prd-sidebar-item a {
	display: flex;
	align-items: center;
} */

/* .sidebar-product .active span {
	background-color: var(--primary-color);
	border: var(--primary-color) solid 1px;
} */

/* .productlist-content .sidebar-product {
	padding-right: 23px;
} */

/* .productlist-content .productlist-col {
	padding-left: 23px;
} */

.prd-sidebar-item a img {
	width: 30px;
	margin-right: 10px;
}

.productlist-content .product-des {
	font-size: 16px;
	color: var(--fifth-color);
	line-height: 26px;
}

.productlist-content .product-des img {
	margin: 35px 0;
}

.breadcrumb>li+li:before {
	content: url('img/breadcrumb.svg');
}

.product-banner {
	position: relative;
}

.page-lienhe {
	position: relative;
}

.product-banner img {
	height: 200px;
}

.product-banner .banner-des {
	font-size: 40px;
	line-height: 46.33px;
	letter-spacing: 3.2px;
	width: 30%;
	color: var(--fifth-color);
}

.page-lienhe .banner-des {
	font-size: 40px;
	line-height: 46.33px;
	letter-spacing: 3.2px;
	width: 30%;
	color: var(--fifth-color);
}

.product-banner .banner-des {
	font-size: 40px;
	line-height: 46.33px;
	letter-spacing: 3.2px;
	width: 30%;
	font-weight: 500;
	color: var(--fifth-color);
}

.prditem-tag {
	font-size: 16px;
	color: var(--fifth-color);
	text-align: center;
	padding-top: 6px;
	height: 29px;
}

.productlist-col .page-title span:last-child {
	padding-bottom: 30px;
}

.product-detail-content {
	padding-top: 54px;
	padding-bottom: 40px;
}

.product-detail-content .page-title {
	padding-top: 0px;
	text-align: start;
	text-transform: uppercase;
}

.product-image {
	margin-top: 10px;
}

/* 
.product-image img {
	padding: 15px;
	border-radius: 20px;
	border: 1px solid var(--seventh-color);
	width: 100%;
} */

.wrap-product-detail-img {
	padding: 15px;
	border-radius: 20px;
	border: 1px solid var(--seventh-color);
	/* width: 100%; */
}

.wrap-product-detail-img .img_100>img {
	width: calc(100% - 30px);
	height: calc(100% - 30px);
}

.wrap-product-detail-img .img_100:hover img {
	transform: scale(1);
}

.product-name {
	font-size: 26px;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.product-code {
	font-size: 20px;
	color: var(--fifth-color);
	font-weight: 500;
	display: block;
	line-height: 23.87px;
	padding-top: 7px;
}

.product-att {
	padding-top: 21px;
}

.product-att .d-flex span {
	font-size: 16px;
	line-height: 32px;
	font-weight: 400;
	color: var(--fifth-color);
}

.product-att .d-flex span:first-child {
	padding-right: 5px;
}

.product-att .d-flex span:last-child {
	font-weight: 700;
}

.owl-related-product .product-item {
	box-shadow: none;
	border: 1px solid var(--seventh-color);
}

.product-detail-info {
	margin-bottom: 50px;
}

.related-product-title {
	font-size: 34px;
	line-height: 40.57px;
	color: var(--fifth-color);
	font-weight: 500;
	padding-bottom: 42px;
	display: block;
}

.related-product-item {
	position: relative;
}

.owl-related-product .owl-nav {
	display: none;
}

.owl-related-product .owl-nav .owl-prev {
	background-color: var(--primary-background) !important;
	width: 34px;
	height: 34px;
	border-radius: 99%;
}

.owl-related-product .owl-nav .owl-next {
	background-color: var(--primary-color) !important;
	width: 34px;
	height: 34px;
	border-radius: 99%;
	margin-left: 18px;
}

.related-product-item .product-owl-nav .owl-prev-custom {
	background-color: var(--primary-background);
	border-radius: 90%;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 55px;
	top: 0;
	transition: .3s;
}

.related-product-item .product-owl-nav .owl-next-custom {
	background-color: var(--primary-background);
	border-radius: 90%;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 15px;
	top: 0;
	transition: .3s;
}

.related-product-item .product-owl-nav .owl-next-custom:hover {
	background-color: var(--primary-color);
}

.related-product-item .product-owl-nav .owl-prev-custom:hover {
	background-color: var(--primary-color);
}

.related-product-item .product-owl-nav .owl-prev-custom svg path {
	transition: .3s;
}

.related-product-item .product-owl-nav .owl-next-custom svg path {
	transition: .3s;
}

.related-product-item .product-owl-nav .owl-next-custom:hover svg path {
	fill: var(--second-color);
}

.related-product-item .product-owl-nav .owl-prev-custom:hover svg path {
	fill: var(--second-color);
}

.product-image {
	margin-bottom: 50px;
}

.paging-n {
	text-align: center;
}

.paging-n li {
	font-size: 18px;
	line-height: 21.48px;
	background-color: var(--primary-background);
	width: 34px;
	height: 34px;
	display: inline-block;
	border-radius: 99%;
	transition: .3s;
}

.paging-n li a {
	color: var(--third-color);
}

.paging-n li:not(:first-child) {
	margin-left: 10px;
}

.paging-n .active a {
	color: var(--second-color);
	background-color: var(--primary-color);
	border-radius: 90%;
}

.paging-n li a {
	height: 34px;
	display: block;
	line-height: 34px;
	transition: .3s;
}

.paging-n li:hover {
	background-color: var(--primary-color);
}

.paging-n .active:hover {
	background-color: var(--primary-background);
	cursor: pointer;
}

.paging-n li a:hover {
	color: var(--second-color);
}

/* a[rel="first"] {
	transition: .3s;
	border-radius: 99%;
}

a[rel="first"]:hover {
	color: var(--second-color);
	background-color: var(--primary-color);
}

a[rel="last"] {
	transition: .3s;
	border-radius: 99%;
}

a[rel="last"]:hover {
	color: var(--second-color);
	background-color: var(--primary-color);
} */

.page-doitac::before {
	background: linear-gradient(90deg, var(--eleventh-color) 46%, rgba(255, 255, 255, .1) 69%, var(--eleventh-color) 81%);
}

.col-doitac {
	width: calc((100% - 130px)/5);
	float: left;
	position: relative;
	min-height: 1px;
}

.owl-carousel-agency .owl-stage-outer {
	padding-bottom: 24px;
}

.page-lienhe-content .company-name-footer {
	color: var(--primary-color);
	font-size: 24px;
	font-weight: 500;
	line-height: 28.64px;
}

.page-lienhe-content .page-title {
	padding-bottom: 30px;
}

.lienhe-info-first .footer-company-info-second {
	width: 100%;
	display: flex;
	border-right: 1px solid var(--twelfth-color);
	margin-bottom: 30px !important;
}

.lienhe-info:last-child {
	padding-left: 49px;
	width: calc(100% - 55.333333%);
}

.lienhe-info-first {
	width: 55.333333%;
}

.lienhe-info-first p {
	margin-bottom: 5px;
}

.lienhe-info .footer-company-info {
	margin-bottom: 15px;
}

.page-lienhe-content hr {
	height: 1px;
	border: none;
	background-color: var(--twelfth-color);
	width: calc(100% - 30px);
	text-align: center;
	margin: 0;
}

.contact-title {
	font-weight: 500;
	font-size: 16px;
	line-height: 25px;
	text-align: center;
	padding-top: 23px;
	display: block;
	padding-bottom: 16px;
}

.contact-title p {
	margin-bottom: 0;
}

.contact-label {
	font-size: 16px;
	color: var(--third-color);
	font-weight: 400;
}

.contact-flex textarea {
	max-width: 100%;
	height: 100px;
	background-color: var(--primary-background);
}

.form-group input {
	background-color: var(--primary-background);
	border: none;
	box-shadow: none;
}

.form-group textarea {
	border: none;
	box-shadow: none;
}

.send-contact {
	text-align: center;
}

.contact-sbm {
	height: 50px;
	width: 150px;
	color: var(--second-color);
	border-radius: 10px;
	border: none;
	background-color: var(--primary-color) !important;
	font-size: 18px;
	margin-top: 30px;
	font-weight: 500;
}

.page-tuyendung-banner {
	height: 200px;
	background-repeat: no-repeat;
	background-position-x: 50%;
	position: relative;
}

.page-doitac-banner {
	height: 200px;
	background-repeat: no-repeat;
	background-position-x: 50%;
	position: relative;
}

.page-tuyendung-banner .banner-des {
	font-size: 40px;
	line-height: 46.33px;
	letter-spacing: 3.2px;
	width: 30%;
	color: var(--fifth-color);
}

.page-doitac-banner .banner-des {
	font-size: 40px;
	line-height: 46.33px;
	letter-spacing: 3.2px;
	width: 30%;
	color: var(--fifth-color);
}

.page-tuyendung .page-title {
	text-align: start;
}

.tuyendung-title span {
	font-size: 32px;
	font-weight: 500;
	line-height: 40.57px;
	color: var(--primary-color);
}

.tuyendung-des {
	color: var(--fifth-color);
	font-size: 16px;
	line-height: 30px;
}

.tuyendung-content .showmore {
	float: right;
}

.page-tuyendung .showmore a {
	height: 40px;
	line-height: 40px;
	margin-top: 2px;
	border-radius: 10px;
	text-transform: uppercase;
	font-size: 18px;
}

.tuyendung-des {
	padding-top: 23px;
	padding-bottom: 92px;
}

.tuyendung-box {
	background-color: var(--primary-background);
	border-radius: 10px;
	padding: 14px 17px;
}

.box-tuyendung-title {
	font-size: 18px;
	color: var(--fifth-color);
	font-weight: 500;
}

.active .box-tuyendung-title {
	color: var(--primary-color);
}

.box-tuyendung-info {
	padding-top: 12px;
}

.tuyendung-location {
	float: left;
}

.tuyendung-time {
	float: right;
	color: var(--third-color);
}

.tuyendung-salary::before {
	content: url('img/salary.svg');
	padding-right: 10px;
	transform: translate(0px, 2px);
}

.tuyendung-salary {
	display: flex;
	width: 100%;
	padding-top: 12px;
}

.tuyendung-salary span {
	font-size: 14px;
	color: var(--fifth-color);
	line-height: 16.71px;
}

.tuyendung-location span {
	font-size: 14px;
	color: var(--fifth-color);
	line-height: 16.71px;
}

.tuyendung-time span {
	font-size: 14px;
	color: var(--fifth-color);
	line-height: 16.71px;
}

.tuyendung-type::before {
	content: url('uploads/images/img/bag.svg');
	padding-right: 10px;
	transform: translate(0px, 2px);
}

.tuyendung-type {
	display: flex;
	padding-top: 9px;
}

.tuyendung-type span {
	font-size: 14px;
	color: var(--fifth-color);
	line-height: 16.71px;
}

.tuyendung-box:not(:first-child) {
	margin-top: 16px;
}

.scroll-box {
	height: 758px;
	overflow-y: scroll;
	margin-top: 42px;
}

.owl-carousel-agency {
	width: calc(100% - 15px);
	margin: auto;
	margin: 0 15px;
	position: relative;
}

.owl-carousel-agency .owl-nav .owl-next,
.owl-carousel-agency .owl-nav .owl-prev {
	position: absolute;
	top: 37%;
}

.owl-carousel-agency .owl-nav .owl-next {
	left: calc(100% - 10px);
}

.owl-carousel-agency .owl-nav .owl-prev {
	left: -15px;
}

* {
	scrollbar-width: auto;
	scrollbar-color: var(--thirteenth-color) var(--primary-background);
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
	width: 12px;
}

*::-webkit-scrollbar-track {
	background: var(--primary-background);
	border: 3px solid var(--second-color);
	border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
	background-color: var(--thirteenth-color);
	border-radius: 10px;
	border: 3px solid var(--second-color);
}

.page-tuyendung .col-sm-9 .showmore {
	float: right;
}

.page-doitac .agency-item {
	border: 1px var(--seventh-color) solid;
	margin: 13px;
}

.footer-info-wrap .footer-add p:nth-child(2) {
	margin: 0;
	margin-bottom: 5px;
}

.footer-info-wrap .footer-add p:nth-child(4) {
	margin-bottom: 5px;
}

.footer-info-wrap .footer-add p:last-child {
	margin: 0;
}

.src-active-img {
	display: none;
}

.sidebar-product .active .src-active-img {
	display: block;
}

.sidebar-product .active .src-notactive-img {
	display: none;
}

.tuyendung-info-title {
	font-weight: 600;
	display: block;
}

.listinfo-tuyendung {
	list-style: disc;
	padding-left: 18px;
}

.page-thanks {
	padding-top: 35px;
}

.adm-glyphicon span {
	width: 10px;
	display: inline-block !important;
	height: 10px;
	/* position: absolute; */
	padding: 0 !important;
	margin: 0 !important;
}

.page-video .page-title {
	text-align: center;
}

.page-video .page-title span:last-child {
	padding-bottom: 30px;
}

.page-video .banner-des {
	color: var(--fourth-color);
}

.imgandvideo-section .video-item a {
	position: relative;
	display: block;
}

.imgandvideo-section .video-item a:hover .play-youtube-btn {
	scale: 1.1;
}

.play-youtube-btn {
	position: absolute;
	top: 40%;
	left: 40%;
	/* transform: translate(-50%, -50%); */
	width: 15%;
	transition: .3s;
}

.video-item a img:first-child {
	width: 100%;
	border-radius: 20px;
	object-fit: cover;
}

.modal-content {
	border-radius: 20px;
}

.modal-ytb .modal-body iframe {
	border-radius: 20px;
	border: 0;
}

.slider-product {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--fifth-color);
	z-index: 99999;
	overflow: visible;
	opacity: 0;
	transition: 0.3s linear;
	visibility: hidden;
}

.slider-body {
	position: relative;
	width: 100%;
	height: 100%;
}

.slider-product.active {
	opacity: 1;
	visibility: visible;
}

.slider-img-wrap {
	position: absolute;
	padding: 15px;
	border-radius: 20px;
	background-color: var(--second-color);
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 930px;
}

.slider-img-close {
	position: absolute;
	z-index: 9999999;
}

.big-thumb {
	position: relative;
	margin-bottom: 28px;
}

.big-thumb .next-btn {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(-50%, -50%);
}

.big-thumb .pre-btn {
	position: absolute;
	top: 50%;
	left: 15px;
	transform: translate(50%, -50%);
}

.big-thumb img {
	/* width: 100%; */
	border-radius: 10px;
	object-fit: cover;
}

.big-thumb span {
	font-size: 24px;
	line-height: 28.64px;
	color: var(--fifth-color);
	font-weight: 500;
	margin-top: 18px;
	display: block;
	text-transform: capitalize;
}

.img-thumb {
	position: relative;
}

.owl-img-thumb {
	width: 90%;
	margin: auto;
}

.img-thumb .next-btn {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
	z-index: 9999;
}

.img-thumb .pre-btn {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
	z-index: 9999;
}

.img-thumb .img-slide-item img {
	border-radius: 10px;
	height: 80px;
	object-fit: cover;
}

.image-item img {
	width: 100%;
	border-radius: 20px;
	object-fit: cover;
}

.img-slide-item img {
	filter: brightness(50%);
}

.img-slide-item.active img {
	filter: brightness(1);
}

.img-pageimg-title {
	padding-top: 17px;
	font-size: 16px;
	line-height: 19.09px;
	color: var(--fifth-color);
	font-weight: 500;
	text-transform: capitalize;
}

.imgandvideo-item {
	padding-bottom: 30px;
}

.slider-close {
	top: 7%;
	right: 15%;
	transform: translate(-50%, -50%);
}

.slider-close:hover {
	cursor: pointer;
}

.modal-dialog {
	max-width: 900px;
	width: 900px;
}

/*------------*/
.owl-carousel-slshow .owl-dots {
	display: none;
}

.owl-carousel-slshow .owl-nav {
	display: none;
}

.google-map iframe {
	width: 100%;
	height: 100%;
}

/* fix lại */
/* .prd-detail-main .product-image .img_100{
	padding-bottom: 130%;		
} */

.prd-detail-main .product-content h1,
.page-content h1 {
	font-size: 24px;
	margin: 0 0 20px 0;
}

.prd-detail-main .product-content h2,
.page-content h2 {
	font-size: 20px;
	margin: 0 0 15px 0;
}

.prd-detail-main .product-content h3,
.page-content h3 {
	font-size: 18px;
	margin: 0 0 15px 0;
}

.prd-detail-main .product-content h4,
.page-content h4 {
	font-size: 16px;
	margin: 0 0 10px 0;
}

.prd-detail-main .product-content h5,
.page-content h5 {
	font-size: 13px;
	margin: 0 0 5px 0;
}

.prd-detail-main .product-content h6,
.page-content h6 {
	font-size: 11px;
	margin: 0 0 5px 0;
}

.prd-detail-main .product-content p {
	font-size: 15px;
	margin: 0 0 10px 0;
}

.page-content p {
	font-size: 16px;
	margin: 0 0 10px 0;
}

.site-title {
    text-indent: -9999px;
    height: 1px;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

h1, h2, h3, h4, h5, h6, p{
    line-height: 1.4;
    font-size: unset;
    font-weight: unset;
    margin: 0px;
    padding: 0px;
}

/* ----------------------fix điểm */
.banner{
	min-height: 440px;
}

.footer-company-info svg path{
	fill: var(--third-color);
}

.back-top svg circle{
	/* fill: var(--background-hover); */
	fill: var(--primary-color);
}

.pulse-hover.phone svg circle{
	fill: var(--sixteenth-color);
}

/* Category home  */
.category-home-wrap,
.recommended{
	padding-bottom: 60px;
}

.category-home{
	margin: 0 -15px;
}

.category-home .item{
	width: 20%;
	float: left;
	padding: 0 15px;
}

.category-home .item .img_100{
	position: relative;
    height: 0;
    padding-bottom: 75%;
    overflow: hidden;
    display: block;
	margin-bottom: 10px;
}

.category-home .item .name{
	font-size: 24px;
	font-weight: 500;
}

/* News list  */
.small-news {
    margin-bottom: 30px;
}

.small-news .wrap-img{
    padding-bottom: 65.51%;
	position: relative;
    height: 0;
    overflow: hidden;
    display: block;
}

.small-news-time {
    margin: 20px 0 5px;
	font-size: 13px;
    font-weight: 400;
    font-style: italic;
	color: var(--third-color);
}

.small-news-title {
    font-size: 17px;
	font-weight: 500;
}

/* Pagination */
.pagination-build{
    text-align: center;
}

.pagination-build > div{
    display: inline-block;
}

.pagination-build > div:not(:last-child){
    margin-right: 10px;
}

.pagination-build > div a{
    width: 34px;
    height: 34px;
	background-color: var(--primary-background);
    display: inline-block;
    text-align: center;
    line-height: 34px;
    transition: .3s;
    border-radius: 50%;
    font-size: 18px;
    color: var(--third-color);
}

.pagination-build .current a,
.pagination-build >div a:hover{
    background: var(--primary-color);
    color: var(--second-color);
}

/* Sidebar news  */
.sidebar-news .list-title{
	margin-bottom: 20px;
    text-transform: uppercase;
	font-size: 18px;
    font-weight: 500;
    line-height: 28.8px;
}

.list-content .list-content-chi-tiet:not(:last-child) {
    margin-bottom: 20px;
}

.sidebar-news-img.wrap-img {
    padding-bottom: 71.42%;
	position: relative;
    height: 0;
    overflow: hidden;
    display: block;
}

.sidebar-news-img {
    display: block;
    margin-right: -10px;
}

.news-title {
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
	font-size: 14px;
}

.news-time {
    margin-top: 5px;
	font-size: 13px;
    font-weight: 400;
    font-style: italic;
    line-height: 20.8px;
    color: var(--third-color);
}

.list-news-menu {
    margin-bottom: 40px;
}

/* -----------breadcrumb------- */
.breadcrumb-build{
    background-color: var(--ninth-color);
    padding: 8px 0;
}

.breadcrumb-build ol{
	margin: 0;
	padding: 0;
}

.breadcrumb-build ol li{
    display: inline-block;
    position: relative;
}

.breadcrumb-build ol li:last-child a{
    pointer-events: none;
}

.breadcrumb-build ol li:not(:first-child){
    margin-left: 24px;
}

.breadcrumb-build li a{
    font-size: 14px;
    line-height: 21px;
    color: var(--sixth-color);
    transition: .3s linear;    
    text-transform: capitalize;
}

.breadcrumb-build li:last-child a{
    color: var(--primary-color);
}

.breadcrumb-build li a:hover{
    color: var(--primary-color);
}

.breadcrumb-build li:not(:first-child)::before{
	content: url(img/breadcrumb.svg);
    position: absolute;
    top: 0px;
    left: -12px;
}

.news-detail{
	padding-top: 60px;
}

h1.news-title{
	font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
	color: var(--fifth-color);
}

.products-sort-order {
    text-align: right;
	margin-bottom: 10px;
}

.products-sort-order span {
    font-size: 16px;
	color: var(--third-color);
}

.products-sort-order .select-form {
    display: inline-block;
    margin-left: 19px;
}

.products-sort-order #type {
    color: var(--fifth-color);
    padding: 8px 10px;
    border: 1px solid var(--third-color);
    margin-bottom: 10px;
}

.products-sort-order #type:focus{
	outline: none;
}

#type * {
    font-size: 16px;
}

/* Sidebar product  */
.sidebar-product .block{
	padding: 25px;
	border: 1px solid var(--seventh-color);
	margin-bottom: 25px;
}

.filter-items .title{
	font-size: 16px;
	margin-bottom: 8px;
	color: var(--third-color);
}

.filter-items .select-filter {
    line-height: 29px;
    display: block;
	font-size: 15px;
	color: var(--third-color);
}

.filter-items .select-filter svg {
    transform: translateY(3px);
    margin-right: 5px;
}

.filter-items .select-filter .check-filter-success {
    display: none;
}

.filter-items .select-filter:hover .check-filter-success,
.filter-items .select-filter.active .check-filter-success{
    display: inline-block;
}

.filter-items .select-filter:hover .check-filter-none,
.filter-items .select-filter.active .check-filter-none{
    display: none;
}

.filter-items{
	margin-top: 20px;
}

.sidebar-product .price-range {
    width: 96%;
    margin-left: 4px;
    background-color: var(--sixth-color);
}

.ui-slider-horizontal {
    height: 2px;
}

.ui-widget.ui-widget-content {
    border-color: var(--twelfth-color) !important;
}

.ui-slider .ui-slider-handle {
    width: 12px;
    height: 12px;
    border: 2px solid var(--sixth-color);
    background-color: var(--sixth-color);
    border-radius: 50% !important;
}

.ui-slider .ui-slider-range {
    border-color: var(--sixth-color);
    background-color: var(--sixth-color);
    height: 3px;
}

.filter-price-title {
    margin-top: 15px;
	font-size: 15px;
}

.icon-filter{
    display: none;
}

.sidebar-product .close-filter {
    display: none;
}

/* Product detail  */
#slider .wrap-img{
	padding-bottom: 100%;
	position: relative;
    height: 0;
    overflow: hidden;
    display: block;
	margin-bottom: 20px;
	cursor: pointer;
}

.thumbnail-slider-container{
	padding: 0 30px;
}

#thumbnailSlider .wrap-img {
    padding-bottom: 100%;
    cursor: pointer;
	position: relative;
    height: 0;
    overflow: hidden;
    display: block;
}

#thumbnailSlider .wrap-img:hover, #thumbnailSlider .wrap-img.active{
	border: 2px solid var(--primary-color);
}

#thumbnailSlider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
	font-size: 20px;
}

#thumbnailSlider .owl-nav .owl-prev {
    left: -30px;
}

#thumbnailSlider .owl-nav .owl-next {
    right: -30px;
}

.product-detail-right .price{
	font-size: 24px;
	color: var(--primary-color);
	font-weight: 700;
}

.product-detail-right .price .tax{
	font-size: 13px;
	color: var(--third-color);
	font-weight: 400;
}

.product-detail-right .small-des{
	padding: 25px;
	background-color: var(--ninth-color);
	font-size: 15px;
	border-radius: 6px;
	margin-top: 35px;
}

.product-detail-right .extra-options .title{
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 15px;
	margin-top: 35px;
}

.product-detail-right .extra-options select{
	padding: 8px 16px;
	font-size: 13px;
	background-color: var(--ninth-color);
	border-radius: 6px;
	cursor: pointer;
	width: 100%;
	border: 1px solid var(--twelfth-color);
	margin-bottom: 5px;
}

.product-detail-right .extra-options .labell{
	margin-top: 7px;
	height: 33px;
}

.product-detail-right .extra-options .labell span{
	color: #d70909;
}

.product-detail-right .required{
	margin-top: 15px;
	color: var(--third-color);
}

.product-detail-right .extra-price{
	font-size: 13px;
	margin-top: 10px;
}

.product-detail-right .extra-price span{
	font-weight: 700;
}

.product-detail-right .qty {
    display: inline-block;
    position: relative;
}

.product-detail-right .qty input {
	border-radius: 6px 0 0 6px;
    border: 1px solid var(--twelfth-color);
	width: 48px;
	height: 44px;
	padding: 3px 8px;
}

.product-detail-right .qty button{
	position: absolute;
	border: 1px solid var(--twelfth-color);
	background-color: var(--second-color);
	width: 22px;
	height: 22px;
	right: -21px;
	padding: 0;
}

.product-detail-right .qty button:hover{
	background-color: var(--ninth-color);
}

.product-detail-right .qty .prd_plus{
	top: 0;
	border-radius: 0 6px 0 0;
	border-bottom: 0px;
}

.product-detail-right .qty .prd_minus{
	bottom: 0;
	border-radius: 0 0 6px 0;
}

.product-detail-right .button-wrap{
	margin-top: 40px;
}

.product-detail-right .add-cart{
	display: inline-block;
	border: none;
	background: #fa2f65;
	border-radius: 6px;
    color: var(--second-color);
	padding: 12px 25px 12px 55px;
    margin-left: 25px;
	text-transform: uppercase;
	font-weight: 700;
	position: relative;
}

.product-detail-right .add-cart.het-hang{
	cursor: not-allowed;
}

.product-detail-right .add-cart.disabled_now{
	pointer-events: none;
    cursor: not-allowed;
    opacity: .5;
}

.product-detail-right .add-cart svg{
	position: absolute;
	top: 50%;
	left: 25px;
	transform: translateY(-50%);
}

.product-detail-right .status{
	font-size: 15px;
	font-weight: 700;
	margin-top: 10px;
}

.product-detail-right .status svg{
	transform: translateY(6px);
}

.tab-detail{
	border-bottom: 2px solid var(--seventh-color);
	margin-bottom: 0px;
	padding: 15px;
	text-align: center;
}

.tab-detail li {
    display: inline-block;
    padding: 5px 18px;
	position: relative;
}

.tab-detail li a {
    color: var(--third-color);
    font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;
    display: inline-block;
}

.tab-detail li.active a{
	color: var(--fifth-color);
	font-weight: 700;
}

.tab-detail li.active::before{
	content: '';
	position: absolute;
	bottom: -17px;
	width: 100%;
	height: 2px;
	left: 0;
	background-color: var(--primary-color);
}

.prd-detail-content .tab-content{
	padding: 30px;
}

.sec-prd-des{
	margin-top: 60px;
}

.sec-prd-des .title{
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
	text-align: center;
}

.sec-prd-des .item{
	margin-bottom: 20px;
}

.product-colors .item .img_100{
    padding-bottom: 57.37%;
    position: relative;
    height: 0;
    overflow: hidden;
    display: block;
	border-radius: 6px;
}

.product-available-options .item .img_100{
    padding-bottom: 82%;
    position: relative;
    height: 0;
    overflow: hidden;
    display: block;
	border-radius: 6px;
	border: 1px solid var(--twelfth-color);
}

.sec-prd-des .item .name{
	margin-top: 25px;
	font-size: 16px;
	text-align: center;
	font-weight: 500;
}

/* --------Cart page-------- */
.cart-page{
    padding: 50px 0;
}

.cart-items{
    border: 1px solid var(--twelfth-color);
    padding: 25px;
}

.cart-items .title-pr-cart{
    font-size: 14px;
    padding-bottom: 14px;
    text-transform: uppercase;
}

.cart-items .underline{
    border-bottom: 1px solid var(--twelfth-color);
}

.cart-items .cart-item {
    margin-top: 15px;
}

.cart-items .cart-item .wrap-img{
	position: relative;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden;
    display: block;
}

.cart-items .cart-item .product-name{
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: capitalize;
    line-height: 22px;
	font-weight: 500;
}

.cart-items .cart-item .delete-cart{
    font-size: 15px;
    text-decoration: underline;
    display: inline-block;
    margin-top: 10px;
}

.cart-items .cart-item .product-price {
    font-size: 15px;
    color: var(--primary-color);
}

.cart-items .cart-item .extra{
	margin-top: 10px;
}

.cart-items .cart-item .extra span{
	font-weight: 700;
}

.cart-items .input-qty{
    text-align: center;
    width: 46%;
    height: 36px;
    padding: 2px 10px;
    border: 1px solid var(--twelfth-color);
    color: var(--fifth-color);
    display: block;
    margin-right: 0px;
    float: left;
    border-radius: 0px;
}

/* Chrome, Safari, Edge, Opera */
.cart-items .input-qty::-webkit-outer-spin-button,
.cart-items .input-qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-items .minus,.cart-items .plus{
    width: 27%;
    height: 36px;
    display: block;
    border: 1px solid var(--twelfth-color);
    text-align: center;
    font-size: 20px;
    padding: 0;
    cursor: pointer;
    background: var(--second-color);
    float: left;
}

.cart-items .minus{
    border-right: 0px;
    border-radius: 3px 0px 0px 3px;
}

.cart-items .plus{
    border-left: 0px;
    border-radius: 0px 3px 3px 0px;
}

.cart-items .minus span{
    display: inline-block;
    transform: translateY(-1px);
}

.cart-items .plus span{
    display: inline-block;
    transform: translateY(-2px);
}

.cart-items .cart-item .product-price.total{
    font-size: 18px;
	margin-top: 7px;
}

.cart-summary{
    border: 1px solid var(--twelfth-color);
    padding: 20px;
}

.cart-summary .title{
    font-size: 18px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--twelfth-color);
    text-transform: uppercase;
}

.cart-summary .underline{
    border-bottom: 1px solid var(--twelfth-color);
    padding: 15px 0px;
    font-size: 16px;
}

.cart-summary .tong-cong{
    font-size: 20px;
    padding: 15px 0px;
    text-transform: uppercase;
}

.form-cart input{
    margin-bottom: 10px;
    padding: 10px 15px;
    width: 100%;
    border-radius: 4px;
    color: var(--third-color);
    font-size: 16px;
    border: 1px solid var(--twelfth-color);
    font-weight: 500;
}

.form-cart .submit-cart,
.shopping-continue{
    width: 100%;
    border: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 32px;
    border-radius: 4px;
    background: var(--primary-color);
    color: var(--second-color);
    text-transform: uppercase;
    margin-top: 5px;
    line-height: 18px;
    transition: .2s ease-in-out;
}

.shopping-continue{
    display: block;
    margin-top: 15px;
    background-color: var(--fifth-color);
    text-align: center;
}

.shopping-continue:hover,
.form-cart .submit-cart:hover{
	color: var(--second-color);
}

.cart-wrap{
	text-align: right;
	padding-top: 18px;
}

.cart-wrap .icon{
	display: inline-block;
	position: relative;
}

.cart-wrap .icon .cart-num {
    position: absolute;
    top: -8px;
    right: -10px;
    display: inline-block;
    width: 19px;
    height: 19px;
    background-color: var(--fifth-color);
    border-radius: 50%;
    line-height: 19px;
    text-align: center;
	color: var(--second-color);
	font-size: 13px;
}

@media only screen and (min-width: 2500px) {
	.home .banner .banner-des {
		max-width: 800px;
	}

	.page .page-intro .banner-des,
	.product .product-list-main .banner-des,
	.single .product-list-main .banner-des,
	.page-doitac .banner-des,
	.page-lienhe .banner-des,
	.page-tuyendung .banner-des {
		max-width: 430px;
	}


}

@media only screen and (min-width: 1920px) {
	.product-banner {
		background-position: 50%;
		background-size: cover;
	}

	.page-lienhe {
		background-position: 50%;
		background-size: cover;
	}

	.page-tuyendung-banner {
		background-position: 50%;
		background-size: cover;
	}

	.page-doitac-banner {
		background-position: 50%;
		background-size: cover;
	}

	.banner-wrap {
		background-size: cover;
	}

}

@media only screen and (max-width: 1320px) {
	.banner-des {
		margin: 0 15px;
		font-size: 60px;
	}
}

@media only screen and (max-width: 768px) {
	.logo-header {
		display: inline-block;
		width: 100%;
		text-align: center;
		/* float: left; */
	}

	.bars-menu {
		margin-top: 20px;
	}

	.header-lang {
		text-align: center;
		transform: translate(0px, 4px);
	}

	.country-display {
		background: var(--primary-background);
		border-radius: 100px;
		width: 129px;
		height: 34px !important;
	}

	.focus-category {
		border-bottom: none;
		margin-left: 0px;
	}

	.footer {
		background-color: var(--primary-background);
		padding-top: 20px;
		padding-bottom: 22px;
	}

	.end-ft p {
		font-size: 12px;
		margin-bottom: 0;
	}

	.end-ft {
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.media-footer {
		width: 100%;
		height: 30px;
		margin-top: 20px;
		line-height: 0;
	}

	.logo-footer {
		width: 100%;
		text-align: center;
	}

	.lang-text {
		padding-left: 5px;
		padding-right: 5px;
	}

	.country-list .country {
		text-align: start;
	}

	.country-list .country-wrap {
		padding: 18px 15px;
	}

	.footer-company-info:first-child {
		padding-top: 10px;
		padding-bottom: 0px;
	}

	.google-map {
		padding-top: 20px;
	}

	.media-footer-mobile > span {
		height: 30px;
		line-height: 35px;
		overflow: hidden;
		float: left;
	}

	.wrap-media-icon {
		text-align: center;
	}

	.introimg-wrap {
		max-width: 100% !important;
	}

	.footer-add {
		width: calc(100% - 20px);
	}

	.language {
		width: 129px;
		background-color: var(--primary-background);
		text-align: center;
		height: 34px;
		line-height: 34px;
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 100px;
		float: right;
		transform: translate(0px, 3px);
	}

	.language span {
		padding-left: 5px;
		padding-right: 5px;
	}

	.focus-category a {
		border-bottom: none;
	}

	.categories-menu {
		padding-left: 0px !important;
	}

	.footer-info-wrap {
		width: 100%;
	}

	.footer-des {
		padding-top: 5px;
	}

	.footer-map {
		padding-top: 0px;
	}

	.copyright {
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.media-footer-mobile {
		padding-top: 20px;
	}

	.media-footer-mobile .media-icon-footer {
		display: inline-block;
		margin-top: 0;
	}

	.media-footer-mobile .media-icon-footer:first-child{
		padding-left: 0px;
	}

	.banner-wrap:before {
		background: linear-gradient(180deg, var(--primary-color) 30%, var(--sixth-color));
	}

	.banner-des {
		font-size: 40px;
		margin: 0px;
		text-align: center;
		width: 100%;
		top: 30px;
		transform: none;
		line-height: 46.33px;
	}

	.introhome-wrap {
		margin-top: 0;
	}

	.introduce-home {
		padding-top: 25px;
		padding-bottom: 25px;
	}

	.intro-text {
		width: 100%;
		padding-top: 28px;
	}

	.introimg-wrap img:last-child {
		right: 0;
		transform: translate(0%, 45%);
		left: auto;
		width: 35%;
	}

	.intro-img-mobile {
		width: 100% !important;
		min-height: 200px;
	}

	.showmore a {
		margin: auto;
	}

	.introhome-wrap .showmore a {
		margin-top: 17px;
	}

	.product-home {
		padding-bottom: 30px;
		padding-top: 26px;
	}

	.section-title {
		padding-bottom: 20px;
		font-size: 24px;
	}

	.product-home .col-xs-12:not(:last-child) .product-item {
		margin-bottom: 30px !important;
	}

	.prditem-image {
		padding-top: 20px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.service-home {
		padding: 30px 0;
		background-image: unset;
		background-color: var(--primary-color);
	}

	.service-item-mb {
		background-color: var(--second-color);
		padding: 10px;
		border-radius: 20px;
		margin-bottom: 24px;
	}

	.service-image-mb {
		text-align: center;
		position: relative;
	}

	.service-name-mb {
		font-size: 24px;
		font-weight: 500;
		text-align: center;
		padding-top: 16px;
		padding-bottom: 9px;
	}

	.service-des-mb {
		font-size: 16px;
		text-align: center;
		color: var(--third-color);
		display: -webkit-box;
		-webkit-line-clamp: 4;
		-webkit-box-orient: vertical;
		overflow: hidden;
		height: 90px;
		font-weight: 300;
	}

	.service-des-mb strong {
		font-weight: 500;
	}

	.service-item-mb .showmore a {
		margin-bottom: 26px;
		margin-top: 17px;
	}

	.section-title-2 {
		padding-bottom: 10px;
		font-size: 24px;
	}

	.page-banner .banner-des {
		font-size: 24px;
		line-height: 23.17px;
		text-align: start;
		letter-spacing: 1px;
		width: 50%;
		top: 50%;
		left: 20px;
		transform: translate(0, -50%);
	}

	.page-banner:before {
		background: linear-gradient(90deg, var(--fourteenth-color) 46%, var(--sixth-color));
	}

	.product-banner img {
		height: 100px;
	}

	.page-doitac-banner {
		height: 100px !important;
		background-size: cover;
	}

	.page-tuyendung-banner {
		height: 100px !important;
		background-size: cover;
	}

	.page-lienhe {
		height: 100px !important;
		background-position: 50%;
		background-size: cover;
	}

	.product-banner .banner-des {
		font-size: 20px;
		line-height: 23.17px;
		letter-spacing: 1px;
		width: 50%;
		color: var(--fifth-color);
		left: 13px;
		text-align: start;
		top: 50% !important;
		transform: translate(0, -50%);
	}

	.page-doitac .banner-des {
		font-size: 20px;
		line-height: 23.17px;
		letter-spacing: 1px;
		width: 50%;
		color: var(--fifth-color);
		left: 13px;
		text-align: start;
	}

	.page-tuyendung .banner-des {
		font-size: 20px;
		line-height: 23.17px;
		letter-spacing: 1px;
		width: 50%;
		color: var(--fifth-color);
		left: 13px;
		top: 50% !important;
		text-align: start;
		transform: translate(0, -50%);
	}

	.product-banner {
		background-position: 50%;
		background-size: cover;
	}

	.page-lienhe .banner-des {
		font-size: 20px;
		line-height: 23.17px;
		letter-spacing: 1px;
		width: 50%;
		color: var(--fifth-color);
		left: 13px;
		text-align: start;
		top: 50% !important;
		transform: translate(0, -50%);
	}

	.productlist-content {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.productlist-content .page-title {
		text-align: center;
	}

	#homepage a {
		padding-left: 0px;
		padding-right: 0px;
		padding-bottom: 0px;
	}

	#homepage {
		margin-bottom: 15px;
	}

	.page-banner {
		height: 100px;
	}

	.agency-home {
		padding-top: 20px;
	}

	.agency-item {
		padding: 0px;
		margin-top: 0px;
		margin-bottom: 0px;
	}

	.agency-item img {
		border: 1px solid var(--seventh-color);
		border-radius: 10px;
		height: 100px;
		padding: 12px;
	}

	.categories-menu {
		height: unset;
		line-height: unset;
	}

	.page-banner img {
		left: 20%;
	}

	.page-title span:last-child {
		font-size: 22px;
		line-height: 30px;
		padding-top: 5px;
	}

	.page-intro {
		padding-bottom: 0px;
	}

	.product-banner {
		height: 100px !important;
		background-position: 50% 50%;
	}

	.paging-n {
		padding-bottom: 40px;
	}

	.productlist-content .product-des img {
		height: 100% !important;
	}

	.productlist-content .product-des img {
		margin: 24px 0;
	}

	.tuyendung-title span {
		font-size: 22px;
		line-height: 30px;
	}

	.product-name {
		font-size: 22px;
		line-height: 30px;
		margin-top: 25px;
		margin-bottom: 10px;
	}

	.product-detail-content {
		padding-top: 40px;
	}

	.page-title span:first-child {
		font-size: 15px;
	}

	.productlist-col .page-title span:last-child {
		padding-bottom: 24px;
	}

	.product-att {
		padding-top: 16px;
	}

	.related-product-title {
		font-size: 24px;
		padding-bottom: 30px;
	}

	.related-product-item .product-item {
		box-shadow: none;
		border: 1px solid var(--seventh-color);
	}

	.related-product-item .showmore a {
		margin-top: 25px;
	}

	.contact-company-info .page-title span:last-child {
		padding-bottom: 0;
	}

	.page-lienhe-content .page-title {
		padding-bottom: 0px;
	}

	.contact-title {
		font-size: 16px;
		margin: 0px 38px;
		padding-top: 13px;
	}

	.contact-title p {
		margin: 0;
	}

	.owl-carousel-agency .owl-nav {
		display: none;
	}

	.introhome-des {
		height: unset;
		display: block;
	}


	.introhome-des p {
		margin: 0;
	}

	.introhome-title div:last-child {
		font-size: 24px;
	}

	.categories-menu-m a,
	.child-categories-m a {
		font-size: 16px;
		font-weight: 500;
		color: var(--second-color);
		text-transform: uppercase;
	}

	.categories-menu-m {
		padding-bottom: 20px;
	}

	.focus-category>a {
		color: var(--fifteenth-color) !important;
	}

	#menu_mobile {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: var(--eighteenth-color);
		z-index: 999;
		transition: 0.5s linear;
		visibility: hidden;
		opacity: 0;
	}

	.menu_mobile-wrap {
		position: relative;
		min-width: 325px;
		width: 70%;
		background-color: var(--primary-color);
		height: 100vh;
		padding: 48px 10px 0 20px;
		opacity: 1;
		visibility: hidden;
		transform: translate(-80%, 0);
		transition: .5s linear;
		overflow: scroll;
	}

	.menu_mobile-wrap::-webkit-scrollbar {
		display: none;
	}

	.menu_mobile-wrap {
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.mbactive .menu_mobile-wrap {
		visibility: visible;
		opacity: 1;
		transform: translate(0, 0);
	}

	.mbactive {
		visibility: visible !important;
		opacity: 1 !important;
	}

	.menu-close {
		position: absolute;
		top: 15px;
		right: 15px;
	}

	.child-product-m {
		display: none;
	}

	.child-categories-m {
		margin-bottom: 15px;
		margin-top: 14px;
		display: flex;
		align-items: center;
	}

	.child-categories-m a {
		text-transform: capitalize;
	}

	.hasc {
		position: relative;
	}

	.categories-menu-m span {
		display: none;
	}

	.hasc span {
		content: url('img/arrow-right.svg');
		position: absolute;
		color: var(--ninth-color);
		top: 2px;
		right: 0;
		transition: .3s;
		z-index: 10;
		display: block;
		width: 20px;
	}

	.child-categories-m::before {
		content: '';
		width: 6px;
		height: 6px;
		border: none;
		border-radius: 99%;
		display: block;
		margin-right: 10px;
		background-color: var(--second-color);
	}

	.hasca {
		width: 100%;
		display: block;
	}

	.set {
		transform: rotate(90deg);
	}

	.tuyendung-des {
		padding-bottom: 30px;
		padding-top: 12px;
	}

	.nopdon-mb {
		margin-bottom: 20px;
		display: block;
		float: unset !important;
	}

	.page-doitac .agency-item {
		border: none;
	}

	.product-detail-content .page-title {
		text-align: center;
	}

	.product-code {
		color: var(--primary-color);
		font-size: 17px;
	}

	.col-doitac {
		width: calc((100% - 39px)/2);
	}

	.col-doitac img {
		width: 100%;
	}

	.teams-section {
		display: inline-block;
		margin: 50px 0 0 0;
	}

	.team-img-wrap {
		width: 100%;
	}

	.copy-right {
		font-size: 15px;
	}

	.agency-title {
		font-size: 30px;
		font-size: 24px;
	}

	.page-tuyendung .page-title {
		text-align: center;
	}

	.page-doitac .agency-item:nth-child(odd) {
		margin-right: 0;
	}

	.other-recruit-title {
		text-align: center;
		font-size: 24px;
		line-height: 28.64px;
		color: var(--fifth-color);
		font-weight: 500;
		text-transform: uppercase;
	}

	.affix .container-fluid .row:first-child {
		display: block;
	}

	.form-control {
		height: 43px;
	}

	.country {
		display: flex;
		align-items: center;
	}

	.service-image-mb img {
		width: 100%;
		border-radius: 10px;
	}

	.pre-btn,
	.next-btn {
		display: none;
	}

	.slider-img-wrap {
		max-width: 90%;
	}

	.owl-img-thumb {
		width: 100%;
	}

	.big-thumb {
		margin-bottom: 14px;
	}

	.big-thumb span {
		font-size: 20px;
		margin-top: 14px;
	}

	.slider-close {
		right: 5%;
	}

	.agency-home .owl-carousel {
		margin: 0;
		padding-right: 0;
	}

	.owl-carousel-agency {
		width: 100%;
	}

	.owl-img-thumb img {
		height: 300px !important;
		object-fit: cover !important;
		filter: brightness(1);
	}

	.modal-dialog {
		max-width: 320px;
		margin: auto;
		top: 15%;
	}

	.page-video {
		padding-bottom: 20px;
	}

	.modal-ytb .modal-body iframe {
		height: 375px;
	}

	.col-xs-prlist {
		margin: 5px;
		width: calc((100% - 7px)/2);
		float: left;
		padding: 0;
		margin-bottom: 0;
	}

	.col-xs-prlist:nth-child(odd) {
		margin-left: -3px;
		margin-right: 0;
	}

	.product-item {
		padding: 15px;
		margin-bottom: 25px;
	}

	.productlist-content .prditem-name {
		font-size: 16px;
		height: unset;
	}

	.product-detail-content .related-product-item .prditem-name {
		font-size: 16px;
	}

	.product-detail-content .related-product-item .prditem-tag {
		font-size: 14px;
	}

	.productlist-content .prditem-tag {
		font-size: 14px;
	}

	.related-product-item .col-xs-prlist {
		margin: 5px;
		width: calc((100% - 15px)/2);
	}

	.related-product-item .col-xs-prlist:nth-child(odd) {
		margin-left: 5px;
		margin-right: 0;
	}

	.teams-section .team-content {
		padding-top: 15px;
	}

	.page-content img {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	/* fix điểm */
	.banner{
		min-height: 400px;
	}

	/* Category home  */
	.category-home {
		margin: 0;
	}

	.category-home .item {
		width: 100%;
		float: unset;
		padding: 0 30px 30px;
	}

	.category-home .item .name {
		font-size: 20px;
	}

	.category-home-wrap, .recommended{
		padding-bottom: 30px;
	}

	.top-head .logo img {
		height: auto;
		width: 75px;
	}

	.logo{
		text-align: center;
	}

	.top-head {
		padding: 10px 0;
	}

	.service-item{
		margin-top: 24px;
		padding: 10px;
	}

	.sidebar-news{
		margin-top: 40px;
	}

	.breadcrumb-build{
		display: none;
	}

	.news-detail {
		padding-top: 40px;
	}

	.page-detail{
		margin-bottom: 40px;
	}

	.icon-filter{
        display: unset;
        position: fixed;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        border-radius: 0 50% 50% 0;
        border: 1px solid var(--seventh-color);
        border-left: none;
        width: 50px;
        height: 50px;
        line-height: 57px;
        text-align: center;
        background-color: var(--second-color);
        transition: .3s linear;
    }

	.sidebar-product{
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: rgba(24,24,24,.3);
        z-index: 11;
        visibility: hidden;
        opacity: 0;
        transition: all .3s ease-in-out;
        z-index: 9999;
    }

    .sidebar-product.active{
        opacity: 1;
        visibility: visible;
    }

    #filter-m{
        width: 85vw;
        background-color: var(--second-color);
        transition: all .3s ease-in-out;
		padding: 20px 0px 20px 15px;
        position: relative;
    }

    #filter-m .filter-wrap-m{
        height: 95vh;
        overflow: auto;
        padding-right: 20px;
    }

    #filter-m .filter-wrap-m::-webkit-scrollbar{
        width: 5px;
    }

    #filter-m .filter-wrap-m::-webkit-scrollbar-thumb{
        background: var(--third-color); 
        border-radius: 10px;
    }

	.sidebar-product .close-filter{
        position: absolute;
        top: 9px;
        right: -45px;
        display: inline-block;
        width: 37px;
        height: 37px;
        line-height: 41px;
        text-align: center;
        background-color: var(--second-color);
        border-radius: 50%;
        left: unset;
    }

    #filter-m:not(.active){
        margin-left: -20px;
    }

    .ui-slider-horizontal .ui-slider-handle{
        margin-left: -5px !important;
    }

	.product-detail-right .small-des{
		margin: 25px 0;
	}

	.sec-prd-des {
		margin-top: 40px;
	}

	.prd-detail-content .tab-content{
		padding: 30px 0;
	}

	.product-colors .item .name {
		margin-top: 10px;
		font-size: 14px;
	}

	 /* ---------Cart page-------- */
	 .cart-items .underline{
        display: none;
    }

    .cart-items{
        padding: 15px;
    }

    .cart-items .cart-item .delete-cart{
        margin-top: 5px;
    }

    .cart-item .buttons_added,
    .cart-item .product-price.total {
        margin-top: 15px !important;
    }

    .cart-page {
        padding: 30px 0;
    }

    .cart-summary .tong-cong{
        font-size: 16px;
    }

    .cart-summary .underline{
        font-size: 15px;
    }

    .cart-items .cart-item .product-price.total{
        line-height: 36px;
    }

    .cart-summary{
        margin-top: 40px;
    }

	.service-name{
		height: unset;
	}

	.cart-wrap{
		padding-top: 16px;
	}

	/* Tối ưu */
    .banner .owl-carousel {
        display: block;
      }
      
    .banner .owl-carousel .banner-wrap {
        display: none;
      }
      
    .banner .owl-carousel .banner-wrap:first-child {
        display: block !important;
    }
}
