/* Fonts */
@font-face {
	font-family: 'Roboto-Regular';
	src: url('../fonts/Roboto-Regular.woff');
	font-display: swap;
}

@font-face {
	font-family: 'Manrope-Regular';
	src: url('../fonts/Manrope-Regular.eot');
	src: url('../fonts/Manrope-Regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Manrope-Regular.woff2') format('woff2'),
		url('../fonts/Manrope-Regular.woff') format('woff'),
		url('../fonts/Manrope-Regular.ttf') format('truetype'),
		url('../fonts/Manrope-Regular.svg#Manrope-Regular') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Manrope-Bold';
	src: url('../fonts/Manrope-Bold.eot');
	src: url('../fonts/Manrope-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Manrope-Bold.woff2') format('woff2'),
		url('../fonts/Manrope-Bold.woff') format('woff'),
		url('../fonts/Manrope-Bold.ttf') format('truetype'),
		url('../fonts/Manrope-Bold.svg#Manrope-Bold') format('svg');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Manrope-Medium';
	src: url('../fonts/Manrope-Medium.eot');
	src: url('../fonts/Manrope-Medium.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Manrope-Medium.woff2') format('woff2'),
		url('../fonts/Manrope-Medium.woff') format('woff'),
		url('../fonts/Manrope-Medium.ttf') format('truetype'),
		url('../fonts/Manrope-Medium.svg#Manrope-Medium') format('svg');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'SVN-Nusrat-Regular';
	src: url('../fonts/SVN-Nusrat-Regular.eot');
	src: url('../fonts/SVN-Nusrat-Regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/SVN-Nusrat-Regular.woff2') format('woff2'),
		url('../fonts/SVN-Nusrat-Regular.woff') format('woff'),
		url('../fonts/SVN-Nusrat-Regular.ttf') format('truetype'),
		url('../fonts/SVN-Nusrat-Regular.svg#SVN-Nusrat-Regular') format('svg');
	font-weight: normal;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Manrope-SemiBold';
	src: url('../fonts/Manrope-SemiBold.eot');
	src: url('../fonts/Manrope-SemiBold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Manrope-SemiBold.woff2') format('woff2'),
		url('../fonts/Manrope-SemiBold.woff') format('woff'),
		url('../fonts/Manrope-SemiBold.ttf') format('truetype'),
		url('../fonts/Manrope-SemiBold.svg#Manrope-SemiBold') format('svg');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: '1FTV VIP Blacksword';
	src: url('../fonts/1FTVVIPBlacksword.eot');
	src: url('../fonts/1FTVVIPBlacksword.eot?#iefix') format('embedded-opentype'),
		url('../fonts/1FTVVIPBlacksword.woff2') format('woff2'),
		url('../fonts/1FTVVIPBlacksword.woff') format('woff'),
		url('../fonts/1FTVVIPBlacksword.ttf') format('truetype'),
		url('../fonts/1FTVVIPBlacksword.svg#1FTVVIPBlacksword') format('svg');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

:root {
	--color-main: #2557ae;
	--color-social: #2557ae;
	--color-hover: #2557ae;
	--color-text: #2557ae;
}

body {
	font-size: 14px;
	line-height: 1.5;
	min-width: 1366px;
	margin: 0 auto;
}

.flex_row {
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.max-width,
.wrap-content {
	width: calc(100% - 20px);
	max-width: 1200px;
	margin: auto;
}

.mw-700 {
	max-width: 700px;
}

img {
	max-width: 100%;
	display: inline-block;
}

* {
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

.social-plugin {
	display: flex;
	margin-top: 10px;
}

.scale-img {
	overflow: hidden;
	display: block;
}

.scale-img img,
.scale-img picture {
	transition: all 0.5s;
}

.scale-img:hover>img,
.scale-img:hover>picture {
	transform: scale(1.2, 1.2);
}

.hover-img {
	position: relative;
	overflow: hidden;
	display: block;
}

.text-split {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	-webkit-line-clamp: 3;
}

.p-relative {
	position: relative;
}

/* @keyframe */
@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

@keyframes blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes shake-anim {
	0% {
		transform: rotate(0) scale(1) skew(1deg);
	}

	10%,
	30% {
		-moz-transform: rotate(-25deg) scale(1) skew(1deg);
	}

	20%,
	40% {
		-moz-transform: rotate(25deg) scale(1) skew(1deg);
	}

	100%,
	50% {
		-moz-transform: rotate(0) scale(1) skew(1deg);
	}
}

@keyframes rotate {
	from {
		transform: rotate(0);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes fadeup {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes pulse-animation {
	0% {
		transform: scale3d(1, 1, 1);
		opacity: 0;
	}

	10% {
		transform: scale3d(1.1, 1.1, 1.1);
		opacity: 1;
	}

	100% {
		transform: scale3d(1.6, 1.6, 1.6);
		opacity: 0;
	}
}

@keyframes border-animation {
	0% {
		transform: scale3d(0.6, 0.6, 0.6);
		opacity: 0;
	}

	20% {
		transform: scale3d(1.2, 1.2, 1.2);
		opacity: 1;
	}

	100% {
		transform: scale3d(1.4, 1.4, 1.4);
		opacity: 0;
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* Transition All */
.transition,
.btn-frame .kenit-alo-circle-fill,
.control-owl button,
.carousel-comment-media .carousel-control a span,
.menu ul li a.has-child:after,
.menu ul li ul,
.menu ul li:hover>ul,
.scale-img img,
.scale-img:hover>img,
.support-online .kenit-alo-circle-fill {
	transition: 0.3s all;
}

.gutter-x-20 {
	--bs-gutter-x: 20px;
}

.gutter-x-5 {
	--bs-gutter-x: 5px;
}

/*   Header   */
.header {
	background: #4a90e2;
}

.flex-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cart-head {
	border: 1px solid #fff;
	padding: 10px;
	border-radius: 5px;
	position: relative;
	color: #fff;
}

.cart-head:hover {
	color: #fed402;
}

.cart-head i {
	font-size: 20px;
}

.cart-head .count-cart {
	position: absolute;
	z-index: 999;
	color: #fff;
	background: #f00;
	border-radius: 50%;
	top: -10px;
	right: 20px;
	width: 20px;
	height: 20px;
	text-align: center;
}

.menu-head {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	align-items: center;
}

.menu-head a {
	color: #fff;
}

.menu-head a:hover {
	color: #fed402;
}

.line-head {
	background-color: #72b2fd;
	height: 32px;
	width: 1px;
}

/* slideshow */
.slideshow {
	position: relative;
}

/* Search */
.search {
	width: 50%;
	max-width: 400px;
	background: #fff;
	position: relative;
	border-radius: 10px;
}

.search input {
	width: calc(100% - 35px);
	font-size: 13px;
	color: #333;
	border-radius: 10px;
	border: none;
}

.search input:focus {
	border: none;
	box-shadow: none;
}

.search label {
	height: 35px;
	cursor: pointer;
	text-align: center;
	font-size: 16px;
	background: #f00;
	color: #fff;
	border-radius: 10px;
	margin-right: 3px;
	padding: 5px 10px;
}

.search label i {
	font-weight: bold;
	color: #999;
}

.search p {
	width: 35px;
	height: 35px;
	cursor: pointer;
	line-height: 35px;
	text-align: center;
	font-size: 16px;
}

.search p i {
	font-weight: bold;
	color: #999;
}

.box-search {
	padding: 10px;
	border-bottom: 1px solid #f1f1f1;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.ds-item-search {
	width: calc(100% - 70px);
}

.ds-item-search a {
	font-size: 14px;
	color: #333;
}

.show-search {
	position: absolute;
	z-index: 9999;
	top: 100%;
	background: #fff;
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.box-search .price-product {
	width: 100%;
	margin: 0px;
	text-align: left;
}

.box-search .price-product .price-new {
	color: #f00;
	font-size: 14px;
	font-weight: bold;
}

.box-search .price-product .price-old {
	color: #999;
	text-decoration-line: line-through;
}

.company {
	border-bottom: 1px solid #f1f1f1;
	padding-bottom: 10px;
}

.company p {
	margin-bottom: 5px;
	font-size: 13px;
}

.company p span {
	color: #007bff;
}

.head-menu {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.head-menu img {
	max-width: 80px;
}


/*   SLider */
.control-owl {
	position: absolute;
	width: 100%;
	z-index: 2;
	left: 0px;
	top: calc(50% - 22.5px);
}

.control-owl button {
	opacity: 0.5;
	top: 0px;
	position: absolute;
	outline: none;
	border: 2px solid #fff;
	padding: 0px;
	margin: 0px;
	display: block;
	cursor: pointer;
	color: #ffffff;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	overflow: hidden;
	text-align: center;
	font-size: 25px;
	margin: 0px;
	background-color: #00a3ff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.control-owl button:hover {
	opacity: 1;
}

.control-owl button.owl-prev {
	left: 20px;
}

.control-owl button.owl-next {
	right: 20px;
}

/* DT */

.item-partner {
	border: 1px solid #cccccc82;
	display: block;
	border-radius: 5px;
}

.box-photo-ct {
	border-radius: 20px;
	overflow: hidden;
}

.title-detail {
	position: relative;
	margin: 20px 0px;
	text-align: center;
}

.title-detail h1 {
	font-size: 28px;
	color: #333;
	font-weight: 700;
	text-transform: uppercase;
}

.title-main {
	position: relative;
	text-align: center;
}

.title-main span {
	font-size: 1.5em;
	font-weight: bold;
	text-transform: uppercase;
}

.tt-week {
	font-size: 25px;
	text-align: center;
	margin: 20px 0px;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
}

.title-cat-main {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.title-cat-main span {
	display: block;
	color: #999;
	background: linear-gradient(64.85deg, #fca600 23.67%, #ffd41d 106.12%);
	background-color: #fff;
	padding: 10px;
	border-radius: 10px;
	cursor: pointer;
}

.title-cat-main span:hover,
.title-cat-main span.active {
	background: linear-gradient(64.85deg, #ffd41d 23.67%, #fca600 106.12%);
	color: #000;
}

/* News */
.grid-tintuc {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
	justify-content: space-between;
}

.news {
	display: block;
	margin-bottom: 20px;
	display: block;
}

.pic-news {
	border-radius: 10px;
	display: block;
	overflow: hidden;
	position: relative;
}

.pic-news img {
	width: 100%;
}

a.views {
	display: inline-block;
	text-decoration: none;
	margin-top: 10px;
	border: solid 1px #ccc;
	padding: 7px 20px;
	border-radius: 20px;
	color: #000;
	font-size: 16px;
}

a.views:hover {
	border: solid 1px #fed402;
	color: #fed402;
}

.info-news {}

.info-news h3 {}

.name-news {
	color: #1b1b1b;
	font-size: 18px;
	line-height: 22px;
	max-height: 40px;
	-webkit-line-clamp: 2 !important;
	font-weight: 400;
}

a.name-news.name1 {
	font-size: 25px;
	line-height: 32px;
	max-height: 64px;
}

.name-news:hover {
	color: #fed402;
}

.time-news {
	color: #fed402;
	margin-bottom: 0px;
	font-size: 12px;
	margin: 7px 0;
	font-style: italic;
	font-weight: 500;
}

.desc-news {
	color: #333333;
	margin: 0px;
}

.share {
	padding: 17px 10px 10px 10px;
	line-height: normal;
	background: rgba(128, 128, 128, 0.15);
	margin-top: 15px;
	border-radius: 5px;
}

.share b {
	display: block;
	margin-bottom: 5px;
}

.othernews b {
	margin-bottom: 10px;
}

.list-news-other {
	padding-left: 17px;
	list-style: square;
}

.list-news-other li {
	margin-bottom: 2px;
}

.list-news-other li a {
	text-transform: none;
	color: #333333;
}

.list-news-other li a:hover {
	color: #fed402;
}

/* Toc */
.box-readmore {
	padding: 8px 15px;
	border: 1px solid #dedede;
	margin-bottom: 2rem;
	border-radius: 5px;
	background-color: #eeeeee;
}

.tt-toc {
	position: relative;
	font-size: 18px;
	text-transform: uppercase;
	font-family: Roboto-Bold;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.box-readmore li ul>li {
	margin: 0;
	margin-bottom: 8px;
}

.box-readmore li ul>li:before {
	/* content: counters(item, '.') ' '; */
}

.box-readmore ul {
	list-style-type: none;
	counter-reset: item;
	margin-bottom: 0px;
	padding-left: 0px !important;
	margin-top: 8px;
	display: none;
}

.box-readmore ul li {
	display: table;
	counter-increment: item;
	margin-bottom: 5px;
}

.box-readmore ul li:before {
	/* content: counters(item, '.') '. '; */
	display: table-cell;
	padding-right: 5px;
}

.box-readmore ul li a {
	color: #333333;
	cursor: pointer;
	font-weight: 600;
}

.box-readmore ul li a:hover {
	color: #767676;
}

/* Partner */
.info-partner {
	background: #f8f8f8;
	padding: 15px 0px;
}

/* Footer */

.info-footer .flex-footer {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	color: #fff;
}

.info-footer {
	background: #015FA9;
	padding: 171px 0px 30px;
}

.title-footer {
	margin-bottom: 0.75rem;
	font-size: 16px;
	text-transform: uppercase;
	color: #fff;
	font-family: 'Manrope-SemiBold';
	padding-bottom: 15px;
	position: relative;
}

.info-footer .flex-footer .box-footer:nth-child(1) {
	width: 25%;
	text-align: center;
}

.info-footer .flex-footer .box-footer:nth-child(2) {
	width: 40%;
	padding: 0px 21px 0 13px;
	font-family: 'Manrope-Regular';
}

.info-footer .flex-footer .box-footer:nth-child(3) {
	width: 21%;
}

.map-footer {
	position: relative;
	width: 100%;
	height: 100%;
}

.map-footer iframe {
	position: absolute;
	width: 100%;
	height: 100%;
}

.footer-powered {
	padding: 22px 0px;
	background: #026FC4;
	color: #fff;
	font-family: 'Manrope-Regular';
	font-size: 15px;
}

.flex-powered {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.statistic span {
	position: relative;
	padding: 0px 5px;
}

/* Tags */
.title-tags {
	position: relative;
	font-size: 1em;
	font-weight: 600;
	padding-bottom: 15px;
	margin-bottom: 15px;
	color: #777;
}

.title-tags:after {
	content: '';
	position: absolute;
	left: 0px;
	bottom: 0px;
	background-color: rgba(0, 0, 0, 0.1);
	display: block;
	height: 3px;
	width: 30px;
}

.flex-tags {
	display: flex;
	gap: 5px;
}

.flex-tags a {
	color: #333;
	border: 1px solid;
	border-radius: 3px;
	display: inline-block;
	opacity: 0.8;
	padding: 2px 5px;
}

.flex-tags a:hover {
	background-color: #f00;
	border-color: #f00;
	color: #fff;
	opacity: 1;
}

/*   TC   */
.item-criteria a {
	display: flex;
	align-items: center;
	color: #333;
}

.item-criteria a .ds-criteria {
	width: calc(100% - 60px);
	margin-left: 10px;
}

.item-criteria a .ds-criteria h3 {
	-webkit-line-clamp: 2;
	font-size: 16px;
	color: var(--color-main);
}

.item-criteria a .ds-criteria p {
	-webkit-line-clamp: 2;
	margin: 0px;
}

/* About */
.flex-about {
	display: flex;
	justify-content: space-between;
	/* align-items: center; */
}

.content-about {
	width: calc(100% - 610px);
	padding: 0 39px 0 0;
}

.photo-about {
	width: 610px;
}

.title-about {
	margin-bottom: 20px;

}

.title-about h3 {
	font-size: 30;
	color: #333;
	text-transform: uppercase;
}

.view-about {
	display: block;
	font-size: 15px;
	text-transform: uppercase;
	margin: 30px 0px 20px;
	color: #333;
	text-align: center;
}

.view-about span {
	position: relative;
	z-index: 1;
}

.view-about span:hover {
	color: #f00;
}

.view-about span:after {
	content: '';
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #c2d2a7;
	position: absolute;
	z-index: -1;
	left: 4%;
	top: 50%;
	transform: translateY(-50%) translateX(-50%);
}

/* Service */
.item-service {
	position: relative;
}

.item-service h3 {
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	color: #fff;
	text-transform: uppercase;
	padding: 10px;
	font-size: 17px;
	margin: 0px;
}

/* Video */
.flex-video {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 20px;
	box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.05);
	background: #fff;
	align-content: center;
}

.wr-video {
	width: 49%;
}

.wr-form {
	width: 66%;
	padding: 14px 0 0;
}

.video-main {
	position: relative;
}

.list-video {
	margin-top: 10px;
	width: 100%;
	border-radius: 5px;
	border: 1px solid #ddd;
}

.img-video span {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	border: 1px solid #ff000066;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #f00;
	background: #ffffffa8;
	font-size: 27px;
	cursor: pointer;
	transition: all 1s;
}

.item-video:hover span {
	transform: translateX(-50%) translateY(-50%) rotate(360deg);
}

.item-video h3 {
	text-align: center;
	font-size: 16px;
	margin-top: 10px;
}

/* Sort */
.sort-select {
	display: flex;
	justify-content: end;
	margin: 20px 0px;
	position: relative;
}

.sort-select .click-sort {
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	padding: 6px 10px 6px 8px;
	margin: 0px;
}

.sort-select-main {
	display: grid;
	background-color: #fff;
	border-radius: 4px;
	box-shadow: 0 4px 6px rgb(0 0 0 / 20%);
	position: absolute;
	padding: 0 7px;
	top: 30px;
	right: 0;
	width: 160px;
	z-index: 2;
}

.sort-select-main p {
	border-bottom: 1px solid #f1f1f1;
	margin: 0px;
	order: 2;
}

.sort-select-main p:has(.check) {
	order: 1;
}

.sort a {
	color: #000;
	font-size: 14px;
	line-height: 17px;
	padding: 11px 3px;
	display: block;
	cursor: pointer;
}

.sort a.check i {
	box-sizing: border-box;
	position: relative;
	display: inline-block;
	transform: scale(var(--ggs, 1));
	width: 22px;
	height: 16px;
	border: 2px solid transparent;
	border-radius: 100px;
	vertical-align: middle;
}

.sort a.check i::after {
	content: '';
	display: block;
	box-sizing: border-box;
	position: absolute;
	left: 3px;
	top: -4px;
	width: 6px;
	height: 10px;
	border-width: 0 2px 2px 0;
	border-style: solid;
	transform-origin: bottom left;
	transform: rotate(45deg);
}

.sort-select .sort-show {
	padding-right: 12px;
	position: relative;
}

.sort-select .sort-show::before {
	content: '';
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 4px solid #333;
	content: '';
	height: 0;
	position: absolute;
	top: 6px;
	right: 0;
	width: 0;
}

/* Product */
.filter {
	position: absolute;
	right: 0px;
	top: 0px;
	padding: 5px 10px;
	background: #f1f1f1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
	text-transform: uppercase;
	border-radius: 5px;
	cursor: pointer;
	border: 1px solid #ddd;
	display: none;
}

.flex-product-main {
	display: flex;
	gap: 20px;
}

.flex-product-main .left-product {
	width: 250px;
	border: 1px solid #f1f1f1;
	padding: 20px;
	border-radius: 5px;
}

.flex-product-main .right-product {
	width: calc(100% - 250px);
}

.wrap-product-sale {
	background-color: #ffa09e;
	border-radius: 10px;
	overflow: hidden;
}

.wr-search p {
	font-weight: bold;
	text-transform: uppercase;
}

.product {
	display: block;
	position: relative;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	text-align: center;
	border: 1px solid #D2D2D2;
}


.product .pic-product {
	background: #fff;
	margin-bottom: 10px;
	display: block;
	padding: 5px;
	position: relative;
	overflow: hidden;
	border-radius: 5px;
	border: solid 1px transparent;
}

.product:hover .pic-product {}

.product .pic-product img {
	width: 100%;
	-webkit-transform-style: preserve-3d;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}

.product .pic-product>a {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 5px;
}

.first_img {
	position: absolute;
	top: 0;
	transition: all 0.5s ease;
	height: 100%;
}

.product:hover .first_img {
	transform: scale(0);
}

.second_img {
	display: block;
	position: absolute;
	top: 0;
	right: 100%;
	transition: all 0.5s ease;
	height: 100%;
}

.product:hover .second_img {
	right: 0;
	top: 0;
	transition: all 0.5s ease;
}

.product .name-product {
	margin-bottom: 5px;
	font-weight: normal;
}

.product .name-product a {
	font-size: 14px;
	color: #232323;
	font-family: 'Manrope-SemiBold';
	text-transform: capitalize;
}

.product .name-product a:hover {
	color: #ff2e00;
}

.product .name-product .text-split {
	-webkit-line-clamp: 2;
}

.product .price-product {
	margin-bottom: 10px;
	color: #555;
}

.product .price-new {
	font-size: 16px;
	font-family: 'Manrope-Bold';
	color: #CD1313;
	display: inline-block;
	text-transform: uppercase;
}

.product .price-old {
	padding: 0 10px;
	font-size: 14px;
	text-decoration: line-through;
	display: block;
	color: #ff2e00;
	text-transform: uppercase;
}

.product .price-per {
	color: #ff2e00;
	font-size: 13px;
	text-align: center;
	font-weight: 700;
}

.box-cat {
	text-align: center;
}

.box-cat h3 {
	font-size: 14px;
	color: #333;
	margin-top: 10px;
}

.box-cat:hover h3 {
	color: #f00;
}

.cart-product {
	margin: 5px 0 0 0px;
}

.cart-product span {
	cursor: pointer;
	color: #fff;
	text-align: center;
	padding: 0px 5px;
	border-radius: 5px;
	display: inline-block;
	line-height: 34px;
	font-size: 13px;
	font-weight: 700;
}

.cart-add {
	margin-left: 10px;
	background-color: #00a5d9;
	width: 155px;
}

.cart-add:hover {
	background-color: #fed402;
}

.cart-buy {
	background-color: #ff2e00;
	width: 93px;
	height: 33px;
}

.cart-buy:hover {
	background-color: #fed402;
}

.grid-product {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.grid-product>* {
	max-width: 100%;
	min-width: 0;
}

.grid-product .product .product-info {
	margin-top: 10px;
	color: #333;
}

.grid-product .product .product-info h3 {
	font-size: 17px;
	color: #333;
}

.grid-product .product .product-info .price span {
	color: #f00;
}

.grid-product .product .pic-product {
	border: 1px solid #ddd;
}

/* product detail */

.grid-pro-detail {
	display: flex;
	justify-content: space-between;
	align-items: start;
}

.grid-pro-detail .left-pro-detail {
	width: 47%;
	padding: 5px;
	border: 1px solid #ccc;
}

.grid-pro-detail .right-pro-detail {
	width: 50%;
}

.detail-product {
	display: flex;
	justify-content: space-between;
}

.detail-product .left-pro-detail {
	width: 40%;
	border: 1px solid #ddd;
}

.detail-product .right-pro-detail {
	width: 57%;
}

.detail-product .right-pro-detail ul {
	list-style: none;
	padding: 0px;
}

.detail-product .right-pro-detail ul li {
	margin-bottom: 20px;
}

.detail-product .right-pro-detail ul li .title-pro-detail {
	font-size: 18px;
}

.detail-product .right-pro-detail ul li .attr-content-pro-detail {
	display: inline-block;
	margin-bottom: 0px;
}

.detail-product .right-pro-detail ul li .attr-content-pro-detail .price-new-pro-detail {
	font-weight: 700;
	font-size: 20px;
	color: #f00;
}

.tabs-pro-detail .tab-content {
	border: 1px solid #ddd;
	border-top: none;
	padding: 20px;

}

.nav-tabs li a {
	text-transform: uppercase;
	font-weight: 500;
	color: #333;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
	color: #f00;
}

/* css block actions  */
.ul-actions {
	display: flex;
	justify-content: center;
	margin: 20px;
	gap: 15px;
	align-items: flex-start;
}

.ul-actions li,
.ul-actions>div {
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 80px;
	text-align: center;
}

.ul-actions .active .box__tabr,
.ul-actions .box__tabr:hover {
	border-color: #fd6e1d;
}

.ul-actions .box__tabr {
	align-items: center;
	border: 1px solid #e0e0e0;
	border-radius: 2px;
	display: flex;
	justify-content: center;
	min-height: 55px;
	padding: 4px;
	height: 60px;
	width: 80px;
}

.icon-action {
	background-image: url('../images/icon_chitiet@2x-min.png');
	background-repeat: no-repeat;
	display: inline-block;
	height: 30px;
	width: 30px;
	line-height: 30px;
	vertical-align: middle;
	background-size: 300px 180px;
}

.icon-dnb {
	background-position: 0 0;
	height: 28px;
	width: 28px;
}

.icon-tskt {
	background-position: -105px 0;
	height: 30px;
	width: 30px;
}

.icon-ttsp {
	background-position: -140px 0;
	height: 19px;
	width: 23px;
}

.ul-actions p {
	font-size: 14px;
	line-height: 1.3;
	margin-top: 5px;
	white-space: normal;
	color: #000;
}

/* modal-detail */
.modal-detail::-webkit-scrollbar {
	width: 10px;
}

.modal-detail::-webkit-scrollbar-thumb {
	width: 10px;
	background: #4d90e0;
	border-radius: 10px;
	height: 50px;
}

.modal-detail {
	position: fixed;
	z-index: 999;
	background: #000000c4;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
}

.content-modal-detail {
	background: #fff;
	max-width: 1200px;
	margin: 0px auto;
	min-height: 100vh;
}

.content-modal-detail .tabs {
	display: flex;
	cursor: pointer;
	padding: 0;
	list-style: none;
	justify-content: center;
	border-bottom: 1px solid #e0e0e0;
	position: sticky;
	top: 0px;
	background: #fff;
	z-index: 99;
}

.content-modal-detail .tabs li {
	padding: 20px 20px;
	margin-right: 5px;
	font-weight: bold;
	position: relative;
	border-bottom: 4px solid #fff;
}

.content-modal-detail .tabs li.active {
	color: #2d9cdb;
	border-bottom: 4px solid #2d9cdb;
}

.content-modal-detail .tab-content {
	padding: 20px;
	max-width: 900px;
	margin: 0px auto;
}

.content-modal-detail .tab-content.active {
	display: block;
}

.close-tab {
	position: fixed;
	top: 15px;
	right: 20px;
	z-index: 10;
}

.btn-closemenu {
	position: fixed;
	top: 10px;
	right: 20px;
	background-color: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	color: #333;
	cursor: pointer;
	line-height: 21px;
	padding: 7px;
	text-align: right;
	width: 72px;
}

.btn-closemenu::before {
	transform: rotate(45deg);
}

.btn-closemenu::after {
	transform: rotate(-45deg);
}

.btn-closemenu::before,
.btn-closemenu::after {
	background-color: #333;
	content: '';
	left: 13px;
	height: 14px;
	position: absolute;
	top: 10px;
	width: 1px;
}

.cursor-pointer {
	cursor: pointer;
}

/* Contact */
.contact-map {
	position: relative;
	height: 500px;
	margin-top: 30px;
}

.contact-map iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

.contact-text {
	max-width: 800px;
	margin: auto;
	margin-bottom: 50px;
	border-radius: 50px;
	border: solid 1px #e8e8e8;
	padding: 30px 50px;
	color: #7b7b7b;
}

.box-frm {
	position: relative;
}

form.contact-form {
	box-shadow: 5px 30px 40px rgba(0, 0, 0, 0.1), 5px 30px 40px rgba(0, 0, 0, 0.1);
	padding: 30px;
	border-radius: 30px;
	max-width: 800px;
	margin: auto;
	margin-bottom: 65px;
	background: #fff;
}

.contact-input input,
.contact-input textarea {
	border-radius: 0;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 1px dotted #045b8a;
}

.btn-send {
	margin: auto;
	/* width: 150px; */
	border-radius: 50px;
	display: block;
	text-transform: uppercase;
	font-weight: 700;
	padding: 10px 25px;
}

/*  breadCrumbs */
.breadCrumbs {
	padding: 10px 0px;
	background: #ddd;
}

.breadCrumbs ol {
	margin: 0px;
}

.breadCrumbs ol li a {
	color: #333;
}

.breadCrumbs ol li a:hover {
	color: #f00;
}

/* paging */
.paging-product {
	position: relative;
}

.pagination {
	margin: 20px 0px;
}

.pagination li span {
	cursor: pointer;
}

.btn-frame {
	display: block;
	width: 50px;
	height: 50px;
	position: fixed;
	right: 20px;
	z-index: 10;
	cursor: pointer;
}

.btn-frame i {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #1182fc;
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-frame i img {
	vertical-align: middle;
	width: 70%;
}

.btn-frame .animated.infinite {
	animation-iteration-count: infinite;
}

.btn-frame .kenit-alo-circle {
	width: 60px;
	height: 60px;
	top: -5px;
	right: -5px;
	position: absolute;
	background-color: transparent;
	border-radius: 100%;
	border: 2px solid rgba(7, 41, 103, 0.8);
	opacity: 0.1;
	border-color: #1182fc;
	opacity: 0.5;
}

.btn-frame .zoomIn {
	animation-name: zoomIn;
}

.btn-frame .animated {
	animation-duration: 1s;
	animation-fill-mode: both;
}

.btn-frame .kenit-alo-circle-fill {
	width: 70px;
	height: 70px;
	top: -10px;
	right: -10px;
	position: absolute;
	border-radius: 100%;
	border: 2px solid transparent;
	background-color: rgba(7, 41, 103, 0.35);
	opacity: 0.4;
}

.btn-frame .pulse {
	animation-name: pulse;
}

.grid-properties {
	display: flex;
	gap: 10px;
}

.grid-properties span {
	position: relative;
	border: 1px solid #ddd;
	padding: 5px 15px;
	cursor: pointer;
}

.grid-properties span:hover,
.grid-properties span.active {
	border: 1px solid #f00;
	color: #f00;
}

.grid-properties span:hover:after,
.grid-properties span.active:after {
	content: '';
	border: 0.9375rem solid transparent;
	border-bottom: 0.9375rem solid var(#d0011b, #ee4d2d);
	bottom: 0;
	position: absolute;
	right: -0.9375rem;
}

.grid-properties span.outstock {
	pointer-events: none;
	background-color: #fafafa;
	color: rgba(0, 0, 0, 0.26);
	cursor: not-allowed;
}

/* scrollToTop */
.scrollToTop {
	width: 41px;
	height: 41px;
	text-align: center;
	font-weight: bold;
	color: #444;
	text-decoration: none;
	position: fixed;
	bottom: 65px;
	right: 25px;
	display: none;
	z-index: 10;
	cursor: pointer;
}

/* Hidden Google Captcha */
.grecaptcha-badge {
	display: none !important;
	width: 0px !important;
	height: 0px !important;
	visibility: hidden !important;
	overflow: hidden;
}

[x-cloak] {
	display: none !important;
}

/* CSSS T */

a.views_dm {
	width: 140px;
	height: 38px;
}

.effect_button {
	transform-style: preserve-3d;
	transform: translateZ(-25px);
	transition: transform 0.25s;
	position: relative;
	display: inline-flex;
	z-index: 1;
}

.effect_button:after,
.effect_button:before {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #f00;
	box-sizing: border-box;
	border-radius: 5px;
	z-index: -1;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 15px;
}

.effect_button:before {
	color: #fff;
	background: #f00;
	transform: rotateY(0deg) translateZ(25px);
}

.effect_button:after {
	color: #f00;
	transform: rotateX(90deg) translateZ(25px);
}

.effect_button:hover {
	transform: translateZ(-25px) rotateX(-90deg);
}

/* News */
.grid-news {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.item-news {
	--tw-bg-opacity: 1;
	background-color: #fff;
	padding: 7px;
	box-shadow: 0px 0px 5px rgb(0 0 0 / 19%);
	transition-property: all;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 500ms;
	border-radius: 11px;
}

.item-news:hover {
	transform: translateY(-0.25rem);
	box-shadow: 0px 0px 10px rgb(0 0 0 / 19%);
}

.item-news .ds-news {
	width: calc(100% - 200px);
	padding: 0 0 0 12px;
}

.ds-news span {
	display: block;
	line-height: 25px;
	color: #999;
	font-size: 13px;
	margin: 10px 0px 0px;
	font-style: italic;
}

.ds-news h3 {
	font-size: 16px;
	margin: 0;
	color: #000;
	font-weight: 500;
	text-transform: uppercase;
	-webkit-line-clamp: 2 !important;
	margin: 0 0 7px;
}

.ds-news .desc {
	color: #333;
}

.item-news:hover h3 {
	color: #f00;
}

.item-news-all a {
	display: flex;
	justify-content: space-between;
}

.item-news-all a .ds-news {
	width: calc(100% - 110px);
}

.item-news-all a .ds-news h3 {
	text-transform: capitalize;
	font-size: 15px;
}

.flex-news-detail {
	display: flex;
	justify-content: space-between;
	align-items: start;
	flex-wrap: wrap;
}

.news-left {
	width: 68%;
}

.news-right {
	position: sticky;
	top: 20px;
	width: 30%;
	background: #f1f1f1cc;
	padding: 20px;
	box-shadow: 0px 0px 5px #99999978;
}

a.btn_link {
	position: relative;
	margin: 5px;
	height: 36px;
	width: 140px;
}

.btn_link.effect_button:first-child:after,
.btn_link.effect_button:first-child:before {
	content: 'facebook';
}

.btn_link.effect_button:first-child:after,
.btn_link.effect_button:first-child:before,
.btn_link.effect_button:nth-child(2):after,
.btn_link.effect_button:nth-child(2):before {
	border-width: 1px;
	border-style: solid;
	--tw-border-opacity: 1;
	border-color: rgb(0 165 217 / var(--tw-border-opacity));
	--tw-bg-opacity: 1;
	background-color: rgb(0 165 217 / var(--tw-bg-opacity));
}

.btn_link.effect_button:nth-child(2):after,
.btn_link.effect_button:nth-child(2):before {
	content: 'google map';
}

div.slick.in-page:not(.slick-initialized) {
	display: flex;
	gap: 10px;
	overflow: hidden;
	white-space: nowrap;
}

.attr-pro-detail {
	margin: auto;
	padding: 0;
}

.baonoidung iframe {
	max-width: 100% !important;
}

.baonoidung img {
	height: auto !important;
}

.baonoidung * {
	max-width: 100% !important;
}

.baonoidung table {
	display: block;
	overflow-y: auto;
}

div.desc-pro-detail ul li {
	margin-bottom: 0.75rem;
	list-style-type: circle;
}

div.desc-pro-detail ul li:last-child {
	margin-bottom: 0 !important;
}

div.baonoidung ul li {
	margin-bottom: 0.75rem;
	list-style-type: disc;
}

div.baonoidung ol li {
	margin-bottom: 0.75rem;
	list-style-type: decimal;
}

.price-new-pro-detail {
	font-weight: 700;
	font-size: 20px;
	color: #ff2e00;
}

.price-old-pro-detail {
	font-weight: 500;
	color: #666;
	text-decoration: line-through;
	padding-left: 10px;
}

.color-pro-detail.active,
.size-pro-detail.active,
.size-pro-detail:hover {
	color: #fff !important;
	background: #232323;
}

.quantity-pro-detail {
	width: 100%;
	max-width: 110px;
	line-height: normal;
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-align: center;
	margin-right: 20px;
	font-weight: 500;
}

.quantity-pro-detail span {
	line-height: 40px;
	padding: 0;
	width: 30px;
	height: 40px;
	color: #000;
	cursor: pointer;
	font-size: 22px;
}

.quantity-pro-detail span.quantity-plus-pro-detail {
	border-left: 0;
}

.quantity-pro-detail span.quantity-minus-pro-detail {
	border-right: 0;
}

.quantity-pro-detail input {
	height: 40px;
	width: calc(100% - 60px);
	text-align: center;
	font-size: 20px;
	padding: 5px;
	font-weight: 700;
}

.cart-pro-detail {
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.cart-pro-detail a {
	text-align: center;
	color: #fff;
	padding: 8px 15px;
	cursor: pointer;
	border-radius: 5px;
	font-weight: bold;
}

.cart-pro-detail a.addnow {
	margin-right: 10px;
	color: #fff;
	border-radius: 5px;
}

.cart-pro-detail a.addnow:hover {
	background-color: #f00;
	color: #fff;
	border-color: #f00;
}

.cart-pro-detail a.buynow {
	background-color: #000;
}

.cart-pro-detail a.buynow:hover {
	background-color: #f00;
	color: #fff;
}

.cart-pro-detail a i {
	vertical-align: top;
	margin-top: 3px;
	margin-right: 8px;
}

/* Swipper */

.swiper .swiper-wrapper {
	width: inherit;
	height: inherit;
}

.swiper.swiper-initialized .swiper-wrapper {
	margin: 0;
	width: 100%;
	height: 100%;
}

.swiper.swiper-initialized .swiper-slide {
	padding: 0;
	margin: 0px;
	overflow: hidden;
}

/* Popup */
.modal-title {
	font-size: 20px;
}

/* CSS cho loading */
.loading-overlay {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.7);
	justify-content: center;
	align-items: center;
	z-index: 999;
}

.loading {
	width: 50px;
	height: 50px;
	border: 5px solid rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	border-top: 5px solid #3498db;
	animation: spin 1s linear infinite;
}

.dangkynhantin {
	padding: 50px 0;
	background: #ccc;
	background-size: cover;
}

.newslestter_row {
	justify-content: space-between;
}

.newsletter-input.nd {}

.newslestter_row_bot.flex_row {
	justify-content: center;
}

.newsletter-input {
	position: relative;
	width: 200px;
}

.newsletter-input input {
	padding: 0px;
	font-family: 'Manrope-Regular';
	font-size: 14px;
	text-indent: 36px;
	border: solid 1px #E4E4E4;
	height: 50px;
	color: #707070;
	border-radius: 5px;
}

.newsletter-input input::placeholder,
.newsletter-input textarea::placeholder {
	color: #707070;
	font-weight: 300;
}

.newsletter-input textarea {
	height: 50px;
	border: solid 1px #E4E4E4;
	font-size: 14px;
	text-indent: 30px;
	border-radius: 5px;
	padding: 9px 0 0;
}

.newsletter-button {}

.newsletter-button input[type=submit] {
	font-size: 14px;
	border: 0px;
	background-color: #CD1313;
	color: #fff;
	font-family: 'Manrope-Bold';
	display: inline-block;
	text-transform: uppercase;
	cursor: pointer;
	width: 130px;
	height: 50px;
	border-radius: 5px;
	font-weight: 600;
}

.fl_dknt {
	padding: 0 23% 0;
}

div#tabsProDetailContent {
	border-left: 1px solid #dee2e6;
	border-right: 1px solid #dee2e6;
	border-bottom: 1px solid #dee2e6;
}

.img_news {
	width: 200px;
}

.title-detail-product h1 {
	font-size: 28px;
}

.row-head.flex_row {
	justify-content: space-between;
	padding: 0 0 0 24%;
}

.head_top {
	padding: 10px 0;
	font-family: 'Manrope-Medium';
	font-size: 15px;
}

.mxh_head {
	width: 15%;
}

ul.social-head {
	justify-content: space-between !important;
}

.diachi_head i {
	font-size: 20px;
	color: #CD1313;
	margin: 0px 5px 0 0;
}

.email_head i {
	font-size: 20px;
	color: #CD1313;
	margin: 3px 7px 0 0;
}

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

.title-dv-left {
	width: 40%;
}

.desc_title_dichvu {
	width: 60%;
	font-family: 'Manrope-Medium';
	font-size: 15px;
	line-height: 27px;
}

.title-dichvu {
	padding: 30px 0;
}

.title-dv-left span {
	font-family: 'Manrope-Medium';
	font-size: 18px;
	text-transform: uppercase;
	color: #A4A4A4;
	display: block;
	letter-spacing: 4px;
	position: relative;
	margin: 0 0 4px;
}

.title-dv-left h2 {
	font-family: 'Manrope-Bold';
	font-size: 40px;
	text-transform: uppercase;
	color: #015FA9;
}

.desc_title_dichvu {}

.dichvu_list_index {
	padding: 30px 0 50px;
}

.img-dichvu-list a {
	display: block;
	border-radius: 15px;
	overflow: hidden;
}

.box-dichvu-list {
	text-align: left;
}

.img-dichvu-list {
	margin-bottom: 15px;
}

.name_dichvu a {
	font-family: 'Manrope-Bold';
	font-size: 18px;
	color: #000;
	text-transform: capitalize;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	-webkit-line-clamp: 1;
}

.title-dv-left span::after {
	content: '';
	position: absolute;
	width: 233px;
	height: 3px;
	right: 111px;
	top: 15px;
	background: url(../images/line_dv.png) top center no-repeat;
}

.name_dichvu {
	padding: 0 0 0 15px;
	border-left: 3px solid #015fa9;
}

section.about_index {
	padding: 50px 0;
	background: #EDF7FF;
}

.title-about h2 {
	font-family: 'Manrope-Bold';
	font-size: 40px;
	color: #015FA9;
}

.desc_about {
	font-family: 'Manrope-Medium';
	font-size: 14px;
	line-height: 27px;
	color: #222222;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	-webkit-line-clamp: 8;
}

.btn-about a {}

.btn-about a {
	display: inline-block;
	background: #CD1313;
	padding: 10px 26px;
	color: #fff;
	font-family: 'Manrope-SemiBold';
	font-size: 15px;
	border-radius: 50px;
	transition: 0.2s;
}

.btn-about a img {
	margin: 0 0 0 5px;
}

.btn-about a:hover {
	letter-spacing: 2px;
}

.photo-about a {
	display: block;
	border-radius: 30px;
}

.tieuchi_left {
	width: 518px;
}

.tieuchi_right {
	width: calc(100% - 518px);
	padding: 0 0 0 50px;
}

.gird-tieuchi {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}

.item-tieuchi {
	height: 110px;
	padding: 24px 20px 0 30px;
	box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.1);
	background: #fff;
	position: relative;
}

.item-tieuchi::after {
	content: '';
	position: absolute;
	left: 0;
	top: 26px;
	width: 3px;
	height: 60px;
	background: #015FA9;
}

.content-tc {
	padding: 0px 0 0 11px;
	width: calc(100% - 48px);
}

.name-tc {
	font-family: 'Manrope-Bold';
	font-size: 16px;
	text-transform: uppercase;
}

.img_tc {
	width: 48px;
}

.content-tc {}

.box-tc.flex_row {
	align-items: center;
}

.desc_tc {
	font-family: 'Manrope-Regular';
	font-size: 14px;
}

.tieuchi_inex {
	padding: 50px 0;
}

.title-tieuchi {
	margin-bottom: 29px;
}

.title-tieuchi h2 {
	font-family: 'Manrope-Bold';
	font-size: 40px;
	text-transform: uppercase;
	color: #015FA8;
}

.title-tieuchi p {
	font-family: 'SVN-Nusrat-Regular';
	font-size: 20px;
}

* menu_dm_product*/ .filter_block {
	display: block;
	border: 1px solid #ebebeb;
	border-radius: 5px;
	padding: 1rem;
	margin-bottom: 1rem;
}

.filter_title {
	font-weight: bold;
	display: flex;
	align-items: center;
	color: #fff;
	justify-content: center;
	padding: 10px;
	background: #015FA9;
	font-family: 'Manrope-Bold';
	font-size: 20px;
	text-transform: uppercase;
}

div#danhmuc {
	padding: 0 19px 30px;
	border: 1px solid #D2D2D2;
	border-radius: 0 0 10px 10px;
}

div#danhmuc ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.filter_block ul {
	list-style: none;
	display: block;
}

div#danhmuc ul li {
	position: relative;
}

.filter_block ul li {
	margin: 0.5rem 0 0;
	display: block;
}

div#danhmuc ul li span {
	position: absolute;
	right: 6px;
	top: 9px;
	text-align: end;
	display: block;
	width: 66px;
	height: 100%;
	background: url(../images/muiten-menu.png) no-repeat center;
	cursor: pointer;
	max-height: 44px;
	transition: 0.3s;
	z-index: 5;
}

div#danhmuc ul li ul {
	display: none;
}

div#danhmuc ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

element.style {}

div#danhmuc ul li ul {
	display: none;
}

div#danhmuc ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.filter_block ul {
	list-style: none;
	display: block;
}

div#danhmuc ul li {
	position: relative;
}

.filter_block ul li {
	margin: 0.5rem 0 0;
	display: block;
}

div#danhmuc ul li ul li a {
	padding: 9px 5px 9px 26px;
	font-family: 'Manrope-SemiBold';
}

div#danhmuc ul li a {
	color: #1E1E1E;
	text-decoration: none;
	font-size: 15px;
	transition: 0.4s;
	font-family: 'Manrope-SemiBold';
	display: block;
	border-bottom: 1px dashed #DDD;
	padding: 9px 5px 10px 0px;
	text-transform: capitalize;
}

.menu_danhmuc {
	width: 285px;
	position: sticky;
	top: 115px;
	background: #FBFBFB;
	border-radius: 10px;
	overflow: hidden;
}

.danhmuc_sp_index {
	width: calc(100% - 285px);
	padding: 0 0 0 24px;
}

.danhmuc_sanpham_index {
	padding: 50px 0;
}

div#danhmuc ul li a:hover {
	color: #015fa9;
}

.gird-product {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
}

.title-danhmuc-sp {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background: #EDF7FF;
	border-radius: 10px 10px 0 0;
	margin-bottom: 20px;
}

.title-danhmuc-sp h2 {
	font-family: 'Manrope-Bold';
	font-size: 20px;
	color: #015FA9;
}

.title-danhmuc-sp h2 {
	text-transform: capitalize;
	margin: 0;
}

h2 {}

.title-danhmuc-sp a {
	font-family: 'Manrope-Medium';
	font-size: 15px;
	color: #015FA9;
	transition: 0.2s;
}

.title-danhmuc-sp a:hover {
	letter-spacing: 2px;
}

.banner_dm {
	margin: 24px 0px 0;
}

.wrap-product {
	margin-bottom: 40px;
}

.doitac_index {
	padding: 50px 0;
	background: #EDF7FF;
}

.nav_dt.flex_row {
	justify-content: end;
}

.dt-prev {
	margin: 0 9px 0 0;
}

.title-dichvu.row-dt.flex_row {
	align-items: center;
}

.media_right {
	width: 590px;
}

.media_left {
	width: calc(100% - 590px);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 19px 0 0;
	position: relative;
}

.item-album.al1 {
	margin-bottom: 10px;
}

.box-album a {
	display: block;
	border-radius: 10px;
	overflow: hidden;
}

.title-media {
	text-align: center;
	margin-bottom: 30px;
}

.media_index {
	margin: 50px 0;
}

.title-media span {}

.box-video a {}

.box-video a {
	display: block;
	border-radius: 10px;
	overflow: hidden;
}

.title-media span {
	font-family: 'Manrope-Medium';
	font-size: 18px;
	letter-spacing: 4px;
	color: #A4A4A4;
	margin-bottom: 15px;
	display: block;
}

.title-media h2 {
	font-family: 'Manrope-Bold';
	font-size: 40px;
	text-transform: uppercase;
	color: #015FA9;
	display: block;
	position: relative;
}

.box-video {
	position: relative;
}

.box-video::after {
	content: '';
	position: absolute;
	width: 110px;
	height: 110px;
	left: 0;
	right: 0;
	margin: 0 auto;
	pointer-events: none;
	top: 36%;
	background: url(../images/play.png) top center no-repeat;
}

.maps_right {
	width: 835px;
	height: 500px;
	margin: 1px 0 0 -181px;
}

.maps_left {
	width: 545px;
	height: 420px;
	border: 2px solid #015FA9;
	padding: 44px;
	border-radius: 15px;
	position: relative;
	z-index: 3;
	background: #fff;
	margin: 42px 0 0;
}

.title-maps {
	font-family: 'Manrope-Bold';
	font-size: 40px;
	text-transform: capitalize;
	color: #015FA9;
	margin-bottom: 9px;
}

.desc_maps {
	font-family: 'Manrope-Medium';
	font-size: 15px;
	line-height: 25px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	-webkit-line-clamp: 8;
}

.btn-maps {
	margin: 25px 0 0;
}

.btn-maps a {
	display: inline-block;
	color: rgb(255, 255, 255);
	font-family: Manrope-SemiBold;
	font-size: 15px;
	background: rgb(205, 19, 19);
	padding: 10px 26px;
	border-radius: 50px;
	transition: 0.2s;
}

.btn-maps a:hover {
	letter-spacing: 2px;
}

.maps_index {
	padding: 50px 0;
	background: #EDF7FF;
}

.btn-album a {
	display: inline-block;
	padding: 19px 38px;
	background: #015FA9;
	font-family: 'Manrope-Bold';
	font-size: 15px;
	letter-spacing: 2px;
	color: #fff;
	border-radius: 6px;
	text-transform: uppercase;
	border: 3px solid #fff;
}

.btn-album a img {
	margin: 0 0 0 3px;
}

.btn-album {
	position: absolute;
	top: 44%;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
}

.btn-album a:hover {
	color: yellow;
}

.news_left {
	width: 580px;
}

.news_right {
	width: calc(100% - 580px);
	padding: 0 0 0 20px;
}

.img_blog {
	width: 220px;
}

.content-blog {
	width: calc(100% - 220px);
	padding: 0 0 0 22px;
}

.box-blog_index {
	display: flex;
	padding: 0 0 0;
	align-content: center;
	flex-wrap: wrap;
}

.name-news-firts {
	margin: 10px 0;
}

.name-news-firts a {
	font-family: 'Manrope-Bold';
	font-size: 22px;
	color: #000;
}

.desc-news-firts {
	font-family: 'Manrope-Medium';
	font-size: 15px;
	line-height: 23px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	-webkit-line-clamp: 3;
}

.date-news-firts.flex_row {
	margin: 10px 0 0;
	justify-content: space-between;
}

.date-news-firts.flex_row span {
	font-family: 'Manrope-Regular';
	font-size: 14px;
	color: #979797;
	width: 32%;
	display: flex;
}

.date-news-firts a {
	font-family: 'Manrope-Regular';
	font-size: 14px;
	color: #000;
	transition: 0.2s;
	display: flex;
}

.date-news-firts a:hover {
	letter-spacing: 2px;
}

.box-blog_index {
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.08);
	margin: 10px;
	padding: 8px 8px 2px;
	border-radius: 13px;
}

.box-blog_index .name-news-firts {
	margin: 0;
}

.box-blog_index .name-news-firts a {
	font-size: 16px;
}

.img_blog a {
	display: inline-block;
	border-radius: 10px;
	overflow: hidden;
}

.img-news-firts a {
	display: inline-block;
	border-radius: 10px 10px 0 0;
	overflow: hidden;
}

.content-news-firts {
	padding: 0 20px 20px;
}

.box-news-firts {
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.08);
}

.item-blog {
	overflow: hidden;
}

.blog_index {
	margin: 50px 0;
}

.title-media h2::after {
	content: '';
	position: absolute;
	width: 395px;
	height: 3px;
	left: 0;
	top: 21px;
	background: url(../images/line_text.png) top center no-repeat;
}

.title-media h2::before {
	content: '';
	position: absolute;
	width: 395px;
	height: 3px;
	right: 0;
	top: 21px;
	background: url(../images/line_text.png) top center no-repeat;
}

.name-news-firts a:hover {
	color: #015fa9;
}

.date-news-firts.flex_row span img {
	margin: 0 9px 0 0;
}

.date-news-firts a img {
	margin: 0 0 0 10px;
}

.accordion {
	margin: 0 auto;
	overflow: hidden;
	border-radius: 10px;
}

.accordion-header {
	display: flex;
	justify-content: space-between;
	padding: 22px 10px;
	font-family: 'Manrope-SemiBold';
	font-size: 18px;
	width: 100%;
	background: #fff;
	border: none;
	outline: none;
	border-bottom: 1px solid #EAE8E8;
	color: #000;
	cursor: pointer;
}

.accordion-header.active {
	background-color: #015FA9;
	color: #fff;
}

.accordion-header.active i {
	transform: rotate(180deg);
	transition: all 0.3s ease-in-out;
}

.accordion-body {
	padding: 0 1rem;
	background-color: #fdfdfd;
	max-height: 0;
	font-family: 'Manrope-Medium';
	font-size: 14px;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.accordion-body.active {
	max-height: 10rem;
	padding: 1rem;
}

.cauhoi_right {
	width: 450px;
}

.wrap-cauhoi.flex_row {
	justify-content: space-between;
}

.cauhoi_left {
	width: calc(100% - 450px);
	padding: 0 35px 0 0;
}

.title-cauhoi {
	text-align: center;
	margin-bottom: 40px;
}

.title-cauhoi h2 {
	font-family: 'Manrope-Bold';
	font-size: 40px;
	text-transform: uppercase;
	color: #015FA9;
}

.cauhoi_index {
	padding: 60px 0 100px;
	background: #EDF7FF;
}

.title-dangky {
	width: 34%;
	padding: 10px 0 10px 83px;
	background: url(../images/email.png) left 2px no-repeat;
}

section.wrap-dangky {
	margin: -51px 0 -134px 0;
	position: relative;
	z-index: 3;
}

.title-dangky h2 {
	font-family: 'Manrope-Bold';
	font-size: 28px;
	text-transform: uppercase;
	color: #015FA9;
}

.title-dangky span {
	font-family: 'Manrope-Regular';
	font-size: 14px;
}

.title-dangky2 {
	text-align: center;
	margin: 18px 0 0;
	font-family: '1FTV VIP Blacksword';
	font-size: 30px;
	color: #fff;
}

.form1::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 22px;
	left: 5px;
	top: 14px;
	background: url(../images/form1.png) top center no-repeat;
}

.form2::after {
	content: '';
	position: absolute;
	width: 22px;
	height: 14px;
	left: 5px;
	top: 17px;
	background: url(../images/form2.png) top center no-repeat;
}

.form3::after {
	content: '';
	position: absolute;
	width: 18px;
	height: 18px;
	left: 5px;
	top: 14px;
	background: url(../images/form3.png) top center no-repeat;
}

.logo_ft {
	margin-bottom: 33px;
}

ul.social-footer {
	justify-content: center !important;
}

ul.social-footer li a {
	margin: 0 8px 0;
}

.info-footer .flex-footer .box-footer:nth-child(4) {
	width: 320px;
}

ul.footer-ul li a {
	font-family: 'Manrope-Regular';
	font-size: 15px;
	color: #fff;
}

ul.footer-ul li a:hover {
	color: yellow;
}

.title-name {
	font-family: 'Manrope-Bold';
	font-size: 30px;
	text-transform: uppercase;
	margin-bottom: 10px;
}


.title-footer::after {
	content: '';
	position: absolute;
	width: 60px;
	height: 2px;
	left: 0;
	bottom: 4px;
	background: #cd1313;
}

.phone_ft span i {
	margin: 0 9px 0 0;
}

.phone_ft span {
	padding: 7px 33px;
	background: #CD1313;
	font-family: 'Manrope-Bold';
	font-size: 20px;
	border-radius: 50px;
}

section.wrap-dangky.marg-top {
	margin: 56px 0 0;
}

.btn-about {
	margin: 20px 0 0;
}