/**
----------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Elements
# Header
# Home Page
# Menu Mobile
# Custom css
# Responsive
# None Theme
# Theme Noel 2025
# Theme Darkmode
--------------------------------------------------------------*/

/*--------------------------------------------------------------
 * Normalize
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
	--main-text-color: #085156;
	--main-text-color-base: #085156;
	--main-text-color-secondary: #40e0d0;
	--main-link-color-hover: #186FF4;
	--btn-cta-color: #eb5424;
	--gradient-separator-blue: linear-gradient(90deg,#40e0d0 0,#f4d03f 51%,#ff8c00);
	--gradient-separator-hot: linear-gradient(90deg,#ef146e 0,#fea958 51%,#ef146e);
	--gradient-separator-icon: linear-gradient(90deg,#02aab0 0,#00cdac 51%,#02aab0);
	--gradient-bgintro: linear-gradient(135deg,#e0f7f7 0%,#b3e5e0 50%,#7dd3c0 100%);
	--gradient-secondary: linear-gradient(135deg,#009c8d 0,#009c8d 45%,#00646a);
	--gradient-bg-testimonial: linear-gradient(135deg, #ffffff 0%, #f0fffe 100%);
	--gradient-bg-menumb: linear-gradient(135deg, #2bc1cc 0%, #085156 100%);
	--main-color-cta: #FC7321;
	--main-color-white: #fff;
	--main-color-dark: #121212;
	--main-color-dark-base: #121212;
	--main-color-box: #ccc;
	--main-color-bg-navmenu: #085156;
	--main-color-bg-submenu: #fafafa;
	--main-color-bg-footer: #f8f9fa;
	--main-color-bg-footer-bottom: #085156;
	--main-color-bg-content-heading: #ebebeb;
	--main-color-bg-sidebar-article: #FEF4F1;
	--main-color-footer-desc: #666;
	--main-color-bg-cta_anim: #ffffff;
	--color-highlight-contactus: #058DC2;
	--color-menu-mb-white: #fff;
	--color-menu-border-box: #e8e8e8;
	--color-link-marquee: #d60404;
	--text-fixed-white: #ffffff;
	--arcontact-bg-promt: #ffffff;
	--arcontact-color-promt: #085156;
	--arcontact-color-mess: rgba(0, 0, 0, 0.87);
}
body {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	color: var(--main-color-dark);
	background: var(--main-color-white);
	margin: 0;
	padding: 0;
	transition: background-color 0.3s ease, color 0.3s ease;
}
a {
	color: inherit;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}
a:hover, a:active, a:focus, a:visited {
	text-decoration: none;
}
img, video {
	max-width: 100%;
	height: auto;
}
button, input, select, textarea {
	font: inherit;
	color: inherit;
}
button {
	cursor: pointer;
	background: none;
	border: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}
pre, code {
	font-family: monospace, monospace;
	font-size: 1em;
}

@keyframes imgmove {
    0% {
        transform: rotate(-1deg) translate(-2px, -2px);
    }
    50% {
        transform: rotate(1deg) translate(2px, 2px);
    }
    to {
        transform: rotate(-1deg) translate(-2px, -2px);
    }
}
@keyframes move2 {
    0% {
        transform: rotate(1deg) translate(2px, 2px);
    }
    50% {
        transform: rotate(-1deg) translate(-2px, -2px);
    }
    to {
        transform: rotate(1deg) translate(2px, 2px);
    }
}
@keyframes move3 {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(5px);
    }
    40% {
        transform: translate(5px, 5px);
    }
    65% {
        transform: translateY(5px);
    }
    65% {
        transform: translate(5px);
    }
    to {
        transform: translate(0);
    }
}
@keyframes toTopFromBottom{
	49%{transform:translateY(-100%)}
	50%{opacity:0;transform:translateY(100%)}
	51%{opacity:1}
}
@keyframes slideRightInfinite {
	0% {transform: translateX(0);opacity: 1}
	40% {opacity: 1}
	100% {transform: translateX(10px);opacity: 0}
}
@keyframes animateTop {
	0% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
	100% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}
@keyframes animateLeft {
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
	100% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}
}
@keyframes animateRight {
	0% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}
	100% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
}
@keyframes animateBottom {
	0% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
	100% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
}

/*--------------------------------------------------------------
 * Elements
--------------------------------------------------------------*/
/* --- CẤU HÌNH DARK MODE --- */
/* Selector này kích hoạt khi JS thêm attribute data-theme="dark" vào body */
body[data-theme="dark"] {
	/* 1. MÀU NỀN & MÀU CHỮ CHÍNH */
	/* Màu nền chính của web (body) */
	--main-color-white: #1e1e1e;   /* Trắng -> Xám đen (Dùng cho nền Card/Box) */

	/* Màu chữ chính (Đang là xanh đậm -> Chuyển thành Trắng kem hoặc Xanh nhạt) */
	--main-text-color: #e0f7f7;

	/* Màu chữ phụ (Đang là xanh ngọc -> Giữ nguyên để tạo điểm nhấn Neon) */
	--main-text-color-secondary: #40e0d0; 

	/* Màu đen (Đang là #121212 -> Chuyển thành trắng để dùng cho các text đang fix cứng màu đen) */
	--main-color-dark: #f5f5f5;

	/* 2. CÁC THÀNH PHẦN HỘP & VIỀN */
	/* Màu viền/box (Đang là xám nhạt -> Chuyển thành xám đậm hơn nền một chút) */
	--main-color-box: #333333;
	--main-color-bg-navmenu: #1e1e1e;
	--main-color-bg-submenu: #3b3b3b;
	--main-color-bg-footer: #1a1a1a;
	--main-color-bg-footer-bottom: #000000;
	--main-color-bg-content-heading: #3e3e3e;
	--main-color-bg-sidebar-article: #3e3e3e;
	--main-color-footer-desc: #d5d5d5;
	--color-menu-border-box: #2a2a2a;
	--color-menu-mb-white: #1e1e1e; /* Nền menu mobile */
	--color-link-marquee: #ffa4a4;
	--arcontact-bg-promt: #5c5c5c;
	--arcontact-color-promt: #40e0d0;
	--arcontact-color-mess: #40e0d0;

	/* 3. MÀU LINK & BUTTON */
	/* Màu hover (Xanh dương -> Làm sáng hơn chút để nổi trên nền đen) */
	--main-link-color-hover: #4da3ff; 
	--main-color-bg-cta_anim: #050c0c;

	/* Các màu Cam (CTA) giữ nguyên vì nó nổi bật tốt trên nền đen */
	--btn-cta-color: #eb5424;
	--main-color-cta: #FC7321;
	--color-highlight-contactus: #4db8e6; /* Làm sáng màu xanh này lên chút */

	/* 4. XỬ LÝ GRADIENT (Quan trọng) */
	/* Gradient Intro (Đang rất sáng -> Chuyển thành tông xanh đen huyền bí) */
	--gradient-bgintro: linear-gradient(135deg, #0d3b3e 0%, #08282b 50%, #05181a 100%);

	/* Gradient Secondary (Làm tối đi một chút) */
	--gradient-secondary: linear-gradient(135deg, #004d46 0, #004d46 45%, #002e31);
	--gradient-bg-testimonial: linear-gradient(135deg, #100e0e 0%, #0f5954 100%);
	--gradient-bg-menumb: linear-gradient(135deg, #2a9198 0%, #1b646a 100%);

	/* Các Gradient Separator (Thanh kẻ ngang) giữ nguyên, chúng sẽ rất đẹp như đèn Neon */
	--gradient-separator-blue: linear-gradient(90deg,#40e0d0 0,#f4d03f 51%,#ff8c00);
	--gradient-separator-hot: linear-gradient(90deg,#ef146e 0,#fea958 51%,#ef146e);
	--gradient-separator-icon: linear-gradient(90deg,#02aab0 0,#00cdac 51%,#02aab0);

	background-color: #121212;
	color: var(--main-text-color);
	/* 5. CẤU HÌNH TRÌNH DUYỆT */
	/* Giúp thanh cuộn (Scrollbar) chuyển sang màu tối */
	color-scheme: dark;
}
.heading-h1 {
	color: var(--main-text-color);
	font-weight: 600;
	margin-bottom: 0;
}
.heading-h2 {
	color: var(--main-text-color);
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
}
.heading-h3 {
	color: var(--main-text-color);
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 15px;
}
.hide {
	display: none !important;
}
.breadcrumb {
	color: var(--main-text-color);
}
.breadcrumb a:hover {
	color: var(--main-text-color-secondary);
}

/*--------------------------------------------------------------
 * Header
--------------------------------------------------------------*/
.home .header {
	width: 100%;
	position: absolute;
	z-index: 100;
}
.header-inner {
	position: relative;
	z-index: 100;
}
.header-inner .header-top {
	background-image: url("../icons/bg-header-top.jpg");
	background-repeat: no-repeat;
	background-position: left;
	background-size: cover;
}
body:not(.home)[data-theme="dark"] .header-top .action-search .search-show i,
body:not(.home)[data-theme="dark"] .header-top .main-menu__toggler i {
	color: var(--main-text-color-base);
}
header ul, header ol {
	margin: 0;
	padding: 0;
	list-style: none;
}
header .header-top, header .header-nav {
	transition: all 0.3s ease;
}
.header-sticky {
	position: fixed;
}
.header-top.header-sticky, .header-nav.header-sticky {
	top: 0;
	left: 0;
	right: 0;
	background-color: var(--main-color-white);
	border-top: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	-webkit-box-shadow: 0 3px 3px 0 rgba(0,0,0,0.2);
	box-shadow: 0 3px 3px 0 rgba(0,0,0,0.2);
}
.header-top > .container {
	align-items: center;
	justify-content: center;
}
.header-logo {
	padding: 6px 0;
}
.header-logo .site-logo img {
	height: 42px;
}
.header-top .header-action {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}
.action-search {
	width: 42px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	pointer-events: auto;
	transition: all 0.2s ease-out 0.2s;
	-webkit-transition: all 0.2s ease-out 0.2s;
}
.action-search .search-show {
	transition: all 0.2s ease-out 0.2s;
	-webkit-transition: all 0.2s ease-out 0.2s;
}
.action-search .search-show i {
	font-size: 18px;
	color: var(--main-text-color);
}
.action-search:hover .search-show i, .action-search:hover .search-box .button-search i {
	color: var(--btn-cta-color);
}
.action-search .search-box {
	opacity: 0;
	visibility: hidden;
	width: 320px;
	padding: 3px 8px 6px;
	position: absolute;
	right: 0;
	bottom: 40px;
	z-index: 90;
	transition: all 0.2s ease-out 0.2s;
	-webkit-transition: all 0.2s ease-out 0.2s;
}
.action-search .search-box .button-search {
	font-size: 16px;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	padding: 0 12px;
}
.action-search .search-box input {
	width: 100%;
	padding: 0 30px 0 35px;
	border: 0;
	border-radius: 0;
	height: 42px;
	color: var(--main-color-dark);
	background: transparent;
	border-bottom: 2px solid var(--btn-cta-color);
	outline: none;
}
.action-search .search-box .search-reset {
	font-size: 18px;
	position: absolute;
	top: 17px;
	right: 10px;
	cursor: pointer;
}
.header.searched .header-action .action-search {
	overflow: unset;
	cursor: auto;
}
.header.searched .header-action .action-search .search-show {
	opacity: .10;
}
.header.searched .header-action .action-search .search-box {
	opacity: 1;
	visibility: visible;
	bottom: -70px;
	background-color: var(--main-color-white);
	border: 1px solid var(--main-color-box);
	border-radius: 4px;
	transition: all 0.2s ease-out 0.2s;
	-webkit-transition: all 0.2s ease-out 0.2s;
}
.header-bottom .link-marquee {
	background: url("../icons/icon-tin-moi.png") no-repeat 0% 50%;
	padding: 0 0 0 104px;
	height: 26px;
}
.header-bottom .link-marquee marquee {
	line-height: 26px;
}
.header-bottom .link-marquee a {
	color: var(--color-link-marquee);
	padding-left: 16px;
	padding-right: 16px;
	background: url("../icons/icon-marquee.png") no-repeat left center;
}
.header-bottom .date-inner {
	color: var(--main-color-dark);
}
.header-bottom .date-inner span {
	padding-left: 8px;
}

/*--------------------------------------------------------------
 * Home Page
--------------------------------------------------------------*/
.homepage .heading-h1 {
	font-size: 0;
	visibility: hidden;
}
.banner {
	background-image: url('../icons/banner-bg1.png'), url("../icons/banner-bg2.png"), var(--gradient-bgintro);
	height: 780px;
	position: relative;
	background-position: bottom,top;
	background-repeat: no-repeat;
}
.banner::after {
	background-image: url("../icons/banner-bg3.png");
	content: "";
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100%;
	left: 0;
	background-repeat: no-repeat;
	background-position: bottom;
	z-index: 0;
}
body[data-theme="dark"] .banner::after {
	background-image: url("../icons/banner-bg3-dark.png");
}
.banner .banner-inner {
	padding-top: 100px;
	position: relative;
	z-index: 9;
}
.banner-content .heading2 {
	font-size: 18px;
	font-weight: 600;
	color: #ffd700;
}
.banner-content .heading3 {
	color: var(--main-text-color);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: -1px;
	text-shadow: 2px 2px 4px rgba(255,255,255,0.5);
}
.banner-content .description {
	color: var(--main-text-color);
	margin-bottom: 1.5rem;
}
.banner-content .btn-more {
	font-weight: 600;
	padding: 10px 40px;
	background-image: linear-gradient(90deg,#ef146e 0,#fea958 51%,#ef146e);
	background-size: 200%;
	border-color: transparent;
	border-top-left-radius: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 1.5rem;
	border-top-right-radius: 1.5rem;
	box-shadow: 1px 1px 2px white, 0 0 25px white, 0 4px 15px rgba(8, 81, 86, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
}
.banner .banner-media {
	padding-top: 50px;
	text-align: center;
}
.banner .banner-media .img-move {
	width: 80%;
	animation: imgmove 5s infinite;
}
.banner-content .btn-more:hover {
	border-top-left-radius: 1.5rem;
	border-bottom-right-radius: 1.5rem;
	border-bottom-left-radius: 0;
	border-top-right-radius: 0;
	box-shadow: 0 6px 25px rgba(8, 81, 86, 0.4);
	transform: translateY(-3px);
}
.service {
	padding: 30px 0;
}
.service-head {
	margin-bottom: 1.5rem;
}
.service-head .heading-h2 {
	font-size: 26px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 6px;
}
.home-separator {
	display: inline-block;
	position: relative;
	width: 150px;
	height: auto;
	margin-bottom: 10px;
}
.home-separator:before, .home-separator:after {
	content: "";
	height: 6px;
	position: absolute;
	top: 0;
	border-radius: 15px;
	background-image: var(--gradient-separator-blue);
}
.home-separator:before {
	width: 45px;
}
.home-separator:after {
	width: 95px;
	left: 55px;
}
.hotmain-head .home-separator:before, .hotmain-head .home-separator:after {
	background-image: var(--gradient-separator-hot);
}
.content-wrapper {
	gap: 15px;
	margin-bottom: 1.5rem;
}
.content-wrapper .content-icon {
	flex: 0 0 80px;
	height: 80px;
	background-image: var(--gradient-separator-icon);
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 2px 15px rgba(233,179,16,.5);
	transition: all .5s;
}
.content-wrapper .content-icon i {
	font-size: 32px;
/*	color: var(--main-color-white);*/
	color: var(--text-fixed-white);
}
.content-wrapper .content-text .heading-h3 {
	font-size: 24px;
	line-height: 1.3;
	text-transform: capitalize;
	margin-bottom: 6px;
}
.content-wrapper .content-text .description {
	color: var(--main-text-color);
	line-height: 1.6;
	text-align: justify;
	margin-bottom: 0;
}
.content-wrapper:hover .content-icon i {
	display: inline-block;
	animation: toTopFromBottom .8s forwards;
}
.hotmain-head .heading-h2 {
	color: #e35c00;
	font-size: 26px;
	margin-bottom: 3px;
}
.hotmain-wrapper .item {
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: dashed 1px var(--main-text-color-secondary);
}
.hotmain-wrapper .item:nth-last-child(2) {
	margin-bottom: 0;
	border-bottom: none;
}
.hotmain-wrapper .item .box-image {
	flex: 0 0 110px;
	aspect-ratio: 600 / 315;
	overflow: hidden;
}
.hotmain-wrapper .item .box-image .item-flag {
	position: absolute;
	top: 0;
	right: 0;
	background-color: #e3151a;
	padding: 0 5px;
}
.hotmain-wrapper .item .box-image .item-flag .is_new {
/*	color: var(--main-color-white);*/
	color: var(--text-fixed-white);
	font-size: 10px;
}
.hotmain-wrapper .item .box-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hotmain-wrapper .item .box-text .heading-h3 {
	font-size: 14px;
	line-height: 1.4;
	text-align: justify;
	margin-bottom: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.hotmain-wrapper .view-all {
	color: var(--main-text-color);
	font-size: 16px;
}
.hotmain-wrapper .view-all strong {
	position: relative;
}
.hotmain-wrapper .view-all strong:before {
	content: "";
	height: 2px;
	background-color: currentColor;
	opacity: .3;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	position: absolute;
	bottom: -3px;
	left: 20%;
	width: 60%;
}
.hotmain-wrapper .view-all i {
	font-size: 12px;
	padding-left: 8px;
}
.hotmain-wrapper .view-all:hover, .hotmain-wrapper .item:hover .heading-h3 {
	color: var(--main-text-color-secondary);
}
.hotmain-wrapper .view-all:hover strong:before {
	left: 0%;
	width: 100%;
	opacity: 1;
}
.homepage .blogpost {
	padding: 20px 0;
}
.blogpost-head .heading-h2 i {
	padding-right: 25px;
}
.blogpost-head .heading-h2 i:before, .blogpost-head .heading-h2 i:after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 70%;
	border-radius: 2px;
}
.blogpost-head .heading-h2 i:before {
	left: 0;
	background-color: var(--main-color-cta);
}
.blogpost-head .heading-h2 i:after {
	left: 8px;
	background-color: #f7c11e;
	opacity: 0.3;
}
.blogpost-head a {
	color: var(--main-text-color);
	font-size: 12px;
}
.blogpost-head a span {
	padding-right: 2px;
}
.blogpost-head a:hover {
	color: var(--main-text-color-secondary);
}
.blogpost-head .link-view-more:hover i {
	animation: slideRightInfinite 0.8s ease-in-out infinite;
}
.post-wrap .post-image a {
	display: block;
	position: relative;
	aspect-ratio: 600 / 315;
	overflow: hidden;
	border-radius: 6px;
}
.post-wrap .post-image a:before {
	border-top: 1px solid #ffd700;
	border-bottom: 1px solid #ffd700;
	transform: scaleX(0);
	position: absolute;
	top: 10px;
	right: 10px;
	bottom: 10px;
	left: 10px;
	content: "";
	opacity: 0;
	transition: opacity .25s,transform .25s;
	z-index: 1;
}
.post-wrap .post-image a:after {
	border-right: 1px solid yellow;
	border-left: 1px solid yellow;
	transform: scaleY(0);
	position: absolute;
	top: 10px;
	right: 10px;
	bottom: 10px;
	left: 10px;
	content: "";
	opacity: 0;
	transition: opacity .25s,transform .25s;
	z-index: 1;
}
.post-wrap .post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 1s,transform 1s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.post-wrap .post-text .heading-h3 {
	line-height: 1.5;
	margin-bottom: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.post-wrap .post-text .infomation {
	color: var(--main-text-color);
	font-weight: 500;
	text-transform: uppercase;
}
.post-wrap .post-text .excerpt {
	color: var(--main-color-dark);
	line-height: 1.6;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.post-wrap .post-text .infomation .line-vertical {
	color: var(--main-color-cta);
	padding-right: 8px;
}
.one-col-inner .post-wrap .post-image {
	padding-bottom: 15px;
}
.one-col-inner .post-wrap, .one-col-inner .post-wrap .post-text .infomation {
	padding-bottom: 10px;
}
.one-col-inner .post-wrap .post-text .infomation .line-vertical, .one-col-inner .post-wrap .post-text .infomation a {
	font-weight: 600;
}
.one-col-inner .post-wrap .post-text .heading-h3 {
	font-size: 18px;
}
.two-col-inner .post-wrap {
	display: flex;
	gap: 10px;
	margin-bottom: 15px;
}
.two-col-inner .post-wrap:last-child {
	margin-bottom: 0;
}
.two-col-inner .post-wrap .post-image {
	flex: 0 0 160px;
}
.two-col-inner .post-wrap .post-text .heading-h3 {
	font-size: 13px;
	margin-bottom: 3px;
}
.two-col-inner .post-wrap .post-text .infomation .line-vertical {
	padding-right: 2px;
}
.two-col-inner .post-wrap .post-text .infomation span:nth-child(2),
.two-col-inner .post-wrap .post-text .infomation span:nth-child(3) {
	display: none;
}
.two-col-inner .post-wrap .post-text .infomation span:nth-child(4) {
	font-size: 12px;
}
.in-col-inner .post-wrap {
	position: relative;
	margin-bottom: 1.1rem;
}
.in-col-inner .post-wrap .post-text {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 60px 15px 10px;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.9)));
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.9) 100%);
	border-radius: 6px;
	z-index: 9;
}
.in-col-inner .post-wrap .post-text .infomation {
/*	color: var(--main-color-white);*/
	color: var(--text-fixed-white);
	font-size: 13px;
	padding-bottom: 5px;
}
.in-col-inner .post-wrap .post-text .infomation a {
	color: var(--main-color-cta);
	font-weight: 600;
}
.in-col-inner .post-wrap .post-text .heading-h3 {
/*	color: var(--main-color-white);*/
	color: var(--text-fixed-white);
	font-size: 14px;
	margin-bottom: 0;
}
.single-col-inner .post-wrap {
	display: flex;
	gap: 10px;
}
.single-col-inner .post-wrap .post-image {
	flex: 0 0 160px;
	padding-bottom: 15px;
}
.single-col-inner .post-wrap .post-text .infomation {
	font-size: 12px;
	padding-bottom: 6px;
}
.single-col-inner .post-wrap .post-text .infomation i {
	color: var(--main-color-cta);
}
.single-col-inner .post-wrap .post-text .infomation span {
	padding-left: 8px;
}
.single-col-inner .post-wrap .post-text .heading-h3 {
	font-size: 13px;
	-webkit-line-clamp: 3;
}
.post-wrap:hover .post-image a:before, .post-wrap:hover .post-image a:after {
	opacity: .7;
	transform: scale(1);
}
.post-wrap:hover .post-image img {
	transform: scale3d(1.1, 1.1, 1);
}
.post-wrap .post-text .heading-h3:hover, .post-wrap .post-text .infomation a:hover,
.in-col-inner .post-wrap .post-text .heading-h3:hover, .in-col-inner .post-wrap .post-text .infomation a:hover {
	color: var(--main-text-color-secondary);
}
.homepage .blockquote {
	padding: 30px 0 0;
	margin: 2rem 0;
	background-image: url("../icons/banner-bg4.png"), var(--gradient-secondary);
	background-size: cover, 100%;
	background-repeat: no-repeat;
}
.homepage .blockquote .quote-wrap {
	flex-direction: column;
	gap: 15px;
}
.quote-wrap .quote-title {
	font-family: 'UTM-Bebas';
/*	color: var(--main-color-white);*/
	color: var(--text-fixed-white);
	font-size: 32px;
	font-weight: 600;
	line-height: 1.3;
	text-transform: uppercase;
	margin-bottom: 0;
}
.quote-wrap .quote-title, .quote-wrap .quote-btn {
	text-align: center;
}
.cta_buttons svg {
	height: 0;
}
.cta_button_anim {
	color: var(--main-color-cta);
	font-size: 20px;
	font-weight: 700;
	background: var(--main-color-white);
/*	background: var(--text-fixed-white);*/
	border: none;
	padding: 12px 30px;
	margin: 12px;
	position: relative;
	display: inline-block;
	-webkit-transform: translate(0%, 0%);
	transform: translate(0%, 0%);
	transition: color 0.5s;
	overflow: hidden;
	letter-spacing: 2.5px;
	text-align: center;
	text-transform: uppercase;
	-webkit-box-shadow: 0 5px 30px rgba(255, 255, 255, 0.5);
	box-shadow: 0 5px 30px rgba(255, 255, 255, 0.5);
	z-index: 1;
}
.cta_button_anim:before {
	content: "";
	z-index: 1;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.cta_button_anim:after {
	content: "";
	z-index: -2;
	position: absolute;
	left: 3px;
	top: 3px;
	width: 100%;
	height: 100%;
	transition: all 0.3s 0.2s;
}
.cta_button_anim .anim_outline {
	position: absolute;
}
.cta_button_anim .anim_outline:nth-child(1) {
	top: 0px;
	left: 0px;
	width: 100%;
	height: 2px;
	background: -webkit-gradient(linear, right top, left top, from(rgba(43, 8, 8, 0)), to(var(--main-color-cta)));
	background: linear-gradient(to left, rgba(43, 8, 8, 0), var(--main-color-cta));
	-webkit-animation: 2s animateTop linear infinite;
	animation: 2s animateTop linear infinite;
}
.cta_button_anim .anim_outline:nth-child(2) {
	top: 0px;
	right: 0px;
	height: 100%;
	width: 2px;
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(43, 8, 8, 0)), to(var(--main-color-cta)));
	background: linear-gradient(to top, rgba(43, 8, 8, 0), var(--main-color-cta));
	-webkit-animation: 2s animateRight linear -1s infinite;
	animation: 2s animateRight linear -1s infinite;
}
.cta_button_anim .anim_outline:nth-child(3) {
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 2px;
	background: -webkit-gradient(linear, left top, right top, from(rgba(43, 8, 8, 0)), to(var(--main-color-cta)));
	background: linear-gradient(to right, rgba(43, 8, 8, 0), var(--main-color-cta));
	-webkit-animation: 2s animateBottom linear infinite;
	animation: 2s animateBottom linear infinite;
}
.cta_button_anim .anim_outline:nth-child(4) {
	top: 0px;
	left: 0px;
	height: 100%;
	width: 2px;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 8, 8, 0)), to(var(--main-color-cta)));
	background: linear-gradient(to bottom, rgba(43, 8, 8, 0), var(--main-color-cta));
	-webkit-animation: 2s animateLeft linear -1s infinite;
	animation: 2s animateLeft linear -1s infinite;
}
.cta_button_anim .blob-btn__inner {
	z-index: -1;
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--main-color-bg-cta_anim);
}
.cta_button_anim .blob-btn__blobs {
	position: relative;
	display: block;
	height: 100%;
	filter: url("#goo");
}
.cta_button_anim .blob-btn__blob {
	position: absolute;
	top: 2px;
	width: 25%;
	height: 100%;
	background: var(--main-color-cta);
	border-radius: 100%;
	transform: translate3d(0, 150%, 0) scale(1.7);
	transition: transform 0.45s;
}
.cta_button_anim .blob-btn__blob:nth-child(1) {
	left: 0%;
	transition-delay: 0s;
}
.cta_button_anim .blob-btn__blob:nth-child(2) {
	left: 30%;
	transition-delay: 0.08s;
}
.cta_button_anim .blob-btn__blob:nth-child(3) {
	left: 60%;
	transition-delay: 0.16s;
}
.cta_button_anim .blob-btn__blob:nth-child(4) {
	left: 90%;
	transition-delay: 0.24s;
}
.cta_button_anim:hover {
	color: #fff;
	outline-color: var(--main-color-dark);
}
.cta_button_anim:hover .blob-btn__blob {
	transform: translateZ(0) scale(1.7);
}
@supports (filter: url("#goo")) {
	.cta_button_anim .blob-btn__blob {
		transform: translate3d(0, 150%, 0) scale(1.4);
	}
	.cta_button_anim:hover .blob-btn__blob {
		transform: translateZ(0) scale(1.4);
	}
}
.testimonials {
	padding: 30px 0;
}
.testimonials .heading-h2 {
	font-size: 28px;
	line-height: 1.3;
}
.testimonials .description {
	color: var(--main-text-color);
}
.testimonial-box {
	position: relative;
	margin: 20px;
}
.testimonial-box .icon {
	text-align: center;
	position: absolute;
	top: -28px;
	left: 0;
	width: 100%;
	z-index: 2;
}
.testimonial-box .icon i {
	color: var(--main-text-color);
	font-size: 10rem;
	transform: scaleY(-1);
	opacity: .1;
}
.testimonial-box .box-answer {
	padding: 20px;
	margin-bottom: 15px;
	position: relative;
	background: var(--gradient-bg-testimonial);
	border: 1px solid rgba(64, 224, 208, 0.2);
	border-left: 4px solid #085156;
	box-shadow: 0 8px 25px rgba(8, 81, 86, 0.1);
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
}
.testimonial-box .box-answer:before {
	content: '';
	position: absolute;
	bottom: -16px;
	left: 50px;
	width: 0;
	height: 0;
	border-top: 16px solid rgba(64, 224, 208, 0.2);
	border-right: 16px solid transparent;
}
.testimonial-box .box-answer .rating {
	color: #ffd700;
}
.testimonial-box .box-answer .answer {
	color: var(--main-color-dark);
	font-size: 16px;
	font-style: italic;
	line-height: 1.5;
}
.testimonial-box .box-info .avatar {
	flex: 0 0 70px;
}
.testimonial-box .box-info .avatar img {
	width: 70px;
	height: 70px;
	border-radius: 50px;
	border: 4px solid rgba(64, 224, 208, 0.2);
	box-shadow: 0 4px 15px rgba(8, 81, 86, 0.2);
}
.testimonial-box .box-info .identity .name {
	color: var(--main-text-color);
	font-size: 16px;
	line-height: 1.4;
	letter-spacing: -1px;
	padding-bottom: 5px;
}
.testimonial-box .box-info .identity .address {
	color: #666;
}
footer {
	padding: 50px 0 0;
	font-weight: 500;
	background: var(--main-color-bg-footer) url("../icons/footer-bg.png") center / cover no-repeat;
	position: relative;
}
footer:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, #085156 0%, #40e0d0 50%, #085156 100%);
}
.footer-area .footer-logo {
	padding-bottom: 15px;
}
.footer-area .footer-logo img {
	height: 60px;
}
.footer-area .footer-description {
	color: var(--main-color-footer-desc);
}
.footer-area .hotlink .icon {
	flex: 0 0 45px;
	width: 45px;
	height: 45px;
	display: grid;
	align-items: center;
	justify-content: center;
	border: 1.5px solid #ffac70;
	border-radius: 5px;
}
.footer-area .hotlink .icon i {
	font-size: 26px;
	color: #ffac70;
}
.footer-area .hotlink .text {
	font-size: 16px;
}
.footer-area .hotlink .text span:first-child {
	display: block;
	font-size: 14px;
}
.footer-area .hotlink .text span:last-child {
	color: var(--btn-cta-color);
	font-size: 18px;
	font-weight: 600;
}
.footer-area .social-links a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
/*	color: var(--main-color-white);*/
	color: var(--text-fixed-white);
	font-size: 18px;
	font-weight: 700;
	background: var(--main-text-color-secondary);
	border-radius: 50%;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.footer-area .social-links a i {
	font-size: 20px;
}
.footer-area .hotlink:hover .icon i, .footer-area .hotlink:hover .text span:last-child {
	color: var(--main-text-color-secondary);
}
.footer-area .social-links a:hover {
	background: linear-gradient(135deg, #085156, #40e0d0);
	transform: translateY(-3px);
}
.footer-col-link {
	flex-direction: column;
}
.footer-col-link .link-wrap {
	margin-bottom: 15px;
}
.footer-col-link .link-wrap .link-title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	background: linear-gradient(0deg, #40e0d0 0%, #085156 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-transform: uppercase;
	margin-bottom: 15px;
}
.footer-col-link .link-wrap .link-list ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.footer-col-link .link-wrap .link-list ul li {
	margin-bottom: 8px;
}
.footer-col-link .link-wrap .link-list ul li a {
	display: inline-block;
	color: var(--main-text-color);
	font-size: 16px;
	padding-left: 16px;
	position: relative;
	transition: all 0.25s ease;
}
.footer-col-link .link-wrap .link-list ul li a:before {
	display: inline-block;
	content: "\f054";
	font-family: "Font Awesome 7 Pro";
	font-size: 14px;
	position: absolute;
	left: 0;
	top: 2px;
}
.footer-col-link .link-wrap .link-list ul li a:hover {
	color: var(--main-text-color-secondary);
	transform: translateX(5px);
}
footer .footer-bottom {
	background-color: var(--main-color-bg-footer-bottom);
}
.footer-bottom .footer-bottom-desc {
	text-align: center;
/*	color: var(--main-color-white);*/
	color: var(--text-fixed-white);
	padding: 15px 0;
	margin-bottom: 0;
	border-top: 2px solid #ffd700;
}
.footer-bottom .footer-bottom-desc a {
	color: var(--main-text-color-secondary);
}

.back-to-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	cursor: pointer;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	transition: all 0.2s ease-in-out;
	box-shadow: inset 0 0 0 2px rgba(235, 84, 36, 0.1);
}
.back-to-top.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
/* Style cho vòng tròn SVG, cho nằm dưới icon */
.back-to-top svg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.back-to-top svg path {
	fill: none;
	stroke-width: 6;
	box-sizing: border-box;
	transition: all 0.1s linear;
}
.back-to-top svg path:first-child {
	stroke: var(--main-text-color-secondary);
}
.back-to-top svg path.progress-path {
	stroke: var(--btn-cta-color);
}
.back-to-top i {
	color: var(--btn-cta-color);
	font-size: 18px;
	position: relative;
	z-index: 2;
}
.back-to-top:hover {
	transform: scale(1.1);
}

/* Các trang Danh mục */
.archive-content .content-heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px 0 15px;
	margin-bottom: 20px;
	background-color: var(--main-color-bg-content-heading);
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
}
.archive-content .content-heading .heading-h1 {
	font-size: 24px;
	padding-bottom: 8px;
}
.archive-content .content-heading .breadcrumb {
	padding-left: 10px;
	padding-right: 10px;
}
.post-content-inner .post-wrap {
	gap: 10px;
	margin-bottom: 15px;
}
.post-content-inner .post-wrap .post-image {
	flex: 0 0 160px;
}
.post-content-inner .post-wrap .post-text .heading-h3 {
	font-size: 14px;
	margin-bottom: 5px;
}
.post-content-inner .post-wrap .post-text .infomation {
	font-size: 12px;
	color: var(--main-color-dark);
}
.post-content-inner .post-wrap .post-text .infomation i {
	color: #ef1c26;
}
.post-content-inner .post-wrap .post-text .post-excerpt {
	display: none;
}
.pagination-inner .pagination-nav {
	text-align: center;
	padding: 20px 0;
}
.pagination-inner .pagination-nav .page-numbers {
	display: inline-block;
/*	color: var(--main-color-white);*/
	color: var(--text-fixed-white);
	line-height: 32px;
	font-weight: 500;
	background-color: var(--main-text-color);
	width: clamp(32px, 1.667vw, 64px);
	height: clamp(32px, 1.667vw, 64px);
	margin: 0 1px;
	border-radius: 3px;
}
.pagination-inner .pagination-nav a:hover, .pagination-inner .pagination-nav .page-numbers.current {
	color: var(--main-text-color);
	background-color: var(--main-text-color-secondary);
	box-shadow: 0 4px 20px rgba(8, 81, 86, 0.4), 0 0 30px rgba(255, 255, 255, 0.3);
}
.sidebar .article-box {
	padding: 20px 15px;
	margin-bottom: 15px;
	background: var(--main-color-bg-sidebar-article);
	overflow: hidden;
	border-radius: 6px;
	counter-reset: my-awesome-counter;
}
.sidebar .article-box .box-title {
	color: var(--main-color-cta);
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 20px;
}
.sidebar .article-box .list-item a {
	padding-left: 18px;
	justify-content: space-between;
	counter-increment: my-awesome-counter;
}
.sidebar .article-box .list-item a::before {
	content: counter(my-awesome-counter);
	display: block;
	position: absolute;
	top: -18px;
	left: 0;
	font-size: 58px;
	color: rgba(45,112,97,.1);
	font-weight: 700;
	pointer-events: none;
}
body[data-theme="dark"] .sidebar .article-box .list-item a::before {
	color: rgba(45,112,97,.4);
}
.sidebar .article-box .list-item .title-news {
	color: var(--main-color-dark);
	font-size: 14px;
	line-height: 1.4;
	font-weight: 400;
	margin-bottom: 15px;
}
.sidebar .article-box .list-item a i {
	padding-top: 5px;
}
.sidebar .article-box .list-item a:hover :is(.title-news, i) {
	color: var(--main-color-cta);
}
.owl-sliderbar .sliderbar-box img {
	border-radius: 6px;
}
.owl-sliderbar .owl-nav {
	margin: 0;
}
.owl-sliderbar .owl-nav button, .owl-sliderbar .owl-dots {
	position: absolute;
}
.owl-sliderbar .owl-nav button {
	top: 48%;
	transform: translateY(-50%);
	width: 38px;
	height: 38px;
/*	color: var(--main-color-white) !important;*/
	color: var(--text-fixed-white) !important;
	font-size: 20px !important;
	background-color: #ffffff40 !important;
/*	border: solid 1px var(--main-color-white) !important;*/
	border: solid 1px var(--text-fixed-white) !important;
	border-radius: 50% !important;
}
.owl-sliderbar .owl-nav .owl-prev {
	left: 10px;
}
.owl-sliderbar .owl-nav .owl-next {
	right: 10px;
}
.owl-sliderbar .owl-dots {
	left: 50%;
	transform: translateX(-50%);
	bottom: 10px;
}
.owl-sliderbar .owl-nav button:hover {
	background-color: var(--main-text-color-secondary) !important;
}
.single-content h2 {
	font-size: 1.5em;
}
.single-content h3 {
	font-size: 1.25em;
}
.single-content h4, .single-content h5, .single-content h6 {
	font-size: inherit;
}
.single-content .content-sidebar-inner {
	margin-top: 15px;
}
.col-article-inner .heading-wrap {
	padding: 12px 0 8px;
	margin-bottom: 15px;
	border-bottom: 1px solid var(--color-menu-border-box);
}
.col-article-inner .heading-wrap .breadcrumb {
	margin-bottom: 0;
}
.col-article-inner article .heading-h1 {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: .5em;
}
.col-article-inner .entry-content .wp-caption.aligncenter {
	text-align: center;
}
.col-article-inner .entry-content .wp-caption .wp-caption__image {
	font-style: italic;
	font-size: 14px;
	padding-top: 10px;
}
.col-article-inner .entry-meta .posted {
	color: #666;
	padding-right: 5px;
	margin-right: 5px;
	border-right: solid 1px #666;
}
.col-article-inner .entry-meta .posted:last-child {
	padding-right: 0;
	margin-right: 0;
	border-right: none;
}
.col-article-inner .entry-meta .posted i {
	color: var(--main-color-cta);
}
.col-article-inner .entry-meta .posted a:hover {
	color: var(--main-text-color-secondary);
}
.col-article-inner .entry-tags {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 12px 0;
	border-top: solid 1px var(--color-menu-border-box);
}
.col-article-inner .entry-tags i {
	color: var(--main-color-cta);
	font-size: 20px;
}
.col-article-inner .entry-tags .post-tags a {
	color: var(--btn-cta-color);
	font-weight: 500;
}
.col-article-inner .entry-tags .post-tags a:hover, .col-article-inner .entry-meta .posted a:hover {
	color: var(--main-text-color-secondary);
}
.col-article-inner .share-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-top: solid 1px var(--color-menu-border-box);
	border-bottom: solid 1px var(--color-menu-border-box);
}
.col-article-inner .share-wrap > span {
	color: var(--main-text-color);
	font-weight: 500;
}
.col-article-inner .share-wrap ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
}
.col-article-inner .share-wrap ul li {
	margin: 0 3px;
}
.col-article-inner .share-wrap ul li a {
	display: block;
	width: 36px;
	height: 36px;
	position: relative;
	background: rgba(229, 229, 229, 0.5);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: all 0.1s ease-out 0.1s;
	-webkit-transition: all 0.1s ease-out 0.1s;
}
.col-article-inner .share-wrap ul li a:before {
	content: "";
	width: 4px;
	height: 4px;
	background: var(--main-text-color-secondary);
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.1s ease-out 0.1s;
	-webkit-transition: all 0.1s ease-out 0.1s;
}
.col-article-inner .share-wrap ul li a i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--main-text-color);
	font-size: 20px;
}
.col-article-inner .share-wrap ul li a:hover:before {
	width: 100%;
	height: 100%;
}
.col-article-inner .related-wrap {
	padding: 15px 0;
}
.col-article-inner .related-wrap .heading-h2 {}
.col-article-inner .related-wrap .post-wrap {
	gap: 10px;
	margin-bottom: 15px;
}
.col-article-inner .related-wrap .post-wrap .post-image {
	flex: 0 0 160px;
}
.col-article-inner .related-wrap .post-wrap .post-text .infomation {
	font-size: 12px;
	color: var(--main-color-dark);
}
.col-article-inner .related-wrap .post-wrap .post-text .heading-h3 {
	font-size: 14px;
	margin-bottom: 5px;
}
.col-article-inner .related-wrap .post-wrap .post-text .infomation i {
	color: #ef1c26;
}
.search-content .content-heading .heading-h1 {
	font-size: 20px;
	padding-left: 10px;
	padding-right: 10px;
}
.search-content .box-form .form-control {
	font-size: 16px;
	border: solid 1px var(--main-text-color);
}
.search-content .box-form .button-search {
	color: var(--main-text-color);
}
.search-content .box-alert .result--count {
	color: var(--main-text-color);
	background-color: #bcfff8;
}
body[data-theme="dark"] .search-content .box-alert .result--count {
	background-color: transparent;
}
.search-content .result--show .post-wrap .post-excerpt {
	display: none;
}
.search-content .box-result .result--empty {
	padding: 80px 0;
}
.search-content .box-result .result--empty .empty--icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: auto;
	background-color: #f1f1f1;
}
.search-content .box-result .result--empty .empty--text {
	margin-top: 15px;
}
.search-content .box-result .result--empty .empty--text strong {
	font-size: 18px;
	display: block;
	padding-bottom: 10px;
}
.entry-content-form .form-contact {
	color: var(--main-text-color);
}
.entry-content-form .form-contact .form-label {
	font-weight: 500;
}
.entry-content-form .form-contact input.form-control {
	height: 44px;
	border-color: var(--main-text-color-secondary);
}
.entry-content-form .form-contact textarea.form-control {
	border-color: var(--main-text-color-secondary);
}

/*--------------------------------------------------------------
 * Theme Merry Christmas 2025
 -------------------------------------------------------------*/
canvas {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 150;
	pointer-events: none;
}
body.none-theme-event {}
.none-theme-event #canvas, .none-theme-event .icon-bg-noen-2025,
.none-theme-event .run-xmas-pc, .none-theme-event .run-xmas-mb {
	display: none !important;
}
body.theme-xmas {}
.theme-xmas #canvas {
	position: fixed;
}
.theme-xmas .icon-bg-noen-2025 {
	display: none;
}
.theme-xmas .run-xmas-mb .noel-gift {
	display: block;
	margin-top: 10px;
	margin-bottom: 10px;
}
.theme-xmas .banner .banner-media {
	padding-top: 0;
}
.theme-xmas .service-head .heading-h2 {
	position: relative;
	padding-left: 38px;
	font-size: 22px;
}
.theme-xmas .hotmain-head .heading-h2 {
	position: relative;
	padding-left: 38px;
	font-size: 22px;
}
.theme-xmas .service-head .home-separator,
.theme-xmas .hotmain-head .home-separator {
	left: 38px;
}
.theme-xmas .blogpost-head .heading-h2 {
	position: relative;
	padding-left: 30px;
	font-size: 16px;
}
.theme-xmas .blogpost-head .heading-h2 i {
	display: none;
}
.theme-xmas .service-head .heading-h2:before, .theme-xmas .hotmain-head .heading-h2:before {
	background: url("../images/2025-christmas/noel-2025-icon-title.png") no-repeat;
	background-size: 100%;
	content: "";
	width: 38px;
	height: 38px;
	position: absolute;
	top: -6px;
	left: -6px;
}
.theme-xmas .blogpost-head .heading-h2:before {
	background: url("../images/2025-christmas/noel-2025-icon-title.png") no-repeat;
	background-size: 100%;
	content: "";
	width: 32px;
	height: 32px;
	position: absolute;
	top: -6px;
	left: -6px;
}
/*--------------------------------------------------------------
 * Theme Tet 2026
 -------------------------------------------------------------*/
.theme-tet-2026 .banner .banner-media .img-move {
	border-radius: 18px;
}
.theme-tet-2026 .service-head .heading-h2 {
	position: relative;
	padding-left: 38px;
	font-size: 22px;
}
.theme-tet-2026 .hotmain-head .heading-h2 {
	position: relative;
	padding-left: 38px;
	font-size: 22px;
}
.theme-tet-2026 .service-head .home-separator,
.theme-tet-2026 .hotmain-head .home-separator {
	left: 38px;
}
.theme-tet-2026 .blogpost-head .heading-h2 {
	position: relative;
	padding-left: 30px;
	font-size: 16px;
}
.theme-tet-2026 .blogpost-head .heading-h2 i {
	display: none;
}
.theme-tet-2026 .service-head .heading-h2:before, .theme-tet-2026 .hotmain-head .heading-h2:before {
	background: url("../images/2026-tet/tet-2026-icon-title.png") no-repeat;
	background-size: 100%;
	content: "";
	width: 38px;
	height: 38px;
	position: absolute;
	top: -6px;
	left: -6px;
}
.theme-tet-2026 .blogpost-head .heading-h2:before {
	background: url("../images/2026-tet/tet-2026-icon-title.png") no-repeat;
	background-size: 100%;
	content: "";
	width: 32px;
	height: 32px;
	position: absolute;
	top: -6px;
	left: -6px;
}


/*--------------------------------------------------------------
 * Menu Mobile
 -------------------------------------------------------------*/
.main-menu__toggler {
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	cursor: pointer;
	transition: 500ms;
}
.main-menu__toggler i {
	color: var(--main-text-color);
	font-size: 24px;
}
.mobile-nav__wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 110;
	transform: translateX(-100%);
	transform-origin: left center;
	transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
	visibility: hidden;
}
.mobile-nav__wrapper.expanded {
	opacity: 1;
	transform: translateX(0%);
	visibility: visible;
	transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}
.mobile-nav__wrapper .mobile-nav__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: -100%;
	background-color: var(--main-color-dark-base);
	opacity: 0.7;
}
.mobile-nav__wrapper .mobile-nav__content {
	width: clamp(300px, 55.102vw, 450px);
	background: var(--gradient-bg-menumb);
	z-index: 10;
	position: relative;
	height: 100%;
	padding: 20px 15px 30px;
	overflow-y: auto;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-100%);
	transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}
.mobile-nav__wrapper.expanded .mobile-nav__content {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
	transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}
.mobile-nav__wrapper .mobile-nav__close {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 18px;
	color: var(--main-color-cta);
	cursor: pointer;
}
.mobile-nav__wrapper .mobile-nav__content .logo-box {
	display: flex;
	justify-content: center;
	margin-bottom: 25px;
}
.mobile-nav__wrapper .mobile-nav__content .logo-box img {
	width: clamp(140px, 15.625vw, 320px);
}
.mobile-nav__wrapper .mobile-nav__content .head-menu-mobile .search-form .form-control {
	font-size: 14px;
	color: var(--main-text-color);
	padding-top: 8px;
	padding-bottom: 8px;
	padding-right: 40px;
	border-radius: 25px;
}
.mobile-nav__wrapper .mobile-nav__content .head-menu-mobile .search-form .form-control::-webkit-input-placeholder,
.mobile-nav__wrapper .mobile-nav__content .head-menu-mobile .search-form .form-control::-ms-input-placeholder,
.mobile-nav__wrapper .mobile-nav__content .head-menu-mobile .search-form .form-control::-moz-placeholder,
.mobile-nav__wrapper .mobile-nav__content .head-menu-mobile .search-form .form-control::-ms-input-placeholder,
.mobile-nav__wrapper .mobile-nav__content .head-menu-mobile .search-form .form-control::placeholder {
	color: var(--main-text-color);
}
.mobile-nav__wrapper .mobile-nav__content .head-menu-mobile .search-form .form-control:focus {
	border-color: var(--main-color-cta);
	box-shadow: 0 0 0 0.2rem rgba(241, 90, 41, 0.25);
}
.mobile-nav__wrapper .mobile-nav__content .head-menu-mobile .search-form .button-search {
	position: absolute;
	top: 7px;
	right: 6px;
	color: var(--main-text-color);
	font-size: 16px;
}
.mobile-nav__wrapper .mobile-nav__content .head-menu-mobile .action-darkmode {
	padding: 6px 10px;
	background-color: var(--main-color-white);
	border: solid 1px var(--main-color-box);
	border-radius: 25px;
}
.mobile-nav__wrapper .mobile-nav__content .head-menu-mobile .action-darkmode span {
	color: var(--main-color-dark);
}
.mobile-nav__wrapper .mobile-nav__content .head-menu-mobile .action-darkmode .form-switch .form-check-input {
	cursor: pointer;
}
.mobile-nav__wrapper .mobile-nav__content .mobile-nav__container ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.mobile-nav__wrapper .mobile-nav__content .menu li:not(:last-child) {
	border-bottom: 1px solid RGBA(255, 255, 255, 0.3);
}
.mobile-nav__wrapper .mobile-nav__content .menu li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	line-height: 30px;
	color: var(--color-menu-mb-white);
	font-weight: 500;
	text-transform: capitalize;
	letter-spacing: 0.8px;
	height: 42px;
	padding-left: 20px;
	position: relative;
	transition: 300ms;
}
.mobile-nav__wrapper .mobile-nav__content .menu li a:before {
	position: absolute;
	top: 52%;
	left: 0;
	transform: translateY(-50%);
	color: var(--main-color-cta);
	font-size: 12px;
	content: "\e5d6\e5d6";
	font-family: "Font Awesome 7 Duotone";
	font-weight: 300;
	cursor: pointer;
}
.mobile-nav__wrapper .mobile-nav__content .menu .menu-item-has-children {
	position: relative;
}
.mobile-nav__wrapper .mobile-nav__content .menu .menu-item-has-children > i {
	position: absolute;
	top: 6px;
	right: 0;
	width: 30px;
	height: 30px;
	color: var(--color-menu-mb-white);
	background-color: var(--main-color-cta);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 3px;
	transition: transform 300ms ease;
	cursor: pointer;
}
.mobile-nav__wrapper .mobile-nav__content .menu .sub-menu {
	display: none;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.mobile-nav__wrapper .mobile-nav__content .menu .sub-menu li > a {
	letter-spacing: 0;
	padding-left: 30px;
	height: 36px;
}
.mobile-nav__wrapper .mobile-nav__content .menu .sub-menu li > a:before {
	left: 10px;
	content: "\f101";
	color: var(--color-menu-mb-white);
}
.mobile-nav__wrapper .mobile-nav__content .menu li a.expanded {
	color: var(--main-color-cta);
}
.mobile-nav__wrapper .mobile-nav__content .menu li i.expanded {
	color: var(--main-color-cta);
	background-color: var(--color-menu-mb-white);
	transform: rotate(-180deg);
}
.mobile-nav__wrapper .mobile-nav__content .head-menu-mobile .search-form .button-search:hover {
	color: var(--btn-cta-color);
}
.mobile-nav__wrapper .mobile-nav__content .menu li a:hover {
	color: var(--main-text-color-secondary);
}
.mobile-nav__contact {
	margin-top: 20px;
	margin-bottom: 20px;
}
.mobile-nav__contact li {
	color: var(--color-menu-mb-white);
	font-size: 14px;
	font-weight: 500;
	position: relative;
	display: flex;
	align-items: center;
}
.mobile-nav__contact li + li {
	margin-top: 10px;
}
.mobile-nav__contact li i {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: #f47920;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 14px;
	margin-right: 10px;
	color: var(--color-menu-mb-white);
}
.mobile-nav__contact li a {
	color: inherit;
	transition: 500ms;
}
.mobile-nav__social {
	display: flex;
	align-items: center;
}
.mobile-nav__social a {
	font-size: 16px;
	color: var(--color-menu-mb-white);
	transition: 500ms;
}
.mobile-nav__social a + a {
	margin-left: 20px;
}
.mobile-nav__social a:hover, .mobile-nav__contact li a:hover {
	color: #f47920;
}

/*--------------------------------------------------------------
 * Responsive
 -------------------------------------------------------------*/