/* Normal desktop :1200px. */
/* Normal desktop :992px. */
/* Tablet desktop :768px. */
/* small mobile :320px. */
/* Large Mobile :480px. */
/* 1. Theme default css */
:root {
	--base-color: rgba(236, 34, 31, 1);
	--base-pink: rgba(255, 241, 241, 1);
	--dark: #344B4E;
	--primary: #29433E;
	--secondary: #344b4e;
	--bg-light-1: #FBF8F0;
	--bg-light-2: #F5F5F5;
	--bg-light-3: #FFFCF5;
	--black: #000000;
	--white: #ffffff;
	--red: #C41B24;
	--light: #BBBCBF;
	--highlight: #0088C7;
	--lovelish: hsl(0, 0%, 18%);
	--handshake: hsl(40, 100%, 66%);
}
.bg-base{
	background: var(--base-color) !important;
}
@font-face {
	font-family: 'Mijas Ultra';
	src: url('../webfonts/Mijas-Ultra.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Uvn';
	src: url("../fonts/Uvn.TTF");
}
@font-face {
	font-family: 'Magnolia';
	src: url("../fonts/Magnolia\ Script.otf");
}
@font-face {
	font-family: 'Georgia_Pro';
	src: url('../webfonts/GeorgiaPro-Reg.ttf'),
		url('../webfonts/GeorgiaPro-Bold.ttf');
	font-weight: normal;
	font-style: normal;
}
@font-face {
  font-family: 'MJ-Sacrifice';
  src: url('../fonts/MJ-Sacrifice.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
/* extend bootstrap  */
.is-invalid{
	color: red;
}
.mt-9 {
	margin-top: 9rem !important;
}

.font-uvn {
	font-family: "Uvn";
}

.hover-none:hover {
	border-bottom: none;
}

/* endextend  */

body {
	font-family: 'Open Sans';
	font-weight: normal;
	font-style: normal;
	    user-select: none;   
    -webkit-user-select: none;
    -moz-user-select: none;
	  scroll-behavior: smooth;

}
img {
    pointer-events: none;     
}
.base-color {
	color: var(--base-color);
}

.text-desc {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.clamp-2-lines {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	/* Số dòng muốn hiển thị */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	position: relative;
	line-height: 1.5em;
	max-height: 3em;
	/* 2 dòng x 1.5em */
}

.see-detail {
	white-space: nowrap;
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	color: var(--base-color);
}

.block {
	display: block;
}

/* .active{
  font-weight: 700;
} */
.head-title {
	padding: 30px;
	text-align: center;
}

.head-title h2 {
	font-family: 'Playfair Display';
	color: var(--base-color);
	font-weight: 700;
	font-size: 32px;
	line-height: 40px;
}

.head-title p {
	font-weight: 400;
	font-style: italic;
	font-size: 15px;
	line-height: 24px;
}

@media (max-width: 991px) {
	.block {
		display: inline;
	}
}

img {
	max-width: 100%;
	height: auto;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

p:last-of-type {
	margin-bottom: 0;
}

a,
.button {
	text-decoration: none !important;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}


a:focus,
.button:focus,
button:focus {
	text-decoration: none;
	outline: none;
}


a:focus {
	color: #fff;
	text-decoration: none;
}


a:focus,
a:hover {
	text-decoration: none;
	color: #000;
}


a,
button {
	color: #020c26;
	outline: medium none;
}

/* Topbar  */
.marquee-wrapper {
	overflow: hidden;
	position: relative;
	border-radius: 4px;
	height: 40px;
	display: flex;
	align-items: center;
}

.marquee-content {
	display: inline-flex;
	white-space: nowrap;
	animation: marquee 25s linear infinite;
}

.marquee-content li p {
	margin: 0;
	white-space: nowrap;
	font-size: 16px;
	color: #000000;
	display: flex;
	align-items: center;
}

.marquee-content li a i {
	color: var(--base-color) !important;
}

@keyframes marquee {
	0% {
		transform: translateX(100%);
	}

	100% {
		transform: translateX(-100%);
	}
}

/* page header  */
.page_header {
	/* background-color: rgba(239, 239, 239, 1); */
}

.page_header img {
	width: 100%;
	max-height: 600px;
	object-fit: cover;
}

.breadcrumb-item.active {
	color: var(--base-color)
}


h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
}

ul {
	margin: 0px;
	padding: 0px;
}


li {
	list-style: none;
}


p {
	font-size: 16px;
	line-height: 23px;
}

.section-title h3 {
	font-weight: 600;
	font-size: 35px;
	line-height: 48px;
	color: #1a3867;
	margin-bottom: 0px;
}

.section-title p {
	margin-bottom: 0;
	font-size: 10px;
	line-height: 14px;
}

.mobile_menu {
	position: unset;
	margin: 0 5px;
	width: auto;
	/*z-index: 9;*/
}

/*---------------------
  Humberger Menu
-----------------------*/

.humberger-menu-overlay {
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: rgba(13, 9, 9, 0.8);
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	z-index: 999;
	visibility: hidden;
}

.humberger-menu-overlay.active {
	visibility: visible;
}

.humberger-menu-wrapper {
	background: #ececec;
	width: 410px;
	height: 100%;
	overflow-y: auto;
	position: fixed;
	left: -410px;
	top: 0;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	padding: 0;
}

.humberger-menu-wrapper.show-humberger-menu {
	left: 0;
	opacity: 1;
	visibility: visible;
}

.humberger-menu-wrapper .hw-logo a {
	display: inline-block;
}

.humberger-menu-wrapper .hw-menu {
	margin-bottom: 8px;
	padding: 10px;
	background: #ffffff;
}

.humberger-menu-wrapper .hw-menu ul li {
	list-style: none;
}

.humberger-menu-wrapper .hw-menu ul li .dropdown {
	height: 0;
	overflow: hidden;
	-webkit-transition: all 0.7s ease-out;
	-o-transition: all 0.7s ease-out;
	transition: all 0.7s ease-out;
}

.humberger-menu-wrapper .hw-menu ul li .dropdown li a {
	color: #c4c4c4;
	font-size: 14px;
	padding-left: 20px;
	border: none;
}

.humberger-menu-wrapper .hw-menu ul li:hover>a {
	color: #e10000;
}

.humberger-menu-wrapper .hw-menu ul li a {
	font-size: 16px;
	text-transform: capitalize;
	padding: 10px;
	display: block;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.humberger-menu-wrapper .hw-menu ul li a i {
	font-size: 18px;
	margin-left: 5px;
}

.humberger-menu-wrapper .hw-menu ul li:last-child a {
	border-bottom: none;
}

.humberger-menu-wrapper .slicknav_menu {
	background: transparent;
	padding: 0;
	margin-bottom: 35px;
}

.humberger-menu-wrapper .slicknav_nav ul {
	margin: 0;
}

.humberger-menu-wrapper .slicknav_nav .slicknav_row,
.humberger-menu-wrapper .slicknav_nav a {
	padding: 12px 0;
	margin: 0;
	text-transform: uppercase;
	font-size: 16px;
	color: #000000;
}

.humberger-menu-wrapper .slicknav_nav .slicknav_row i,
.humberger-menu-wrapper .slicknav_nav a i {
	font-size: 18px;
	margin-left: 5px;
}

.humberger-menu-wrapper .slicknav_nav li {
	border-bottom: 1px solid #252525;
}

.humberger-menu-wrapper .slicknav_nav li:last-child {
	border-bottom: none;
}

.humberger-menu-wrapper .slicknav_nav li .dropdown {
	border-top: 1px solid #252525;
}

.humberger-menu-wrapper .slicknav_nav li .dropdown li {
	border-bottom: none;
}

.humberger-menu-wrapper .slicknav_nav li .dropdown li a {
	padding-left: 20px;
	font-size: 14px;
	color: #333333;
}

.humberger-menu-wrapper .slicknav_nav li .dropdown li a:hover {
	color: #e10000;
}

.humberger-menu-wrapper .slicknav_nav .slicknav_row:hover {
	border-radius: 0;
	background: transparent;
	color: #e10000;
}

.humberger-menu-wrapper .slicknav_nav a:hover {
	border-radius: 0;
	background: transparent;
	color: #e10000;
}

.humberger-menu-wrapper .slicknav_btn {
	display: none;
}

.humberger-menu-wrapper .slicknav_nav {
	display: block !important;
}

.humberger-menu-wrapper .hw-copyright {
	font-size: 15px;
	color: #333333;
	line-height: 25px;
	margin-bottom: 24px;
}

.humberger-menu-wrapper .hw-social {
	margin-left: 7px;
	margin-bottom: 55px;
}

.humberger-menu-wrapper .hw-social a {
	display: inline-block;
	font-size: 14px;
	color: #ffffff;
	background: #252525;
	height: 46px;
	width: 46px;
	line-height: 46px;
	text-align: center;
	-webkit-transform: skewX(-15deg);
	-ms-transform: skewX(-15deg);
	transform: skewX(-15deg);
	margin-right: 4px;
}

.humberger-menu-wrapper .hw-social a i {
	display: inline-block;
	-webkit-transform: skewX(15deg);
	-ms-transform: skewX(15deg);
	transform: skewX(15deg);
}

@media (max-width: 480px) {

	.humberger-menu-wrapper {
		width: 300px;
		/* padding: 30px; */
	}

	.humberger-menu-wrapper .hw-social {
		margin-left: 0;
		display: flex;
	}
}

/* Topbar */

.topbar {
	background: var(--base-color);
	color: #ffffff;
	/* padding: 8px 0; */
}

.user_menu_top_right,
.user_menu_top_right ul {
	display: flex;
	align-items: center;
}

.user_menu_top_right {
	justify-content: flex-end;
}

.user_menu_top_right ul>li>a {
	color: #ffffff;
	font-size: 15px;
}

.user_menu_top_right a {
	/* display: block; */
	padding: 5px 10px;
	color: #201703;
	font-size: 12px;
}

.flex-row {
	align-items: center;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	width: 100%;
	height: 100%;
}

.flex-col {
	max-height: 100%;
}

.flex-grow {
	-ms-flex-negative: 1;
	-ms-flex-preferred-size: auto !important;
	flex: 1;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	word-wrap: normal !important;
	border: 0;
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	overflow-wrap: normal !important;
	padding: 0;
	position: absolute !important;
	width: 1px;
}

.form-search {
	background: #ffffff;
	border-radius: 20px;
	border: 1px solid #cccccc;
	width: 311.5px;
}

.form-search input[type="text"] {
	border: none;
	background: transparent;
	max-width: 100%;
	margin: 0;
	height: 35px;
	padding: 0 .75em;
	transition: color .3s, border .3s, background .3s, opacity .3s;
	vertical-align: middle;
	width: 100%;
	font-size: .97em;
	box-sizing: border-box;
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.form-search input[type="text"]:focus {
	color: #333;
	opacity: 1 !important;
	outline: 0;
}

.form-search button {
	height: 35px;
	display: flex;
	align-items: center;
	border: none;
	background: transparent;
	color: #d92b2b;
}

@media (max-width: 991px) {

	.form-wrapper {
		margin-left: 10px;
	}

	.form-search {
		width: 100%;
	}
}

/* line 3, ../../Arafath/CL/CL August/199 Flatter Catering/199 Flatter Catering-HTML/scss/_header.scss */
.header-area .mein_menu_list {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	justify-content: space-evenly;
	flex: 1;
}

.mein_menu_list li .active {
	color: var(--base-color) !important;
}

@media (max-width: 991px) {

	.nav-mobilie__header {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.header-area .logo-img-small img {
		width: 80px;
	}

	.logo-img-small {
		margin-left: 5px;
	}
}

/* line 53, ../../Arafath/CL/CL August/199 Flatter Catering/199 Flatter Catering-HTML/scss/_header.scss */
.header-area .main-header-area .main-menu .wrapepr-menu ul li {
	display: inline-block;
	position: relative;
}

/* line 56, ../../Arafath/CL/CL August/199 Flatter Catering/199 Flatter Catering-HTML/scss/_header.scss */
.header-area .main-header-area .main-menu .wrapepr-menu ul li a {
	color: #191818;
	font-size: 14px;
	text-transform: capitalize;
	font-weight: 700;
	display: inline-block;
	padding: 8px 16px;
	position: relative;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.quotation_btn {
	color: #ffffff !important;
	border-radius: 14px;
	background-color: var(--base-color);
}

.header-area .main-header-area .main-menu ul li a {
	transition: color 0.3s ease, border-bottom 0.3s ease;
	border-bottom: 3px solid transparent;
}

.header-area .main-header-area .main-menu ul li:not(.hover-none) a:hover {
	color: var(--base-color);
	border-bottom: 3px solid var(--base-color);
	/* 1 */
}



/* line 274, ../../Arafath/CL/CL August/199 Flatter Catering/199 Flatter Catering-HTML/scss/_header.scss */
.logo-img {
	display: inline-block;
}

/* line 1, ../../Arafath/CL/CL August/199 Flatter Catering/199 Flatter Catering-HTML/scss/_slider.scss */
.img-cover {
	width: 100%;
	height: 100vh;
	object-fit: cover;
	object-position: center;
}

.slider_area {
	position: relative;
	/* height: 620px; */
	/* overflow: hidden; */
}

.single_slider img {
	width: 100%;
	height: 620px;
	object-fit: cover;
}

/* feature category  */
.text-purple {
	color: purple;
}

.text-pink {
	color: deeppink;
}

.box img {
	max-height: 160px;
	object-fit: contain;
}

/* Services */
.services {
	position: relative;
	overflow: hidden;
	min-height: 370px;
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	padding: 40px 15px;
}

.services>svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}

.intro_item {
	width: 276px;
	height: 276px;
	transform: skew(-7deg);
	overflow: hidden;
	position: relative;
	color: white;
	background: #FEE8EB;
	box-shadow: 30px lightblue;
	margin-bottom: 20px;
	margin-right: 20px;
	border-radius: 14px;
	padding: 30px 15px;
	text-align: center;
}

.child {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	transform: skew(7deg);
}


.child.--skew {
	border-radius: 20px;
	transform: skew(7deg);
	color: var(--base-color);
}

.child.--skew p {
	font-size: 14px;
	line-height: 24px;
	text-align: -webkit-center;
}

.intro_item .child h2 {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-weight: 700;
	font-size: 21px;
	line-height: 1.4;
	margin-bottom: 20px;
	height: 60px;
	padding: 0 10px;
	overflow-wrap: break-word;
}


.intro_info {
	margin-bottom: 100px;
	margin-right: 20px;
	margin-top: 50px;
}

.intro_info h1 {
	font-weight: 700;
	font-size: 92px;
	line-height: 88px;
	color: var(--base-color);
}

.intro_info h5 {
	font-family: 'UVNChinhLuan';
	font-weight: 700;
	font-size: 32px;
	line-height: 52px;
	letter-spacing: 5%;
	cursor: pointer;
}

.intro-content {
	position: relative;
	top: 11px;
	z-index: 1;
}

/* Desktop >= 1200px - Không cần thêm gì vì layout đã ổn */
@media (max-width: 1200px) {
	.intro_info h1 {
		font-size: 72px;
		line-height: 72px;
	}

	.intro_info h5 {
		font-size: 28px;
		line-height: 42px;
	}

	.intro_item {
		width: 240px;
		height: 260px;
	}
}

/* Tablet: <= 992px */
@media (max-width: 992px) {
	.container.intro-content {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.intro_info {
		width: 100%;
		margin: 20px 0 40px;
	}

	.intro_info h1 {
		font-size: 56px;
		line-height: 60px;
	}

	.intro_info h5 {
		font-size: 24px;
		line-height: 36px;
	}

	.intro_item {
		width: 90%;
		max-width: 300px;
		height: auto;
		margin-right: 0;
		margin-bottom: 20px;
		padding: 30px 20px;
	}

	.child.--skew p {
		font-size: 14px;
	}
}

/* Mobile: <= 576px */
@media (max-width: 576px) {
	.intro_info .d-flex {
		justify-content: center;
	}

	.intro_info h1 {
		font-size: 42px;
		line-height: 48px;
	}

	.intro_info h5 {
		font-size: 20px;
		line-height: 32px;
	}

	.intro_item {
		width: 100%;
		margin-right: 0;
		padding: 25px 15px;
	}

	.child.--skew h2 {
		font-size: 18px;
		line-height: 24px;
	}
}


/* Categories */

.categories {
	padding: 42px 0;
	box-shadow: 0px 0px 0px 0px #FFF;
}

.box-title h6 {
	font-weight: 700;
	font-size: 32px;
	line-height: 40px;
	color: rgba(194, 15, 45, 1);
}

.category_item {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	border: 1px var(--base-color) solid;
	border-radius: 14px;
	width: 100%;
	background-color: rgba(255, 235, 236, 1);
}

.category_item p {
	font-weight: 700;
	font-size: 24px;
	line-height: 40px;
	color: var(--base-color);
}

.category_item img {
	width: 100%;
	/* height: 280px; */
	object-fit: cover;
}


/* Featured Categories */

.pro-newly-tabs .nav-link {
	font-weight: 700;
	font-size: 15px;
	line-height: 24px;
	color: rgba(127, 127, 127, 1);
	border-radius: 5px;
	border: 1px solid rgba(127, 127, 127, 1);
	margin: 5px;
	transition: all 0.3s ease-in-out;
}

.pro-newly-tabs .nav-item.show .nav-link,
.pro-newly-tabs .nav-link.active {
	color: var(--base-color);
	border: 1px solid var(--base-color);
	background: #f9f9f9;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transform: scale(1.05);
}

.nav-link:hover:not(.news-link) {
	color: #ffffff;
	background-color: var(--base-color);
	border-color: var(--base-color);
	transform: scale(1.03);
	transition: all 0.3s ease;
}
@keyframes customFadeSlide {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95) rotateX(-5deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

.tab-pane {
    opacity: 0; /* giữ nguyên fade */
    transform: translateY(0); /* fallback */
    transition: opacity 0.3s ease;
}

.tab-pane.show.active {
    animation: customFadeSlide 0.5s ease forwards;
}



.MultiCarousel {
	float: left;
	overflow: hidden;
	padding: 15px;
	width: 100%;
	position: relative;
	z-index: 5;
}

.MultiCarousel .MultiCarousel-inner {
	transition: 1s ease all;
	float: left;
}

.MultiCarousel .MultiCarousel-inner .item {
	float: left;
}

.MultiCarousel .MultiCarousel-inner .item>div {
	text-align: center;
	/* padding:10px;  */
	/* margin-right:10px;  */
	background: rgba(255, 255, 255, 1);
	color: #666;
}

.MultiCarousel .leftLst,
.MultiCarousel .rightLst {
	position: absolute;
	border-radius: 50%;
	top: calc(50% - 20px);
}

.MultiCarousel .leftLst {
	left: 0;
}

.MultiCarousel .rightLst {
	right: 0;
}

.MultiCarousel .leftLst.over,
.MultiCarousel .rightLst.over {
	pointer-events: none;
	background: #ccc;
}
/* .pro-slider {
	border-radius: 9px;
	border: 1px solid grey;
	height: 100%;
	padding: 10px;
	overflow: hidden;
} */

.add-to-cart {
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.add-to-cart {
	left: 50%;
	top: 50%;
	transform: translate(-50%, 10%);
	white-space: nowrap;
	background: rgba(236, 34, 31, 1);
	padding: 8px 20px;
	color: #ffffff;
	border-radius: 20px;
	cursor: pointer;
}

/* partners-section */
.partners-section {
	background: var(--base-pink);
}

.partners {
	display: flex;
	flex-wrap: wrap;
	/* justify-content: center; */
	gap: 28px;
}

.partner-item {
	width: 100%;
	height: 140px;
	flex: 0 0 18%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	border-radius: 14px;
	overflow: hidden;
	padding: 16px;
}

.partner-item img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: transform 0.3s ease;
	cursor: pointer;
	display: block;
}


.partner-item img:hover {
	transform: scale(1.05);
}

@media (max-width: 576px) {
	.partners {
		gap: 12px;
	}

	.partner-item {
		flex: 0 0 46%;
	}
}

@media (max-width: 992px) {
	.partner-item {
		flex: 0 0 calc(33.3333% - 8px);
	}
}

/* endpartner  */
.itproduct__label span {
	padding: 10px 20px;
	color: white;
	background: var(--base-color);
	border-radius: 14px;
	font-weight: 600;
	font-size: 14px;
	line-height: 24px;
}

/* trusted  */
.brands {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
}

.brand-item {
	flex: 0 0 18%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}


@media (max-width: 992px) {
	.brand-item {
		flex: 0 0 30%;
	}
}

@media (max-width: 576px) {
	.brand-item {
		flex: 0 0 47%;
	}
}

/* about */
/* Video YouTube nổi lên góc dưới phải */
.embeded-video {
	position: absolute;
	bottom: -50px;
	right: -50px;
	width: 236px;
	height: 390px;
	max-width: 100%;
	border: 4px solid pink;
	border-radius: 12px;
	overflow: hidden;
	z-index: 2;
}

/* Responsive chỉnh lại kích thước video nhỏ hơn trên thiết bị bé */
@media (max-width: 768px) {
	.embeded-video {
		width: 180px;
		height: 300px;
		bottom: -30px;
		right: -30px;
	}
}

@media (max-width: 576px) {
	.embeded-video {
		position: relative;
		bottom: 0;
		right: 0;
		width: 100%;
		height: auto;
		margin-top: 15px;
	}
}



.reason {
	padding: 20px;
	border: 1px dashed var(--base-color);
	border-radius: 12px;
	margin-bottom: 20px;
	width: 80%;
	margin-left: 50px;
}

.reason:nth-of-type(2) {
	margin-left: 100px;
}

.reason:nth-of-type(3) {
	margin-left: 50px;
}

.reason:hover {
	background: var(--base-pink);
	cursor: pointer;
}

.reason h5 {
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
}

.reason p {
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
}

@media (max-width: 992px) {
	.reason {
		margin-top: 10px;
		width: 90%;
		margin-left: auto !important;
		margin-right: auto !important;
	}
}

@media (max-width: 576px) {
	.reason {
		margin-top: 10px;
		width: 100%;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.reason h5 {
		font-size: 16px;
		line-height: 22px;
	}

	.reason p {
		font-size: 13px;
		line-height: 22px;
	}
}

/* brands  */
.brands {
	overflow: hidden;
}

.brand-img {
	height: 150px;
	width: auto;
	object-fit: contain;
	display: block;
	margin: auto;
}

@media (max-width: 992px) {
	.brand-img {
		height: 120px;
	}
}

@media (max-width: 768px) {
	.brand-img {
		height: 100px;
	}
}

@media (max-width: 576px) {
	.brand-img {
		height: 80px;
	}
}


/* Latest News & Insights  */
.news_latest {
	/* max-width: 900px; */
	margin: auto;
}

.news-latest-header {
	margin-bottom: 5px;
	color: #7F7F7F;
	font-weight: 500;
	font-size: 14px;
	line-height: 24px;
}

.news-latest-header a {
	font-weight: 700;
	font-size: 15px;
	line-height: 24px;
	color: var(--base-color);
	border-bottom: 1px solid transparent;
	transition: 0.5s ease;
}

.news-latest-header a:hover {
	border-bottom-color: currentColor;
	color: var(--base-color);
}

.news-item {
	display: flex;
	background-color: #fff;
	padding: 12px;
	border-radius: 14px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	margin-bottom: 20px;
	gap: 12px;
	align-items: flex-start;
	border: 1px solid transparent;
	transition: border 0.2s ease, box-shadow 0.2s ease;
}

.news-item:hover {
	border: 1px solid var(--base-color);
}

.news-item img {
	width: 140px;
	height: auto;
	border-radius: 14px;
	flex-shrink: 0;
}

.news-title h5 {
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
}

.news-title p {
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	color: #757575;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.news-item {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}

	.news-item img {
		width: 100%;
		max-width: 100%;
		margin-bottom: 12px;
	}

	.news-title h5 {
		font-size: 15px;
	}

	.news-title p {
		font-size: 13px;
	}
}

.view-header {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.view-header h1,
.view-header p {
	text-align: center;
}


.post-meta {
	background: #f8f9fa;
	/* border: 1px solid #dee2e6; */
	border-radius: 8px;
	padding: 10px 20px;
	font-size: 0.95rem;
	color: #6c757d;
	gap: 16px;
	margin-bottom: 10px;
	;
}

.meta-item {
	position: relative;
	padding: 0 12px;
	display: flex;
	align-items: center;
}

.meta-item:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 20%;
	height: 60%;
	border-right: 1px solid #ccc;
}

.related-blog__wrapper {
	position: relative;
}

.related-prev,
.related-next {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: white;
	border: none;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	font-size: 22px;
	z-index: 10;
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
	opacity: 0.85;
	transition: 0.3s;

	display: flex;                
	align-items: center;
	justify-content: center;
	padding: 0;            
	color: var(--base-color);      
}


.related-prev:hover,
.related-next:hover {
	opacity: 1;
}

.related-prev {
	top: 45%;
	left: -50px;
	/* Âm ra ngoài trái */
}

.related-next {
	top: 45%;
	right: -50px;
	/* Âm ra ngoài phải */
}

/* contact form  */
.contact {
	background-image: url('../img/bg-contact.png');
	background-color: rgba(243, 250, 255, 1);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 40px 20px;
}

/* .contactForm button {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  background: var(--base-color);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 10px 30px;
  display: block;
  margin: 0 auto;
  max-width: 100%;
} */

.form-floating-group {
	position: relative;
	margin-bottom: 1.5rem;
}
.form-floating-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-control.floating-input {
	height: calc(3.5rem + 2px);
	padding: 1.5rem 0.75rem 0.5rem;
	border: 2px solid #ced4da;
	border-radius: 0.25rem;
	transition: all 0.2s ease-in-out;
	background-color: transparent;
}

.form-control.floating-input:focus {
	border-color: #80bdff;
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
	outline: none;
}


.form-control.floating-input[id="message"] {
	height: auto;
	padding-top: 1.5rem;
}

/* Style cho label */
.form-floating-group label {
	position: absolute;
	top: 50%;
	left: 30px;
	transform: translateY(-50%);
	color: #6c757d;
	font-size: 1rem;
	background-color: #F3FAFF;
	padding: 0 0.25rem;
	pointer-events: none;
	/* Không cho phép click vào label */
	transition: all 0.2s ease-in-out;
	font-weight: 600;
	font-size: 14px;
	line-height: 24px;
	border-radius: 4px;
}
.form-floating-group .ini-phone{
   position: absolute;
   top: 0px;
}
.iti {
   width: 100%;
}
/* Khi input/textarea được focus hoặc có giá trị, di chuyển label lên */
.form-floating-group .floating-input:focus~label,
.form-floating-group .floating-input:not(:placeholder-shown)~label {
	top: 0;
	transform: translateY(-50%);
	font-size: 0.85rem;
	/* Thu nhỏ label */
	color: #495057;
}

/* Style cho button */
.btn_custom {
	background-color: var(--base-color);
	color: #fff;
	padding: 15px 50px;
	border: none;
	border-radius: 9px;
	transition: background-color 0.3s ease;
}

.btn_custom:hover {
	background-color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
	.form-floating-group {
		margin-bottom: 1rem;
	}

	.contactForm {
		padding: 1.5rem !important;
		/* Giảm padding trên mobile */
	}
}

/* 
@media (max-width: 576px) {
	.contactForm button {
		width: 100%;
		padding: 12px 0;
		font-size: 14px;
	}

	.contactForm {
		height: 100%;

	}
} */


/* footer  */
footer {
	background-image: url('../img/footer-bg.png');
	background-size: cover;
	background-position: bottom;
	/* padding: 60px 0; */
	color: #212529;
}

.footer-title {
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 1rem;
}

.ft_social a {
	font-size: 25px
}

.fs-25 {
	font-size: 25px;
}

/* .list-unstyled span {
	font-weight: 700;
	font-size: 16px;
	color: var(--base-color);
} */

.footer-link:hover a {
	color: var(--base-color) !important;
}

.legal-desc {
	font-size: 14px;
	color: #757575;
	font-style: italic;
	margin-top: 10px;
}

@media (max-width: 768px) {
	.footer-title {
		font-size: 18px;
	}

	.fs-25 {
		font-size: 20px;
	}
}

/* SHOP PAGE  */
.title_case {
	margin: 10px 0;
}

.title_case .line {
	border-bottom: 2px solid var(--base-color);
	width: 50px;
}

.title_case span {
	color: rgba(30, 30, 30, 1);
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
}

/* search box  */
.search-box {
	position: relative;
	width: 100%;
	max-width: 300px;
	/* giới hạn tối đa */
	margin: 0 auto;
	/* căn giữa nếu cần */
}

.search-box input[type="search"] {
	width: 100%;
	padding: 10px 30px 10px 15px;
	border-radius: 25px;
	border: 1px solid #ccc;
	outline: none;
	font-size: 16px;
}

.search-box i {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #888;
	pointer-events: none;
}

@media (max-width: 576px) {
	.search-box {
		max-width: 100%;
	}

	.search-box input[type="search"] {
		font-size: 14px;
		padding: 8px 28px 8px 12px;
	}
}


.search_frm {
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 6px;
}

.search_frm form {
	display: flex;
	align-items: center;
	border: 1px solid #ccc;
	border-radius: 25px;
	overflow: hidden;
	background-color: #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	max-width: 300px;
	width: 100%;
	border: 2px solid var(--base-color);
}

.search_frm input[type="search"] {
	border: none;
	padding: 1px 25px;
	font-size: 14px;
	flex: 1;
	outline: none;
	background-color: transparent;
}

.search_frm button {
	/* background-color: #007BFF; */
	background: none;
	border: none;
	color: var(--base-color);
	padding: 10px 15px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
}

.search_frm button:hover {
	/* background-color: #0056b3; */
}

.search_frm i.fa-magnifying-glass {
	font-size: 16px;
}

.user_menu_top_right .nav-item a {
	/* border: 1px solid #fff; */
	background-color: var(--base-color);
	border-radius: 50%;
}

.user_menu_top_right .nav-item i {
	font-size: 13px;
}

/* filter_category + filter_manufacturer */
.filter_category,
.filter_manufacturer {
	border-radius: 8px;
	padding: 10px 0px;
	width: 100%;
	/* chiếm toàn bộ chiều rộng container */
	max-width: 300px;
	/* giới hạn tối đa */
	font-family: sans-serif;
	margin: 0 auto;
	/* căn giữa nếu cần */
}

.scroll-cate {
	max-height: 550px;
	overflow-y: auto;
	padding-right: 10px;
	scrollbar-width: thin;
}

/* Title line */
.title_case .line {
	height: 1px;
	background: #ccc;
	margin: 8px 0;
}

/* filter_category_item */
.filter_category_item {
	margin-bottom: 10px;
}

.category_header {
	display: flex;
	justify-content: space-between;
	cursor: pointer;
	padding: 8px;
	border-radius: 6px;
	transition: background 0.2s;
}

.filter_category_item.selected .category_header span {
	color: var(--base-color);
	font-weight: 700;
}

.category_header:hover {
	background: #f0f0f0;
}

/* Sub-category */
.filter_subcategory_list {
	list-style: none;
	padding-left: 15px;
	margin-top: 5px;
	display: none;
}

.filter_subcategory_list li {
	position: relative;
	cursor: pointer;
	padding: 8px 12px;
	border-radius: 6px;
	transition: background-color 0.3s ease;
}

.filter_subcategory_list li.selected {
	/* font-weight: 600; */
	font-size: 15px;
	line-height: 24px;
	color: var(--base-color);
	border-radius: 0;
	border-bottom: 1px solid var(--base-color);
}

.filter_subcategory_list li.selected::before {
	font-family: "Font Awesome 6 Free" !important;
	content: "\f105";
	color: red;
	font-weight: 900;
	margin-right: 10px;
	display: inline-block;
}

.filter_category_item.open .filter_subcategory_list {
	display: block;
}

.filter_category_item.open .category_header i {
	transform: rotate(180deg);
	transition: transform 0.3s;
}

/* Manufacturer */
.filter_group ul {
	list-style: none;
	/* padding: 0; */
	margin: 0;
}

.filter_group li {
	display: flex;
	align-items: center;
	padding: 8px 10px;
	border-radius: 6px;
	transition: background 0.2s;
	cursor: pointer;
}

.filter_group li:hover {
	background-color: #f5f5f5;
}

.filter_group input[type="checkbox"] {
	margin-right: 10px;
	transform: scale(1.1);
	accent-color: #d9534f;
}

.filter_group label {
	cursor: pointer;
	user-select: none;
	font-size: 15px;
}

.filter_group {
	display: none;
	transition: all 0.3s ease;
}

.filter_group.show {
	display: block;
}

/* Product list  */
.product_list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	text-align: center;
	/* padding: 10px; */
	/* margin: 10px; */
	background: rgba(255, 255, 255, 1);
	color: #666;
}

.product_list .item {
  border-radius: 9px;
  position: relative;
  width: 19%;
  text-align: center;
  overflow: hidden;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.12); /* nhẹ hơn */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product_list .item:hover {
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.16); /* nhẹ hơn */
  transform: translateY(-4px);
}







.product-link {
    display: block;
    padding: 8px;
    text-decoration: none;
    color: inherit; 
}

.custom-carousel-track .item {
	position: relative;
}

/* Tablet (<= 992px): 3 items per row */
@media (max-width: 992px) {
	.product_list .item {
		width: 30%;
	}
}

/* Mobile (<= 768px): 2 items per row */
@media (max-width: 768px) {
	.product_list .item {
		width: 48%;
		/* hoặc 49%, miễn sao tổng 2 item với gap không vượt 100% */
	}
}

/* Small mobile (<= 480px): 1 item per row */
@media (max-width: 480px) {
	.product_list .item {
		/* width: 100%; */
	}
}



.owl-item .item {
	width: 100% !important;
}
.product_item.active {
	border: 1px solid var(--base-color);
}

/* Tags */
.offer-tag {
	position: absolute;
	top: 10px;
	right: 5px;
	background: linear-gradient(135deg, #ff4e50, #f9d423);
	color: white;
	font-weight: 600;
	font-size: 12px;
	padding: 5px;
	/* padding: 6px 14px; */
	border-radius: 999px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	animation: bounce 1.2s ease-in-out infinite;
	display: inline-flex;
	align-items: center;
	/* gap: 0.4rem; */
	z-index: 100;
}

@keyframes bounce {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-4px);
	}
}




.shiny-button {
	top: 10px;
	right: 5px;
	position: absolute;
	padding: 6px 16px;
	font-size: 11px;
	font-weight: bold;
	color: white;
	background: linear-gradient(to right, #0ba914, #0ba914);
	border: none;
	border-radius: 999px;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	z-index: 100;
}

.shiny-button::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(120deg,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0.5) 50%,
			rgba(255, 255, 255, 0) 100%);
	transform: rotate(25deg);
	animation: shine 2.5s linear infinite;
	pointer-events: none;
}

@keyframes shine {
	0% {
		transform: rotate(25deg) translateX(-100%);
	}

	100% {
		transform: rotate(25deg) translateX(100%);
	}
}





.item_button {
	position: absolute;
	top: 50%;
	left: 50%;
}

.item_button {
	position: absolute;
	top: 12%;
	left: 15%;
	transform: translate(-50%, -50%);
	padding: 5px;
	border-radius: 12px;
	display: none;
	flex-direction: column;
	gap: 12px;
	z-index: 11;
	max-width: 90vw;
	box-sizing: border-box;
	color: #fff;
	text-align: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	background: #c5c5c51f;
}


.item_button a,
.item_button a i {
	color: var(--base-color) !important;
	text-decoration: none;
	font-size: 20px;
	transition: all 0.3s ease;
}
.item:hover .item_button {
  display: flex;
  animation: slideInFromLeft 0.3s forwards ease;
}


@keyframes slideInFromLeft {
  from {
    transform: translate(calc(-50% - 50px), -50%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

/* Product category  */
.group-brand {
	background-color: rgba(255, 233, 233, 1);
	border-radius: 14px;
}

.pro_category {
	background-color: var(--bg-color);
}

.pro_category_title {
	font-family: 'Playfair Display';
	color: var(--base-color);
	font-weight: 700;
	font-size: 32px;
	line-height: 40px;
}


.filter_brand {
	padding: 20px;
	border-radius: 12px;
}

.brand_list {
	overflow-x: auto;
	white-space: nowrap;
	width: 100%;
	background: var(--base-pink);
	border-radius: 9px;
	padding: 10px 20px;

	/* Scrollbar custom */
	scrollbar-width: thin;
	scrollbar-color: #ccc transparent;
}

/* Webkit Browsers */
.brand_list::-webkit-scrollbar {
	height: 6px;
	/* Chiều cao của thanh cuộn ngang */
}

.brand_list::-webkit-scrollbar-track {
	background: transparent;
	/* Nền track */
}

.brand_list::-webkit-scrollbar-thumb {
	background-color: #ccc;
	/* Màu của thanh cuộn */
	border-radius: 10px;
}

.brand_item {
	flex-shrink: 0;
}

.brand_title {
	font-weight: 600;
	font-size: 14px;
	line-height: 24px;
	padding: 0px 20px;
}

.brand_list .brand_item img {
	width: 40px;
	height: 100%;
	object-fit: contain;
	cursor: pointer;
}

@media (max-width: 767.98px) {
	.brand_list {
		display: none !important;
		/* Ẩn danh sách ảnh */
	}

	.brand-select {
		display: block !important;
		/* Hiển thị select */
	}
}

.btn_filter {
	border-radius: 9px;
	border: 1px solid rgba(48, 203, 56, 1);
}


.button-container {
	display: flex;
	gap: 10px;
	justify-content: center;
	/* Căn giữa các nút */
	/* padding: 10px; */
}

/* Style chung cho cả hai nút */
.filter-btn,
.sort-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	background-color: #f0f0f0;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.filter-btn:hover,
.sort-btn:hover {
	background-color: #e0e0e0;
}

.filter-btn img,
.sort-btn img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.filter-btn span,
.sort-btn span {
	font-size: 14px;
	font-weight: 500;
	color: #333;
	padding-right: 15px;
}

.filter-btn,
.sort-btn {
	padding: 10px 20px;
	font-weight: 600;
	font-size: 13px;
	line-height: 24px;
	border-radius: 5px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 5px;
	background-color: #FFFFFF;
}

.filter-btn {
	border: 2px solid #30CB38;

}

.sort-btn {
	border: 2px solid #FF0209;
}

/* fillter type  */
.filter_type_list {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding: 10px 0;
	white-space: nowrap;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
}

.filter_type_list li {
	position: relative;
	padding: 8px 16px;
	cursor: pointer;
	border-radius: 20px;
	transition: background-color 0.3s ease;
	font-size: 14px;
	text-align: center;
}

.filter_type_list li:hover {
	background-color: #f0f0f0;
}

.filter_type_list li.selected {
	background-color: var(--base-color);
	color: white;
	/* font-weight: 600; */
	border-radius: 20px;
}

/* detail product  */
.attr_title {
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
}

/* .flavor-selection {
  font-family: Arial, sans-serif;
} */

.variante-options {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.variante-btn {
	padding: 10px 20px;
	border: 1px solid rgba(222, 222, 222, 1);
	border-radius: 20px;
	background-color: #f0f0f0;
	cursor: pointer;
	font-weight: 700;
	font-size: 14px;
	line-height: 24px;
	font-style: italic;
}

.variante-btn.active {
	background-color: rgba(255, 242, 243, 1);
	color: var(--base-color);
}

.variante-btn:hover {
	background-color: #e0e0e0;
}

.add_to_cart {
	background: #E0291F;
  /* background: linear-gradient(to right, var(--base-color), #ff6a00); */
  /* background-size: 200% auto; */
  /* background-position: left center; */
  padding: 10px 20px;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  margin: 0 auto;
  /* transition: background-position 0.4s ease; */
}

.add_to_cart:hover {
  /* background-position: right center; */
  background: #D1261D;
  color: white;
}




/* contact  */

.contact1 {
	width: 100%;
	min-height: 100%;
	padding: 15px;

	/* background: #009bff;
  background: -webkit-linear-gradient(left, #0072ff, #00c6ff);
  background: -o-linear-gradient(left, #0072ff, #00c6ff);
  background: -moz-linear-gradient(left, #0072ff, #00c6ff);
  background: linear-gradient(left, #0072ff, #00c6ff); */

	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.container-contact1 {
	width: 1163px;
	background: var(--base-pink);
	border-radius: 10px;
	overflow: hidden;

	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;

	padding: 90px 130px 88px 148px;
}

/*------------------------------------------------------------------
[  ]*/
.contact1-pic {
	width: 296px;
}

.contact1-pic img {
	max-width: 100%;
}


/*------------------------------------------------------------------
[  ]*/
.contact1-form {
	width: 390px;
}

.contact1-form-title {
	display: block;
	font-family: Montserrat-ExtraBold;
	font-size: 24px;
	color: #333333;
	font-weight: 700;
	font-size: 24px;
	line-height: 24px;
	text-align: center;
	padding-bottom: 44px;
}

input.input1 {
	border: none;
	height: 50px;
	border-radius: 25px;
	padding: 0 30px;
}

input.input1+.shadow-input1 {
	border-radius: 25px;
}

textarea.input1 {
	min-height: 150px;
	border-radius: 25px;
	padding: 12px 30px;
}

textarea.input1+.shadow-input1 {
	border-radius: 25px;
}

/*---------------------------------------------*/
.wrap-input1 {
	position: relative;
	width: 100%;
	z-index: 1;
	margin-bottom: 20px;
}

.input1 {
	display: block;
	width: 100%;
	background: #e6e6e6;
	font-family: Montserrat-Bold;
	font-size: 15px;
	line-height: 1.5;
	color: #666666;
}

.shadow-input1 {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	box-shadow: 0px 0px 0px 0px;
	color: rgba(87, 184, 70, 0.5);
}

.input1:focus+.shadow-input1 {
	-webkit-animation: anim-shadow 0.5s ease-in-out forwards;
	animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow {
	to {
		box-shadow: 0px 0px 80px 30px;
		opacity: 0;
	}
}

@keyframes anim-shadow {
	to {
		box-shadow: 0px 0px 80px 30px;
		opacity: 0;
	}
}

/*---------------------------------------------*/
.container-contact1-form-btn {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.contact1-form-btn {
	min-width: 193px;
	height: 50px;
	border-radius: 25px;
	background: var(--base-color);
	border: none;
	font-family: Montserrat-Bold;
	font-size: 15px;
	line-height: 1.5;
	color: #fff;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 25px;

	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}

.contact1-form-btn i {
	margin-left: 7px;

	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}

.contact1-form-btn:hover {
	background: #333333;
}

.contact1-form-btn:hover i {
	-webkit-transform: translateX(10px);
	-moz-transform: translateX(10px);
	-ms-transform: translateX(10px);
	-o-transform: translateX(10px);
	transform: translateX(10px);
}


/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 1200px) {
	.contact1-pic {
		width: 33.5%;
	}

	.contact1-form {
		width: 44%;
	}
}

@media (max-width: 992px) {
	.container-contact1 {
		padding: 90px 80px 88px 90px;
	}

	.contact1-pic {
		width: 35%;
	}

	.contact1-form {
		width: 55%;
	}
}

@media (max-width: 768px) {
	.container-contact1 {
		padding: 90px 80px 88px 80px;
	}

	.contact1-pic {
		display: none;
	}

	.contact1-form {
		width: 100%;
	}
}

@media (max-width: 576px) {
	.container-contact1 {
		padding: 90px 15px 88px 15px;
	}
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
	position: relative;
}

.alert-validate::before {
	content: attr(data-validate);
	position: absolute;
	max-width: 70%;
	background-color: white;
	border: 1px solid #c80000;
	border-radius: 13px;
	padding: 4px 25px 4px 10px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 8px;
	pointer-events: none;

	font-family: Montserrat-Medium;
	color: #c80000;
	font-size: 13px;
	line-height: 1.4;
	text-align: left;

	visibility: hidden;
	opacity: 0;

	-webkit-transition: opacity 0.4s;
	-o-transition: opacity 0.4s;
	-moz-transition: opacity 0.4s;
	transition: opacity 0.4s;
}

.alert-validate::after {
	content: "\f06a";
	font-family: FontAwesome;
	display: block;
	position: absolute;
	color: #c80000;
	font-size: 15px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 13px;
}

.alert-validate:hover:before {
	visibility: visible;
	opacity: 1;
}

@media (max-width: 992px) {
	.alert-validate::before {
		visibility: visible;
		opacity: 1;
	}
}


/* news page  */
.news-title {
	margin-bottom: 40px;
	font-weight: 600;
	font-size: 36px;
	color: #333;
}

.card-news {
	/* border: none; */
	padding: 13px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	min-height: 280px;
}


.card-img-top {
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	height: 180px;
	object-fit: cover;
}

.card-news-body {
	padding: 0;
	/* text-align: center; */
}

.card-text {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	/* display: block; */
	font-size: 18px;
	font-weight: 500;
	color: var(--base-color);
	text-decoration: none;
	transition: color 0.2s ease;
}

.card-text:hover {
	color: #0056b3;
	/* text-decoration: underline; */
}

@media (max-width: 768px) {
	.news-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

@media (max-width: 576px) {
	.news-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
}


/*** Sign Start ***/
.sign {
	/* background: linear-gradient(rgba(255, 241, 245, 0.4), rgba(255, 220, 230, 0.4)), url('../img/bg_shop.png') !important; */
	/* background-size: cover;
	background-position: center;
	background-repeat: no-repeat; */
	background: var(--base-color);
}

.content-login h1 {
	font-family: 'Playfair Display';
	color: white;
	font-weight: 700;
	font-size: 60px;
	line-height: 40px;
	text-align: center;
}

.content-login p {
	color: white;
	font-family: 'Playfair Display';
	font-style: italic;
	text-align: center;
	padding-top: 8px;
	font-size: 18px;
}

.frm-account {
	background: white;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0px 0px 20px 0px #0000001A;
}


.input-field {
	border: 1px solid #DADCE0;
	position: relative;
	border-radius: 4px;
}

.input-field input {
  height: 60px;
  border-radius: 4px;
  font-size: 18px;
  padding: 0 15px;
  background: transparent;
  color: black;
  outline: none;
  border: 1px solid #DADCE0;
  transition: box-shadow 0.3s ease;
}

.input-field input:focus, .frm-account input:focus {
  border: 1px solid #FF0A00; /* viền mỏng đỏ */
  box-shadow: none !important;
}

.input-field label {
	position: absolute;
	top: 50%;
	left: 15px;
	transform: translateY(-50%);
	color: #DADCE0;
	font-size: 19px;
	pointer-events: none;
	transition: 0.3s;
}

.input-field input:focus~label,
.input-field input:valid~label {
	top: 0;
	left: 15px;
	font-size: 16px;
	padding: 0 2px;
	background: white;
}


.form-main+.form-child {
	display: none;
}

.frm-box_title h4 {
	font-weight: 600;
	font-size: 24px;
	line-height: 30px;
	margin-bottom: 12px;
}

.frm-box_title p,
.frm-box_title a {
	font-size: 14px;
	line-height: 24px;
}

.frm-account .form-label {
	color: var(--black);
	/* text-transform: uppercase; */
	font-weight: 600;
	font-size: 12px;
	line-height: 20px;
}
.frm-account input::placeholder,
.frm-account textarea::placeholder {
  font-size: 12px; /* hoặc nhỏ hơn, như 10px */
  color: #999;     /* tùy chỉnh màu nếu muốn */
}

.frm-account .form-label sup.red {
	color: var(--base-color);
}

.required,
.error-message {
	color: var(--base-color);
}

.password-toggle {
	position: relative;
}

.password-toggle-btn {
	position: absolute;
	top: 10px;
	/*    transform: translateY(-50%);*/
	right: .625rem;
	left: unset;
	margin-bottom: 0;
	padding: .5rem;
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
	border: 0;
	background: unset;
}

.password-toggle-btn .password-toggle-check {
	position: absolute;
	left: 0;
	z-index: -1;
	width: 1rem;
	height: 1.25rem;
	opacity: 0;
}

.form-other,
.form-loginIcon,
.login-social-icon {
	display: flex;
	align-items: center;
	gap: 12px;
}

.form-other {
	justify-content: space-between;
	gap: initial;
}

.come-back a {
	color: var(--primary);
	font-weight: 600;
	font-size: 12px;
	line-height: 20px;
	letter-spacing: .32px;
}

.form-loginIcon p {
	font-weight: 600;
	font-size: 12px;
	line-height: 18px;
	/* text-transform: uppercase; */
	color: var(--black);
}

.login-social-icon {
	gap: 6px;
}

.login-social-icon a {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px;
	border: 1px solid var(--light);
	border-radius: 50%;
}

.login-social-icon a img {
	width: 16px;
	height: 16px;
}


.btn-login-quick {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    background: var(--base-color);
    color: var(--white);
    border-radius: 25px;
    padding: 15px 50px;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: .6px;
    border: var(--base-color);
}
.btn-regiter-mini{
	background: #f3f4f6;
	color: #D90D1E;
}
.btn-checkout{
	position: absolute;
	left: 50%;
	transform: translateX(-50%) ;
	border-radius: 25px !important;
    color: var(--white) !important;
    padding: 13px 35px !important;
    font-weight: 600;
    text-transform: uppercase;
	font-size: 12px;
    line-height: 16px;
}
.btn-return-shop{
	position: absolute;
    bottom: -20px;
	left: 50%;
	transform: translateX(-50%) ;
	border-radius: 25px !important;
    color: var(--white) !important;
    padding: 13px 35px !important;
}
.box-cart {
    position: relative;
}
.btn-login-quick a:hover {
	background: var(--primary);
	color: var(--white);
}

.custom-dropdown a {
	color: #000;
	font-size: 14px;
}

@media (max-width: 991px) {

	.frm-account {
		padding: 20px;
	}

	.btn-login-quick {
		padding-top: 12px;
	}

	.sign-content h3 {
		font-size: 20px;
		line-height: 26px;
	}

	.sign-content h3 span {
		display: block;
	}
}

@media (max-width: 767px) {

	.form-other {
		display: block;
	}

	.btn-login-quick button {
		width: 100%;
	}

	.frm-box_title h4 {
		text-transform: uppercase;
		font-size: 16px;
		line-height: 20px;
	}

	.frm-box_title p {
		font-size: 12px;
		line-height: 15px;
	}
}

/*** Sign End ***/



/* floating  */
.floating-sidebar-buttons {
	position: fixed;
	bottom: 90px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 9999;
}

.floating-left {
	left: 20px;
}

.floating-right {
	right: 20px;
}

.floating-btn {
	width: 50px;
	height: 50px;
	background-color: #25D366;
	color: white;
	border-radius: 50%;
	text-align: center;
	line-height: 50px;
	font-size: 22px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.floating-right .floating-btn {
	border-radius: 10px;
	background: none;
}

.floating-btn:hover {
	transform: scale(1.1);
	opacity: 0.9;
}

.floating-btn.youtube {
	background-color: #FF0000;
}

.floating-btn.facebook {
	background-color: #1877F2;
}

/* Back to top  */
/* back to top  */
.back-to-top {
	position: fixed;
	width: 48px;
	height: 48px;
	right: 30px;
	bottom: 30px;
	z-index: 99;
	background-color: var(--highlight);
	color: #fff;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	transition: all 0.3s ease-in-out;
	opacity: 0.8;
}

.back-to-top:hover {
	background-color: var(--primary);
	color: #fff;
	transform: translateY(-4px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
	cursor: pointer;
	opacity: 1;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
	padding: 0px;
	right: 16px;
}

/* modal product  */
.modal-product-detail .modal-content {
	width: 90vw;
	height: 90vh;
	max-width: 100%;
	overflow: auto;
	border-radius: 4px;
	padding: 20px;
}

.modal-product-detail .modal-body {
	height: 100%;
	padding: 20px;
	box-sizing: border-box;
}

/* feedback   */
.feedback {
	background: #fff url('../img/feedback-bg.png') no-repeat center top;
	background-size: cover;
	background-position: center;
	padding: 20px;
	/* width: 100%; */
}



.testimonial-card {
	max-width: 500px;
	margin: 30px auto;
	padding: 55px 20px;
	position: relative;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 386 340'%3E%3Crect x='2.5' y='2.5' width='381' height='335' rx='30' fill='%23fff' stroke='%23fa0701' stroke-miterlimit='10' stroke-width='2'/%3E%3Cpath d='M362.62,626H345c-16.57,0-30-15.25-30-34.07V325.07c0-18.82,13.43-34.07,30-34.07h17.62' transform='translate(-312.5 -288.5)' fill='%23fff' stroke='%23fa0701' stroke-miterlimit='10' stroke-width='5'/%3E%3Cpath d='M648.38,291H666c16.57,0,30,15.25,30,34.07V591.93c0,18.82-13.43,34.07-30,34.07H648.38' transform='translate(-312.5 -288.5)' fill='%23fff' stroke='%23fa0701' stroke-miterlimit='10' stroke-width='5'/%3E%3C/svg%3E") no-repeat center center;

	background-size: 100% 100%;
	text-align: center;
	box-sizing: border-box;
}


.testimonial-img {
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
	/* border: 5px solid #fff; */
	/* box-shadow: 0 0 0 3px red; */
	background: #fff;
}

.testimonial-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-content {
	margin-top: 60px;
	padding: 0 20px;
}

.testimonial-name {
	font-weight: bold;
	margin-bottom: 5px;
}

.testimonial-role {
	font-style: italic;
	color: gray;
	margin-bottom: 15px;
}

.testimonial-text {
	color: #333;
	line-height: 1.6;
	font-size: 15px;
}

.quote-icon {
	font-size: 30px;
	color: red;
}

.top-quote {
	position: absolute;
	left: 30px;
	top: 20px;
	font-size: 90px;
}

.bottom-quote {
	position: absolute;
	font-size: 90px;
	right: 20px;
	bottom: -50px;
}

.rating-stars {
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	background: red;
	color: yellow;
	display: inline-block;
	padding: 8px 20px;
	border-radius: 30px;
	font-size: 20px;
	font-weight: bold;
	margin-top: 20px;
}

.rating-stars .star-inactive {
	color: white;
}

@media (max-width: 768px) {
	.testimonial-card {
		padding: 20px 15px;
	}

	.testimonial-img {
		width: 80px;
		height: 80px;
		top: -40px;
	}

	.testimonial-content {
		margin-top: 50px;
		padding: 0 10px;
	}

	/* .top-quote,
	.bottom-quote {
		font-size: 60px;
	} */

	.testimonial-text {
		font-size: 14px;
	}

	.rating-stars {
		font-size: 18px;
		padding: 6px 16px;
	}
}

@media (max-width: 480px) {
	.testimonial-card {
		margin: 20px 10px;
	}

	.top-quote,
	.bottom-quote {
		font-size: 70px;
		bottom: -34px;
	}

	.feedback-item {
		margin-bottom: 40px;
	}

	.testimonial-role {
		font-size: 13px;
	}

	.testimonial-name {
		font-size: 16px;
	}

	.rating-stars {
		font-size: 16px;
		padding: 5px 14px;
	}
}

/* feature category  */
.cate-sweet,
.cate-care,
.cate-baby,
.cate-household,
.cate-beverages,
.cate-rice,
.cate-heal,
.cate-package {
	position: relative;
	border-radius: 24px;
	/* padding: 20px 20px 20px 20px; */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
}


/* resize img  */
.cate-heal img, .cate-baby img{
	padding-top: 40px;
}
/* .cate-sweet img{
	transform: scale(1.5);
}
.cate-care img{
	transform: scale(1.5);
}
.cate-baby img{
	transform: scale(1.2);
}
.cate-household img{
	transform: scale(2.7);
}
.cate-beverages img{
	transform: scale(1.7);
}
.cate-rice img{
	transform: scale(1.5);
	padding-top: 10px;
} */




.cate-sweet span,
.cate-care span,
.cate-baby span,
.cate-household span,
.cate-beverages span,
.cate-rice span,
.cate-heal span,
.cate-package span {
	font-family: 'Georgia_Pro';
	position: absolute;
	top: 15px;
	left: 20px;
	font-weight: 700;
	font-size: 24px;
	line-height: 28px;
	text-align: left;
}

.cate-sweet span {
	color: #FF0209;
}

.cate-care span {
	color: #73168C;
}

.cate-baby span {
	color: #CD017E;
}

.cate-household span {
	color: #325935;
}

.cate-beverages span {
	color: #27357F;
}

.cate-rice span {
	color: #F27141;
}

.cate-heal span {
	color: #009B9B;
}

.cate-package span {
	color: #F2A007;
}

.category-img {
	/* mix-blend-mode: multiply; */
	width: 100%;
	height: auto;
	max-height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	margin: 0 auto;
}


.cate-sweet {
	height: 420px;
	background: #FFEBEC;
	border: 2px solid #FF0209;
}

.cate-care {
	height: 230px;
	background: #EDE9F2;
	border: 2px solid #73168C;
	width: 60%;
}

.cate-baby {
	height: 230px;
	background: #FFEFF9;
	border: 2px solid #CD017E;
}

.cate-household {
	height: 240px;
	background: #E4F1E8;
	border: 2px solid #325935;
}

.cate-beverages {
	height: 470px;
	background: #D6EDFA;
	border: 2px solid #27357F;
}

.cate-rice {
	height: 180px;
	background: #FFEFE2;
	border: 2px solid #F27141;
}

.cate-heal {
	height: 240px;
	background: #CEF2E8;
	border: 2px solid #5BD9D9;
}

.cate-package {
	background: #FFF8D7;
	border: 2px solid #F2A007;
	height: 100%;
}

@media (max-width: 767px) {
	.category-img {
		padding-top: 30px;
	}

	.cate-sweet {
		height: 335px;
	}
}








/* loading button  */
.btn-ring {
	display: none;
}

.btn-ring:after {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	margin: 3px;
	border-radius: 50%;
	border: 3px solid #fff;
	border-color: #fff transparent #fff transparent;
	animation: ring 1.2s linear infinite;
}

@keyframes ring {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.table-custom {
	border: none;
}

.table-custom tr td {
	padding: 8px;
	border-bottom: 1px solid #c2c2c2;
}

/*---------------------
  Æ¯elcome New Member
-----------------------*/

.welcome {
	height: 50vh;
	padding: 20px;
	background: var(--base-color);
	/* background: url('../img/welcome.png') var(--secondary); */
	background-position: center;
	background-repeat: no-repeat;
}

.welcome-content {
	color: var(--bg-light-1);
}

.welcome-content p {
	font-size: 14px;
	line-height: 20px;

}

.welcome-content p:first-child {
	text-transform: uppercase;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: .6px;
}

.welcome-content h3 {
	font-size: 40px;
	line-height: 45px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 36px;
}

.welcome-content a {
	display: inline-block;
	margin-top: 36px;
	background: var(--white);
	color: var(--dark);
	font-size: 14px;
	line-height: 20px;
	letter-spacing: .32px;
	text-transform: uppercase;
	font-weight: 600;
	padding: 10px 22px;
	border-radius: 50px;
}

@media (max-width: 767px) {

	.welcome-content h3 {
		font-size: 24px;
		line-height: 30px;
	}

	.btn-maintenance {
		padding-top: 28px;
		display: inline-flex;
		flex-direction: column;
		gap: 16px;
	}

	.welcome-content .btn-maintenance a {
		margin-top: 0;
	}
}

/*---------------------
  Account Management
-----------------------*/

.customer-dashboard-content .frm-account {
	padding: 0;
	box-shadow: none;
	border-radius: 0;
}

.account_infomation h5 {
	font-size: 24px;
	line-height: 30px;
	font-weight: 600;
	color: var(--secondary);
	margin-bottom: 16px;
}

.account_infomation p {
	line-height: 20px;
}

.add_new_child {
	text-align: right;
}

.add_new_child a {
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	color: var(--dark);
	letter-spacing: .32px;
	text-transform: uppercase;
}

.customer-update {
	margin-top: 32px;
}

.list-address .item {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}

.customer-address .cart-item-select {
	margin-bottom: 0;
}

.customer-address .cart-item-select:not(:last-child) .item,
.list-address .item:not(:last-child) {
	border-bottom: var(--light) solid 1px;
	padding-bottom: 12px;
	margin-bottom: 12px;
}

.list-address .cart-item-select .checkmark {
	width: 20px;
	height: 20px;
	border-radius: 50%;
}

.customer-address .item-select {
	display: none;
}

.left-address {
	flex: 1;
}

.left-address p {
	margin-bottom: 5px;
	color: var(--dark);
	font-size: 14px;
	line-height: 15px;
}

.left-address p:first-child {
	font-weight: 600;
}

.left-address p:last-child {
	color: var(--dark);
}

.left-address label {
	font-size: 12px;
	line-height: 20px;
	letter-spacing: .32px;
	font-weight: 600;
	padding: 4.5px 16px;
	border-radius: 20px;
	color: var(--white);
	background: #996E11;
}

.left-address label:last-child {
	background: transparent;
	border: 1px solid #996E11;
	color: #996E11;
}

.right-address {
	flex: 0 0 50px;
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.right-address a {
	font-weight: 600;
	font-size: 12px;
	line-height: 15px;
	color: var(--light-1);
	display: block;
}

@media (max-width: 767px) {

	.account_infomation h5 {
		font-size: 16px;
		line-height: 12px;
		text-transform: uppercase;
	}

	.account_infomation p,
	.left-address p {
		font-size: 12px;
		line-height: 18px;
	}

	.left-address p:first-child {
		font-size: 14px;
		line-height: 15px;
	}

	.add-address {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.add_new_child a {
		font-size: 12px;
		line-height: 20px;
		letter-spacing: .32px;
	}
}

/*---------------------
  Purchase History
-----------------------*/

.search-bar {
	align-items: center;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	width: 100%;
	/*    height: 100%;*/
	position: relative;
	overflow: hidden;
	border: 1px solid var(--light-1);
	border-radius: 50px;
	background-color: var(--base-pink);
}

.input-search_htr {
	-ms-flex-negative: 1;
	-ms-flex-preferred-size: auto !important;
	flex: 1;
	max-height: 100%;
}

.input-search_htr input[type="text"] {
	border: none;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: .32px;
	padding: 14px 16px;
	background: var(--base-pink);
}

.input-search_htr input[type="text"]:focus {
	box-shadow: none;
}

.button-search {
	max-height: 100%;
	padding-right: 16px;
}

.button-search button {
	background: transparent;
	border: none;
}

.list-purchase .cart_item td:first-child {
	height: 100%;
	justify-content: center;
}

.table-cart td {
	font-size: 14px;
	font-weight: 600;
	color: var(--dark);
	/*    white-space: nowrap;*/
}

.table-cart td a {
	color: var(--primary);
}

.table-cart .alert {
	padding: 10px;
}

.purchase-content a {
	color: var(--primary);
	padding: 0;
	border: none;
	border-radius: 0;
}

.table-cart a.comment {
	color: #C4CDCE;
}

.list-purchase .box-content-order,
.list-purchase .box-content-order.status {
	display: block;
	border-radius: 4px;
}

.box-content-order.purchase-status {
	background: var(--third-1);
	white-space: nowrap;
}


.category-list {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 32px 0 46px;
}

.loader_ajax {
	display: none;
	max-width: 27px;
	top: -12px;
	left: 126px;
	position: absolute;
}

.category-list .loader_ajax {
	top: 50%;
	right: unset;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 40px;
}

.category-list a {
	font-weight: 600;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: .6px;
	color: var(--light);
	display: block;
	border: 1px solid var(--light);
	border-radius: 20px;
	text-transform: uppercase;
	text-align: center;
	padding: 8px 16px;
	transition: all .3s ease;
}

.category-list .item.active a,
.category-list a:hover {
	border-color: var(--base-color);
	background: var(--base-color);
	color: var(--white);
}

@media (max-width: 991px) {

	.category-list a {
		padding-left: 8px;
		padding-right: 8px;
	}

	.box-sort .btn-order-group a,
	.left-header .btn-order-group a {
		text-align: center;
		padding: 10px 40px;
		width: 100%;
	}

	.left-header .btn-order-group a {
		padding-left: 20px;
		padding-right: 20px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.box-sort .btn-order-group a.clear,
	.left-header .btn-order-group a.clear {
		background: transparent;
		color: var(--primary);
		border: 2px solid var(--primary);
	}

	.box-sort a,
	.box-sort .offcanvas-title,
	.cart .offcanvas-title {
		text-transform: uppercase;
		font-size: 12px;
		line-height: 16px;
		font-weight: 600;
		color: var(--secondary);
		letter-spacing: .6px;
	}
}

@media (max-width: 767px) {

	.scroll-cate {
		padding: 24px 0 8px;
	}

	.scroll-cate .category-list {
		padding: 0;
	}

	.box-sort .offcanvas,
	.cart .offcanvas {
		max-width: 90%;
	}

	.filter-archive {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 16px;
	}

	.box-sort .offcanvas-body {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	.shop-filter,
	.price-filter {
		border-bottom: 1px solid var(--light);
		padding-bottom: 16px;
		margin-bottom: 20px;
	}

	.price-filter {
		padding-bottom: 40px;
	}

	.name-filter {
		font-size: 12px;
		line-height: 16px;
		font-weight: 600;
		color: var(--secondary);
		letter-spacing: .6px;
		text-transform: uppercase;
	}
}

/*---------------------
  Seller Product
-----------------------*/

.box-filter__product-inner {
	border-top: 1px solid var(--light);
	border-bottom: 1px solid var(--light);
	padding: 8px 0;
}

.box-filter__product-inner,
.box-filter__product-select,
.box-order__product-inner,
.box-filter__product-option,
.box-option__product-inner {
	display: flex;
	align-items: center;
	gap: 8px;
}

.box-filter__product-inner .title,
.box-order__product-inner .title {
	font-size: 12px;
	line-height: 16px;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--black);
	letter-spacing: .6px;
}

.box-filter__product-select {
	justify-content: flex-end;
	flex: 1;
}

.title-filter {
	font-size: 12px;
	line-height: 16px;
	font-weight: 600;
	text-transform: uppercase;
	white-space: nowrap;
}

.box-filter__product-select select {
	border: none;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 12px;
	line-height: 16px;
	width: 15%;
}

.box-filter__product-select select:focus {
	box-shadow: none;
}

.custom-select {
	position: relative;
}

.custom-select-selected {
	font-size: 12px;
	line-height: 16px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: .8px;
	cursor: pointer;
}

.custom-select-options {
	display: none;
	position: absolute;
	right: 0;
	background: var(--bg-light-3);
	box-shadow: 0px 0px 20px 0px #0000001A;
	border-radius: 8px;
	z-index: 10;
	width: 237px;
	padding: 12px;
	list-style: none;
	margin: 0;
}

.custom-select-options li {
	cursor: pointer;
	padding: 10px 12px;
}

.custom-select-options li:hover {
	background: var(--bg-light);
}

.custom-select-options img {
	border: 1px solid var(--primary);
	border-radius: 50%;
	padding: 5px 4px;
}

.custom-select-options li:hover img {
	display: none;
}

.custom-select-options img:nth-child(2) {
	display: none;
}

.custom-select-options li:hover img:nth-child(2) {
	display: inline-block;
	background: var(--primary);
}

.custom-select-options span {
	font-size: 12px;
	line-height: 20px;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--primary);
}

.box-order__product-inner {
	justify-content: space-between;
	gap: initial;
	margin: 12px 0;
}

@media (min-width: 768px) {

	.filter-frm .box-filter__product-inner .box-filter__product-select {
		justify-content: inherit;
	}
}

@media (max-width: 991px) {
	.box-filter__product-select select {
		width: auto;
	}
}

@media (max-width: 767px) {
	.box-filter__product-inner {
		white-space: nowrap;
	}

	.box-filter__product-select select {
		width: 50%;
	}

	/*.box-order__product-inner {
        flex-direction: column;
    }*/
}

/* loader  */
.loader-wraper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.loader {
	width: 48px;
	height: 48px;
	border: 3px solid #FFF;
	border-radius: 50%;
	display: inline-block;
	position: relative;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
}

.loader::after {
	content: '';
	box-sizing: border-box;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 3px solid;
	border-color: #FF3D00 transparent;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.pro-newly-tabs {
	border: none;
}

/* .owl-item {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
} */

/* trusted  */
.trusted-list .slick-track {
	display: flex;
	align-items: center;
}

.trusted-thumpnail {
	margin-right: 24px;
}

.trusted-thumpnail img {
	width: 200px;
	object-fit: cover;
	/* height: 100%; */
}

/* share  */
.share-item{
	width: 25px;
}

.share-section__container {
  gap: 12px;
}

.share-section__label {
  font-size: 1rem;
  color: #333;
  user-select: none;
}

.share-section__link {
  font-size: 1.3rem;
  transition: color 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  text-decoration: none;
  background-color: transparent; 
}

.share-section__link:hover {
  color: #fff; 
  transform: scale(1.2);
}


.share-section__link--facebook:hover {
  background-color: #dfdfdf;
}

.share-section__link--twitter:hover {
  background-color: #dfdfdf;
}

.share-section__link--linkedin:hover {
  background-color: #dfdfdf;
}



/* category-desc */
.category-desc #see-more-btn {
	/* padding: 8px 20px; */
	color: var(--base-color);
	/* border: 1px solid var(--base-color);  */
	/* border-radius: 14px; */
	/* background: none; */
	/* transition: background 0.3s ease, color 0.3s ease;  */
}

/* .category-desc #see-more-btn:hover {
    color: white;
} */
.category-content {
	max-height: 150px;
	overflow: hidden;
	position: relative;
	transition: max-height 0.3s ease;
}

.category-content.expanded {
	max-height: none;
}

.btn-main {
	display: flex;
	justify-content: center;
	font-weight: 500;
	font-size: 14px;
	line-height: 24px;
	color: #ffffff !important;
	background-color: var(--base-color);
}

.btn-main:hover {
	background-color: #0056b3;
}

/*mini cart*/
.widget-light .widget-list-link {
	color: rgba(255, 255, 255, .65)
}

.widget-light .widget-list-link:hover {
	color: #fff
}

.widget-light .active>.widget-list-link {
	color: #fff
}

.widget-product-title {
	margin-bottom: .25rem;
	font-weight: 600;
	font-size: 14px;
}

.widget-product-title>a {
	color: #373f50
}

.widget-product-title:hover>a {
	color: var(--cz-primary)
}

.widget-product-meta {
	font-size: .875rem
}

.widget-cart-item {
	position: relative;
	max-width: 96%;
}

.widget-cart-item .btn-close {
	position: absolute;
	top: 50%;
	left: 0;
	height: auto;
	padding: 0;
	transform: translateY(-50%);
	transition: visibility .25s ease-in-out, opacity .25s ease-in-out;
	background: none;
	font-size: 1.5rem;
	font-weight: 300;
	visibility: hidden;
	opacity: 0
}

.widget-cart-item>.d-flex {
	transition: all .25s ease-in-out
}

.widget-cart-item:hover>.d-flex {
	transform: translateX(24px);
}

.widget-cart-item:hover .btn-close {
	visibility: visible;
	opacity: 1
}

@media (min-width: 992px) {
	.site-cart.dropdown:hover>.dropdown-menu {
		display: block;
		-webkit-animation: slide-up .25s ease-in-out;
		animation: slide-up .25s ease-in-out
	}
}

/*mini cart*/

.cart {
	position: relative;
}

.box-cart {
	min-width: 450px;
	background: #ffffff;
	padding: 44px;
	position: absolute;
	top: 50%;
	right: -170px;
	visibility: hidden;
	opacity: 0;
	z-index: 10;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	border-radius: 20px;
}

.cart-btn {
	padding: 6px 20px !important;
	background: var(--base-color);
	color: #FFFFFF;
	border-radius: 14px;
	margin-top: 10px;
}

.cart:hover #header-cart {
	visibility: visible;
	opacity: 1;
	top: 30px;
	right: -132px;
	display: block;
}

.drop-cart-mini {
	width: 440px;
	border: none;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	border-radius: 14px;
}

.top-link-counter {
	font-size: 12px;
	color: #fff;
	background: #f00;
	position: absolute;
	width: 20px;
	height: 20px;
	top: -2px;
	right: 0;
	text-align: center;
	border-radius: 50%;
}

/* news page  */
.news-header {
	background: url('../img/bg-news.png') no-repeat center/cover;
	width: 100%;
	margin: 0 auto;
	border-radius: 14px;
	padding: 20px;
}

.news-header h1 {
	font-family: 'Playfair Display';
	text-align: center;
	color: #FFFFFF;
}

.news-search {
	position: relative;
	bottom: -40px;

	display: flex;
	align-items: center;
	background: #fff;
	border: 2px solid #ccc;
	border-radius: 30px;
	padding: 10px 20px;
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
	transition: border-color 0.3s, box-shadow 0.3s;
}


.news-search:hover {
	border-color: #007BFF;
	box-shadow: 0 6px 12px rgba(0, 123, 255, 0.15);
}

.news-search i {
	color: #888;
	font-size: 18px;
	margin-right: 10px;
}

.news-search input {
	border: none;
	outline: none;
	font-size: 16px;
	width: 100%;
	font-family: 'Segoe UI', sans-serif;
}

/* service  */
.word {
	/* font-family: 'Anton', sans-serif; */
	font-family: 'UVNChinhLuan';
	perspective: 1000px;
}

.word span {
	cursor: pointer;
	display: inline-block;
	font-weight: 700;
	font-size: 32px;
	line-height: 52px;
	letter-spacing: 5%;
	user-select: none;
	/* color: #FFFFFF; */
}

.word span.mhp {
	font-weight: 700;
	font-size: 92px;
	line-height: 88px;
	color: #FFFFFF;
}

.word span:nth-child(1).active {
	animation: balance 1.5s ease-out;
	transform-origin: bottom left;
}

@keyframes balance {

	0%,
	100% {
		transform: rotate(0deg);
	}

	30%,
	60% {
		transform: rotate(-45deg);
	}
}

.word span:nth-child(2).active {
	animation: shrinkjump 1s ease-in-out;
	transform-origin: bottom center;
}

@keyframes shrinkjump {

	10%,
	35% {
		transform: scale(2, .2) translate(0, 0);
	}

	45%,
	50% {
		transform: scale(1) translate(0, -150px);
	}

	80% {
		transform: scale(1) translate(0, 0);
	}
}


.word span:nth-child(3).active {
	animation: rotate 3s ease-out;
}

@keyframes rotate {

	20%,
	80% {
		transform: rotateY(1080deg);
	}

	100% {
		transform: rotateY(1080deg);
	}
}


/* header  */
.main-header-area {
	position: relative;
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 999;
	/* background: var(--base-color); */
}

.main-header-area.sticjy {
	position: fixed;
}

#sticky-header:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 123%;
	background-color: #ffebec;
	border-radius: 0 0 50% 50%/0 0 100% 100%;
	transform: scaleX(1.1);
	z-index: -1;
}

main {
	margin-top: -80px;
	position: relative;
	z-index: 1;
}

.header-offset {
	padding-top: 150px;
}

.wrapepr-menu {
	/* position: relative; */
	width: 100%;
	margin-bottom: -35px;
	/* margin-top: 16px; */
	background: #ffffff;
	border-radius: 70px;
	/* overflow: hidden; */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* product gallery  */
.galarry-thum {
	width: 100%;
	max-width: 500px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.galarry-thum img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Hiệu ứng chuyển ảnh */
#main-image {
	transition: opacity 0.9s ease-in-out;
	opacity: 1;
}

#main-image.fade-out {
	opacity: 0;
}

/* Active thumbnail */
.item-thumb.active-img {
	border: 2px solid #007bff;
	box-shadow: 0 0 5px rgba(0, 123, 255, 0.6);
}

/* Thumbnails responsive */
/* .item-thumb img {
	width: 60px;
	height: 60px;
	object-fit: cover;
} */

@media (max-width: 768px) {
	.galarry-thum {
		max-width: 100%;
		aspect-ratio: 1 / 1;
		padding: 5px;
	}

	.item-thumb img {
		width: 50px;
		height: 50px;
	}

	#prev-btn,
	#next-btn {
		font-size: 20px;
		padding: 4px 8px;
	}
}

@media (max-width: 480px) {
	.item-thumb img {
		width: 40px;
		height: 40px;
	}

	#prev-btn,
	#next-btn {
		font-size: 18px;
		padding: 2px 6px;
	}
}


/* news-page  */
.post-header {
	background: #b61924;
	padding: 20px;
	border-radius: 14px;
	height: 165px;
}
.post-header canvas{
	position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    pointer-events: none;
		height: 165px;
}
.post-header > * {
    position: relative;
    z-index: 1;
}
.post-header h1 {
	font-family: 'Playfair Display';
	font-weight: 700;
	font-size: 45px;
	line-height: 40px;
	text-align: center;
}

.search-news {
	position: relative;
	bottom: -50px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 6px;
}

.search-news form {
	display: flex;
	align-items: center;
	border: 1px solid #ccc;
	border-radius: 25px;
	overflow: hidden;
	background-color: #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	max-width: 400px;
	width: 100%;
}

.search-news input[type="search"] {
	border: none;
	padding: 10px 15px; /* sửa padding để vừa phải */
	font-size: 16px; /* giảm cỡ chữ cho cân đối */
	flex: 1;
	outline: none;
	background-color: transparent;
}

.search-news input[type="search"]:focus {
	outline: none !important;
	box-shadow: none !important;
	border: none !important;
}

.search-news button {
	background: none;
	border: none;
	padding: 0 20px; /* chỉnh padding ngang */
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
	height: 100%;
	border-left: 1px solid #ccc; /* viền phân tách input và button */
	border-radius: 0 25px 25px 0; /* bo góc phải */
}

.search-news button:hover {
	background-color: #f0f0f0; /* hover nhẹ */
}

.search-news i.fa-magnifying-glass {
	font-size: 18px;
	color: #333;
}


.post-left,
.post-right {
	height: 100%;
}

.thumbnail-post-left,
.thumbnail-post-right {
	border-radius: 5px;
	overflow: hidden;
}

.thumbnail-post-left {
	width: 100%;
	max-height: 280px;
}

.thumbnail-post-left img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.thumbnail-post-right {
	width: 120px;
	height: 120px;
}

.thumbnail-post-right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-title {
	font-weight: 600;
	font-size: 16px;
	color: #333;
	text-decoration: none;
}

.post-title:hover {
	color: #007bff;
	text-decoration: underline;
}

@media (max-width: 767.98px) {
	.post-horizontal {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.thumbnail-post-right {
		width: 100%;
		height: auto;
	}
}


/* .gradient-border {
	--borderWidth: 4px;
	background: #1D1F20;
	position: relative;
	border-radius: var(--borderWidth);
}

.gradient-border:after {
	content: '';
	position: absolute;
	top: calc(-1 * var(--borderWidth));
	left: calc(-1 * var(--borderWidth));
	height: calc(100% + var(--borderWidth) * 2);
	width: calc(100% + var(--borderWidth) * 2);
	background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
	border-radius: calc(2 * var(--borderWidth));
	z-index: -1;
	animation: animatedgradient 3s ease alternate infinite;
	background-size: 300% 300%;
} */


@keyframes animatedgradient {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}



/* Container ul.nav-tabs */
.news-tabs{
	border: 1px solid #ddd;
	border-radius: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	padding: 2px;
}
.news-link{
	background: none !important;
	border: none !important;
    border-top-right-radius: 0 !important;
}
.news-tabs .nav-link {
    position: relative; 
    padding-right: 20px; 
	font-size: 16px;
    font-weight: 600;
	color: black;
}
.news-tabs .nav-link.active{
	color: var(--base-color);
}
.news-tabs .nav-item:not(:last-child) .nav-link::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    width: 1px;
    height: 80%;
    background-color: #ccc;
}


/* product category  */
.post-category-item.card {
	border: none;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgb(0 0 0 / 0.12);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	background: #fff;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.post-category-item.card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 35px rgb(0 0 0 / 0.25);
}

.thumnail-card {
	position: relative;
	overflow: hidden;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
	height: 220px;
}

.thumnail-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: scale 0.5s ease;
	display: block;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
}

/* .post-category-item.card:hover .thumnail-card img {
	transform: scale(1.1);
} */
/* news-category  */
.thumnail-card .tag {
	position: absolute;
	top: 12px;
	left: 12px;
	background-color: #fef2f2;
	color: #db2522;
	font-weight: 700;
	padding: 5px 14px;
	font-size: 13px;
	border-radius: 30px;
	text-transform: uppercase;
	/* box-shadow: 0 3px 6px rgb(255 77 79 / 0.5); */
	user-select: none;
	pointer-events: none;
	z-index: 2;
}
.thumnail-card .tag-red{
  background-color: #fef2f2;
  color: #db2522;
  box-shadow: 0 3px 6px rgba(255, 77, 79, 0.5);
}

.thumnail-card .tag-green  {
  background-color: #e6f4f1;
  color: #019c68;
  box-shadow: 0 3px 6px rgba(1, 156, 104, 0.5);
}

.thumnail-card .tag-blue {
  background-color: #eef5ff;
  color: #1e6dd8;
  box-shadow: 0 3px 6px rgba(30, 109, 216, 0.5);
}

.thumnail-card .tag-yellow{
  background-color: #fffbe6;
  color: #d8a600;
  box-shadow: 0 3px 6px rgba(216, 166, 0, 0.5);
}

.thumnail-card .tag-purple{
  background-color: #f5eaff;
  color: #843ad4;
  box-shadow: 0 3px 6px rgba(132, 58, 212, 0.5);
}


/* ==== Grid Layout ==== */
.news_section {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 20px;
}
.news-category {
   position: absolute;
   top: 12px;
   left: 12px;
   background: #ff4d4f;
   color: white;
   font-weight: 700;
   padding: 5px 14px;
   font-size: 13px;
   border-radius: 30px;
   text-transform: uppercase;
   box-shadow: 0 3px 6px rgb(255 77 79 / 0.5);
   user-select: none;
   pointer-events: none;
   z-index: 2;
}


/* Left & Right columns */
.left-column,
.right-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Middle column fills height */
.middle-column {
  display: flex;
  align-items: stretch;
}


/* ==== News Item Box ==== */
.news__item {
  height: 240px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  position: relative;
}

.news__item:hover {
  transform: translateY(-4px);
}

/* Middle column special */
.news_item_highlight {
  height: 100%;
}

/* ==== Image Wrapper ==== */
.news__image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==== Overlay Text ==== */
.news__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 80%);
  color: #fff;
}

.news-title {
   color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.6em;
}

/* ==== Responsive ==== */
@media (max-width: 992px) {
  .news_section {
    grid-template-columns: 1fr;
  }

  .middle-column {
    order: -1;
    margin-bottom: 20px;
  }

  .left-column,
  .right-column {
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .news__item {
    width: 100%;
    max-width: 300px;
    height: 200px;
  }

  .news-title {
    font-size: 0.85rem;
  }
}
/* 
.card-body {
  flex-grow: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
} */

.created_at {
	font-size: 13px;
	color: #888;
	margin-bottom: 8px;
	font-style: italic;
}

.card-title {
	font-weight: 700;
	margin-bottom: 12px;
	font-size: 20px;
	color: #222;
	flex-shrink: 0;
}

.card-text {
	flex-grow: 1;
	font-size: 15px;
	color: #555;
	margin-bottom: 20px;
	line-height: 1.4;
}

.btn-read {
	text-align: start;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: var(--base-color);
}



/* contact  */
.form-contact {
	padding: 30px 25px;
	border-radius: 14px;
	background-color: #f8f9fa;
	box-shadow: 0 8px 20px rgb(0 0 0 / 0.1);
	transition: box-shadow 0.3s ease;
}

.form-contact:hover {
	box-shadow: 0 12px 28px rgb(0 0 0 / 0.15);
}
 
.form-contact button:not(.iti__selected-country) {
	background-image: linear-gradient(to right, #EB3349 0%, #F45C43 51%, #EB3349 100%);
	background-size: 200% auto; /* để tạo hiệu ứng hover */
	background-position: left center;
	padding: 15px 45px;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	font-weight: 600;
	font-size: 15px;
	line-height: 24px;
	border: none;
	border-radius: 10px;
	box-shadow: 0 0 20px #eee;
	transition: background-position 0.5s ease, color 0.3s ease;
	cursor: pointer;
}

.form-contact button:hover {
	background-position: right center; 
	color: #fff;
	text-decoration: none;
}

.form-contact input,
.form-contact textarea,
.form-contact select {
  border: 2px solid transparent;
  outline: none;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.5s;
}

.form-control input:focus,
.form-contact input:focus,
.form-contact textarea:focus,
.form-contact select:focus {
  border: 2px solid #F22727;
  box-shadow: 0 0 0 7px rgba(250, 165, 165, 0.4);
  background-color: white;
}
.iti__search-input:focus{
	border: none !important;
	box-shadow: none !important;
}


.info-item {
	color: #FFFFFF;
	padding: 12px 15px;
	background-image: linear-gradient(to right, #EB3349 0%, #F45C43 51%, #EB3349 100%);
	background-size: 200% auto; /* thêm dòng này */
	background-position: left center; /* thêm dòng này */
	border-radius: 9px;
	gap: 18px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
	transition: background-position 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

.info-item:hover {
	background-position: right center;
	text-decoration: none;
}



.info-item .icon {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 24px;
	color: var(--base-color);
	box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
	transition: color 0.3s ease, box-shadow 0.3s ease;
}

.contact-map {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 6px 20px rgb(0 0 0 / 0.12);
	transition: box-shadow 0.3s ease;
}

.contact-map iframe {
	border: none;
	width: 100%;
	height: 450px;
}

/* Responsive nhỏ hơn */
@media (max-width: 767.98px) {
	.form-contact {
		padding: 20px 15px;
	}

	.info-item {
		flex-direction: row;
		gap: 15px;
	}

	.contact-map iframe {
		height: 300px;
	}
}

/* about  */
/* about */
.about-container {
	padding: 70px 0;
	background-color: var(--base-color);
	color: #fff;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.introduce {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	color: #fff;
	background: var(--base-color);
	padding: 30px;
}

.introduce h1 {
	font-weight: 700;
	font-size: 3rem;
	/* 48px */
	line-height: 1.2;
	padding-bottom: 15px;
	max-width: 550px;
	letter-spacing: 0.03em;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.introduce .desc p {
	font-size: 1.125rem;
	/* 18px */
	line-height: 1.6;
	max-width: 550px;
	color: rgba(255 255 255 / 0.9);
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.introduce .thumnail {
	max-width: 100%;
	border-radius: 15px;
	overflow: hidden;
	/* box-shadow: 0 8px 24px rgb(0 0 0 / 0.25); */
	transition: transform 0.3s ease;
	cursor: pointer;
	padding: 50px;
}

.introduce .thumnail img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	border-radius: 15px;
}

.introduce .thumnail:hover {
	transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991.98px) {

	.introduce h1,
	.introduce .desc p {
		max-width: 100%;
	}
}

@media (max-width: 767.98px) {
	.introduce {
		flex-direction: column;
		padding: 0 15px;
		text-align: center;
	}

	.introduce h1 {
		font-size: 2.25rem;
		/* 36px */
		line-height: 1.3;
	}

	.introduce .desc p {
		font-size: 1rem;
		/* 16px */
	}

	.introduce .thumnail:hover {
		transform: none;
	}
}

/* banner  */
.banner {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.purple-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 100%;
	background: linear-gradient(180deg, #bf0307, #ffffff);
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 70% 40%, 100% 100%, 0 100%);
  display: flex;
  align-items: center;
  padding-left: 3rem;
  color: white;
  transition: clip-path 0.3s ease-in-out;
  gap: 30px; 
}

/* Phần chữ xoay dọc bên trái */
.vertical-text {
	position: relative;
	left: 50px;
  writing-mode: sideways-lr;
  text-orientation: mixed;
  font-family: 'Alex Brush', cursive;
  font-style: italic;
  font-weight: 600;
  font-size: 55px;
  color: #bf0307; 
  background: #fff2c1;
  padding: 40px 15px;
  border-radius: 4px;
  user-select: none;
}



.purple-left .content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  color: #bf0307; 
  text-shadow: 
    -2px -2px 0 white,
     2px -2px 0 white,
    -2px  2px 0 white,
     2px  2px 0 white,
    -2px  0px 0 white,
     2px  0px 0 white,
     0px  2px 0 white,
     0px -2px 0 white;
  margin: 0;
  padding-left: 70px;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
}

.purple-left .content h1 span {
  display: block;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
  transform: translateY(-50px);
  opacity: 0;

  /* Giãn thời gian: 5s chạy + 3s nghỉ = 8s/vòng */
  --run: 5s;       /* tổng thời gian animation */
  --pause: 5s;     /* nghỉ sau khi kết thúc */
  --total: calc(var(--run) + var(--pause));

  animation:
    titleAnimation var(--run) ease forwards,
    titleAnimation var(--run) ease var(--total) infinite;
}


.purple-left .content h1 span:nth-child(1) { animation-delay: 0.7s, 0.7s; }
.purple-left .content h1 span:nth-child(2) { animation-delay: 1s, 1s; }
.purple-left .content h1 span:nth-child(3) { animation-delay: 1.3s, 1.3s; }
.purple-left .content h1 span:nth-child(4) { animation-delay: 1.6s, 1.6s; }
.purple-left .content h1 span:nth-child(5) { 
  color: #ffe221; 
  animation-delay: 1.9s, 1.9s; 
}

@keyframes titleAnimation {
  0% {
    transform: translateY(-50px);
    opacity: 0;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
  }
  20% {
    transform: translateY(0);
    opacity: 1;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
  }
  80% {
    transform: translateY(0);
    opacity: 1;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
  }
  100% {
    transform: translateY(50px);
    opacity: 0;
    clip-path: polygon(100% 0, 100% -0%, 0 100%, 0 100%);
  }
}




/* .purple-left .content h1 {
	font-family: 'Magnolia';
	font-weight: 700;
	font-size: 45px;
	line-height: 1.2;
	padding-bottom: 15px;
	max-width: 610px;
	letter-spacing: 0.03em;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}
.animate-text span {
	display: inline-block;
	opacity: 0;
	transform: translate(-300px, 0) scale(0);
	animation: ani4 0.5s forwards;
}

@keyframes ani4 {
	60% { transform: translate(20px, 0) scale(1); color: #b10e81; opacity: 1; }
	80% { transform: translate(20px, 0) scale(1); color: #b10e81; }
	99% { transform: translate(0) scale(1.2); color: #00f0ff; }
	100% { transform: translate(0) scale(1); color: #fff; opacity: 1; }
} */


.marquee {
	font-family: "Alice";
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
	padding: 1rem 0;
	color: white;
	/* custom bg  */
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.marquee:hover .marquee__item {
	animation-play-state: paused;
}

.marquee__seperator {
	margin: 0 2rem;
}

.marquee__item {
	display: inline-block;
	will-change: transform;
	animation: marquee 25s linear infinite;
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-100%);
	}
}



/* promise  */
.promise {
	background: #b71216;
	overflow: hidden;
}

#promise {
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adef', endColorstr='#0076e5', GradientType=1);
	position: relative;
	width: 100%;
	margin: 0px auto;
	padding: 0px auto;
}

#promise .row {
	position: relative;
	z-index: 1;
	top: -100%;
}

#container-inside {
	position: relative;
	min-width: 960px;
	max-width: 1280px;
	height: auto;
	min-height: 100%;
	margin: 0px auto;
	padding: 0px auto;
	overflow: visible;
	z-index: 0;
}

#circle-small {
	-webkit-animation: circle-small-scale 3s ease-in-out infinite alternate;
	animation: circle-small-scale 3s ease-in-out infinite alternate;
	animation-timing-function: cubic-bezier(.6, 0, .4, 1);
	animation-delay: 0s;
	position: absolute;
	top: 200px;
	left: -150px;
	background: #fff;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	opacity: 0.4;
}

#circle-medium {
	-webkit-animation: circle-small-scale 3s ease-in-out infinite alternate;
	animation: circle-small-scale 3s ease-in-out infinite alternate;
	animation-timing-function: cubic-bezier(.6, 0, .4, 1);
	animation-delay: 0.3s;
	position: absolute;
	top: 50px;
	left: -300px;
	background: #fff;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	opacity: 0.3;
}

#circle-large {
	-webkit-animation: circle-small-scale 3s ease-in-out infinite alternate;
	animation: circle-small-scale 3s ease-in-out infinite alternate;
	animation-timing-function: cubic-bezier(.6, 0, .4, 1);
	animation-delay: 0.6s;
	position: absolute;
	top: -100px;
	left: -450px;
	background: #fff;
	width: 900px;
	height: 900px;
	border-radius: 50%;
	opacity: 0.2;
}

#circle-xlarge {
	-webkit-animation: circle-small-scale 3s ease-in-out infinite alternate;
	animation: circle-small-scale 3s ease-in-out infinite alternate;
	animation-timing-function: cubic-bezier(.6, 0, .4, 1);
	animation-delay: 0.9s;
	position: absolute;
	top: -250px;
	left: -600px;
	background: #fff;
	width: 1200px;
	height: 1200px;
	border-radius: 50%;
	opacity: 0.1;
}

#circle-xxlarge {
	-webkit-animation: circle-small-scale 3s ease-in-out infinite alternate;
	animation: circle-small-scale 3s ease-in-out infinite alternate;
	animation-timing-function: cubic-bezier(.6, 0, .4, 1);
	animation-delay: 1.2s;
	position: absolute;
	top: -400px;
	left: -750px;
	background: #fff;
	width: 1500px;
	height: 1500px;
	border-radius: 50%;
	opacity: 0.05;
}

@-webkit-keyframes circle-small-scale {
	0% {
		-webkit-transform: scale(1.0);
	}

	100% {
		-webkit-transform: scale(1.1);
	}
}

@keyframes circle-small-scale {
	0% {
		transform: scale(1.0);
	}

	100% {
		transform: scale(1.1);
	}
}


.quote-box {
	background: rgba(255, 255, 255, 0.05);
	border-left: 4px solid #285905;
	padding: 30px;
	border-radius: 12px;
	position: relative;
	backdrop-filter: blur(4px);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.quote-mark {
	font-size: 80px;
	color: #42a93c;
	position: absolute;
	top: -20px;
	left: 10px;
	opacity: 0.3;
}

.quote-text {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.6;
	color: #ffffff;
	margin-left: 40px;
}

.quote-author {
	display: block;
	margin-top: 20px;
	font-size: 16px;
	font-weight: 500;
	color: #7cc549;
	text-align: right;
}
.ceo-info .thumbnail-img {
  margin-left: 0;
  margin-right: auto;
}
.thumbnail-img {
	position: relative;
	z-index: 2;
	width: 400px;
	height: 400px;
	border-radius: 150px 150px 0px 0px;
	overflow: hidden;
	/* background: linear-gradient(145deg, #9ccc41, rgba(236, 34, 31, 0.9)); */
	/* box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2); */
	padding: 6px;
	transition: transform 0.3s ease;
}

.thumbnail-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	border-radius: 125px 125px 0px 0px;
	filter: brightness(1.05);
	transition: all 0.3s ease-in-out;
}

.thumbnail-img:hover {
	transform: scale(1.04);
}

.thumbnail-img:hover img {
	filter: brightness(1.1) saturate(1.1);
}

.ceo-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 20px;
	gap: 10px;
}

.ceo-name {
	font-size: 1.3rem;
	font-weight: 600;
	color: #ffffff;
}

.ceo-title {
	font-size: 1rem;
	font-style: italic;
	color: rgba(255, 255, 255, 0.85);
}


/* faq  */
.wrapper {
	/* width: 60%; */
}

h1 {
	margin-bottom: 20px;
}

.container_faq{
	background-color: white;
	color: black;
	border-radius: 20px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* 👈 bóng nhẹ */
	margin: 20px 0;
}


.question {
	font-size: 1.2rem;
	font-weight: 600;
	padding: 20px 80px 20px 20px;
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.question::after {
	content: "\002B";
	font-size: 2.2rem;
	position: absolute;
	right: 20px;
	transition: 0.2s;
}

.question.active::after {
	transform: rotate(45deg);
}

.answercont {
	max-height: 0;
	overflow: hidden;
	transition: 0.3s;
}

.answer {
	padding: 0 20px 20px;
	line-height: 1.5rem;
}

.question.active+.answercont {}

@media screen and (max-width: 790px) {
	html {
		font-size: 14px;
	}

	.wrapper {
		/* width: 80%; */
	}
}

/* tabs custom  */
.section-wrapper {
	background: aliceblue;
	/* border-radius: 20px; */
	padding: 40px;
	/* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06); */
}

.custom-tab {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.custom-tab button {
	background: white;
	border: none;
	border-left: 5px solid transparent;
	border-radius: 12px;
	padding: 15px 20px;
	font-weight: 600;
	text-align: left;
	transition: 0.3s;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.custom-tab button.active {
	border-left: 5px solid #007bff;
	background: linear-gradient(to right, #007bff, #00c6ff);
	color: white;
	box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.tab-content-box {
	animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateX(30px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.tab-content-box h2 {
	font-size: 1.8rem;
	font-weight: 700;
	color: #007bff;
	margin-bottom: 20px;
}

.tab-content-box p,
.tab-content-box li {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 15px;
}

.tab-content-box ul {
	padding-left: 1rem;
}

.tab-content-box li strong {
	color: #222;
}

@media (max-width: 768px) {
	.custom-tab {
		flex-direction: row;
		overflow-x: auto;
		gap: 10px;
	}

	.custom-tab button {
		white-space: nowrap;
		padding: 10px 15px;
		font-size: 0.9rem;
	}
}


/* meet team  */
.team-card {
	height: 320px;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	border-radius: 20px;
}

.team-card img {
	transition: transform 0.5s ease;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.team-card:hover img {
	transform: scale(1.05);
}

.team-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
	opacity: 1;
}

.team-name {
	color: #fff;
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
	.team-card {
		height: 220px;
	}

	.team-name {
		font-size: 1.3rem;
	}
}

.dropd {
	padding: 6px 1px !important;
}

.gtranslate_wrapper a {
	transition: none !important;
	padding: 3px !important;
	;
}

.join-team {
	overflow: hidden;
}

/* GALLERY SCROLL  */
:root {
    --font: calibri;
    --size-pri: 1px;
    --size-sec: 100px; 
    --main-clr: #0ebac5;
    --white: #fff;
}

.join_team {
   background: none;
   display: flex;
   justify-content: center;
   align-items: center;
   /* min-width:220.52px;
   min-height: 56px; */
   font-family: calibri;
   font-size: 1.2em;
   border-radius: 100px;
   cursor: pointer;
   font-weight: 400;
   /* position  */
   position: absolute;
   left: 50%;
   bottom: 10px;
   transform: translateX(-50%);
   border-radius: 5px;
   padding: 10px 20px;
   color: white;
   background-color: rgba(236, 34, 31, 1);
   overflow: hidden;
       z-index: 999;
}

i {
   font-size: 1em;
   padding: 0 10px;
   transition: all 0.5s linear;
}

   .join_team:hover i {
      transform: translateX(10px);
   }

   .join_team::before, .join_team::after{
   content: "";
   position: absolute;
   width: 100%;
   height: 100%;
   top: -100%;
   left: 0;
   background-color: var(--main-clr);
   z-index: -1;
   transition: all 400ms ease-in;
   }

   .join_team:hover {
      color: #fff;
   }

   .join_team::before {
      opacity: 0.3;
   }

   .join_team::after {
      transition-delay: 0.3s;
   }

   .join_team:hover::before, .join_team:hover::after {
      top: 0;
   }
.container-gallery-scroll {
	position: relative;
	/* padding-top: 50px; */
}

.gallery-scroll-wrapper {
	height: 600px;
	overflow: hidden;
	position: relative;
	mask-image: linear-gradient(to bottom,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 0, 0, 0.1) 10%,
			rgba(0, 0, 0, 0.3) 20%,
			rgba(0, 0, 0, 0.9) 30%,
			rgba(0, 0, 0, 0.9) 70%,
			rgba(0, 0, 0, 0.3) 80%,
			rgba(0, 0, 0, 0.1) 90%,
			rgba(0, 0, 0, 0) 100%);
	-webkit-mask-image: linear-gradient(to bottom,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 0, 0, 0.08) 2%,
			rgba(0, 0, 0, 0.2) 4%,
			rgba(0, 0, 0, 0.9) 6%,
			rgba(0, 0, 0, 0.9) 94%,
			rgba(0, 0, 0, 0.2) 96%,
			rgba(0, 0, 0, 0.08) 98%,
			rgba(0, 0, 0, 0) 100%);

}

.masonry-gallery {
	display: block;
	animation: scrollUp 26s linear infinite;
}

@keyframes scrollUp {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-50%);
	}
}

.gallery-content {
	display: block !important;
	column-count: 4;
	gap: 20px;
	overflow: hidden;
}


.gallery-item {
	display: block;
	/* ← quan trọng */
	width: 100%;
	break-inside: avoid;
	/* tránh cắt hình khi chia cột */
	/* margin-bottom: 20px; */
	border-radius: 15px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
	transform-style: preserve-3d;
	margin-bottom: 16px;
	/* quan trọng: loại bỏ margin dưới */
}

.gallery-item img {
	display: block;
	/* tránh inline gap từ img */
}

.gallery-item.large img {
	height: 420px;
	width: 100%;
	object-fit: cover;
}

.gallery-item.medium img {
	height: 320px;
	width: 100%;
	object-fit: cover;
}

.gallery-item.small img {
	height: 220px;
	width: 100%;
	object-fit: cover;
}

.gallery-item:hover {
	transform: translateY(-10px) rotateX(5deg) scale(1.03);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1200px) {
	.gallery-content {
		column-count: 3;
	}
}

@media (max-width: 768px) {
	.gallery-item {
		margin-bottom: 12px;
	}

	.gallery-content {
		column-count: 2;
		gap: 7px !important;
	}

	.gallery-item.large img {
		height: 160px;
	}

	.gallery-item.medium img {
		height: 210px;
	}

	.gallery-item.small img {
		height: 110px;
	}
}



/* news detail  */
/* BLOG DETAIL HEADINGS */
.blog-detail h1 {
	font-size: 36px;
	line-height: 44px;
	font-weight: 600;
	color: var(--primary);
	margin: 24px 0 16px;
}

.blog-detail h2,
.blog-detail h3,
.blog-detail h4,
.blog-detail h5 {
	color: var(--primary);
	font-weight: 600;
	margin: 20px 0 12px;
}

.blog-detail h2 {
	font-size: 28px;
	line-height: 36px;
}

.blog-detail h3 {
	font-size: 22px;
	line-height: 30px;
}

.blog-detail h4 {
	font-size: 18px;
	line-height: 26px;
}

.blog-detail h5 {
	font-size: 16px;
	line-height: 24px;
}

/* SECTION TITLES */
.title-detail h3 {
	font-weight: 600;
	text-transform: uppercase;
	font-size: 20px;
	line-height: 28px;
	color: var(--secondary);
	margin-bottom: 12px;
}

/* SCROLL BEHAVIOR */
html {
	scroll-behavior: smooth;
}

/* TABS CONTENT */
/* .tabs-content {
    position: sticky;
    top: 20px; 
    z-index: 100;
    background: #f2fbff;
    padding: 16px;
    border-radius: 6px;
}


.tabs-content h2 {
	font-size: 20px;
	font-weight: 600;
	line-height: 26px;
	color: var(--primary);
	margin: 20px 0 12px;
}

.tabs-content li {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 12px;
} */

/* drop login  */
.header,
.login-dropdown {
	position: relative;
}

.login-dropdown .login-form-container {
	display: none;
	position: absolute;
	background-color: white;
	border-radius: 14px;
	/* overflow: hidden; */
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	z-index: 1000;
	/* left: -210px; */
	right: -178px;
	top: 30px;
	width: 450px;
}

.login-dropdown:hover .login-form-container {
	display: block;
}


.carousel-inner {
	position: relative;
}

.carousel-item {
	position: relative;
}

.button {
	position: absolute;
	bottom: 100px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	height: 60px;
	width: 320px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 2rem;
	font-size: 1.2rem;
	background-image: linear-gradient(to right,
			#fffdcc,
			#fffcbc,
			#fffcb1,
			#fffb9d,
			#fffa8e);
	color: red;
	animation: blurr 2s infinite;
	border: none;
	cursor: pointer;
	padding: 0 1rem;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.title {
	transition: 0.5s;
	font-weight: bold;
	font-style: italic;
	font-size: 20px;
	text-align: center;
	margin: 0;
}

.button:hover .title {
	transform: translateX(-90px);
	opacity: 0;
}

.description {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-weight: bold;
	font-style: italic;
	font-size: 20px;
	opacity: 0;
	transition: 0.5s;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
	white-space: nowrap;
}

.button:hover .description {
	transform: translateX(-80px);
	opacity: 1;
}

.glow-cart {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #007aff;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: pulse 2s infinite;
	box-shadow: 0 0 0 0 rgba(0, 122, 255, 0.6);
	transition: transform 0.5s ease;
	flex-shrink: 0;
}

/* Slide the cart to the left on hover */
.button:hover .glow-cart {
	transform: translateX(-240px);
}

.glow-cart svg {
	width: 20px;
	height: 20px;
	fill: white;
}

@keyframes blurr {

	0%,
	100% {
		box-shadow: 0 0 10px var(--handshake);
	}

	50% {
		box-shadow: 0 0 36px var(--handshake);
	}
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(0, 122, 255, 0.6);
	}

	70% {
		box-shadow: 0 0 0 15px rgba(0, 122, 255, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(0, 122, 255, 0);
	}
}

.subheading h1{
	font-family: 'UVNChinhLuan';
	position: absolute;
    top: 148px;
    left: 50px;
	font-weight: 700;
    font-size: 50px;
	color: #ffffff;
}
.subheading h2{
	font-family: 'Georgia_Pro';
	position: absolute;
    top: 215px;
    left: 150px;
	font-weight: 700;
    font-size: 36px;
	color: #ffffff;
}
.subheading p{
	font-family: 'Georgia_Pro';
	position: absolute;
    left: 45px;
    bottom: 45px;
	color: #ffffff;
	max-width: 620px;
	font-size: 20px;
}


/* breadcrumb */
.breadcrumb-links {
	display: flex;
	column-gap: 1rem;
	align-items: center;
}

.breadcrumb-links>li:nth-child(n + 4) {
	display: none;
}

.breadcrumb-box {
	display: flex;
	align-items: center;
}

.breadcrumb-link {
	color: #9ca3af;
}

.breadcrumb-box:hover>*:not(.breadcrumb-icon) {
	color: var(--base-color);
}

.breadcrumb-icon,
.breadcrumb-icon-home {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	color: #9ca3af;
}

.breadcrumb-links li:first-child .breadcrumb-text {
	display: none;
}

.breadcrumb-text {
	margin-left: 1rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 500;
	color: #6b7280;
}

@media (min-width: 640px) {
	.breadcrumb-links>li:nth-child(n + 4) {
		display: block;
	}

	.breadcrumb-links li:first-child .breadcrumb-text {
		display: block;
	}
}

.badge {
	padding: 6px 10px;
	font-size: 14px;
	border-radius: 20px;
}
.tag{
	color: white;
}

.bg-badge{
	background-color: #ff4d4f;
}
.fa-brands {
	font-size: 18px;
	color: #555;
	transition: color 0.3s;
}

.fa-brands:hover {
	color: #007bff;
}

/* MEGA MENU  */
.mega--menu {
	display: none;
	position: absolute;
	top: 50px;
	left: -20px;
	width: 80vw;
	background-color: #fff;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	z-index: 1000;
	height: 440px;
	overflow: hidden;
	flex-direction: row;
}

.mega--menu.active {
	display: flex;
}

.mega--sidebar {
	width: 250px;
	background-color: #f4f4f4;
	height: 100%;
	border-right: 1px solid #ddd;
}

.mega--category {
	padding: 15px;
	cursor: pointer;
	border-bottom: 1px solid #ddd;
	transition: background-color 0.3s;
	text-align: center;
}

.mega--category:hover {
	background-color: #e0e0e0;
}

.mega--subcategories {
	width: calc(100% - 250px);
	height: 100%;
	padding: 20px;
	background-color: #fff;
	display: none;
	overflow-y: auto;
	box-sizing: border-box;
}

.mega--subcategories.active {
	display: block;
}

.mega--sub-thump {
	max-width: 375px;
	height: auto;
	overflow: hidden
}

.mega--sub-thump img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.mega--subcategory {
	margin-bottom: 10px;
	font-size: 14px;
	color: #333;
}

.mega--subcategory a {
	font-weight: 500 !important;
	text-decoration: none;
	color: #007bff;
}

.mega--subcategory a:hover {
	text-decoration: underline;
	color: rgba(236, 34, 31, 1);
}

.mega--sub-thump img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* line 143, ../../Arafath/CL/CL August/199 Flatter Catering/199 Flatter Catering-HTML/scss/_header.scss */
.header-area .main-header-area.sticky {
	/* box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1); */
	position: fixed;
	width: 100%;
	top: -70px;
	left: 0;
	right: 0;
	z-index: 12;
	transform: translateY(70px);
	transition: all .5s ease;
	/* -webkit-transition: transform 500ms ease, background 500ms ease; */
	/* box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1); */
	background: transparent;
}


/* sticky  */
.header-area .main-header-area.sticky .slicknav_icon-bar {
	background: #000 !important;
}

.header-area .main-header-area.sticky .logo-img {
	display: inline-block;
}

.header-area .main-header-area.sticky .logo-img img {
	width: 100px;
}

.header-area .main-header-area.sticky .main-menu ul li {
	display: inline-block;
	position: relative;
}


/* product type  */
/* .swiper-slide {
position: relative;
padding: 20px 0;
display: flex;
justify-content: center;
align-items: stretch;
} */
.swiper-slide {
	border-radius: 8px;
	overflow: hidden;
}

.custom-carousel-item {
	width: 100%;
	background: #fff;
	padding: 10px;
}

.custom-carousel-item img {
	transition: transform 0.3s ease;
}

.custom-carousel-item:hover img {
	transform: translateY(-5px);
}




.swiper-action .swiper-button-next,
.swiper-action .swiper-button-prev {
	color: #000;
	/* hoặc màu bạn muốn */
	/* top: 50%;
transform: translateY(-50%); */
	top: -150px;
	z-index: 10;
}

.swiper-action .swiper-button-next {
	right: 50px;
}

.swiper-action .swiper-button-prev {
	left: 50px;
}

.pro-slider img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

@media (max-width: 991px) {
	.swiper-action .swiper-button-prev {
		left: 10px;
	}

	.swiper-action .swiper-button-next {
		right: 10px;
	}
}

@media (max-width: 767px) {
	.swiper-action {
		display: none;
	}
}

/* custom swipper  */
.swiper-wrapper {
	display: flex;
	align-items: stretch;
}

.swiper-slide {
	display: flex;
	height: auto;
	/* hoặc bỏ dòng này cũng được */
}

/* 
    .custom-carousel-item {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        background: #fff;
        border-radius: 10px;
        padding: 10px;
    } */

.pro-slider img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.text-desc {
	margin-top: auto;
}

.swiper-button-next,
.swiper-button-prev {
	width: 40px;
	height: 40px;
	background-color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Hover effect tăng đổ bóng và scale nhẹ */
.swiper-button-next:hover,
.swiper-button-prev:hover {
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
	transform: translateY(-50%) scale(1.05);
}

/* Nút trái & phải */
.swiper-button-prev {
	left: -20px;
}

.swiper-button-next {
	right: -20px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	color: var(--base-color);
	font-size: 20px;
	font-weight: bold;
}







/* gallery img product */
/* .images-box {
	position: relative;
	overflow: hidden;
}

.images-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.images-box .img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.images-box::before {
	content: '';
	display: block;
	padding-top: 85%;
} */

.item-product {
	width: 100%;
	height: 100%;
}

.product-single--thumb-img .swiper-slide {
	border: 1px solid #E4E4E4;
}

.product-single--thumb-img .swiper-slide-thumb-active {
	border-color: var(--base-color);
}

/* 
---------------------------------------------
Video Style
--------------------------------------------- 
*/

.video-large {
	margin-bottom: 9px;
}

.video-large a {
	display: block;
	position: relative;
	overflow: hidden;
}

.video-large .images-box::before {
	padding-top: 40%;
}

.video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.video-item a>img {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

.video-item a:hover>img {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}

.video-item .video-play {
	top: inherit;
	left: 0;
	bottom: 0;
	transform: inherit;
	overflow: hidden;
	width: 100%;
	height: 0;
	transition: .5s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.video-item a:hover .video-play {
	height: 100%;
}

.video-slider .swiper-button-next,
.video-slider .swiper-button-prev {
	color: white;
	width: 36px;
	height: 36px;
	border: 2px solid white;
	border-radius: 50%;
	padding: 10px;
}

.video-slider .swiper-button-next::after,
.video-slider .swiper-button-prev::after {
	font-size: 16px;
}


.icon-spacing {
	margin-left: 12px;
}

/* fly btn  */
/* @import "nib" * {
    transition: all 0.15s;
    outline: none;
    overflow: hidden;
  } */

.btn--fly {
	font-family: inherit;
	font-size: 18px;
	/* background: linear-gradient(to bottom, #4dc7d9 0%,#66a6ff 100%); */
	background: linear-gradient(to bottom, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
	color: white;
	padding: 13px 19px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 25px;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
	transition: all 0.3s;
	margin: 0 auto;
}
.btn--fly p{
	font-size: 20px;
    font-weight: 700;
}

.btn--fly:hover {
	background-color: #ddf7ff;
	  transform: translateY(-3px);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

.btn--fly:hover svg {
	transform: rotate(45deg);
	transition: transform 0.15s;
}

.btn--fly svg {
	width: 18px;
	height: 18px;
	fill: white;
	transition: all 0.3s;
	/* position: absolute;
	top: 13px;
	right: 25px;
	height: 30px;
	width: auto;
	transition: transform 0.15s; */
}
.btn--fly .svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  margin-right: 0.5em;
  transition: all 0.3s;
}

/* .btn--fly svg path {
	fill: #2d7586;
} */

/* .btn--fly.clicked {
	background-color: #cff5b3;
	border: 2px solid #cff5b3;
	color: #6aaa3b;
	padding-right: 6px;
	animation: bounce-in 0.3s;
	cursor: default;
}

.btn--fly.clicked svg {
	animation: flyaway 1.3s linear;
	top: -80px;
	right: -1000px;
}

.btn--fly.clicked svg path {
	fill: #6aaa3b;
} */

@keyframes flyaway {
	0% {
		transform: rotate(10deg);
		top: 13px;
		right: 25px;
		height: 30px;
	}

	5% {
		transform: rotate(10deg);
		top: 13px;
		right: 0px;
		height: 30px;
	}

	20% {
		transform: rotate(-20deg);
		top: 13px;
		right: -130px;
		height: 45px;
	}

	40% {
		transform: rotate(10deg);
		top: -40px;
		right: -280px;
		opacity: 1;
	}

	100% {
		transform: rotate(60deg);
		top: -200px;
		right: -1000px;
		height: 0;
		opacity: 0;
	}
}

@keyframes bounce-in {
	0% {
		padding-right: 30px;
	}

	40% {
		padding-right: 6px;
	}

	50% {
		padding-left: 30px;
	}

	100% {
		padding-left: 6px;
	}
}

/* detail pro */
.product_desc th,
.product_desc td {
	font-weight: 600;
	font-size: 14px;
	color: #737373;
	background-color: #ffeeed;
	text-align: left;
	width: 40%;
}
.product_desc tr:hover td,
.product_desc tr:hover th {
  background: rgba(255, 255, 255, 0.7);
  color: var(--base-color);
}

/* Tab custom */
.tabs-desc-product .custom-tabs .nav-link {
    color: #333;
    font-weight: 500;
    background: #f8f9fa;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 10px 15px !important;
	border-radius: 4px !important;
    transition: all 0.3s ease;
	margin-bottom: 2px;
}

.tabs-desc-product .custom-tabs .nav-link.active {
    color: #fff;
    background: var(--base-color);
}

.tabs-desc-product .custom-tab-content {
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.icon-box {
    flex-flow: row wrap;
    display: flex;
    align-items: center;
}

.icon-box-img {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    margin-bottom: 0;
}
.icon-box-text {
    flex: 1 1 0px;
}

/* overview  */
.overview{
    position: relative; 
	padding-bottom: 28px;
	overflow: hidden;
}
.thumbnail_overview{
    position: relative;
    top: 0;
    left: 30%;
    width: 100%;
    height: 460px;
    border-radius: 4px;
    overflow: hidden;
}
.overview_content {
    position: absolute;
    top: 12%;
    left: 6%;
    max-width: 535px;
    max-height: 345px;
    padding: 20px 12px;
    width: 100%;
    height: 100%;
    background: #cd1c18;
    border-top-right-radius: 80px;
    border-bottom-left-radius: 80px;
}
.overview_content h5 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 14px;
	font-family: 'MJ-Sacrifice';
}
.overview_content h5:first-child {
    padding-left: 30px;
}
.overview_content h5:nth-child(2) {
    padding-left: 141px;
}
.overview_content h5:nth-child(3) {
    padding-left: 244px;
    padding-bottom: 35px;
}
.overview_content .overview_lable {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}
.overview_number{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.number_lable{
	font-size: 14px;
	color: #FFFFFF;
}
.overview_number .number_item {
	display: flex;
	flex-direction: column;
    border-right: 2px solid #fff;
    padding: 0 10px;
}
.overview_number .number_item:last-child {
    border-right: none;
}

.overview_number .number{
    font-size: 27px;
    font-weight: 700;   
    color: #fff;
    text-align: center;
}
@media (max-width: 992px) {
    .overview_content {
        max-width: 100%;
        max-height: none;
        width: 90%;
        height: auto;
        padding: 16px;
        border-top-right-radius: 40px;
        border-bottom-left-radius: 40px;
        margin: 0 auto;
        top: 100px;
        /* bottom: -10px; */
    }

    .overview_content h5 {
        font-size: 20px;
        padding-left: 0 !important;
        text-align: center;
    }

    .overview_content .overview_lable {
        display: block;
        text-align: center;
        margin-top: 10px;
    }

    .overview_number {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .overview_number .number_item {
        border-right: none;
        border-bottom: 1px solid #fff;
        padding: 10px 0;
        width: 100%;
        max-width: 200px;
    }

    .overview_number .number_item:last-child {
        border-bottom: none;
    }

    .thumbnail_overview {
        left: 0;
        height: auto;
    }

    .thumbnail_overview img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    .overview_content h5:nth-child(3){
        padding-bottom: 10px;
    }
}

/* Global Reach */
/* #sky {
	position: relative;
	width: 100%;
	height: 80vh;
	background: #b7dbf5;
	overflow: hidden;
} */
#sky {
	-webkit-animation: sky 10s infinite;
	animation: sky 10s infinite;
	position: relative;
	height: 80vh;
	width: 100%;
	background: #b7dbf5;
	overflow: hidden;
}
#sky .air {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: url(https://1.bp.blogspot.com/-xQUc-TovqDk/XdxogmMqIRI/AAAAAAAACvI/AizpnE509UMGBcTiLJ58BC6iViPYGYQfQCLcBGAsYHQ/s1600/wave.png);
	background-size: 1000px 100px
}

#sky .air.air1 {
	animation: wave 30s linear infinite;
	z-index: 1000;
	opacity: 1;
	animation-delay: 0s;
	bottom: 0;
}

#sky .air.air2 {
	animation: wave2 15s linear infinite;
	z-index: 999;
	opacity: 0.5;
	animation-delay: -5s;
	bottom: 10px;
}

#sky .air.air3 {
	animation: wave 30s linear infinite;
	z-index: 998;
	opacity: 0.2;
	animation-delay: -2s;
	bottom: 15px;
}

#sky .air.air4 {
	animation: wave2 5s linear infinite;
	z-index: 997;
	opacity: 0.7;
	animation-delay: -5s;
	bottom: 20px;
}

@keyframes wave {
	0% {
		background-position-x: 0px;
	}

	100% {
		background-position-x: 1000px;
	}
}

@keyframes wave2 {
	0% {
		background-position-x: 0px;
	}

	100% {
		background-position-x: -1000px;
	}
}

#clouds {
	padding: 100px 0;
	background: #c9dbe9;
	background: -webkit-linear-gradient(top, #c9dbe9 0%, #fff 100%);
	background: -linear-gradient(top, #c9dbe9 0%, #fff 100%);
	background: -moz-linear-gradient(top, #c9dbe9 0%, #fff 100%);
}

/*Time to finalise the cloud shape*/
.cloud {
	width: 200px;
	height: 60px;
	background: #fff;

	border-radius: 200px;
	-moz-border-radius: 200px;
	-webkit-border-radius: 200px;

	position: relative;
}

.cloud:before,
.cloud:after {
	content: '';
	position: absolute;
	background: #fff;
	width: 100px;
	height: 80px;
	position: absolute;
	top: -15px;
	left: 10px;

	border-radius: 100px;
	-moz-border-radius: 100px;
	-webkit-border-radius: 100px;

	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
	-moz-transform: rotate(30deg);
}

.cloud:after {
	width: 120px;
	height: 120px;
	top: -55px;
	left: auto;
	right: 15px;
}

/*Time to animate*/
.x1 {
	-webkit-animation: moveclouds 15s linear infinite;
	-moz-animation: moveclouds 15s linear infinite;
	-o-animation: moveclouds 15s linear infinite;
	top: 55px;

}

/*variable speed, opacity, and position of clouds for realistic effect*/
.x2 {
	left: 200px;

	-webkit-transform: scale(0.6);
	-moz-transform: scale(0.6);
	transform: scale(0.6);
	opacity: 0.6;
	/*opacity proportional to the size*/

	/*Speed will also be proportional to the size and opacity*/
	/*More the speed. Less the time in 's' = seconds*/
	-webkit-animation: moveclouds 25s linear infinite;
	-moz-animation: moveclouds 25s linear infinite;
	-o-animation: moveclouds 25s linear infinite;
}

.x3 {
	left: -250px;
	top: -200px;

	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0.8;
	/*opacity proportional to the size*/

	-webkit-animation: moveclouds 20s linear infinite;
	-moz-animation: moveclouds 20s linear infinite;
	-o-animation: moveclouds 20s linear infinite;
}

.x4 {
	left: 470px;
	top: -250px;

	-webkit-transform: scale(0.75);
	-moz-transform: scale(0.75);
	transform: scale(0.75);
	opacity: 0.75;
	/*opacity proportional to the size*/

	-webkit-animation: moveclouds 18s linear infinite;
	-moz-animation: moveclouds 18s linear infinite;
	-o-animation: moveclouds 18s linear infinite;
}

.x5 {
	left: -150px;
	top: -150px;

	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0.8;
	/*opacity proportional to the size*/

	-webkit-animation: moveclouds 20s linear infinite;
	-moz-animation: moveclouds 20s linear infinite;
	-o-animation: moveclouds 20s linear infinite;
}

@-webkit-keyframes moveclouds {
	0% {
		margin-left: 1000px;
	}

	100% {
		margin-left: -1000px;
	}
}

@-moz-keyframes moveclouds {
	0% {
		margin-left: 1000px;
	}

	100% {
		margin-left: -1000px;
	}
}

@-o-keyframes moveclouds {
	0% {
		margin-left: 1000px;
	}

	100% {
		margin-left: -1000px;
	}
}


/* @keyframes fade-away {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}
} */

/* @keyframes glow {
	0% {
		opacity: 0.6;
	}

	50%,
	100% {
		opacity: 0.8;
	}

	75% {
		opacity: 1;
	}
} */

/* @keyframes moonrise {
	0% {
		-webkit-transform: translate(-2000px, -1000px);
		transform: translate(-2000px, -1000px);
		opacity: 0;

	}

	50% {
		-webkit-transform: translate(-1000px, 500px);
		transform: translate(-1000px, 500px);
		opacity: 0;

	}

	100% {
		-webkit-transform: translate(0, 0);
		opacity: 1;
	}
} */

/* @keyframes sunrise {
	0% {
		-webkit-transform: translate(-1000px, 500px);
		transform: translate(-1000px, 500px);
	}

	50% {
		-webkit-transform: translate(1000px, -500px);
		transform: translate(1000px, -500px);
	}

	100% {
		-webkit-transform: translate(2000px, -1000px);
		transform: translate(2000px, -1000px);
	}
} */


/* #sun {
	position: absolute;
	top: 150px;
	left: 150px;
	transform: translate(0, 0);
	-webkit-animation: sunrise 10s linear infinite;
	animation: sunrise 10s linear infinite;
}

#sun::after {
	position: absolute;
	content: "\25cf";
	font-size: 250px;
	color: rgba(246, 254, 113, 1);
	opacity: 1;
	text-shadow: 0 0 10px rgba(255, 240, 70, 1), 0 0 20px rgba(255, 240, 70, 1), 0 0 30px rgba(255, 240, 70, 1), 0 0 40px rgba(255, 240, 70, 1), 0 0 70px rgba(255, 240, 70, 1), 0 0 80px rgba(255, 240, 70, 1), 0 0 100px rgba(255, 240, 70, 1);
	-webkit-animation: glow 2.5s linear infinite;
	animation: glow 2.5s linear infinite;
}

#moon {
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	opacity: 1;
	-webkit-transform: translate(-1000px, 500px);
	transform: translate(-1000px, 500px);
	-webkit-animation: moonrise 10s linear infinite;
	animation: moonrise 10s linear infinite;
}

#moon::after {
	position: absolute;
	content: "\25cf";
	font-size: 170px;
	color: #fff;
	opacity: 1;
	text-shadow: 0 0 10px rgba(255, 255, 255, 1), 0 0 20px rgba(255, 255, 255, 1), 0 0 30px rgba(255, 255, 255, 1), 0 0 40px #fff, 0 0 70px #fff, 0 0 80px #fff, 0 0 100px #fff;
	-webkit-animation: glow 2.5s linear infinite;
	animation: glow 2.5s linear infinite;
} */



/* @keyframes sky {
	0% {
		background: rgba(9, 28, 43, 1);
	}

	50% {
		background: rgba(195, 224, 248, 1);
	}

	100% {
		background: rgba(9, 28, 43, 1);
	}
} */


/* thuyen  */
* {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
}

@keyframes radar {
	0% {
		transform: rotateY(0deg);
	}

	100% {
		transform: rotateY(180deg);
	}
}

@keyframes contenedores {
	0% {
		transform: translateX(-7px);
	}

	50% {
		transform: translateX(0px);
	}

	100% {
		transform: translateX(-7px);
	}
}


@keyframes barco {
	0% {
		transform: rotate(-4deg) translateX(2px);
	}

	50% {
		transform: rotate(4deg) translateX(-10px);
	}

	100% {
		transform: rotate(-4deg) translateX(2px);
	}
}


@keyframes moveRight {
	0% {
		transform: translateX(-400px) rotate(0deg);
	}

	25% {
		transform: translateX(18vw) rotate(3deg);
	}

	35% {
		transform: translateX(18vw) rotate(-7deg);
		/* Ngóc đầu */
	}

	50% {
		transform: translateX(45vw) rotate(3deg);
	}

	60% {
		transform: translateX(45vw) rotate(-7deg);
		/* Ngóc đầu */
	}

	80% {
		transform: translateX(80vw) rotate(3deg);
	}

	100% {
		transform: translateX(100vw) rotate(0deg);
	}
}
.wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100vh;
}

.barco {
	width: 400px;
	height: 160px;
	position: relative;
	overflow: hidden;
	animation-name: barco;
	animation-iteration-count: infinite;
	animation-duration: 5s;
	animation: moveRight 20s linear infinite;
	bottom: -40px;
}

.barco .puertita {
	position: absolute;
	bottom: 0px;
	left: 7px;
	width: 5px;
	height: 10px;
	background-color: #58575C;
	/* $baseBarco */
	border-radius: 5px;
}

.barco .base {
	position: absolute;
	bottom: 0;
	width: 100%;
}

.barco .base .proa,
.barco .base .popa,
.barco .base .tronco {
	background-color: #58575C;
	/* $baseBarco */
}

.barco .base .anclacont {
	position: absolute;
	right: 32px;
	bottom: 36px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.2);
}

.barco .base .atras {
	height: 58px;
	width: 40px;
	border-radius: 10px;
	background-color: #58575C;
	margin-left: 5px;
	transform: skewX(13deg);
}

.barco .base .popa {
	height: 58px;
	width: 95px;
	transform: skewX(37deg);
	border-radius: 10px 18px 10px 18px;
	position: absolute;
	left: 30px;
	top: 0;
}

.barco .base .tronco {
	width: 347px;
	height: 37px;
	position: absolute;
	left: 9px;
	bottom: 0;
	z-index: 10;
}

.barco .base .tronco .marca {
	height: 14px;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-perspective: 150px;
}

.barco .base .tronco .marca .per {
	height: 100%;
	background-color: rgba(255, 0, 0, 0.4);
	/* $rojo with opacity */
	transform: rotateX(7deg);
	border-radius: 0 0 3px 3px;
}

.barco .base .proa {
	height: 58px;
	width: 91px;
	transform: skewX(-47deg);
	border-radius: 14px 10px 10px 18px;
	position: absolute;
	right: 26px;
	top: 0;
}

.barco .puente {
	width: 118px;
	height: 124px;
	position: absolute;
	left: 12px;
	top: 0;
}

.barco .puente .franja {
	background-color: #58575C;
	position: absolute;
	bottom: 70px;
	width: 35px;
	height: 5px;
	transform: skewX(-5deg);
	left: 10px;
}

.barco .puente .camarote1 {
	position: absolute;
	bottom: 0;
	left: 5px;
	width: 36px;
	height: 70px;
	transform: skewX(-5deg);
	background-color: white;
	position: relative;
}

.barco .puente .camarote1:after {
	content: " ";
	position: absolute;
	bottom: 0;
	right: -2px;
	background-color: #CCCDD1;
	/* $sombra */
	height: 100%;
	width: 3px;
	z-index: -1;
	transform: skewX(3deg);
}

.barco .puente .camarote1 .antiskew {
	transform: skewX(5deg);
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
	padding: 7px 7px;
	height: 45px;
}

.barco .puente .camarote1 .antiskew .ventana {
	width: 5px;
	height: 5px;
	border-radius: 1px;
	background-color: #003F5F;
	/* $ventana */
	margin: 2px;
}

.barco .puente .chimeneal,
.barco .puente .chimenear {
	background-color: white;
}

.barco .puente .chimeneal .linea,
.barco .puente .chimenear .linea {
	height: 10px;
	width: 100%;
	margin-top: 4px;
	background-color: red;
	/* $rojo */
}

.barco .puente .chimeneal {
	width: 14px;
	height: 43px;
	position: absolute;
	top: 9px;
	left: 16px;
	transform: skewX(-6deg);
}

.barco .puente .chimenear {
	width: 20px;
	height: 43px;
	position: absolute;
	top: 9px;
	left: 19px;
}

.barco .fantena {
	position: absolute;
	width: 2px;
	height: 40px;
	left: 87px;
	top: 2px;
	background-color: #3a3939;
	border-radius: 3px;
}

.barco .santenea {
	position: absolute;
	width: 2px;
	height: 20px;
	left: 83px;
	top: 19px;
	background-color: #3a3939;
	border-radius: 3px;
}

.barco .radar {
	position: absolute;
	height: 20px;
	left: 50px;
	top: 19px;
}

.barco .radar .cabeza {
	width: 18px;
	height: 7px;
	background-color: white;
	/* $blanco */
	animation-name: radar;
	animation-iteration-count: infinite;
	animation-duration: 1s;
}

.barco .radar .soporte {
	width: 4px;
	height: 20px;
	background-color: white;
	margin-left: 7px;
	margin-top: -8px;
	border-radius: 1px;
}

.barco .control {
	width: 62px;
	height: 57px;
	background-color: white;
	position: absolute;
	right: 13px;
	top: 36px;
	padding: 15px 5px 10px 5px;
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	border-bottom: solid 1px #CCCDD1;
}

.barco .control .tapa {
	width: 100%;
	position: absolute;
	top: 0;
	left: 2px;
	background-color: white;
	height: 13px;
	transform: skewX(-8deg);
	border-radius: 0 4px 0 0;
	padding: 2px;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.barco .control .tapa .top-ventana {
	background-color: #003F5F;
	height: 6px;
	width: 28%;
	transform: skewX(5deg);
}

.barco .control .mid-ventana {
	width: 5px;
	height: 5px;
	border-radius: 1px;
	background-color: #003F5F;
	display: block;
	margin: 2px;
}

.barco .control .mid-ventana:nth-of-type(7) {
	margin-left: 10px;
}

.barco .control .puertita {
	bottom: 2px;
}

.barco .bajo-camarotes {
	background-color: white;
	width: 69px;
	height: 31px;
	position: absolute;
	bottom: 0;
	right: 6px;
	display: flex;
	justify-content: flex-end;
	padding: 5px 5px 14px 41px;
	flex-wrap: wrap;
	position: relative;
}

.barco .bajo-camarotes:after {
	content: " ";
	background-color: white;
	position: absolute;
	right: -2px;
	top: 0;
	width: 5px;
	height: 100%;
	transform: rotate(-7deg);
}

.barco .bajo-camarotes .ventanitas {
	background-color: #003F5F;
	width: 5px;
	height: 3px;
	border-radius: 2px;
	margin: 1px;
}

.barco .bajo-camarotes .ventanitas:nth-of-type(4) {
	margin-left: 4px;
}

.barco .contenedores {
	width: 158px;
	height: 80px;
	position: absolute;
	top: 80px;
	right: 102px;
	animation-name: contenedores;
	animation-iteration-count: infinite;
	animation-duration: 5s;
}

.barco .contenedores .contenedor {
	width: 50px;
	height: 16px;
	background-color: #a4b8b9;
	padding: 1px 2px;
	display: flex;
	float: left;
	justify-content: space-around;
	margin-bottom: 1px;
	margin-right: 1px;
}

.barco .contenedores .contenedor:nth-of-type(2) {
	background-color: #4f4a65;
}

.barco .contenedores .contenedor:nth-of-type(4) {
	background-color: #b36730;
}

.barco .contenedores .contenedor .cal {
	background: black;
	height: 100%;
	width: 2px;
	border-radius: 1px;
	opacity: 0.07;
}

/* Thêm class .elmar chứa thuyền */

.elmar {
	width: 500px;
	height: 500px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	justify-content: center;
	background-color: #C0EBFF;
}



/* we offer  */
.we_offer {
	padding: 130px 200px;
	padding-top: 70px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.we_offer_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;           /* Chiều rộng luôn bằng viewport */
  height: auto;
  min-height: 100%;       /* Đảm bảo đủ cao khi zoom out */
  object-fit: cover;      /* Giúp SVG phủ đều */
  z-index: -1;
}




/* đảm bảo nội dung nổi lên trên */
.we_offer .overview_content {
  position: relative;
  z-index: 1;
}
.offer_heading {
font-family: 'Playfair Display';
  text-align: start;
  margin-bottom: 14px;
  position: relative;
}

.offer_label {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 0px;
}

.offer_underline {
  display: block;
  width: 180px;
  transform: scaleY(1.5); /* tăng độ dày */
  transform-origin: top left;
}

.offer_item {
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
  max-width: 100%;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease-out;

}
/* Khi cuộn tới */
.offer_item.visible {
  opacity: 1;
  transform: translateX(0);
}
/* Delay cho hiệu ứng lần lượt */
.offer_item:nth-child(1) { transition-delay: 0s; }
.offer_item:nth-child(2) { transition-delay: 0.1s; }
.offer_item:nth-child(3) { transition-delay: 0.2s; }
.offer_item:nth-child(4) { transition-delay: 0.3s; }
.offer_item:nth-child(5) { transition-delay: 0.4s; }

.img-icon {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.offer_name {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
}


.offer_item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.offer_item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.offer_item span {
  font-weight: 500;
  font-size: 18px;
}

/* faq 3  */
.faq_3 * {
  font-family: Nunito, sans-serif;
}

.faq_3 .container-block {
  width: 100%;
  display: block;
  padding: 10px 60px;
}

.faq_3 .text-blk {
  margin: 0;
  line-height: 25px;
}

.faq_3 .responsive-container-block {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: flex-start;
}

.faq_3 .responsive-container-block.container {
  padding: 0;
}

.faq_3 .responsive-container-block.dropdown-container-wrapper {
  padding: 0 30px;
}

.faq_3 .responsive-container-block.dropdown-container {
	position: relative;
  background-color: white;
  max-width: 850px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
  flex-direction: column;
  display: block;
  margin: -120px auto 100px auto;
}

.faq_3 .text-blk.faq-head2 {
  text-align: center;
  font-size: 42px;
  line-height: 60px;
  font-weight: 900;
  margin: 60px 0 50px;
  padding: 0 20px;
}

.faq_3 .faq {
  display: block;
  flex-direction: column;
  border-bottom: 1px solid #aaaaaa;
  margin-bottom: 25px;
}

.faq_3 .faq-question-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  cursor: pointer;
}

.faq_3 .text-blk.faq-questions {
  color: #525252;
  font-size: 22px;
}

.faq_3 .text-blk.faq-answer {
  padding-left: 20px;
  color: #9c9c9c;
  font-size: 19px;
  line-height: 28px;
  margin-bottom: 20px;
}

.faq_3 .answer-box {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq_3 .faq.active .answer-box {
  max-height: 550px;
}

.faq_3 .openimg {
  transition: transform 0.3s ease-in;
}

.faq_3 .faq.active .openimg {
  transform: rotate(180deg);
}

@media (max-width: 1024px) {
  .faq_3 .text-blk.faq-answer {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .faq_3 .text-blk.faq-head2 {
    font-size: 38px;
  }

  .faq_3 .text-blk.faq-questions {
    font-size: 20px;
  }

  .faq_3 .text-blk.faq-answer {
    font-size: 16px;
    line-height: 23px;
  }
}

@media (max-width: 500px) {
  .faq_3 .responsive-container-block.dropdown-container-wrapper {
    padding: 0 20px;
  }

  .faq_3 .text-blk.faq-head2 {
    font-size: 30px;
    line-height: 46px;
    margin: 30px 0 40px;
  }

  .faq_3 .container-block {
    padding: 10px 15px;
  }

  .faq_3 .faq-question-container {
    margin-bottom: 15px;
  }

  .faq_3 .text-blk.faq-questions {
    font-size: 19px;
  }

  .faq_3 .text-blk.faq-answer {
    font-size: 16px;
    line-height: 22px;
    padding: 0;
  }

  .faq_3 .responsive-container-block.dropdown-container {
    margin: -100px 0 100px 0;
  }
}


label.error {
    font-size: 0.875rem;
    color: #dc3545;
    margin-top: 0.25rem;
    display: block;
}

/* tooltip  */
.btn-tooltip {
  position: relative;
  cursor: pointer;
}

.btn-tooltip .tooltip-text {
  visibility: hidden;
  opacity: 0;
  width: max-content;
  background-color: white;
  border: 1px solid grey;
  color: #000000;
  text-align: center;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  position: absolute;
  bottom: 125%; /* hiển thị phía trên nút */
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s;
  white-space: nowrap;
  z-index: 100;
}
.btn-tooltip .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}


.btn-tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}


.about-this-item {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #fef2f2;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  margin: 20px auto;
}

/* Bo góc các góc cụ thể */
.about-this-item tbody tr:first-child th:first-child {
  border-top-left-radius: 12px;
}
.about-this-item tbody tr:first-child td:last-child {
  border-top-right-radius: 12px;
}
.about-this-item tbody tr:last-child th:first-child {
  border-bottom-left-radius: 12px;
}
.about-this-item tbody tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}

/* Padding và position cho cả th và td */
.about-this-item tbody tr th,
.about-this-item tbody tr td {
  position: relative;
  padding: 10px 15px;
}

/* Đường gạch dưới cả th và td */
.about-this-item tbody tr th::after,
.about-this-item tbody tr td::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  /* background-color: #e00000; */
  border-bottom: 1px solid #e00000;
}

/* Ẩn gạch dòng cuối cùng */
.about-this-item tbody tr:last-child th::after,
.about-this-item tbody tr:last-child td::after {
  display: none;
}



.shop-select{
	color: #6c757d;
	padding: 6px 12px;
	border: 1px solid #6c757d;
	border-radius: 6px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
.custom-select-fa::after {
  content: "\f078"; 
  font-family: "Font Awesome 6 Pro"; 
  font-weight: 900; 
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 14px;
  color: #999;
  transition: color 0.3s ease;
}
.shop-btn{
	color: #6c757d;
	border: 1px solid #6c757d;
}
.shop-btn:hover, .shop-select:hover{
	border: 1px solid var(--base-color);
	background: white;
	color: var(--base-color);
}


.custom-select-fa:hover::after {
  color: var(--base-color);
}

.shop-select:focus{
	box-shadow: none !important;
	color: var(--base-color);
	border: var(--base-color);
}
#toggleSidebar:focus{
	background-color: #ffffff !important;
}
.viewed_product .swiper-slide{
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* đổ bóng nhẹ */
}



/* side bar  */
#sidebarFilter {
    transition: all 0.3s ease;
}
.sidebar {
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    max-height: 1000px;
    opacity: 1;
}
.sidebar.hide {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
}
.btn-login-page{
	padding: 10px 20px;
	border-radius: 4px;
	color: #ffffff;
	font-weight: 600;
	background: var(--base-color);
}

/* sidebar  */
#sidebarFilter {
  transition: all 0.3s ease;
  overflow: hidden;
  width: 20%; 
  opacity: 1;
}
#sidebarFilter.hide {
  width: 0;
  opacity: 0;
  padding: 0; 
}
#mainContent {
  transition: all 0.3s ease;
  width: 80%; 
  padding: 0;
}
#mainContent.fullwidth .product_list .item {
  width: 16%;
}
 /* mới đầu  */
#sidebarFilter.hide {
  width: 0;
  opacity: 0;
  padding: 0;
  pointer-events: none;
}
#mainContent.fullwidth {
  width: 100%; 
}


/* button checkout  */

#checkout-btn {
  padding: 14px 28px;
  position: relative;
  border: 0;
  outline: none;
  background: #d90429;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  border-radius: 40px;
  text-align: center;
  box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 180px;
  height: 60px;
}
#checkout-btn.active{
	background: #8BC34A;
}
.checked {
  width: 60px;
  height: 60px;
  border-radius: 40px;
  box-shadow: 0 0 12px -2px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  right: -40px;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #8BC34A;
}

.checked svg {
  width: 40px;
}

.checked path {
  stroke-width: 3;
  stroke: #fff;
  stroke-dasharray: 34;
  stroke-dashoffset: 34;
  stroke-linecap: round;
}

#btnText.active {
  background: #d90429;
  transition: 1s;
}

.active #btnText {
  transition: 1s;
  transform: translateX(-40px);
}

.active .checked {
  opacity: 1;
  transition: 1s;
  right: -2px;
}

.active .checked path {
  transition: 1s;
  transition-delay: 1s;
  stroke-dashoffset: 0;
}

/* we export  */
.wrapper-ani {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  user-select: none;
  background: #b7dbf5;
  overflow: hidden;
  font-family: 'Roboto', sans-serif;
  gap: 12px;
  position: relative;
}

.wrapper-ani .dropping-texts {
  position: relative;
  width: 520px;
  height: 50px;
  overflow: hidden;
  text-align: left; 
}

.wrapper-ani .dropping-texts > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-weight: 400;
  font-size: 36px;
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 10s infinite;
}

.wrapper-ani .dropping-texts > div:nth-child(1) {
  animation-delay: 0s;
}
.wrapper-ani .dropping-texts > div:nth-child(2) {
  animation-delay: 2.5s;
}
.wrapper-ani .dropping-texts > div:nth-child(3) {
  animation-delay: 5s;
}
.wrapper-ani .dropping-texts > div:nth-child(4) {
  animation-delay: 7.5s;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  25% {
    opacity: 1;
    transform: translateY(0);
  }
  35% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px);
  }
}

/* extra */
