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

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

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

@font-face {
	font-family: 'rb';
	font-display: swap;
	src: url('../fonts/RobotoCondensed-Bold.woff');
}

@font-face {
	font-family: 'SFU-Futura-R';
	src: url('../fonts/SFUFutura.woff2') format('woff2'), url('../fonts/SFUFutura.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'SFU-Futura-B';
	src: url('../fonts/SFUFuturaBold.woff2') format('woff2'), url('../fonts/SFUFuturaBold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Beautique-R';
	src: url('../fonts/BeautiqueDisplay-Regular.woff2') format('woff2'),
		url('../fonts/BeautiqueDisplay-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Beautique-B';
	src: url('../fonts/BeautiqueDisplay-Bold.woff2') format('woff2'),
		url('../fonts/BeautiqueDisplay-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Beautique-M';
	src: url('../fonts/BeautiqueDisplay-Medium.woff2') format('woff2'),
		url('../fonts/BeautiqueDisplay-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Beautique-L';
	src: url('../fonts/BeautiqueDisplay-Light.woff2') format('woff2'),
		url('../fonts/BeautiqueDisplay-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'SVN-Gilroy-B';
	src: url('../fonts/SVN-GilroyBold.woff2') format('woff2'), url('../fonts/SVN-GilroyBold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'SVN-Gilroy-M';
	src: url('../fonts/SVN-GilroyMedium.woff2') format('woff2'), url('../fonts/SVN-GilroyMedium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'SVN-Gilroy-L';
	src: url('../fonts/SVN-GilroyLight.woff2') format('woff2'), url('../fonts/SVN-GilroyLight.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'SVN-Gilroy-R';
	src: url('../fonts/SVN-Gilroy.woff2') format('woff2'), url('../fonts/SVN-Gilroy.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'SVN-Bellico';
	src: url('../fonts/SVN-Bellico.woff2') format('woff2'), url('../fonts/SVN-Bellico.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@-webkit-keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

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

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

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

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

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-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 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);
	}
}

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

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

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

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

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

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

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

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

@-webkit-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 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;
	}
}

@-webkit-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 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;
	}
}

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

body {
	font-size: 14px;
	font-family: 'SVN-Gilroy-R';
	line-height: 1.5;
	background: linear-gradient(to right, #8d1e24 4%, #c21d2b 50%, #8d1e24 80%);
	color: #fff;
}

.max-width {
	width: 90%;
	max-width: 1200px;
	margin: 0px auto;
}

img {
	max-width: 100%;
}

* {
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

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

.scale-img img {
	transform: scale(1, 1);
}

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

.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;
}

/* 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;
}

.scale-img {
	overflow: hidden;
}

/*   Header   */
.header-top {
	background: linear-gradient(to right, #b08236 0%, #fbeba4 50%, #b08236 100%);
	padding: 8px 0px;
	color: #333;
}

.worktime {
	margin-left: 200px;
}

.social-header img{transition: all 0.5s;}
.social-header img:hover{transform: rotate(360deg);}
.header {
	position: relative;
	width: 100%;
	z-index: 99;
	background: #930f0f;
}

.logo-header {
	margin-top: -42px;
	margin-bottom: -50px;
}

.menu-fix {
	position: fixed;
	left: 0px;
	right: 0px;
	top: 0px;
	z-index: 999;
	-webkit-animation: fadeInDown 1.3s ease backwards;
	-moz-animation: fadeInDown 1.3s ease backwards;
	-o-animation: fadeInDown 1.3s ease backwards;
	-ms-animation: fadeInDown 1.3s ease backwards;
	background: rgba(0, 0, 0, 0.6);
	box-shadow: 0 0 5px #adadad;
}

.menu-fix .logo-header {
	width: 70px;
}

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

.top-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.top-header p {
	color: #333;
	margin: 0px;
}

.lang {
	display: flex;
	gap: 5px;
	margin-right: 20px;
}

.lang a {
	color: #333;
	display: flex;
    gap: 5px;
}
.lang a img{width: 30px;display: none;}
.lang a.active img{
	display: block;
}
/* slideshow */
.slideshow {
	position: relative;
}

/* Search */
.icon-search{
	background: linear-gradient(to right, #b08236 0%, #fbeba4 50%, #b08236 100%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
	display: none;
	margin: 0px;
	cursor: pointer;
}
.icon-search i {
    color: #000;
    font-size: 17px;
    font-weight: bold;
}
.search {
	position: relative;
	width: 200px;
	border-radius: 50px;
	overflow: hidden;
	box-shadow: inset 1px 0px 8px #cdd4bb;
}

.search input {
	border: none;
	background: none;
	color: #fff;
}

.search input::-webkit-input-placeholder {
	color: #fff;
}

.search input:-moz-placeholder {
	color: #fff;
}

.search input::-moz-placeholder {
	color: #fff;
}

.search input:-ms-input-placeholder {
	color: #fff;
}

.search p {
	background: linear-gradient(to right, #b08236 0%, #fbeba4 50%, #b08236 100%);
	width: 34px;
	height: 34px;
	position: absolute;
	right: 3px;
	top: 3px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.search p i {
	color: #000;
	font-size: 17px;
	font-weight: bold;
}

/* Menu */

#menu {
	display: none;
}

#hamburger {
	display: none;
	width: 35px;
	height: 23px;
	position: relative;
}

#hamburger:before,
#hamburger:after,
#hamburger span {
	background: #ffffff;
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0px;
}

#hamburger:before {
	top: 0px;
}

#hamburger span {
	top: 10px;
}

#hamburger:after {
	top: 20px;
}

#hamburger:before,
#hamburger:after,
#hamburger span {
	transition: none 0.5s ease 0.5s;
	transition-property: transform, top, bottom, left, opacity;
}

.mm-wrapper_opening #hamburger:before,
.mm-wrapper_opening #hamburger:after {
	top: 10px;
}

.mm-wrapper_opening #hamburger span {
	left: -50px;
	opacity: 0;
}

.mm-wrapper_opening #hamburger:before {
	transform: rotate(45deg);
}

.mm-wrapper_opening #hamburger:after {
	transform: rotate(-45deg);
}

.mm-menu_opened {
	display: block !important;
}

.mm-slideout {
	z-index: unset;
}

.wrap-menu {
	width: calc(100% - 550px);
}

.menu-head-left {
	position: relative;
}

.title-menu {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	line-height: 40px;
	display: block;
}

.menu-product-list {
	position: absolute;
	z-index: 99;
	top: 100%;
	width: 250px;
	background: #fff;
	border-radius: 2px;
}

.menu-product-list ul {
	padding: 0px;
	margin-bottom: 0px;
}

.menu-product-list ul ul {
	position: absolute;
	width: 750px;
	background: #fff;
	left: 100%;
	top: 0px;
	border: 1px solid #999;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	height: 100%;
	overflow-x: hidden;
}

.menu-product-list ul ul ul {
	position: relative;
	left: 0px;
	top: 0px;
	width: 100%;
	border: none;
	display: block;
	height: auto;
}

.menu-product-list ul li a {
	position: relative;
	display: block;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	padding: 5px 10px 5px 10px;
	border-bottom: 1px solid #ddd;
}

.menu-product-list ul li a .icon-down {
	position: absolute;
	right: 10px;
	top: 10px;
}

.menu-product-list ul ul li a span {
	position: absolute;
	right: 10px;
	font-size: 13px;
	font-weight: 500;
	color: #00a3ff;
}

.menu-product-list ul li a:hover {
	color: #cd8c73;
}

.menu-product-list ul ul li a {
	border-bottom: none;
	font-weight: bold;
}

.menu-product-list ul ul ul li a {
	font-weight: normal;
}

.menu {
	position: relative;
	z-index: 99;
}

.menu .wrap-content {
	position: relative;
}

.fix_menu {
	position: fixed !important;
	box-shadow: 0 0 1px #999;
	background: #fff;
}

.menu ul {
	width: 100%;
	padding: 0px;
	margin: 0;
	list-style: none;
}

.menu ul li {
	position: relative;
	z-index: 99;
}

.menu ul li.line {
	width: 1px;
	height: 15px;
	background-color: rgba(255, 255, 255, 0.5);
	flex: none;
}

.menu ul li a {
	font-size: 16px;
	color: #fff;
	margin: 0px;
	padding: 0;
	position: relative;
	z-index: 1;
	text-align: center;
	text-decoration: none !important;
	display: block;
	line-height: 45px;
	font-family: Beautique-M;
	text-transform: capitalize;
}

.menu ul li a img {
	vertical-align: -1px;
}

.menu ul li a.active,
.menu ul li:hover > a {
	color: #fbeba4;
}

.menu ul ul li a.active,
.menu ul ul li:hover > a {
	color: #961722;
}


.menu ul li ul {
	position: absolute;
	min-width: 250px;
	left: 0;
	background: #fff;
	box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.3);
	transform: perspective(600px) rotateX(-90deg);
	transform-origin: 0 0 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
}

.menu ul li:hover > ul {
	transform: perspective(600px) rotateX(0);
	-webkit-transform-origin: 0 0 0;
	opacity: 1;
	visibility: visible;
	transition: all 0.7s;
}

.menu ul li ul li {
	text-align: left;
	border-bottom: 1px solid rgb(173 173 173 / 32%);
}

.menu ul li ul li:last-child {
	border-bottom: 0px;
}

.menu ul li ul li a {
	font-size: 14px;
	padding: 10px;
	display: block;
	text-decoration: none !important;
	line-height: 20px;
	text-align: left;
	font-weight: 500;
	text-transform: capitalize;
	color: #333;
}

.menu ul li ul li ul {
	top: 0px;
	left: 100%;
}

.menu ul li ul li a:before {
	position: absolute;
	content: '';
	top: 50%;
	left: 0;
	width: 0;
	height: 1px;
	background: #961722;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	visibility: hidden;
	opacity: 0;
}

.menu ul li ul li a:hover:before,
.menu ul li ul li > a.active:before {
	left: 0;
	visibility: visible;
	opacity: 1;
	width: 30px;
}

.menu ul li ul li a:hover {
	padding-left: 40px;
}

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

.control-owl button {
	top: 0px;
	position: absolute;
	outline: none;
	padding: 0px;
	margin: 0px;
	display: block;
	cursor: pointer;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	text-align: center;
	font-size: 25px;
	margin: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.control-owl button svg{display: none;}

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

.control-owl button.owl-prev {
	background: url(../images/next.png)no-repeat;
	background-size: 100% 100%;
	right: 20px;
}

.control-owl button.owl-next {
	background: url(../images/pre.png)no-repeat;
	background-size: 100% 100%;
	left: 20px;
}

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

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

.title-detail h1 {
    text-transform: capitalize;
    font-size: 30px;
    margin-bottom: 15px;
    font-family: Beautique-B;
    background: linear-gradient(to right, #fbeba4 25%, #fbeba4 50%, #b08236 75%, #fbeba4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-main {
	position: relative;
	margin-bottom: 1.5rem;
	text-align: center;
}

.title-main h4 {
	text-transform: capitalize;
	font-size: 40px;
	margin-bottom: 15px;
	font-family: Beautique-B;
	background: linear-gradient(to right, #b08236 25%, #fbeba4 50%, #b08236 75%, #fbeba4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.title-main p span {
	color: #c68b7b;
	font-family: 'SFU-Futura-B';
	font-size: 17px;
}

.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;
	margin: 20px 0px;
	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;
}

.info-main {
	padding: 20px 0px;
	overflow: hidden;
}

/* About */
.info-about {
	position: relative;
	z-index: 1;
	max-width: 1000px;
	margin: 60px auto 10px;
	padding: 40px;
	background: url(../images/bg_about.png) no-repeat;
	background-size: cover;
	border-radius: 30px;
	overflow: hidden;
	color: #333;
	text-align: center;
	overflow: hidden;
}
.info-about:after{
	content: '';
	z-index: -1;
	position: absolute;
	border:2px solid #8d1e24;
	border-radius: 30px;
	left: 10px;
	right: 10px;
	top: 10px;
	bottom: 10px; 
}
.ds-about{
	font-size: 15px;
	font-family: SVN-Gilroy-M;
}
.tt-about h3{
	display: inline-block;
    font-size: 30px;
    font-family: Beautique-B;
    color: #8d1e24;
}

.tt-about p{
	color: #333;
	font-family: SVN-Bellico;
    font-size: 25px;
	margin-bottom: 10px;
}
.flex-about {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.content-about {
	width: 50%;
	text-align: center;
}

.bird-about-1{
	position: absolute;
    right: 15%;
    top: 65px;
    width: 90px;
    height: 60px;
    background: url(../images/chim1.png);
	transform: translateX(100px) translateY(100px) translateZ(100px);
}


.bird-about-2{
	position: absolute;
    left: 15%;
    top: 30px;
    width: 54px;
    height: 80px;
    background: url(../images/chim2.png);
	transform: translateX(-100px) translateY(-100px) translateZ(-100px);
}

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

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

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

.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%);
}

/* BG */
.info-bg {
	background: url(../images/bg_bg.png) no-repeat;
	background-size: 100% 100%;
	padding: 40px 0px;
}

/* News */
.grid-tintuc {
	display: flex;
	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;
}

.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: #fff333;
	margin-top: 0px;
	line-height: 20px;
	height: 60px;
}

.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: #fff333;
}

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

/* letter */
.info-letter {
	background: url(../images/bg_lt.png) no-repeat;
	background-size: 100% 100%;
}

.title-main-letter {
	margin-bottom: 1.5rem;
	text-align: center;
	color: #fff;
}

.title-main-letter span {
	font-size: 50px;
	line-height: 50px;
}

.title-main-letter h4 {
	font-size: 45px;
	line-height: 45px;
	color: #fff;
	text-transform: capitalize;
}

.title-main-white h4 {
	color: #fff;
}

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

.letter {
	max-width: 540px;
	background: url(../images/bg-letter.png) no-repeat;
	background-size: 100% 100%;
	padding: 50px;
}

.tt-letter {
	text-align: center;
	margin-bottom: 15px;
}

.tt-letter span {
	position: relative;
	background: #e4edd5;
	line-height: 50px;
	font-size: 18px;
	text-transform: uppercase;
	color: #fff;
	border-radius: 30px;
	padding: 12px 30px;
}

.tt-letter span:after {
	content: '';
	border: 1px solid #a6b78a;
	border-radius: 30px;
	position: absolute;
	left: 5px;
	right: 5px;
	top: 5px;
	bottom: 5px;
}

.tt-letter p {
	margin: 0px;
	font-size: 16px;
	color: #fff;
}

.contact-input textarea {
	height: 100px;
	padding: 10px;
}

.contact-input input {
	height: 45px;
}

.contact-input label span {
	color: #f00;
}

.contact-form .btn-submit {
	height: 42px;
	padding: 0px 20px;
	display: block;
	background: #fff;
	border: 1px solid #fff;
	text-transform: uppercase;
	font-family: 'SFU-Futura-B';
}

.contact-form .btn-submit:hover {
	background: #ad0b19;
}
.form-floating>label{color: #333;}
.btn-primary {
    color: #fff;
    background-color: #961722;
    border-color: #961722;
}

.wr-setting {
	background: url(../images/Union.png) no-repeat center;
	width: 381px;
	height: 607px;
	position: relative;
}

.box-circle:hover {
	box-shadow: 0px 0px 10px #3e521e !important;
}

.box-circle:nth-child(1) {
	position: absolute;
	width: 278px;
	height: 280px;
	left: -45px;
	top: 15px;
	border-radius: 50%;
	padding: 20px;
	box-shadow: 0px 0px 10px #a6b78a;
	background: #fff;
	text-align: center;
	transition: all 0.5s;
}

.box-circle:nth-child(2) {
	position: absolute;
	left: 114px;
	bottom: 17px;
	width: 316px;
	height: 316px;
	border-radius: 50%;
	padding: 20px;
	box-shadow: 0px 0px 10px #a6b78a;
	background: #fff;
	text-align: center;
	transition: all 0.5s;
}

.box-circle:nth-child(2):after {
	content: '';
	position: absolute;
	left: 3px;
	right: 3px;
	top: 3px;
	bottom: 3px;
	border: 1px solid #a6b78a;
	border-radius: 50%;
}

.box-circle img {
	display: block;
	margin: 0px auto 10px;
}

.box-circle span {
	text-transform: uppercase;
}

.box-circle h4 {
	font-size: 35px;
	margin: 10px 0px;
}

.img-fl {
	position: absolute;
	bottom: -25px;
	left: 42%;
}

.frm_contact {
	position: relative;
	max-width: 500px;
	margin: auto;
	background: #f8f8f8;
	padding: 25px;
}

.photo-tv {
	width: 100px;
	margin: 10px auto;
}

/* Blog */
.info-blog {
	padding: 60px 0px;
	background: url(../images/bg_blog.png) no-repeat 95% 82%;
}

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

.blog-left {
	width: 50%;
	position: relative;
}

.blog-right {
	position: relative;
	width: 660px;
	position: relative;
	padding-right: 40px;
	margin-left: -80px;
}

.blog-right:after {
	content: '';
	position: absolute;
	right: 0px;
	bottom: 45px;
	width: 310px;
	height: 392px;
	background: url(../images/Subtract.png) no-repeat center;
	background-size: 100% 100%;
}

.box-title-news {
	padding: 7px 0px;
}

.box-title-news a {
	display: block;
	background: #a6b78a;
	padding: 20px 30px;
	color: #fff;
	border-radius: 50px 0px 0px 0px;
}

.box-title-news a h3 {
	font-size: 18px;
}

.box-title-news a h3:hover {
	color: #ff0;
}

.box-title-news a p {
	margin: 0px;
	-webkit-line-clamp: 1;
}

.title-blog {
	margin-bottom: 20px;
	font-size: 50px;
	text-transform: capitalize;

	color: #414141;
	padding-right: 40px;
	text-align: right;
}

.icon-cricle {
	position: absolute;
	right: -82px;
	top: -83px;
	width: 166px;
	height: 166px;
	background: url(../images/cricle.png) no-repeat;
}

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

.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;
}

.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: #fff333;
	cursor: pointer;
	font-weight: 600;
}

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

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

.item-partner {
	border: 1px solid #ddd;
}

/* Footer */
.info-footer {
	position: relative;
	padding: 40px 0px 0px;
	color: #fff;
	background: #930f0f;
}

.info-footer .flex-footer {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
.logo-footer p {
	font-family: SVN-Bellico;
	font-size: 25px;
}
.box-footer {
	overflow: hidden;
}
.box-footer p {
	margin-bottom: 0px;
}
.box-footer p a:hover {
	color: #ff0;
}
.info-footer .flex-footer .box-footer {
	width: 20%;
}

.info-footer .flex-footer .box-footer:nth-child(3) {
	text-align: center;
}

.tt-footer {
	font-size: 20px;
	font-family: Beautique-M;
}

.info-footer .flex-footer .service-footer {
	margin-top: 20px;
}

.info-footer .flex-footer .service-footer ul {
	padding: 0px;
	margin: 0px;
}

.info-footer .flex-footer .service-footer ul li {
	list-style: none;
	padding: 5px 0px;
}

.info-footer a {
	color: #fff;
}

.title-footer {
	font-size: 16px;
	text-transform: uppercase;
	padding-bottom: 20px;
	color: #fff;
}

.wr-copy {
	margin-top: 30px;
}
.ft-cy:nth-child(1) {
	margin-bottom: 20px;
}
.ft-cy:nth-child(2) {
	text-align: center;
	margin-bottom: 20px;
}

.ft-cy:nth-child(3) {
	text-align: right;
}

.copyright {
	color: #fff;
}

.ft-cy {
	width: 33.3%;
}
.wr-doitac {
	position: relative;
	background: url(../images/bg_dt.png) no-repeat;
	background-size: 100% 100%;
	padding: 60px 30px 30px 30px;
	margin-top: 40px;
}
.box-dt {
	border-radius: 10px;
	overflow: hidden;
}
.wr-doitac h4 {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -25px;
	font-size: 30px;
	font-family: Beautique-B;
	background: url(../images/tt-dt.png) no-repeat;
	background-size: 100% 100%;
	padding: 10px 30px;
	color: #8d1e24;
	white-space: nowrap;
}
/* Video */
.box-video {
	position: relative;
}

.box-video h3 {
	text-align: center;
	color: #fff;
	margin-top: 10px;
	font-size: 17px;
	-webkit-line-clamp: 2;
}

.icon-video {
	position: absolute;
	z-index: 99;
	left: 50px;
	bottom: 50px;
	color: #fff;
	font-size: 17px;
	cursor: pointer;
}

.icon-video img {
	transition: all 0.5s;
}

.box-video:hover .icon-video img {
	transform: rotate(360deg);
}

/* Tags */
.tags_tk span {
	color: #353535;
	font-size: 15px;
	text-transform: uppercase;
}

.tags_tk a {
	color: #353535;
	font-size: 12px;
	background: #e8e8e8;
	padding: 7px 10px;
	margin: 4px 2px;
	display: inline-block;
	border: 1px solid #e8e8e8;
}

.tags_tk a:hover {
	color: #f00;
}

/* About */
.box-about {
	max-width: 700px;
	margin: 0px auto;
	text-align: center;
}

.box-about h3 {
	color: #ca0000;

	font-size: 22px;
	margin-bottom: 10px;
	text-transform: lowercase;
}

.box-about a {
	padding: 10px 20px;
	color: white;
	text-transform: uppercase;
	font-size: 15px;
	display: block;
	background: #ca0000;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
	margin: 0 auto;
	font-weight: 600;
	border-radius: 10px;
}

/* 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;
}

/* 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 #fff;
	content: '';
	height: 0;
	position: absolute;
	top: 6px;
	right: 0;
	width: 0;
}

/* Product */

.wr-product{
	background: url(../images/wr_product.png)no-repeat;
	background-size: 100% 100%;
	padding: 30px;
}

.wr-product-list {
	padding: 20px;
	box-shadow: 0px 0px 10px #0000004d;
	border-radius: 10px;
	margin: 5px;
}
.view-all-pro {
	margin-top: 10px;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'SVN-Gilroy-B';
    display: inline-block;
    background: url(../images/tc.png) no-repeat right center;
    padding-right: 25px;
	cursor: pointer;
	transition: all 0.5s;
}
.view-all-pro:hover{
	color: #fbeba4;
	padding-right: 45px;
}

.title-main-left h4{
    text-transform: capitalize;
    font-size: 30px;
    margin-bottom: 15px;
    font-family: Beautique-B;
    background: linear-gradient(to right, #b08236, #fbeba4, #b08236, #fbeba4, #b08236, #fbeba4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0px;
}
.tt-list{
	border-bottom: 1px solid #FBEBA4;
	margin-bottom: 20px;
}
.tt-list span{
	position: relative;
	font-size: 16px;
	text-transform: uppercase;
	font-family: SVN-Gilroy-B;
	color: #fff;
	display: inline-block;
	padding: 10px 0px;
	cursor: pointer;
	margin-right: 15px;
}
.tt-list span:hover:after, .tt-list span.active:after{
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0px;
	width: 100%;
	height: 5px;
	background: linear-gradient(to right, #b08236 0%, #fbeba4 50%, #b08236 100%);
}

.tt-list-in {
	position: relative;
	border-bottom: 1px solid #fbeba4;
	margin-bottom: 20px;
}
.tt-list-in span {
	position: relative;
	z-index: 9;
	font-size: 16px;
	text-transform: uppercase;
	font-family: SVN-Gilroy-B;
	color: #fff;
	display: inline-block;
	padding: 10px 0px;
	cursor: pointer;
	margin-right: 15px;
}
.tt-list-in span:hover:after,
.tt-list-in span.active:after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0px;
	width: 100%;
	height: 5px;
	background: linear-gradient(to right, #b08236 0%, #fbeba4 50%, #b08236 100%);
}
.tt-list-in:after {
	content: '';
	position: absolute;
	right: 0px;
	bottom: 0px;
	background: url(../images/tt_list.png) no-repeat right bottom;
	height: 50px;
	width: 100%;
}


.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;
}

.wrap-product-sale {
	background-color: #ffa09e;
	border-radius: 10px;
	overflow: hidden;
}
.product-combo{
	background: #7d181e;
	padding: 10px;
	border-radius: 10px;
}
.product-combo .pic-product
{
	border-radius: 10px;
	overflow: hidden;
}
.product-combo a{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.product-combo .ds-combo{
	width: calc(100% - 270px);
}
.ds-combo h3{
	font-size: 20px;
	color: #FBEBA4;
	font-family: Beautique-B;
}
.ds-combo p{color: #fff;}
.ds-combo span{
	display: block;
    width: 125px;
    padding: 10px 0px;
    background: url(../images/view.png) no-repeat;
    background-size: 100% 100%;
    text-align: center;
    margin: 10px 0px;
    color: #fff;
}
.product {
	display: block;
	position: relative;
	text-align: center;
}
.product-ra-10{
	border-radius: 10px;
	overflow: hidden;
}
.product .pic-product {
	display: block;
	position: relative;
	overflow: hidden;
}
.flex-act-pro{
	display: flex;
	gap: 10px; justify-content: center;
}
.flex-act-pro > p{
	flex: 1;
}

.content-product{
	background: #881720;
	padding: 10px;
}
.content-product h3{
	font-size: 16px;
	color: #fff;
	font-family: SVN-Gilroy-M;
}
.ds-product {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.ds-product .dt {
	font-size: 16px;
	color: #fff;
	margin: 0px;
}
.product .name-product {
	margin-top: 10px;
	margin-bottom: 5px;
	font-weight: normal;
	font-family: 'Beautique-B';
	font-size: 18px;
	color: #fff;
}

.product .name-product a {
	font-size: 14px;
	color: #232323;
	line-height: 25px;
}

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

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

.product .price-product {
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
	flex-wrap: wrap;
}

.product .price-new {
	font-size: 17px;
	color: #fbeba4;
	display: inline-block;
	font-family: SVN-Gilroy-B;
}

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

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

.product:hover .name-product {
	color: #fbeba4;
}

.tt-detail-pro{
    background: url(../images/bg_title.png) no-repeat;
    background-size: cover;
    padding: 10px;
    border-radius: 20px;
}

.tt-detail-pro img{margin-right: 20px;}

.tt-detail-pro h4
{
    font-size: 30px;
    font-family: Beautique-B;
    color: #8d1e24;
	margin: 0px;
}
.tt-detail-pro p{margin: 0px;color: #000;}
.tt-list-detail
{
	white-space: nowrap;
    overflow: overlay;
}
.tt-list-detail a{
	display: inline-block;
	margin: 0px 10px;
	line-height: 40px;
	font-size: 18px;
	text-transform: uppercase;
	color: #000;
	font-family: SVN-Gilroy-M;
	padding: 0px 20px;
	background: url(../images/line_list.png)no-repeat;
	background-size: 100% 100%;
	cursor: pointer;
}

.tt-list-detail a:hover, .tt-list-detail a.active{
	background: url(../images/line_list_active.png)no-repeat;
	background-size: 100% 100%;
	color: #fff;
}

.flex-act-pro > p{
	background: linear-gradient(to right, #b08236 0%, #fbeba4 50%, #b08236 100%);
	padding: 1px;
	margin-top: 10px;
	margin-bottom: 0px;
	border-radius: 10px;
	cursor: pointer;
}
.flex-act-pro > p span{
	display: block;
	background: #961722;
	color: #fff;
	text-align: center;
	padding: 10px 0px;
	border-radius: 10px;
}
.flex-act-pro > p:hover span{
	color: #fbeba4;
}
.flex-act-pro > p img{transition: all 0.5s;}
.flex-act-pro > p:hover span img{
	transform: translateX(10px);
}
.box-cat:hover h3 {
	color: #cd8c73;
}

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

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

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

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

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

/* product detail */

.price-new-pro-detail {
    font-size: 20px;
    color: #fbeba4;
    display: inline-block;
    font-family: SVN-Gilroy-B;
}
.album-product img {
	width: 100% !important;
}

.album-product .fotorama__wrap {
	width: 100% !important;
}

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

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

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

.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: #fff;
}

.des_pro {
	white-space: pre-line;
}

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

}
.nav-tabs li a{
	text-transform: uppercase;
	font-weight: 500;
	color: #fff;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active, .nav-tabs .nav-link:hover{color: #f00;}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #fff;
    background-color: #7b0510;
    border-color: #7b0510 #7b0510 #7b0510;
}

.nav-tabs {
    border-bottom: 1px solid #7b0510;
}

/* 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: -webkit-sticky;
	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: #fff;
	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: #fff;
	content: '';
	left: 13px;
	height: 14px;
	position: absolute;
	top: 10px;
	width: 1px;
}

.cursor-pointer {
	cursor: pointer;
}

/*css CT */
.box-ct {
	display: flex;
	justify-content: start;
	align-items: center;
	background-color: rgb(233, 230, 230);
	padding: 10px;
	border-radius: 10px;
}

.box-ct img {
	border-radius: 50%;
	margin-right: 10px;
}

.ds-ct h3 a {
	font-size: 17px;
	color: #fff;
}

.ds-ct h3 a:hover {
	color: #cd8c73;
}

/*css khuyen mai*/
.block__promo {
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	margin-bottom: 10px;
}

.promoadd__list {
	padding: 10px;
}

.promoadd__list li {
	margin-bottom: 15px;
	background: url(../images/tick.png) no-repeat 0px 3px;
	background-size: 15px;
	padding-left: 25px;
}

.pr-top {
	background-color: #f6f6f6;
	border-bottom: 1px solid #e0e0e0;
	padding: 8px 10px;
}

.pr-txtb {
	font-weight: bold;
}

.pr-top .pr-txt {
	color: #666;
	font-size: 12px;
	line-height: 1.4;
	margin-top: 5px;
	font-style: normal;
}

.pr-content .pr-item:last-child {
	border: none;
}

.pr-content .pr-item {
	padding: 15px 10px 10px 10px;
}

.divb {
	margin-bottom: -10px;
}

.divb .nb {
	background-color: #4a90e2;
	border-radius: 50%;
	color: #fff;
	display: inline-block;
	font-size: 11px;
	float: left;
	height: 16px;
	line-height: 16px;
	margin-top: 2px;
	text-align: center;
	width: 16px;
}

.divb-right {
	padding-left: 26px;
}

.pr-content .pr-item p {
	margin: 0px 0px 0px 0px;
}

.divb-right a {
	color: #4a90e2;
}

/* Tien ich */
.wrap-ti {
	padding: 20px 0px;
}

.box-ti {
	background: #f1f1f1;
	padding: 15px;
	border-radius: 10px;
	display: flex;
	justify-content: space-between;
	min-height: 135px;
}

.wrap-ti .owl-item:nth-child(n + 1) .box-ti {
	background-color: rgb(220, 238, 255);
}

.wrap-ti .owl-item:nth-child(n + 2) .box-ti {
	background-color: rgb(254, 245, 207);
}

.wrap-ti .owl-item:nth-child(n + 3) .box-ti {
	background-color: rgb(255, 239, 219);
}

.wrap-ti .owl-item:nth-child(n + 4) .box-ti {
	background-color: rgb(225, 254, 207);
}

.ds-ti {
	width: calc(100% - 45px);
}

.ds-ti h3 {
	font-size: 15px;
}

.ds-ti h3 a {
	color: #fff;
}

.ds-ti h3 a:hover {
	color: #cd8c73;
}

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

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

/*  breadCrumbs */
.breadCrumbs {
	padding: 10px 0px;
	background: #7b0510;
}
.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: .5rem;
    color: #fff;
    content: var(--bs-breadcrumb-divider, "/");
}
.breadCrumbs ol {
	margin: 0px;
}

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

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

/* paging */

.page-item.active .page-link {
	background: #fff;
	border: 1px solid #fff;
}

.page-link {
	color: #fff;
}

.pagination {
	margin: 20px 0px;
}

.pagination li a {
	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 {
	-webkit-animation-iteration-count: 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 {
	-webkit-animation-name: zoomIn;
	        animation-name: zoomIn;
}

.btn-frame .animated {
	-webkit-animation-duration: 1s;
	        animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	        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 {
	-webkit-animation-name: 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 #cd8c73;
	color: #cd8c73;
}

.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;
}

/* Xu huong */
.wrap-xh {
	background: linear-gradient(90deg, #ffecd2 0%, #fcb69f 100%);
	padding: 10px;
	border-radius: 10px;
}

.title-xh {
	font-size: 25px;
	margin: 20px 0px;
	color: #fff;
	font-weight: 700;
	text-align: left;
	text-transform: uppercase;
}

.image-xh {
	border-radius: 10px;
	overflow: hidden;
}

.name-xh {
	text-align: center;
	color: #fff;
	font-size: 16px;
	margin: 10px 0px 0px;
}

/* 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;
}

/* Album */
.wr-photo .fotorama__nav-wrap {
	margin-top: 10px;
}

.wr-photo .fotorama__nav__frame {
	margin-right: 10px;
	/* Khoảng cách giữa các thumbnail */
}



.item {
	position: relative;
}

.item:hover .name-album {
	display: flex;
}

.item .name-album {
	position: absolute;
	left: 0px;
	bottom: 0px;
	top: 0px;
	width: 100%;
	padding: 10px;
	text-align: center;
	text-transform: uppercase;
	font-size: 20px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	background: #00000080;

	justify-content: center;
	align-items: center;
	padding: 30px;
	transition: all 0.5s;
	display: none;
}

.item .name-album:after {
	content: '';
	position: absolute;
	left: 10px;
	right: 10px;
	top: 10px;
	bottom: 10px;
	border: 1px solid #fff;
}

.item .name-album h3 {
	color: #fff;
	font-size: 22px;
}

.item1 {
	grid-column: 1;
	grid-row: 1 / span 3;
}

.item2 {
	grid-column: 2;
	grid-row: 1 / span 4;
	margin-top: 30px;
}

.item3 {
	grid-column: 3;
	grid-row: 1 / span 2;
}

.item4 {
	grid-column: 1;
	grid-row: 4 / span 2;
}

.item5 {
	grid-column: 2;
	grid-row: 5 / span 4;
}

.item6 {
	grid-column: 3;
	grid-row: 3 / span 4;
}

.item7 {
	grid-column: 1;
	grid-row: 6 / span 3;
}

.item8 {
	grid-column: 3;
	grid-row: 7 / span 2;
}

.grid a {
	display: block;
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.grid div a img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

/* VS */
.grid-vs {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 80px 20px;
}

.info-vs {
	position: relative;
	background: url(../images/bg_vs.webp)no-repeat center bottom;
	background-size: cover;
}
.info-vs:after{
	content: '';
	position: absolute;
	width: 165px;
	height: 50px;
	background: url(../images/icon_vs1.png)no-repeat;
	right: 10%;
	top: 60px;
}
.info-vs:before{
	content: '';
	position: absolute;
	width: 241px;
	height: 160px;
	background: url(../images/icon_vs2.png)no-repeat;
	left: 0px;
	top: 30px;
}
.title-vs {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 30px;
}
.title-vs h4 {
	display: inline-block;
	font-size: 30px;
	font-family: Beautique-B;
	background: url(../images/tt-dt.png) no-repeat;
	background-size: 100% 100%;
	padding: 10px 30px;
	color: #8d1e24;
}
.box-vs {
	position: relative;
	background: linear-gradient(to right, #b08236 0%, #fbeba4 50%, #b08236 100%);
	padding: 3px;
	border-radius: 20px;
	max-width: 300px;
	cursor: pointer;
}
.box-vs:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 60px;
	background: url(../images/sang.png) no-repeat right center;
	bottom: -29px;
}
.box-vs:nth-child(even) {
	margin: 0px 0px 0px auto;
}
.box-vs:nth-child(1) {
	left: 65px;
}
.box-vs:nth-child(2) {
	right: 65px;
}
.box-vs-in {
	background: #930f0f;
	border-radius: 20px;
	text-align: center;
	padding: 20px;
	height: 100%;
}
.box-vs h3 {
	color: #fbeba4;
	font-size: 20px;
	font-family: Beautique-B;
}

.box-vs p {
	color: #fff;
	font-size: 15px;
	margin: 0px;
}

.img-vs {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%) !important;
}
.content-vs {
	display: none;
	width: 700px;
	max-width: 80%;
}

.info-news {
	padding: 30px 0px;
	background: url(../images/bg_news.png) no-repeat;
	background-size: 100% 100%;
}
.item_tt {
	position: relative;
	z-index: 1;
	transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
	margin-bottom: 40px;
}
.img-tt {
	border-radius: 10px 10px 0px 0px;
}
.img-tt span {
	background: linear-gradient(to right, #b08236 0%, #fbeba4 50%, #b08236 100%);
	position: absolute;
	right: 0px;
	top: 20px;
	color: #333;
	border-radius: 20px 0px 0px 20px;
	padding: 5px 10px;
}
.tttt {
	padding: 10px;
	padding-bottom: 40px;
	border-radius: 0px 0px 10px 10px;
	background: #930f0f;
}
.tttt h3 {
	font-size: 16px;
	color: #fbeba4;
	margin-top: 10px;
	line-height: 20px;
	height: 40px;
	overflow: hidden;
	transition: 0.4s;
	text-decoration: none;
	font-family: Beautique-R;
	-webkit-line-clamp: 2;
}

.tttt p {
	overflow: hidden;
	color: #fff;
	margin: 0px;
	-webkit-line-clamp: 3;
}
.date-news {color: #fff; margin: 0px !important;font-size: 13px;}
.tttt .name-list {
	background: linear-gradient(to right, #b08236 0%, #fbeba4 50%, #b08236 100%);
	padding: 1px 2px;
	border-radius: 5px;
	color: #333;
	display: inline-block;
	font-size: 13px;
}
.item_tt .xemthem {
	position: absolute;
	left: calc(50% - 20px);
	bottom: -20px;
	transition: all 0.5s;
}
.item_tt .xemthem:hover {
	transform: rotate(360deg);
}

a.xtatca:hover {
	color: #ff0;
}

a.xtatca {
	display: block;
	width: 125px;
	padding: 10px 0px;
	background: url(../images/view.png) no-repeat;
	background-size: 100% 100%;
	text-align: center;
	margin: 20px auto;
	color: #fff;
	margin-top: 20px;
}
/* TC */

.info-kh {
	padding: 40px 0px;
	background: url(../images/bg_kh.png) no-repeat;
	background-size: 100% 100%;
}
.slick1 {
	text-align: center;
}
.slick2 {
	width: 230px;
	margin: 20px auto;
	display: flex;
	justify-content: center;
}
.img-kh {
	padding: 10px 0px 0px;
}
.img-kh img {
	transform: scale(0.7);
}
.slick2 img {
	border-radius: 50%;
}


.img-kh.slick-current + .slick-slide img {transform:scale(1)}

.ds-kh {
    position: relative;
    margin: 10px auto 30px;
    width: 900px;
    max-width: 95%;
}
.ds-kh:after {
	content: '';
	position: absolute;
	width: 73px;
	height: 62px;
	background: url(../images/icon_kh.png) no-repeat;
	left: 50px;
	bottom: -25px;
}
.ds-kh p {
	border: 1px solid #fbeba4;
	padding: 30px 50px;
	border-radius: 50px;
	font-size: 20px;
	font-style: italic;
	position: relative;
}
.name-kh h3 {
	color: #fbeba4;
	font-family: Beautique-M;
	font-size: 18px;
}

.bird {
	position: absolute;
	right: 15%;
	top: 0px;
	width: 90px;
	height: 60px;
	background: url(../images/chim1.png);
	transform: translateX(100px) translateY(100px) translateZ(100px);
}
/* SPNB */
.info-nb {
    padding: 60px 0px 60px;
    background: url(../images/bg_vs_bg.png) repeat;
    border-radius: 200px 200px 0px 0px;
    overflow: hidden;
    box-shadow: 0px -10px 13px #ffff006b;
    margin-top: 30px;
	
}
/* TC */
.info-tc {
	padding: 60px 0px 30px 0px;
	background: url(../images/bg_tc.png) no-repeat left bottom, url(../images/phaohoa.png) no-repeat 90% 20px;
}
.wr-tc {
	width: 50%;
}
.tt-tc {
	text-align: center;
	margin-bottom: 30px;
}
.tt-tc h4 {
	font-size: 30px;
	font-family: Beautique-B;
	background: url(../images/tt-dt.png) no-repeat;
	background-size: 100% 100%;
	padding: 10px 30px;
	color: #8d1e24;
	display: inline-block;
}
.grid-tc {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.item-tc {
	position: relative;
}
.item-tc span {
	font-size: 60px;
	font-family: Beautique-B;
	color: #00000068;
}
.item-tc h3 {
	font-size: 20px;
	color: #fbeba4;
	font-family: Beautique-R;
	margin-bottom: 10px;
}
.item-tc h3,
.item-tc p {
	margin-left: 30px;
}
.item-tc span {
	font-size: 60px;
	font-family: Beautique-B;
	color: #00000039;
	position: absolute;
	top: -30px;
}
/* Layout */
.info-layout {
	background: #f6f6f6;
}

.item-layout {
	display: inline-block;
	vertical-align: middle;
	font-size: 15px;
	cursor: pointer;
	color: #353535;
	padding: 8px 20px;
	border-radius: 2px;
	margin: 2px 4px;
	background: #e8e8e8;
	font-weight: normal;
	text-transform: uppercase;
}

.item-layout:hover,
.item-layout.active {
	background: #cd8c73;
	color: #fff;
}

.list-layout {
	text-align: center;
	margin-bottom: 20px;
}

.item-project {
	position: relative;
}

.item-project .ds-project {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	background: rgba(0, 0, 0, 0.4);
	text-align: center;
}

.ds-project h3 {
	color: #fff;
	font-size: 38px;
	font-weight: normal;
	max-width: 220px;
}

.ds-project span {
	border: 1px solid #fff;
	display: table;
	margin: auto;
	padding: 9px 37px;
	color: #fff;
	font-size: 15px;
	margin-top: 20px;
	opacity: 0;
}

.ds-project:hover span {
	opacity: 1;
}

.photo-layout {
	position: relative;
}

.download-file {
	background: #fff;
	display: table;
	padding: 9px 30px;
	position: absolute;
	right: 10px;
	bottom: 10px;
	font-size: 17px;
	border-radius: 2px;
	border: 1px solid #fff;
	cursor: pointer;
	color: #fff;
}

.download-file:hover {
	color: #ff0;
}

.modal-tv {
	background: #cd8c73;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	font-family: 'SFU-Futura-B';
}

div.danhmuc {
	border: 1px solid #d6d6d6;
	margin-bottom: 15px;
}

/* HT */
.hotro3 {
	padding: 20px;
}

.box_hotro {
	font-size: 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.box_hotro img {
	border-radius: 50%;
	width: 80px;
	height: 80px;
}

.box_hotro .ttin_ht {
	width: calc(100% - 90px);
}

.phone_t {
	background: #b71c1f;
	text-align: center;
	padding: 12px;
	font-size: 17px;
	border-radius: 2px;
	margin-top: 30px;
}

.phone_t a {
	color: #fff;
}

.phone_t a i {
	margin-right: 10px;
	font-size: 16px;
}

.menu-btn a {
	display: block;
	padding: 12px 40px;
	color: #30333a;
	background: #fff;
	border-radius: 2px;
	font-size: 18px;
	border: 1px solid #30333a50;
	text-align: center;
	margin-top: 12px;
}

.box_hotro h3 {
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
}

#book .modal-content {
	max-width: 400px;
}

.d-file {
	background: #f00;
	color: #fff;
	padding: 10px;
	border-radius: 5px;
	margin: 10px 0px;
	display: inline-block;
}

.d-file:hover {
	color: #ff0;
}



/* CSS cho loading */
.loading-overlay {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #9617225b;
	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 #f00;
	-webkit-animation: spin 1s linear infinite;
	        animation: spin 1s linear infinite;
}

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


.baonoidung h1{
	font-size: clamp(1.5rem, 2.2vw, 2rem);
	color: #ff0;
	margin-bottom: 0.5em;
  }
  .baonoidung h2{
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	color: #ff0;
	margin-top: 25px;
	margin-bottom: 0.5em;
  }
  .baonoidung h3 {
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	color: #ff0;
	margin-bottom: 0.5em;
  }
  .baonoidung h4 {
	font-size: clamp(0.7rem, 1.2vw, 1rem);
  }
  .baonoidung p{
	margin-bottom: 10px;
  }
  
  .baonoidung a{
	text-decoration: none; 
	color: #ff0;
  }
  .baonoidung a:hover{
	text-decoration: underline;
  }

  .flex-header-r{display: flex; align-items: center; gap: 20px;} 
  a.ic_cart{
	display: block;
	color: #fbeba4; line-height: normal;
	font-size: 25px; display: flex;
	gap: 5px; align-items: end;
  }
  a.ic_cart span{font-size: 14px;}


.videoHome{position: relative; height: 550px;}
.videoHome video{
	position: absolute;
	width: 100%; height: 100%;
	-o-object-fit:cover;
	   object-fit:cover;
}
.baonoidung table{color: #fff;}


a.ic_cart,.cart-pro-detail
{
	display: none !important;
}