/**
----------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Elements
# Header Footer
# Home Page
# Menu Mobile
# Custom css
# Responsive
--------------------------------------------------------------*/

/*--------------------------------------------------------------
 * Elements
--------------------------------------------------------------*/
:root {
	--main-text-color: #046452;
	--main-text-secondary: #e3ed2e;
	--main-text-accent: #e3f9d6;
	--main-text-color-rgb: 4, 100, 82;
	--main-text-secondary-rgb: 227, 237, 46;
	--bg-white: #ffffff;
	--text-white: #ffffff;
	--bg-footer-bottom: #02846b;
	--bg-white-rbg: 255, 255, 255;
	--main-color-bg-menu: #02846b;
	--main-color-bg-submenu: #fafafa;
	--menu-mb-color-close: #C50606;
	--menu-mb-color-button: #FC7321;
	--menu-mb-bg-link: #f47920;
	--menu-mb-bg-dark: #121212;
	--menu-mb-bg-gradient: linear-gradient(to right, #046452, #71B280);
	--main-color-link: #2962ff;
	--color-border-box: #e8e8e8;
}
body {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	margin: 0;
	padding: 0;
}
a {
	color: inherit;
	text-decoration: none;
	transition: all 0.25s 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;
}

.heading-h1 {
	color: var(--main-text-color);
	font-weight: 600;
	margin-bottom: 0;
}
.heading-h2 {
	color: var(--main-text-color);
	font-size: 20px;
	margin-bottom: 15px;
}
.heading-h3 {
	color: var(--main-text-color);
	font-size: 18px;
	margin-bottom: 15px;
}
.hide {
	display: none !important;
}
.hide-normal {
	display: none;
}
.breadcrumb {
	color: var(--main-text-color);
}
.breadcrumb a:hover {
	color: #0033c9;
}
/* Hiệu ứng bọt tròn phóng to thu nhỏ slider header trang chủ */
@keyframes effect_dylan {
	50% {transform: scale(1.8, 1.6); opacity: 0;}
	99% {transform: scale(0.001, 0.001); opacity: 0;}
	100% {transform: scale(0.001, 0.001); opacity: 1;}
}
/* Kịch bản gõ chữ: Hiện ra -> Dừng lại -> Xóa lùi -> Lặp lại */
@keyframes typing {
	0%, 15% {
		max-width: 0; /* Bắt đầu chưa có gì */
	}
	40%, 60% {
		max-width: 75px; /* Hiện đầy đủ (Xem lưu ý bên dưới) */
	}
	85%, 100% {
		max-width: 0; /* Xóa lùi lại */
	}
}
/* Kịch bản nhấp nháy con trỏ */
@keyframes blink-caret {
	from, to { border-color: transparent; }
	/* Lấy luôn màu --main-text-color làm màu cho con trỏ nhấp nháy */
	50% { border-color: var(--main-text-color); }
}
@keyframes anim-bg-project-box {
	0% {background-position: 0 50%;}
	100% {background-position: 100% 50%;}
}
@keyframes topBubbles {
	0%{
		background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
	}
	50% {
		background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;}
	100% {
		background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
		background-size: 0% 0%, 0% 0%,  0% 0%,  0% 0%,  0% 0%,  0% 0%;
	}
}
@keyframes bottomBubbles {
	0%{
		background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
	}
	50% {
		background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;}
	100% {
		background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
		background-size: 0% 0%, 0% 0%,  0% 0%,  0% 0%,  0% 0%,  0% 0%;
	}
}

/*--------------------------------------------------------------
 * Header & Footer
--------------------------------------------------------------*/
.header.header-homepage {
	position: relative;
}
.header.header-homepage .header-top {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 90;
}
.header-top {
	width: 100%;
	padding: 20px 0;
	transition: all 0.3s ease-in-out;
}
.header-sticky {
	position: fixed !important;
	background-color: var(--bg-white);
	padding: 8px 0;
	z-index: 98;
}
.header-top.header-sticky {
	-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-logo img {
	height: 40px;
	transition: all 0.3s ease-in-out;
}
.header-top .header-menu {
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
}
.header-top .header-menu.show-menu {
	opacity: 1;
	visibility: visible;
}
.action-search {
	width: 42px;
	height: 42px;
	line-height: 46px;
	border: solid 1px var(--main-text-color);
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.25s ease-in-out;
}
.action-search .search-show i {
	color: var(--main-text-color);
	font-size: 20px;
	transition: all 0.25s ease-in-out;
}
.action-search:hover .search-show i {
	color: var(--main-text-secondary);
}
.header-top.header-sticky .header-logo img {
	height: 32px;
}
.header-top.header-sticky .menu-header-desktop > ul > li:first-child a::before {
	height: 18px;
}
.header-top.header-sticky .menu-header-desktop > ul > li > a {
	height: 38px;
}
.header-top.header-sticky .action-search {
	width: 38px;
	height: 38px;
	line-height: 42px;
}

footer {
	padding: 40px 0 15px;
	color: var(--text-white);
	background-color: var(--main-text-color);
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	position: relative;
}
footer::before {
	content: "";
	position: absolute;
	inset: 0 0 0 0;
	background-color: var(--main-text-accent);
	z-index: -1;
}
.footer-logo img {
	height: 46px
}
.footer-area h3 {
	font-size: 1.2rem;
	line-height: 1.3;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 15px;
}
.footer-area .hotlink {
	display: block;
	width: fit-content;
	font-size: 16px;
}
.footer-area .hotlink .icon {
	color: var(--main-text-secondary);
	margin-right: 5px;
}
.link-list {
	padding-top: 15px;
	padding-left: 15px;
}
.link-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.link-list ul li {
	display: block;
	font-size: 16px;
	font-weight: 600;
	line-height: 2;
}
.footer-bottom {
	color: var(--text-white);
	background-color: var(--bg-footer-bottom);
	padding: 10px 0;
}
.footer-bottom .footer-bottom-text {
	margin-right: 5px;
}
.footer-bottom .footer-bottom-link a {
	font-size: 18px;
	margin-right: 5px;
}
.link-list ul li:last-child, .footer-bottom .footer-bottom-link a:last-child {
	margin-right: 0;
}
.footer-area .hotlink:hover, .link-list ul li a:hover, .footer-bottom .footer-bottom-link a:hover {
	color: var(--main-text-secondary);
}

/*--------------------------------------------------------------
 * Home Page
--------------------------------------------------------------*/
.home-header {
	background: url("../icons/bg-banner.png") no-repeat, var(--main-text-accent);
	background-size: 100% auto;
	padding-top: 110px;
}
.home-header .banner {
	padding-top: 2.5rem;
	padding-bottom: 4rem;
}
.banner-box {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	margin-left: auto;
	margin-right: auto;
}
.banner-box .text-as-line span {
	position: relative;
	padding-bottom: 7px;
}
.banner-box .text-as-line span::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2.5px;
	background: linear-gradient(to right, var(--main-text-secondary) 0%, var(--bg-white) 70%);
}
.banner-box .banner-box-label {
	color: var(--main-text-color);
	font-size: 20px;
	font-weight: 600;
}
.banner-box .banner-box-button {
	text-align: right;
	color: var(--main-text-color);
	font-size: 20px;
	font-weight: 600;
	cursor: pointer;
	margin-left: auto;
	padding-right: 10px;
	padding-bottom: 8px;
	transition: opacity 0.25s ease, transform 0.25s ease;
}
.banner-box .banner-box-button .icon-burst {
	position: relative;
	display: inline-block;
}
.banner-box .banner-box-button .icon-burst i {
	position: relative;
	z-index: 2;
}
.banner-box .banner-box-button .icon-burst::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--main-text-secondary);
	border-radius: 50%;
	transform: scale(0.001, 0.001);
	animation: effect_dylan 1.6s ease-out infinite;
}
.banner-box .banner-box-title {
	font-weight: 600;
	padding-bottom: 15px;
}
.banner-box .banner-box-description p {
	color: var(--main-text-color);
	font-size: 16px;
	margin-bottom: 10px;
}
.banner-box .banner-box-description p:last-child {
	margin-bottom: 0;
}
.banner-box .banner-box-button span, .banner-box .banner-box-button i {
	animation: pulse-hint 2s infinite ease-in-out;
}
.banner-box .banner-box-button i {
	color: #f00;
	animation: wiggle-arrow 1.5s ease-in-out infinite;
}
.banner-box .banner-box-button:hover {
	opacity: 0.75;
	transform: translateX(4px);
}
.banner-box .banner-box-button:active {
	transform: scale(0.96) translateX(4px);
}

.menu-header {
	padding-bottom: 60px;
}
.menu-header-desktop {
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	padding: 15px;
	background-color: var(--main-text-color);
	border-radius: 20px;
}
.menu-header-desktop > ul {
	display: flex;
	align-items: center;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.menu-header-desktop > ul > li > a {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-white);
	font-size: 18px;
	font-weight: 500;
	padding: 10px 25px;
	border-radius: 30px;
}
.menu-header-desktop > ul > li.current-menu-parent > a,
.menu-header-desktop > ul > li.current-menu-item > a,
.menu-header-desktop > ul > li > a:hover {
	color: var(--main-text-color);
	background-color: var(--main-text-secondary);
}
.menu-header-desktop > ul > li:first-child a {
	background-color: var(--main-color-bg-menu);
}
.menu-header-desktop > ul > li:first-child a::before {
	content: "";
	width: 38px;
	height: 25px;
	background: url("../icons/icon-menu-home.png") no-repeat center;
	background-size: contain;
	transition: all 0.3s ease-in-out;
}
.menu-header-desktop > ul > li:first-child a span {
	display: none;
}

.heading-with-border {
	position: relative;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2rem;
}
.heading-with-border::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50px;
	padding: 1.5px;
	background: linear-gradient(
		40deg,
		var(--main-text-color) 10%,
		var(--main-text-secondary) 50%,
		var(--main-text-accent) 100%
	);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
}
.border-to-right::before {
	background: linear-gradient(
		to top right,
		var(--main-text-color) 10%,
		var(--main-text-secondary) 50%,
		var(--main-text-accent) 100%
	);
}
.heading-with-border .text-inner {
	padding: 0.8rem 2rem;
}

.home-intro {
	padding-bottom: 2rem;
}
.home-intro > .container > .row {
	gap: 20px;
}
.intro-box {
	text-align: center;
	padding: 15px 10px;
	margin-left: 15px;
	margin-right: 15px;
	background-color: var(--bg-white);
	border-radius: 12px;
	transition: box-shadow 0.25s ease-in-out;
	cursor: pointer;
}
.intro-box, .intro-again {
	margin-left: 15px;
	margin-right: 15px;
}
.intro-box .heading-h3 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 20px;
}
.intro-box .heading-h3 span {
	position: relative;
	padding-bottom: 5px;
}
.intro-box .heading-h3 span::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2.5px;
	background: linear-gradient(to right, var(--main-text-secondary) 0%, var(--bg-white) 70%);
}
.intro-box .intro-box-description ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.intro-box .intro-box-description ul li {
	color: var(--main-text-color);
	padding-bottom: 10px;
}
.intro-box .intro-box-description ul li:last-child {
	padding-bottom: 0;
}
.intro-box:hover, .intro-box.active-glow {
	box-shadow:
		0 0 20px 4px rgba(227, 237, 46, 0.6),
		0 0 60px 10px rgba(227, 237, 46, 0.3),
		0 0 100px 20px rgba(227, 237, 46, 0.1);
}

.home-issue {
	padding-bottom: 1.2rem;
}
.home-issue .heading-with-border .text-inner {
	padding: 1rem 1.8rem;
}
.intro-again-inner {
	padding-bottom: .75rem;
}
.intro-again {
	padding: 12px 10px;
	background-color: var(--main-text-secondary);
	margin-bottom: .5rem;
	border: 2px solid var(--main-text-secondary);
	border-radius: 8px;
}
.intro-again .intro-again-description {
	color: var(--main-text-color);
	font-weight: 500;
}
.intro-again-inner.active-glow > .intro-again {
	background: linear-gradient( 150deg,
		var(--main-text-color) 5%,
		var(--main-text-secondary) 35%,
		var(--main-text-accent) 75%,
		var(--bg-white) 95% );
	border: 2px solid var(--main-text-secondary);
}

.home-work {
	padding-bottom: 3rem;
}
.home-work-wrap {
	padding: 15px;
	background-color: var(--main-text-color);
	border-radius: 18px;
}
.home-work-wrap > .row {
	gap: 1rem;
}
.home-work-wrap .intro-work {
	text-align: justify;
	color: var(--text-white);
	padding: 12px 10px;
	background-color: var(--main-color-bg-menu);
	height: 100%;
	border-radius: 12px;
}
.intro-work.active-glow {
	box-shadow:
		0 0 20px 4px rgba(255, 255, 255, 0.6),
		0 0 60px 10px rgba(255, 255, 255, 0.3),
		0 0 100px 20px rgba(255, 255, 255, 0.1);
}

.home-solution {
	padding-bottom: 3rem;
	background: linear-gradient(to bottom, var(--main-text-accent) 0, var(--bg-white) 50%);
}
.home-solution .heading-with-border {
	font-size: 16px;
}
.home-solution .heading-with-border .text-inner {
	padding: 1rem;
}
.solution-box {
	min-height: 320px;
	padding: 15px 10px;
	background: linear-gradient(to top right, var(--main-text-secondary) 0, var(--bg-white) 80%);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 20px;
}
.solution-box .heading-h3 {
	font-weight: 600;
	margin-bottom: 20px;
}
.solution-box .heading-h3 span {
	position: relative;
	padding-bottom: 5px;
}
.solution-box .heading-h3 span::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2.5px;
	background: linear-gradient(to right, var(--main-text-color) 0%, var(--bg-white) 70%);
}
.solution-box .solution-description {
	width: 68%;
	color: var(--main-text-color);
	font-weight: 500;
}
.solution-box .solution-description p {
	margin-bottom: 10px;
}
.solution-box .solution-viewmore {
	padding: 10px 0 0;
}
.solution-box .solution-viewmore .home-viewmore {
	background: linear-gradient(90deg, var(--main-text-color), var(--main-text-color));
	background-clip: text;
}
.solution-box .solution-viewmore .typing-text {
	animation-delay: calc(var(--i) * 1s), 0s;
}
.solution-box .solution-image {
	width: 28%;
	position: absolute;
	right: 10px;
	bottom: 20px;
}

.home-partner {
	background-color: var(--bg-white);
	padding-bottom: 3rem;
}
.partner-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	max-width: fit-content;
	margin: 0 auto;
}
.partner-inner .partner-box {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.partner-inner .partner-box img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.home-bottom {
	background: linear-gradient(to top, var(--main-text-accent) 0, var(--bg-white) 80%);
}
.home-project {
	padding-bottom: 3rem;
}
.home-project > .container > .row {
	gap: 1.5rem;
}
.project-box {
	display: block;
}
.project-box .project-box-image {
	display: inline-block;
	padding: 2px;
	margin-bottom: 8px;
	background: linear-gradient(
		to top right,
		var(--main-text-color) 30%,
		var(--main-text-secondary) 60%,
		var(--main-text-accent) 100%
	);
	border-radius: 18px;
}
.project-box .project-box-image img {
	border-radius: 16.5px;
}
.project-box .project-box-title {
	font-size: 14px;
	line-height: 1.4;
	position: relative;
	padding: 0 10px;
	margin-bottom: 0;
}
.project-box .project-box-title::after {
	content: "";
	position: absolute;
	top: 6px;
	right: 10px;
	width: 50px;
	height: 10px;
	background: url("../icons/icon-arrow-title.png") no-repeat center;
	background-size: contain;
}
.project-box .project-box-title span {
	display: block;
	max-width: calc(100% - 50px);
}
.project-box:hover .heading-h3 span {
	color: transparent;
	background-image: url("../icons/bg-title-hover.jpg");
	background-size: 200%;
	background-position: 0 50%;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: anim-bg-project-box 5s infinite alternate linear;
}

.home-ads-banner {
	padding-bottom: 3rem;
}

.home-register {
	padding-bottom: 3rem;
}
.home-register .register-box {
	flex-direction: column;
	padding: 15px 10px 20px;
	background: linear-gradient(45deg, var(--main-text-secondary) 0, var(--bg-white) 80%);
	border: 2px solid var(--main-text-secondary);
	border-radius: 20px;
}
.register-box .register-box-title {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.4;
	flex-shrink: 0;
	white-space: nowrap;
	letter-spacing: 2px;
	margin-bottom: 1.5rem;
}
.register-box .register-box-form {
	flex: 1;
}
.register-box-form .form-register .form-control {
	color: var(--main-text-color);
	font-size: 14px;
	font-weight: 500;
	height: 44px;
	border: 2px solid var(--main-text-secondary);
	border-radius: 30px;
}
.register-box-form .form-register textarea.form-control {
	height: auto;
}
.register-box-form > .form-register > .col-12:last-child {
	text-align: center;
}
.register-box-form .btn-submit {
	font-size: 16px;
	font-weight: 500;
	padding: 8px 30px;
	background-color: var(--main-text-color);
	border-color: transparent;
	border-radius: 30px;
	letter-spacing: 2px;
}
.register-box-form .form-register .form-control::-webkit-input-placeholder {
	color: var(--main-text-color);
}
.register-box-form .form-register .form-control:-ms-input-placeholder {
	color: var(--main-text-color);
}
.register-box-form .form-register .form-control::-moz-placeholder {
	color: var(--main-text-color);
}
.register-box-form .form-register .form-control::-ms-input-placeholder {
	color: var(--main-text-color);
}
.register-box-form .form-register .form-control::placeholder {
	color: var(--main-text-color);
}
.register-box-form .form-register .form-control:focus {
	border-color: var(--main-text-color-rgb);
	box-shadow: 0 0 0 0.2rem rgba(var(--main-text-color-rgb), 0.25);
}
.register-box-form .btn-submit:hover {
	box-shadow: 0 6px 25px rgba(var(--main-text-color-rgb), 0.4);
}

.home-about {
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 3rem;
}
.home-about .home-about-wrap {
	margin-left: auto;
	margin-right: auto;
}
.home-about-description {
	text-align: center;
	padding: 15px 0;
	margin-bottom: 3rem;
	position: relative;
}
.home-about-description::before {
	content: "";
	position: absolute;
	top: 0;
	left: 10%;
	width: 80%;
	height: 2px;
	background: linear-gradient(
		to right,
		var(--main-text-accent) 10%,
		var(--main-text-secondary) 50%,
		var(--main-text-color) 100%
	);
}
.home-about-description::after {
	content: "";
	position: absolute;
	left: 10%;
	bottom: 0;
	width: 80%;
	height: 2px;
	background: linear-gradient(
		to right,
		var(--main-text-color) 10%,
		var(--main-text-secondary) 50%,
		var(--main-text-accent) 100%
	);
}
.home-about-description p {
	color: var(--main-text-color);
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 0;
}
.home-about-vision {
	flex-direction: column;
	gap: 1rem;
}
.home-about-box {
	flex: 1;
	text-align: center;
	display: inline-block;
	padding: 2.5px;
	background: linear-gradient(
		to top right,
		var(--main-text-color) 0%,
		var(--main-text-secondary) 50%,
		var(--main-text-accent) 100%
	);
	border-radius: 18px;
}
.home-about-box-inner {
	min-height: 230px;
	height: 100%;
	padding: 30px 15px;
	background-color: var(--bg-white);
	border-radius: 16px;
}
.home-about-box .heading-h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
}
.home-about-box p {
	color: var(--main-text-color);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
}
.home-viewmore {
	color: var(--main-text-color);
	font-size: 16px;
	background: linear-gradient(90deg, var(--main-text-color), var(--main-text-secondary));
	/* Cắt nền theo viền chữ và làm ruột chữ trong suốt */
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent; /* Fallback cho các trình duyệt cũ */
	font-variation-settings: "wght" 600;
	transition: font-variation-settings 1s ease-out;
}
/* Căn chỉnh hiển thị thẻ <a> trên một dòng thẳng */
.typewriter-anim {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}
/* Định dạng khu vực diễn ra hiệu ứng gõ chữ */
.typewriter-anim .typing-text {
	display: inline-flex;
	align-items: center;
	overflow: hidden; /* Giấu phần chữ chưa gõ tới */
	white-space: nowrap; /* Ép chữ không rớt dòng */
	/* Tạo con trỏ nhấp nháy (cursor) ở cuối */
	border-right: 2px solid currentColor;
	/* Gọi animation (4 giây cho chu kỳ gõ, 0.75s cho nhịp nháy con trỏ) */
	animation:
		typing 4s steps(12, end) infinite,
		blink-caret .75s step-end infinite;
}
/* Box 1: Chạy ngay lập tức (Không cần delay) */
.home-about-box:nth-child(1) .typing-text {
	animation-delay: 0s, 0s;
}
/* Box 2: Đợi 1.5 giây rồi mới bắt đầu gõ */
.home-about-box:nth-child(2) .typing-text {
	/* Tham số 1: Trễ hiệu ứng gõ (typing) 1.5s
		Tham số 2: Trễ hiệu ứng nhấp nháy con trỏ (0s) */
	animation-delay: 1.5s, 0s;
}
/* Box 3: Đợi 3 giây rồi mới bắt đầu gõ */
.home-about-box:nth-child(3) .typing-text {
	animation-delay: 3s, 0s;
}
.home-viewmore:hover {
	font-variation-settings: "wght" 900;
}

.site-post {
	padding-top: 2.5rem;
}
.content-post .entry-header {
	max-width: 880px;
	margin-left: auto;
	margin-right: auto;
}
.content-post .entry-title {
	font-size: 32px;
	line-height: 1.3;
}
.content-post .entry-meta .posted {
	color: #666;
	padding-right: 5px;
	margin-right: 5px;
	border-right: solid 1px #666;
}
.content-post .entry-meta .posted:last-child {
	padding-right: 0;
	margin-right: 0;
	border-right: none;
}
.content-post .entry-meta .posted i {
	color: var(--menu-mb-color-button);
}
.content-post .entry-thumb img {
	width: 100%;
	height: auto;
}
.content-post .entry-content {
	max-width: 880px;
	margin: 48px auto 15px;
}
.single-content .content-post .entry-content {
	max-width: 680px;
}
.site-post.page-content {
	padding-bottom: 1rem;
}
.site-post.page-content .content-post .entry-content {
	margin-top: 10px;
}
.wp-caption.aligncenter {
	text-align: center;
}
.wp-caption .wp-caption__image {
	font-style: italic;
	margin-top: 10px;
	margin-bottom: 0;
}
.content-post .entry-content h1 {
	font-size: clamp(22px, 1.150rem + 1.3vw, 23px);
}
.content-post .entry-content h2 {
	font-size: clamp(21px, 1.125rem + 1vw, 22px);
}
.content-post .entry-content h3 {
	font-size: clamp(17px, 1.025rem + 0.45vw, 18px);
}
.content-post .entry-content h4, .content-post .entry-content h5, .content-post .entry-content h6 {
	font-size: 1rem;
}
.content-post .entry-content a:hover {
	color: var(--main-color-link);
}
.entry-tags {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 18px 0;
	border-top: solid 1px var(--color-border-box);
}
.entry-tags i {
	color: var(--main-text-secondary);
	font-size: 20px;
}
.entry-tags .post-tags a {
	color: var(--main-color-link);
	font-weight: 500;
}
.entry-tags .post-tags a:hover {
	text-decoration: underline;
}
.content-post .share-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
	border-top: solid 1px var(--color-border-box);
	border-bottom: solid 1px var(--color-border-box);
}
.content-post .share-wrap > span {
	color: var(--main-text-color);
	font-weight: 600;
}
.content-post .share-wrap ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
}
.content-post .share-wrap ul li {
	margin: 0 3px;
}
.content-post .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;
}
.content-post .share-wrap ul li a:before {
	content: "";
	width: 4px;
	height: 4px;
	background: var(--main-text-secondary);
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.1s ease-out 0.1s;
	-webkit-transition: all 0.1s ease-out 0.1s;
}
.content-post .share-wrap ul li a i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--main-text-color);
	font-size: 20px;
}
.content-post .share-wrap ul li a:hover:before {
	width: 100%;
	height: 100%;
}
.content-post .related-wrap {
	padding: 48px 0 15px;
}
.content-post .related-wrap .related-heading {
	text-align: center;
	font-weight: 600;
}
.content-post .related-wrap .post-wrap {
	gap: 10px;
	margin-bottom: 15px;
}
.content-post .related-wrap .post-wrap .post-image {
	flex: 0 0 160px;
}
.content-post .related-wrap .post-wrap .post-text .infomation {
	font-size: 12px;
	color: var(--menu-mb-bg-dark);
}
.content-post .related-wrap .post-wrap .post-text .heading-h3 {
	font-size: 14px;
	margin-bottom: 5px;
}
.content-post .related-wrap .post-wrap .post-text .infomation i {
	color: #ef1c26;
}

/* Trang Giới thiệu */
.about-header {
	padding: 2.5rem 0 30px;
	background: linear-gradient(to top, var(--main-text-accent) 0, var(--bg-white) 100%);
}
.heading-bg-gradient {
	width: fit-content;
	font-size: 1.25rem;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: .75rem;
}
.heading-bg-gradient .text-inner {
	color: var(--main-text-color);
	font-weight: 500;
	padding: .75rem 3rem;
	background: linear-gradient(
		150deg,
		var(--main-text-color) 0%,
		var(--main-text-secondary) 25%,
		var(--main-text-accent) 65%,
		var(--bg-white) 95%
	);
	border-radius: 50px;
}
.heading-wrap .description {
	color: var(--main-text-color);
	font-size: 16px;
	padding-bottom: .75rem;
}
.about-header-video {
	border: 1px solid transparent;
	border-radius: 20px;
	background:
		linear-gradient(white, white) padding-box,
		linear-gradient(
			90deg,
			var(--main-text-color) 10%,
			var(--main-text-secondary) 50%,
			var(--main-text-accent) 100%
		) border-box;
	overflow: hidden;
}
.about-header-video .iconshow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.about-header-video .icon-play {
	width: 68px;
	height: 68px;
	background: var(--bg-white);
	border-radius: 50%;
	pointer-events: auto;
	cursor: pointer;
	transition: all .3s ease;
}
.about-header-video .icon-play::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	padding: 1.5px;
	background: linear-gradient(
		90deg,
		var(--main-text-color) 10%,
		var(--main-text-secondary) 50%,
		var(--main-text-accent) 100%
	);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	transition: opacity .3s ease;
}
.about-header-video .icon-play i {
	font-size: 32px;
	color: var(--main-text-color);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: color .3s ease;
}
.about-header-video .icon-play:hover {
	background: linear-gradient(
		90deg,
		var(--main-text-color) 10%,
		var(--main-text-secondary) 50%,
		var(--main-text-accent) 100%
	);
}
.about-header-video .icon-play:hover::before {
	opacity: 0;
}
.about-header-video .icon-play:hover i {
	color: var(--text-white);
}
.about-header-video iframe {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}
.about-header-video.played {
	border-radius: 12px;
}
.about-header-video.played .iconshow {
	display: none;
}
.about-header-video.played .thumbnail {
	opacity: 0;
}
.about-begin {
	padding: 15px 0;
	background-color: var(--main-text-accent);
}
.about-begin-wrap {
	position: relative;
}
.about-begin-wrap::before, .about-begin-wrap::after {
	content: "";
	position: absolute;
	left: 20%;
	width: 60%;
	height: 4px;
}
.about-begin-wrap::before {
	top: 0;
	background: linear-gradient(
		to right,
		var(--main-text-accent) 10%,
		var(--main-text-secondary) 50%,
		var(--main-text-color) 100%
	);
}
.about-begin-wrap::after {
	background: linear-gradient(
		to right,
		var(--main-text-color) 10%,
		var(--main-text-secondary) 50%,
		var(--main-text-accent) 100%
	);
	bottom: 0;
}
.about-begin-description, .about-begin-text {
	font-size: 16px;
	color: var(--main-text-color);
	padding: 20px 0;
}
.about-begin-text {
	font-weight: 500;
}
.about-begin-text p {
	line-height: 1.8;
}
.about-begin-text p br, .about-marketing-box p br {
	display: none;
}
.about-begin-title .heading-h2 {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 10px;
}
.about-begin-title {
	padding-bottom: .75rem;
}
.about-begin-scroll {
	max-width: 450px;
	width: 100%;
	overflow-x: scroll;
	scroll-behavior: smooth;
}
.about-begin-box {
	display: flex;
	gap: 10px;
	padding: 0 0 40px;
}
.about-begin-box .box-item {
	text-align: center;
	width: fit-content;
	flex-shrink: 0;
}
.about-begin-box .box-item::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -40px;
	transform: translateX(-50%);
	width: 3px;
	height: 40px;
	background: linear-gradient(to bottom, var(--main-text-secondary), transparent);
}
.about-begin-box .box-item span {
	display: inline-block;
	background-color: var(--main-text-secondary);
	color: var(--main-text-color);
	font-weight: 600;
	text-transform: uppercase;
	padding: 15px 12px;
	border-radius: 6px;
}
.about-my {
	padding: 0 0 30px;
	background: linear-gradient(to bottom, var(--main-text-accent) 0, var(--bg-white) 80%);
}
.about-my-description .description {
	color: var(--main-text-color);
	font-size: 16px;
	font-weight: 500;
}
.about-my-inner {
	display: flex;
	align-items: stretch;
	flex-direction: column;
	gap: 15px;
	background: linear-gradient(30deg, var(--main-text-secondary) 0%, var(--bg-white) 75%);
	padding: 10px;
	margin-bottom: 1rem;
	border-radius: 10px;
}
.about-my-inner:last-child {
	margin-bottom: 0;
}
.about-my-inner .about-my-text, .about-my-inner .about-my-thumb {
	flex: 1;
}
.about-my-inner .about-my-text h3 {
	text-align: center;
	color: var(--main-text-color);
	font-size: 22px;
	font-weight: 600;
}
.about-my-inner .about-my-text .description {
	text-align: justify;
	color: var(--main-text-color);
	font-size: 16px;
	line-height: 1.4;
}
.about-my-inner .about-my-text .description ul {
	padding-left: 1rem;
}
.about-my-inner .about-my-text .description ol {
	padding-left: 1.25rem;
}
.about-my-inner .about-my-text .description p {
	margin-bottom: .25rem;
}
.about-my-inner .about-my-thumb {
	flex-shrink: 0;
}
.about-my-inner .about-my-thumb figure {
	margin: 0;
	border-radius: 8px;
	overflow: hidden;
}
.about-my-inner .about-my-thumb figure img {
	display: block;
}
.about-marketing {
	padding: 15px 0;
	background-color: #123B30;
}
.about-marketing .about-marketing-wrap {
	background: url("../icons/bg-inner-marketing2.png") no-repeat;
	background-size: 100% 130%;
	background-position: center;
}
.about-marketing-box {
	padding: 50px 0;
}
.about-marketing-box p {
	text-align: center;
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	color: var(--main-text-color);
}

.about-intro {
	padding: 30px 0 60px;
	background: linear-gradient(to top, var(--main-text-accent) 0, var(--bg-white) 50%);
}
.about-intro-box {
	width: 100%;
	height: 500px;
	text-align: center;
	color: var(--main-text-color);
}
.about-intro-slider {
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	background: linear-gradient(45deg, var(--main-text-secondary) 0, var(--bg-white) 80%);
	border: 2px solid var(--main-text-secondary);
	overflow: hidden;
}
.about-intro-slider .df-bg {
	background: transparent !important;
}

/* Trang Liên hệ */
.contactus-header .heading-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-top: 2.5rem;
	margin-bottom: 20px;
}
.contactus-body {
	background: linear-gradient(to top, var(--main-text-accent) 0, var(--bg-white) 20%);
	padding-bottom: 50px;
}
.contactus-body .content-post .entry-content {
	margin-top: 0;
}
.contactus-body .entry-content-contact {
	padding-bottom: 20px;
}
.entry-content-form {
	padding: 20px 20px 30px;
	background: linear-gradient(45deg, var(--main-text-secondary) 0, var(--bg-white) 80%);
	border: 2px solid var(--main-text-secondary);
	border-radius: 20px;
}
.entry-content-form .form-contact input.form-control {
	height: 44px;
	border-color: var(--main-text-secondary);
}
.entry-content-form .form-contact textarea.form-control {
	border-color: var(--main-text-secondary);
}
.entry-content-form .form-contact .btn-submit {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	background: var(--main-text-color);
	background: -webkit-linear-gradient(to right, var(--main-text-color), var(--main-text-accent));
	background: linear-gradient(to right, var(--main-text-color), var(--main-text-accent));
	padding: 10px 38px;
	border: none;
	border-radius: 40px;
	box-shadow: 0 6px 25px rgba(var(--main-text-color-rgb), 0.4);
}

/* Trang Dịch vụ */
.service-header {
	padding: 2.5rem 0 30px;
	background: linear-gradient(to top, var(--main-text-accent) 0, var(--bg-white) 100%);
}
.service-header .heading-wrap, .project-header .heading-wrap {
	margin-left: 10px;
	margin-right: 10px;
}
.service-header .heading-wrap .heading-h1, .project-header .heading-wrap .heading-h1 {
	line-height: 1.4;
}
.service-header .heading-wrap .description {
	font-size: 14px;
	margin-bottom: 0;
}
.service-header-image .thumbnail {
	padding: 1px;
	background: linear-gradient(
		90deg,
		var(--main-text-color) 0%,
		var(--main-text-secondary) 40%,
		var(--main-text-accent) 100%
	);
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
.service-header-image .thumbnail img {
	width: 100%;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
.service-cta a {
	display: inline-block;
	color: var(--text-white);
	background-color: var(--main-text-color);
	padding: 10px 45px;
	border-radius: 30px;
	transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
	box-shadow: 0 2px 25px rgba(var(--main-text-color-rgb), 0.5);
}
.service-cta a:before, .service-cta a:after {
	position: absolute;
	content: "";
	display: block;
	width: 140%;
	height: 100%;
	left: -20%;
	z-index: -1000;
	transition: all ease-in-out 0.5s;
	background-repeat: no-repeat;
}
.service-cta a:before {
	display: none;
	top: -75%;
	background-image:
		radial-gradient(circle, var(--main-text-color) 20%, transparent 20%),
		radial-gradient(circle, transparent 20%, var(--main-text-color) 20%, transparent 30%),
		radial-gradient(circle, var(--main-text-color) 20%, transparent 20%),
		radial-gradient(circle, var(--main-text-color) 20%, transparent 20%),
		radial-gradient(circle, transparent 10%, var(--main-text-color) 15%, transparent 20%),
		radial-gradient(circle, var(--main-text-color) 20%, transparent 20%),
		radial-gradient(circle, var(--main-text-color) 20%, transparent 20%),
		radial-gradient(circle, var(--main-text-color) 20%, transparent 20%),
		radial-gradient(circle, var(--main-text-color) 20%, transparent 20%);
	background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
}
.service-cta a:after {
	display: none;
	bottom: -75%;
	background-image:
		radial-gradient(circle, var(--main-text-color) 20%, transparent 20%),
		radial-gradient(circle, var(--main-text-color) 20%, transparent 20%),
		radial-gradient(circle, transparent 10%, var(--main-text-color) 15%, transparent 20%),
		radial-gradient(circle, var(--main-text-color) 20%, transparent 20%),
		radial-gradient(circle, var(--main-text-color) 20%, transparent 20%),
		radial-gradient(circle, var(--main-text-color) 20%, transparent 20%),
		radial-gradient(circle, var(--main-text-color) 20%, transparent 20%);
	background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;
}
.service-cta a:hover {
	transform: scale(0.95);
	box-shadow: 0 2px 25px rgba(var(--main-text-color-rgb), 0.2);
}
.service-cta a:hover:before {
	display: block;
	animation: topBubbles ease-in-out 0.75s forwards;
}
.service-cta a:hover:after {
	display: block;
	animation: bottomBubbles ease-in-out 0.75s forwards;
}
.service-header-image .service-cta {
	width: fit-content;
	position: absolute;
	left: 45%;
	bottom: -1.1rem;
	transform: translateX(-45%);
}
.service-header-image .service-cta a {
	color: var(--main-text-color);
	font-size: 12px;
	background-color: var(--main-text-secondary);
	padding: 10px 20px;
}
.service-list {
	padding: 40px 0;
	background: linear-gradient(to bottom, var(--main-text-accent) 0, var(--bg-white) 30%);
}
.service-list-wrap {
	position: relative;
	padding-top: 40px;
}
.service-list-wrap::before {
	content: "";
	position: absolute;
	top: 0;
	left: 20%;
	width: 60%;
	height: 3px;
	background: linear-gradient(
		to right,
		var(--main-text-accent) 10%,
		var(--main-text-secondary) 50%,
		var(--main-text-color) 100%
	);
}
.service-benefit {
	padding: 5rem 0 80px;
	background: linear-gradient(to top, var(--main-text-accent) 0, var(--bg-white) 50%);
}
.service-benefit-wrap {
	padding: 7rem 5px 4rem;
	background: linear-gradient(45deg, var(--main-text-secondary) 0, var(--bg-white) 80%);
	border: 2px solid var(--main-text-secondary);
	border-radius: 20px;
}
.service-benefit-wrap .service-benefit-title {
	width: 100%;
	position: absolute;
	top: -24%;
	left: 0;
	background: url("../icons/bg-cta-service.png") no-repeat;
	background-size: 100% 135%;
	background-position: center;
	padding: 35px 25px;
	
}
.service-benefit-wrap .service-benefit-title .heading-h2 {
	line-height: 1.4;
	margin-bottom: 6px;
}
.service-benefit-wrap .service-benefit-title .description {
	color: var(--main-text-color);
	font-weight: 500;
	margin-bottom: 0;
}
.service-benefit-wrap .service-benefit-list ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.service-benefit-wrap .service-benefit-list ul li {
	position: relative;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	padding: .25rem 5px;
	color: var(--main-text-color);
	font-size: 16px;
	font-weight: 500;
	border-radius: 50px;
}
.service-benefit-wrap .service-benefit-list ul li::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50px;
	padding: 1.5px;
	background: linear-gradient(
		40deg,
		var(--main-text-color) 10%,
		var(--main-text-secondary) 50%,
		var(--main-text-accent) 100%
	);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.25s ease-in-out;
}
.service-benefit-wrap .service-benefit-list ul li:hover {
	cursor: pointer;
}
.service-benefit-wrap .service-benefit-list ul li:hover::before {
	opacity: 1;
}
.service-benefit-wrap .service-cta {
	position: absolute;
	left: 45%;
	bottom: -1.45rem;
	transform: translateX(-45%);
}
.service-benefit-wrap .service-cta a {
	padding: 12px 3rem;
}

/* Trang Dự án */
.projectpage {
	padding-bottom: 15px;
	background: linear-gradient(
		to bottom,
		var(--bg-white) 0,
		var(--main-text-accent) 55%,
		var(--color-border-box) 70%,
		var(--main-text-accent) 90%
	);
}
.project-header, .share-header {
	padding: 2.5rem 0 1rem;
}
.project-tab .nav-pills {
	justify-content: center;
}
.project-tab .nav-link {
	color: var(--main-text-color);
	font-weight: 600;
	text-transform: uppercase;
	padding-left: 20px;
	padding-right: 20px;
	border-radius: 25px;
}
.project-tab .nav-link.active {
	color: var(--main-text-color);
	background-color: var(--main-text-secondary);
}
.project-tab .nav-link:hover:not(.active) {
	background-color: var(--main-text-accent);
}
.article-box {
	gap: 10px;
}
.article-box .entry-image {
	flex: 0 0 160px;
}
.article-box .entry-image img {
	border-radius: 6px;
}
.article-box .entry-content .heading-h3 {
	font-size: 14px;
	line-height: 1.4;
	margin-bottom: 10px;
}
.article-box .entry-content .heading-h3 span {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.article-box .entry-content .article-infomation {
	color: var(--main-text-color);
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	opacity: .7;
}
.article-box .entry-content .article-infomation i {
	color: var(--menu-mb-bg-link);
}
.article-box .entry-content .article-infomation span {
	padding-left: 5px;
}
.post-pagination .post-loadmore {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 12px 48px;
	border-radius: 999px;
	cursor: pointer;
	overflow: hidden;
	isolation: isolate;
	--border: 1.5px;
}
.post-pagination .post-loadmore span {
	position: relative;
	color: var(--main-text-color);
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	z-index: 3;
}
.post-pagination .post-loadmore::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 120%;
	aspect-ratio: 1;
	transform: translate(-50%,-50%);
	background: conic-gradient(
		from -145deg,
		var(--main-text-color),
		var(--main-text-secondary),
		var(--main-text-accent),
		var(--main-text-color)
	);
	animation: none;
}
.post-pagination .post-loadmore::after {
	content: "";
	position: absolute;
	inset: var(--border);
	border-radius: inherit;
	background: #edf7e6;
	z-index: 2;
}
.post-pagination .post-loadmore:hover::before {
    animation: rotateBorder 1.8s linear infinite;
}
@keyframes rotateBorder { to{ transform: translate(-50%,-50%) rotate(360deg); } }
.form-partner-wrap {
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	gap: 2rem;
	padding: 30px;
	background: linear-gradient(45deg, var(--main-text-secondary) 0, var(--bg-white) 80%);
	border: 2px solid var(--main-text-secondary);
	border-radius: 10px;
}
.form-partner-text .show-title {
	color: var(--main-text-color);
	font-size: 20px;
	line-height: 1.4;
	text-transform: uppercase;
	padding-bottom: 15px;
	margin-bottom: 15px;
	position: relative;
}
.form-partner-text .show-title::after {
	width: 100px;
	height: 3px;
	content: "";
	background: rgba(4, 100, 82, 1);
	position: absolute;
	left: 0;
	bottom: 0;
}
.form-partner-text .show-description {
	color: var(--main-text-color);
	font-weight: 500;
	margin-bottom: 0;
}
.form-partner-action {
	flex-shrink: 0;
}
.form-partner-action button {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	background: #F7971E;
	background: -webkit-linear-gradient(to right, #FFD200, #F7971E);
	background: linear-gradient(to right, #FFD200, #F7971E);
	padding: 10px 38px;
	border: none;
	border-radius: 40px;
}
.form-partner-action button:focus {
	color: var(--main-text-color);
}
.form-partner-action button:hover {
	color: #fff;
	box-shadow: 0 6px 25px rgba(var(--main-text-color-rgb), 0.4);
}

/* Trang Chia sẻ */
.sharepage {
	background: linear-gradient( to bottom,
		var(--bg-white) 0,
		rgb(227 249 214 / 30%) 30%,
		var(--bg-white) 60%,
		var(--main-text-accent) 100% );
}
.share-featured-main {
	-ms-grid-columns: (1fr)[2];
	grid-template-columns:repeat(2,1fr);
	grid-gap: 15px;
	margin-bottom: 1.25rem;
}
.article-item {
	align-content: flex-start;
}
.article-item .post-thumb {
	overflow: hidden;
	border-radius: 8px;
}
.article-item .post-thumb img {
	transition: opacity .5s,transform .5s;
}
.article-item .post-meta .post-title {
	font-size: .875rem;
	font-weight: 600;
	line-height: 1.25rem;
}
.article-item .post-meta .post-title span {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.article-item .post-meta .post-description {
	display: none;
}
.article-item.article-feature {
	grid-column: 1 / -1;
}
.article-item.article-feature .post-thumb {
	border-radius: 12px;
}
.article-item.article-feature .post-meta {
	width: 100%;
	left: 0;
	bottom: 0;
	padding: 30px 15px 15px;
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
	border-radius: 12px;
}
.article-item.article-feature .post-meta .post-title {
	color: var(--text-white);
	font-size: 1rem;
	line-height: 1.4;
	margin-bottom: 0;
}
.article-item.article-feature .post-meta .post-title span {
	-webkit-line-clamp: 2;
}
.article-item .post-meta a:hover .post-title, .article-item.article-feature a:hover .post-meta .post-title {
	color: var(--main-text-secondary);
}
.article-item:hover .post-thumb img {
	transform: scale3d(1.1, 1.1, 1);
}
.share-featured-aside .heading-h2, .share-block-author .heading-h2 {
	padding-bottom: 1.05rem;
	margin-bottom: 1.5rem;
	border-bottom: solid 2.5px var(--main-text-accent);
}
.featured-aside-list .article-item {
	gap: 10px;
}
.featured-aside-list .article-item > a {
	flex: 0 0 160px;
}
.featured-aside-list .article-item .post-meta .post-title {
	margin-bottom: 8px;
}
.featured-aside-list .article-item .post-infomation {
	--tw-text-opacity: 1;
	font-size: 12px;
	font-weight: 500;
	color: rgb(160 160 160/var(--tw-text-opacity,1));
}
.featured-aside-list .article-item .post-infomation i {
	color: var(--menu-mb-bg-link);
}
.share-post-top {
	padding-bottom: .75rem;
	margin-bottom: 1.5rem;
}
.share-post-top:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(to right, var(--main-text-secondary) 30%, var(--bg-white) 90%);
}
.share-post-top .heading-h2 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 0;
}
.share-post-top .link-view-more {
	color: var(--main-text-color);
	font-size: 12px;
	font-weight: 500;
}
.share-post-top .link-view-more span {
	padding-right: 8px;
}
.share-post-top .link-view-more:hover i {
	animation: slideRightInfinite 0.8s ease-in-out infinite;
}
@keyframes slideRightInfinite {
	0% {transform: translateX(0);opacity: 1}
	40% {opacity: 1}
	100% {transform: translateX(10px);opacity: 0}
}
.style-share-1 .share-post-body {
	grid-template-columns: 1fr;
}
.style-share-1 .share-post-body .article-item .post-meta .post-title {
	font-size: 1rem;
	line-height: 1.4;
}
.style-share-1 .share-post-body .article-item:first-child {
	grid-row: span 4;
}
.style-share-1 .share-post-body .article-item:first-child .post-meta .post-title {
	margin-bottom: .5rem;
}
.style-share-1 .share-post-body .article-item:first-child .post-meta .post-title span {
	-webkit-line-clamp: 2;
}
.style-share-1 .share-post-body .article-item:first-child .post-meta .post-description {
	display: block;
	--tw-text-opacity: 1;
	color: rgb(150 150 150/var(--tw-text-opacity,1));
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.style-share-1 .share-post-body .article-item + .article-item .post-meta .post-title {
	font-size: .875rem;
}
.style-share-1 .share-post-body .article-item + .article-item {
	display: flex;
	gap: 15px;
}
.style-share-1 .share-post-body .article-item + .article-item > a {
	flex: 0 0 160px;
}
.style-share-2 .share-post-body .article-item {
	display: flex;
	flex-direction: row;
	gap: 15px;
}
.style-share-2 .share-post-body .article-item > a {
	flex: 0 0 160px;
}
.share-block-primary {
	padding: 35px 20px 15px;
	margin-top: 2rem;
	margin-bottom: 2rem;
	border: solid 1px var(--main-text-color);
	border-radius: 8px;
}
.share-block-primary .heading-h2 {
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	background-color: var(--bg-white);
}
.block-primary-list .post-icon span {
	--tw-text-opacity: 1;
	color: rgb(189 29 44/var(--tw-text-opacity,1));
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 2.5rem;
}
.block-primary-list .article-item .post-meta .post-title {
	font-size: 1rem;
	line-height: 1.5rem;
	margin-bottom: 8px;
}
.block-primary-list .article-item .post-meta .post-infomation {
	--tw-text-opacity: 1;
	color: rgb(150 150 150/var(--tw-text-opacity,1));
	font-size: 12px;
}
.block-primary-list .article-item .post-infomation i {
	color: var(--menu-mb-bg-link);
}
.share-block-author {
	margin-bottom: 2rem;
}
.block-author-list .author-item {}
.block-author-list .author-item .author-icon {
	width: 60px;
	height: 60px;
	overflow: hidden;
	border-radius: 50%;
}
.block-author-list .author-item .author-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.block-author-list .author-item .author-text strong {
	padding-bottom: 6px;
}
.archive-post-share {
	margin-top: 2.5rem;
	background: linear-gradient(to top, var(--main-text-accent) 0, var(--bg-white) 60%);
}
.archive-post-share-top {
	aspect-ratio: 960 / 365;
	background: url("../images/post/bg-category-share.jpg") center/cover no-repeat;
	margin-bottom: 1.25rem;
	overflow: hidden;
	border-radius: 8px;
}
.archive-post-share-top::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(4, 100, 82, 0.7);
	z-index: 1;
}
.archive-post-share-top .post-share-top_text {
	text-align: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	white-space: nowrap;
	z-index: 2;
}
.archive-post-share-top .post-share-top_text > * {
	color: var(--text-white);
}
.archive-post-share-top .post-share-top_text .heading-h1 {
	margin-bottom: 15px;
}


.sharepage-bg-1 {}
.sharepage-bg-2 {
	background: linear-gradient(to top, var(--main-text-accent) 100%, var(--bg-white) 60%);
}
.share-group, .share-group-block {
	padding: 0 0 40px;
}
.heading-with-line {
	display: flex;
	align-items: center;
	width: 80%;
	font-size: 18px;
	line-height: 1.4;
	font-weight: 600;
	text-transform: uppercase;
}
.heading-with-line::after {
	content: "";
	flex: 1;
	height: 3px;
	margin-left: 20px;
	background: linear-gradient(to right, var(--main-text-secondary) 30%, var(--bg-white) 90%);
}
.share-group-block:last-child {
	padding: 0;
}
.share-group-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 15px;
	margin: 0 auto;
	padding: 8px 0;
}
.share-article {
	padding: 0 0 38px;
}
.share-article .share-article-title::after {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	content: "";
	width: 100%;
	height: 2.5px;
	background: linear-gradient(to left, var(--main-text-secondary) 30%, var(--bg-white) 90%);
	z-index: 5;
}
.share-article .share-article-title .heading-h2 {
	font-weight: 600;
	text-transform: uppercase;
	z-index: 10;
}
.share-article .share-article-title .heading-h2 .text-inner {
	padding-top: .6rem;
	padding-bottom: .6rem;
	background-color: var(--bg-white);
	border-radius: 50px;
}
.share-article-wrap .project-box .project-box-title {
	padding-left: 0;
	padding-right: 0;
	margin-bottom: 25px;
}
.share-article-wrap .project-box .project-box-title::after {
	top: 5px;
	right: 0;
	transform: translateY(0);
}
.share-article-wrap .project-box .project-box-title span {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.article-block-wrap {
	gap: 10px;
}
.article-block-wrap .article-image {
	flex: 0 0 160px;
	padding-bottom: 15px;
}
.article-block-wrap .article-image a {
	position: relative;
	aspect-ratio: 600 / 315;
	overflow: hidden;
	border-radius: 6px;
}
.article-block-wrap .article-image a:before, .article-block-wrap .article-image a:after {
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	content: "";
	opacity: 0;
	transition: opacity .25s,transform .25s;
	z-index: 1;
}
.article-block-wrap .article-image a:before {
	border-top: 1px solid yellow;
	border-bottom: 1px solid yellow;
	transform: scaleX(0);
}
.article-block-wrap .article-image a:after {
	border-right: 1px solid yellow;
	border-left: 1px solid yellow;
	transform: scaleY(0);
}
.article-block-wrap .article-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 1s,transform 1s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.article-block-wrap .article-content {}
.article-block-wrap .article-content .article-infomation {
	color: var(--main-text-color);
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	padding-bottom: 6px;
}
.article-block-wrap .article-content .article-infomation i {
	color: var(--menu-mb-bg-link);
}
.article-block-wrap .article-content .article-infomation span {
	padding-left: 8px;
}
.article-block-wrap .article-content .article-title {}
.article-block-wrap .article-content .heading-h3 {
	font-size: 14px;
	line-height: 1.4;
	margin-bottom: 10px;
}
.article-block-wrap .article-content .heading-h3 span {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.article-block-wrap .article-content .article-description {
	display: none;
}
.article-block-wrap:hover .article-image a:before, .article-block-wrap:hover .article-image a:after {
	opacity: .7;
	transform: scale(1);
}
.article-block-wrap:hover .article-image img {
	transform: scale3d(1.1, 1.1, 1);
}
.article-block-wrap .article-content .heading-h3:hover {
	color: var(--main-text-secondary);
}

/* Trang Archive */
.archive-post .archive-heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px 10px 15px;
	margin-top: 2.5rem;
	margin-bottom: 20px;
	background-color: rgba(4, 100, 82, .085);
	border-radius: 8px;
}
.archive-post .archive-heading .heading-h1 {
	font-size: 24px;
	line-height: 1.4;
	padding-bottom: 8px;
}
.archive-post .archive-heading .breadcrumb {
	padding-left: 10px;
	padding-right: 10px;
}
.pagination-inner .pagination-nav {
	text-align: center;
	padding: 20px 0;
}
.pagination-inner .pagination-nav .page-numbers {
	display: inline-block;
	color: var(--text-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-secondary);
	box-shadow: 0 4px 20px rgba(8, 81, 86, 0.4), 0 0 30px rgba(255, 255, 255, 0.3);
}
.pagination-inner .pagination-nav a:hover {
	background-color: var(--main-text-accent);
}

.newsletter-inside {
	padding: 50px 0;
	background: linear-gradient(to top, var(--main-text-accent) 0, var(--bg-white) 60%);
}
.newsletter-wrap {
	flex-direction: column;
	align-items: stretch;
}
.newsletter-wrap .newsletter-image, .newsletter-wrap .newsletter-content {
	flex: 1;
}
.newsletter-image figure {
	text-align: center;
}
.newsletter-image img {
	max-width: 100%;
	width: 40%;
	height: auto;
}
.newsletter-content .newsletter-title {
	padding-bottom: 15px;
}
.newsletter-content .newsletter-title strong {
	font-size: 18px;
	color: var(--main-text-color);
}
.newsletter-content .newsletter-description {
	color: var(--main-text-color);
}
.newsletter-form form {}
.newsletter-form .form--input {}
.newsletter-form .form--input .input--icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 15px;
	margin: auto;
	width: 24px;
	height: auto;
	z-index: 1;
}
.newsletter-form .form--input .input--mail input {
	color: var(--main-text-color);
	font-size: 16px;
	width: 100%;
	height: 48px;
	padding: 0 66px 0 54px;
	border: 1px solid var(--main-text-color);
	border-bottom: 2px solid var(--main-text-color);
	border-radius: 8px;
	outline: none;
}
.newsletter-form .form--input .input--submit {
	display: flex;
	display: -webkit-box;
	display: -ms-flexbox;
	align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 72px;
	background: transparent;
	border: 0;
	border-radius: 0;
	outline: none;
	transition: all 0.25s ease-out 0.25s;
	-webkit-transition: all 0.25s ease-out 0.25s;
}
.newsletter-form .form--input .input--line {
	position: absolute;
	left: 4px;
	bottom: 0;
	width: 0;
	height: 2px;
	background: #F15A29;
	transition: all 0.25s ease-out 0.25s;
	-webkit-transition: all 0.25s ease-out 0.25s;
}
.newsletter-form .form--input:focus-within .input--line {
	width: calc(100% - 8px);
}
.newsletter-form .form--response span {
	font-size: 12px;
	font-weight: 500;
	line-height: 16px;
}
.newsletter-form .form--response.show {
	display: block;
	position: absolute;
	left: 5px;
	right: 3px;
	bottom: -34px;
	width: calc(100% - 8px);
	height: 32px;
}
.newsletter-form .form--response.show span {
	display: block;
}
.newsletter-form .form--response.alert-text span {
	color: #F15A29;
}

/* Trang tìm kiếm */
.search-page .archive-heading {
	margin-top: 0;
}
.search-page .archive-heading .heading-h1 {
	font-size: 20px;
}
.search-page .box-result .result--empty {
	padding: 80px 0;
}
.search-page .box-result .result--empty .empty--icon {
	display: flex;
	display: -webkit-box;
	display: -ms-flexbox;
	align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: auto;
	background-color: #f1f1f1;
}
.search-page .box-result .result--empty .empty--text {
	margin-top: 15px;
}
.search-page .box-result .result--empty .empty--text strong {
	font-size: 18px;
	display: block;
	padding-bottom: 10px;
}
.site-post-gradient {
	padding: 30px 0;
	background: linear-gradient(to top, var(--main-text-accent) 0, var(--bg-white) 60%);
}

/* Phần modal chân trang */
.modal-form-advice .modal-content {
	background: linear-gradient(45deg, var(--main-text-secondary) 0, var(--bg-white) 80%);
	border: 2px solid var(--main-text-secondary);
}
.modal-form-advice .modal-body {
	padding: 20px 20px 30px;
}
.modal-form-advice .form-advice-top .heading-h3 {
	font-weight: 600;
	line-height: 1.4;
	text-transform: uppercase;
}
.modal-form-advice .form-advice-top .btn-close {
	position: absolute;
	top: -10px;
	right: -10px;
	font-size: 1.05rem;
	width: 24px;
	height: 24px;
	background-color: rgba(20, 20, 20, .4);
	border-radius: 999px;
}
.modal-form-advice .register-box-form .form-register .btn-submit {
	animation: btn-zoom 2s infinite linear;
	box-shadow: 0 0 0 0 #ed991c;
}
@keyframes btn-zoom {
	70% { box-shadow: 0 0 0 15px transparent }
	100% { box-shadow: 0 0 0 0 transparent }
}

/*--------------------------------------------------------------
 * Menu Mobile
 -------------------------------------------------------------*/
.main-menu__toggler {
	cursor: pointer;
	transition: 500ms;
}
.main-menu__toggler i {
	color: var(--main-text-color);
	font-size: 24px;
	vertical-align: middle;
}
.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(--menu-mb-bg-dark);
	opacity: 0.8;
}
.mobile-nav__wrapper .mobile-nav__content {
	width: clamp(300px, 55.102vw, 450px);
	background: var(--main-text-color);
	background: -webkit-linear-gradient(to right, #046452, #71B280);
	background: var(--menu-mb-bg-gradient);
	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(--menu-mb-color-close);
	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(150px, 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-text-secondary);
	box-shadow: 0 0 0 0.15rem rgba(227, 237, 46, 0.35);
}
.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 .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(--text-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-text-secondary);
	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(--text-white);
	background-color: var(--menu-mb-color-button);
	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(--text-white);
}
.mobile-nav__wrapper .mobile-nav__content .menu li a.expanded {
	color: var(--main-text-secondary);
}
.mobile-nav__wrapper .mobile-nav__content .menu li i.expanded {
	color: var(--menu-mb-color-button);
	background-color: var(--bg-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-secondary);
}
.mobile-nav__contact {
	margin-top: 3rem;
	margin-bottom: 20px;
}
.mobile-nav__contact li {
	color: var(--text-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: var(--menu-mb-bg-link);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 14px;
	margin-right: 10px;
	color: var(--text-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(--text-white);
	transition: 500ms;
}
.mobile-nav__social a + a {
	margin-left: 16px;
}
.mobile-nav__social a:hover, .mobile-nav__contact li a:hover {
	color: var(--menu-mb-bg-link);
}

/*--------------------------------------------------------------
 * Responsive to responsive file css
 -------------------------------------------------------------*/