/*!
Theme Name: bigsoft
Theme URI: https://bigsoft.com.vn/
Author: Bigsoft
Author URI: https://bigsoft.com.vn/
Description: Đơn vị thiết kế website chuyên nghiệp
*/
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&family=Unbounded:wght@200..900&display=swap');

:root {
	/* Palette */
	--navy: #0a0e1a;
	--navy-mid: #111827;
	--navy-soft: #1a2235;
	--indigo: #4f6ef7;
	--indigo-lt: #7b95ff;
	--indigo-dk: #3451d1;
	--teal: #06c4aa;
	--teal-lt: #3dffd8;
	--amber: #f5a623;
	--rose: #f75469;
	--white: #ffffff;
	--off-white: #f4f6fc;
	--gray-100: #eef1f8;
	--gray-200: #dde3f0;
	--gray-400: #8896b3;
	--gray-600: #4d5e80;


	/* Typography */
	--font-display: 'Google Sans Flex', sans-serif;
	--font-body: 'Google Sans Flex', sans-serif;
	--font-custom-1: 'Google Sans Flex', sans-serif;

	/* Spacing */
	--section-y: 100px;
	--container: 1200px;
	--radius: 16px;
	--radius-sm: 8px;
	--radius-lg: 24px;

	/* Shadows */
	--shadow-card: 0 4px 32px rgba(10, 14, 26, .12), 0 1px 4px rgba(10, 14, 26, .08);
	--shadow-float: 0 20px 60px rgba(79, 110, 247, .18), 0 4px 16px rgba(10, 14, 26, .12);
	--shadow-glow: 0 0 40px rgba(79, 110, 247, .35);
}

/* ── Reset ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
}

body {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--navy);
	background: var(--white);
	overflow-x: hidden;
}

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

a {
	text-decoration: none;
	color: inherit;
}

button {
	cursor: pointer;
	border: none;
	background: none;
	font-family: inherit;
}

/* ── Container ──────────────────────────────────────────────── */
.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

.section {
	padding: var(--section-y) 0;
}

/* ── Typography ─────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-display);
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: -.02em;
}

.display-1 {
	font-size: clamp(3rem, 6vw, 5.5rem);
	font-weight: 800;
	letter-spacing: -.04em;
}

.display-2 {
	font-size: clamp(2.2rem, 4vw, 3.5rem);
	font-weight: 800;
	letter-spacing: -.03em;
}

.h2 {
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	font-weight: 700;
}

.h3 {
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	font-weight: 600;
}

.lead-item {
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	line-height: 1.7;
	color: var(--gray-600);
}

.eyebrow {
	font-family: var(--font-display);
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--indigo);
	margin-bottom: 10px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 100px;
	font-family: var(--font-display);
	font-size: .9rem;
	font-weight: 600;
	transition: all .25s ease;
	white-space: nowrap;
}

.btn-primary {
	background: var(--indigo);
	color: var(--white);
	box-shadow: 0 4px 20px rgba(79, 110, 247, .4);
}

.btn-primary:hover {
	background: var(--indigo-dk);
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(79, 110, 247, .5);
}

.btn-secondary {
	background: var(--white);
	color: var(--navy);
	border: 1.5px solid var(--gray-200);
}

.btn-secondary:hover {
	border-color: var(--indigo);
	color: var(--indigo);
	transform: translateY(-2px);
}

.btn-outline-white-item {
	background: transparent;
	color: var(--white);
	border: 1.5px solid rgba(255, 255, 255, .4);
}

.btn-outline-white-item:hover {
	background: rgba(255, 255, 255, .1);
	border-color: rgba(255, 255, 255, .7);
}

.btn-lg-item {
	padding: 16px 36px;
	font-size: 1rem;
}

.btn-sm {
	padding: 10px 20px;
	font-size: .82rem;
}

.btn-outline-white-item:hover {
	color: #fff;
	transform: translateY(-2px);
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 0;
	transition: background .3s, box-shadow .3s;
}

.navbar.scrolled {
	background: rgba(255, 255, 255, .92);
	backdrop-filter: blur(20px);
	box-shadow: 0 1px 0 var(--gray-200);
}

.navbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}

.navbar-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--navy);
}

.navbar-logo .logo-icon {
	width: 36px;
	height: 36px;
	background: var(--indigo);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.1rem;
}

.navbar-nav {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
}

.navbar-nav a {
	padding: 8px 14px;
	border-radius: 8px;
	font-size: .9rem;
	font-weight: 500;
	color: var(--gray-600);
	transition: all .2s;
}

.navbar-nav a:hover,
.navbar-nav a.active {
	color: var(--indigo);
	background: rgba(79, 110, 247, .07);
}

.navbar-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.navbar-hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 6px;
}

.navbar-hamburger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--navy);
	border-radius: 2px;
	transition: all .3s;
}

/* ── Cards ──────────────────────────────────────────────────── */
.card {
	background: var(--white);
	border: 1px solid var(--gray-100);
	border-radius: var(--radius);
	padding: 32px;
	box-shadow: var(--shadow-card);
	transition: transform .25s, box-shadow .25s;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-float);
}

/* ── Channel badges ─────────────────────────────────────────── */
.badge-channel {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 12px;
	border-radius: 100px;
	font-size: .78rem;
	font-weight: 600;
}

.badge-fb {
	background: #e8eeff;
	color: #1877f2;
}

.badge-zalo {
	background: #e6f4ff;
	color: #0068ff;
}

.badge-ig {
	background: #fde8f8;
	color: #e1306c;
}

.badge-tt {
	background: #ffe8ed;
	color: #fe2c55;
}

.badge-wa {
	background: #e6f9f0;
	color: #25d366;
}

/* ── Section decorations ────────────────────────────────────── */
.section-bg-soft {
	background: var(--off-white);
}

.section-bg-dark {
	background: var(--navy);
	color: var(--white);
}

.section-header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 64px;
}

.section-header .lead {
	margin-top: 16px;
}

/* ── Gradient text ──────────────────────────────────────────── */
.gradient-text {
	background: linear-gradient(135deg, var(--indigo) 0%, var(--teal) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ── Tag ────────────────────────────────────────────────────── */
.tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	background: rgba(79, 110, 247, .08);
	border: 1px solid rgba(79, 110, 247, .2);
	border-radius: 100px;
	font-size: .8rem;
	font-weight: 600;
	color: var(--indigo);
	margin-bottom: 20px;
}

/* ── Divider ────────────────────────────────────────────────── */
.divider-dot {
	display: inline-block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--gray-400);
	vertical-align: middle;
	margin: 0 8px;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #343a40;
	text-align: left;
	background-color: #fff;
	overflow-x: hidden;
}

#page {
	overflow: hidden;
}

a {
	text-decoration: none !important;
	color: #000;
}

a:hover {
	text-decoration: none !important;
	color: #476361;
}

p,
li {
	font-family: 'Google Sans Flex', sans-serif;
	font-weight: 400;
}

ul li {
	list-style: none;
}

img {
	width: 100%;
	height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-display);
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: -.02em;
}

h1 {
	font-size: 25px;
	font-weight: 600;
	color: #000;
}

h2 {
	font-size: 22px;
	font-weight: 600;
}

h3 {
	font-size: 20px;
	font-weight: 600;
}

h4 {
	font-size: 18px;
	font-weight: 600;
}

h5 {
	font-size: 15px;
	font-weight: 600;
}

tr {
	border-top: 1px solid #ddd;
	border-right: 1px solid #ddd;
}

td {
	border-left: 1px solid #ddd;
	padding: 10px;
}

tbody {
	border-bottom: 1px solid #ddd;
}

tbody tr:nth-of-type(odd) {
	background-color: #d6e8fb;
}

tbody tr:first-child td {
	background: #629bd5;
	color: #fff;
}

table {
	overflow: auto;
}

.h2 {
	font-size: 2.7rem !important;
	font-weight: 700 !important;
}

/**/

#searchInput {
	display: none;
	padding: 8px;
	border: 1px solid #ccc;
	position: absolute;
	width: 80%;
	right: 0;
	top: 25%;
	border-radius: 20px;
}

.close-icon {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
}

.search-icon {
	left: 10px;
}

.close-icon {
	display: none;
	right: 10px;
	z-index: 1;
}

/*header*/
.header-desktop ul#menu-desktop {
	margin-bottom: 0;
}

.header-desktop #menu-desktop>li {
	float: left;
	/* line-height: 20px; */
	/* padding-bottom: 0px;
	padding-top: 0px; */
	position: relative;
}

#menu-desktop>li>.sub-menu {
	padding: 0px;
	text-transform: uppercase;
	display: none;
	margin-left: 85px;
}

.header-desktop #menu-desktop>li:hover>.sub-menu {
	display: block;
	position: absolute;
	width: 225px;
	z-index: 2;
	left: 0px;
	background: #f1eeea;
	border-radius: 5px;
	margin: 0px;
	background: #ffffff;
	border-radius: 5px;
	border: 1px solid #ebe6e6;
	height: auto;
	top: 45px;
	padding: 0 !important;
}

#menu-desktop>li>.sub-menu>li>ul>li {
	line-height: 25px;
}

#menu-desktop>li>.sub-menu>li>.sub-menu {
	padding-left: 5px;
	margin-top: 10px;
	font-size: 15px;
}

#menu-desktop>li>.sub-menu>li {
	background: #4a85c6;
	border-bottom: 1px solid #fff;
	text-transform: math-auto;
	color: #fff;
	padding: 5px;
	display: block;
}

#menu-desktop>li>.sub-menu>.fa-angles-right:before {
	font-size: 10px;
}

#menu-desktop>li>.sub-menu>li:hover {
	background: #0255b1;
}

#menu-desktop>li>.sub-menu>li:not(:last-child) {
	padding-right: 35px;
}

.header-desktop #menu-desktop>li>a {
	padding: 10px 15px;
	font-weight: 500;
	font-size: 14px;
	font-family: var(--font-body);
}

.header-desktop .navbar {
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 15px;
	position: relative;
	padding: 0;
}

.header-desktop .header-main {
	line-height: 75px;
	background: #fff !important;
	box-shadow: 1px 1px 5px #5e5e5e1a;
}

.header-desktop .site-branding img {
	height: auto;
}

.header-desktop #menu-desktop>li>.sub-menu>li a {
	font-weight: 600;
	padding: 5px;
	font-size: 14px;
	color: #fff;
	font-family: var(--font-display);
}

#menu-desktop>li>ul>li>.sub-menu>li>a {
	border-bottom: 1px solid #eee;
	display: block;
}

.header-desktop #menu-desktop>.menu-item-has-children:before {
	font-family: 'FontAwesome';
	content: "\f078";
	float: right;
	font-size: 9px;
	transform: translateX(-7px);
}

.header-desktop #menu-desktop>li>.sub-menu>li:before {
	font-family: 'FontAwesome';
	content: "\f101";
	font-size: 10px;
}

#menu-desktop li {
	float: left;
	padding: 30px 10px;
}

#menu-desktop li a {
	padding: 25px 20px;
	color: var(--gray-600);
}

.site-button-header {
	display: flex;
	justify-content: end;
}

.btn-sm-item {
	padding: 10px 20px;
	font-size: .82rem;
}

.btn-primary-item {
	background: var(--indigo);
	color: var(--white);
	box-shadow: 0 4px 20px rgba(79, 110, 247, .4);
}

.btn-secondary-item {
	background: var(--white);
	color: var(--navy);
	border: 1.5px solid var(--gray-200);
}

.btn-item {
	gap: 8px;
	padding: 14px 28px;
	border-radius: 100px;
	font-family: var(--font-custom-1);
	font-size: .9rem;
	font-weight: 600;
	transition: all .25s ease;
	white-space: nowrap;
}

.btn-secondary-item:hover {
	border-color: var(--indigo);
	color: var(--indigo);
	transform: translateY(-2px);
}

.btn-primary-item:hover {
	background: var(--indigo-dk);
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(79, 110, 247, .5);
}

.btn-primary-item:hover {
	background: var(--indigo-dk);
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(79, 110, 247, .5);
	color: var(--white);
}

.site-button-header .button-login {
	margin-right: 10px;
}

.header-desktop .current-menu-item a,
.menu-desktop .menu-item a:hover {
	color: var(--indigo) !important;
	background: rgba(79, 110, 247, .07);
}

.menu-desktop .menu-item a {
	padding: 8px 14px;
	border-radius: 8px;
	font-size: .9rem;
	font-weight: 500;
	color: var(--gray-600);
	transition: all .2s;
}

/*Home Page*/

/*Footer*/
.footer {
	background: var(--navy);
	color: rgba(255, 255, 255, .7);
	padding: 72px 0 40px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand .logo {
	color: white;
	margin-bottom: 16px;
}

.footer-brand p {
	font-size: .9rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, .5);
	max-width: 280px;
}

.footer-socials {
	display: flex;
	gap: 10px;
	margin-top: 24px;
}

.footer-socials a {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: rgba(255, 255, 255, .07);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .85rem;
	transition: all .2s;
	color: inherit;
}

.footer-socials a:hover {
	background: var(--indigo);
	color: white;
}

.footer-col .widget-title-heading {
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .1em;
	color: rgb(182 183 187);
	margin-bottom: 20px;
	text-transform: uppercase;
}

.footer-col ul {
	list-style: none;
	padding-left: 0;
}

.footer-col ul li {
	margin-bottom: 10px;
}

.footer-col ul li a {
	font-size: .9rem;
	color: rgba(255, 255, 255, .6);
	transition: color .2s;
}

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

.footer-bottom {
	padding-top: 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: .82rem;
	color: rgba(255, 255, 255, .35);
	flex-wrap: wrap;
	gap: 12px;
}

.footer .footer-meta .widget_media_image {
	margin-bottom: 15px;
}

.footer .footer-meta .widget_media_image img {
	width: 170px;
}

/*Animation*/
@keyframes pulse {
	0% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}

	50% {
		-webkit-transform: scale(1.1);
		-ms-transform: scale(1.1);
		transform: scale(1.1);
	}

	100% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes zoom-in-zoom-out {
	0% {
		transform: scale(1, 1);
	}

	50% {
		transform: scale(1.1, 1.1);
	}

	100% {
		transform: scale(1, 1);
	}
}

/*BreadCrumb*/
.breadcrumb a,
.customBreadcrumb {
	background: #07173c;
	color: #fff !important;
	float: left;
	line-height: 16px;
	margin-right: 10px;
	padding: 7px 10px 7px 20px;
	position: relative;
	-webkit-text-decoration: none;
	text-decoration: none;
}

.breadcrumb a:before,
.breadcrumb a:after,
.breadcrumb .customBreadcrumb:before,
.breadcrumb .customBreadcrumb:after {
	content: "";
	border-bottom: 15px solid transparent;
	border-top: 15px solid transparent;
	bottom: 0;
	display: block;
	height: 0;
	margin-top: -35px;
	position: absolute;
	width: 0;
	z-index: 2;
}

.breadcrumb a:before,
.breadcrumb .customBreadcrumb:before {
	border-left: 10px solid #ffffff;
	left: 0;
}

.breadcrumb a:after,
.breadcrumb .customBreadcrumb:after {
	border-left: 10px solid #07173c;
	left: 100%;
}

.breadcrumb a:nth-child(2):after {
	border-left-color: #0b2562;
}

.breadcrumb a:nth-child(2) {
	background: #0b2562;
}

.breadcrumb .customBreadcrumb:nth-child(3) {
	background: #284fa7;
}

.breadcrumb .customBreadcrumb:nth-child(3):after {
	border-left-color: #284fa7;
}

.breadcrumb {
	margin-top: 25px;
	font-size: 14px;
}

#postSingleContent .post-number {
	font-size: 35px;
	color: #bd2329;
}

/*End*/
#back-to-top {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #284fa7;
	color: #fff;
	padding: 10px 15px;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	font-size: 16px;
}

.header-mobile {
	display: none;
}

/*Style Mobile*/
/*Style Contact*/
.bottom-contact-mobile {
	display: none;
}

#button-contact-vr {
	position: fixed;
	bottom: 0;
	z-index: 99999;
	right: 0;
	transform: scale(0.8);
	bottom: 15%;
}

#button-contact-vr .button-contact {
	position: relative;
	margin-top: -5px;
}

#gom-all-in-one #contact-vr,
#viber-vr,
#zalo-vr,
#zalo-vr,
#zalo-vr,
#whatsapp-vr {
	transition: 1.6s all;
	-moz-transition: 1.6s all;
	-webkit-transition: 1.6s all;
}

#gom-all-in-one #phone-vr {
	transition: 0.7s all;
	-moz-transition: 0.7s all;
	-webkit-transition: 0.7s all;
}

.phone-bar a,
#phone-vr .phone-vr-circle-fill,
#phone-vr .phone-vr-img-circle,
#phone-vr .phone-bar a {
	background-color: #dd3333;
}

#button-contact-vr .button-contact .phone-vr {
	position: relative;
	visibility: visible;
	background-color: transparent;
	width: 90px;
	height: 90px;
	cursor: pointer;
	z-index: 11;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	transition: visibility .5s;
	left: 0;
	bottom: 0;
	display: block;
}

.phone-vr-circle-fill {
	width: 65px;
	height: 65px;
	top: 12px;
	left: 12px;
	position: absolute;
	box-shadow: 0 0 0 0 #c31d1d;
	background-color: rgba(230, 8, 8, 0.7);
	border-radius: 50%;
	border: 2px solid transparent;
	-webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
	animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
	transition: all .5s;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-animuiion: zoom 1.3s infinite;
	animation: zoom 1.3s infinite;
}

.phone-vr-img-circle {
	background-color: #e60808;
	width: 40px;
	height: 40px;
	line-height: 40px;
	top: 25px;
	left: 25px;
	position: absolute;
	border-radius: 50%;
	overflow: hidden;
	display: flex;
	justify-content: center;
	-webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
	animation: phone-vr-circle-fill 1s infinite ease-in-out;
}

#contact-vr .phone-vr-circle-fill {
	box-shadow: 0 0 0 0 #2196F3;
	background-color: rgba(33, 150, 243, 0.7);
	opacity: 0.7;
}

#contact-vr .phone-vr-img-circle {
	background-color: #2196F3;
}

.phone-vr-img-circle a {
	display: block;
	line-height: 37px;
}

.phone-vr-img-circle img {
	max-height: 25px;
	max-width: 27px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

div#whatsapp-vr .phone-vr .phone-vr-circle-fill {
	box-shadow: 0 0 0 0 #1fd744;
	background-color: rgb(35 217 72 / 70%);
}

div#whatsapp-vr .phone-vr .phone-vr-img-circle {
	background: #1cd741;
}

#zalo-vr .phone-vr-circle-fill {
	box-shadow: 0 0 0 0 #2196F3;
	background-color: rgba(33, 150, 243, 0.7);
}

#zalo-vr .phone-vr-img-circle {
	background-color: #2196F3;
}

@-webkit-keyframes phone-vr-circle-fill {
	0% {
		-webkit-transform: rotate(0) scale(1) skew(1deg);
	}

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

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

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

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

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

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

@-webkit-keyframes zoom {
	0% {
		transform: scale(.9)
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 15px transparent
	}

	100% {
		transform: scale(.9);
		box-shadow: 0 0 0 0 transparent
	}
}

@keyframes zoom {
	0% {
		transform: scale(.9)
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 15px transparent
	}

	100% {
		transform: scale(.9);
		box-shadow: 0 0 0 0 transparent
	}
}

/*Style Mobile*/

nav {
	width: 100%;
	background-color: #ffffff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 3;
}

#hamburger {
	margin: 2%;
}

#hamburger {
	opacity: 0.5;
	cursor: pointer;
	transition: opacity 0.25s linear;
	width: clamp(1.5rem, 2vw + 1.1rem, 6rem);
	height: clamp(2rem, 1.4vw + 1.7rem, 5rem);
	display: flex;
	align-items: center;
}

#hamburger:hover {
	opacity: 1;
}

#hamburger div,
#hamburger div:after,
#hamburger div:before {
	background-color: #000;
	border-radius: 10px;
	width: clamp(1.5rem, 2vw + 1.1rem, 6rem);
	height: clamp(0.2rem, 0.3vw + 0.1rem, 0.8rem);
	transition: all 0.15s linear;
}

#hamburger div:before,
#hamburger div:after {
	content: "";
	position: absolute;
}

#hamburger div:before {
	transform: translateY(-200%);
}

#hamburger div:after {
	transform: translateY(200%);
}

#hamburger.open div {
	background: transparent;
}

#hamburger.open div:before {
	transform: rotate(45deg);
}

#hamburger.open div:after {
	transform: rotate(-45deg);
}

#hamburger.open div:after,
#hamburger.open div:before {
	background-color: #fff;
	border-radius: 10px;
	width: clamp(1.5rem, 2vw + 1.1rem, 6rem);
	height: clamp(0.2rem, 0.3vw + 0.1rem, 0.8rem);
	transition: all 0.15s linear;
}

#hamburger.open {
	z-index: 3;
	position: fixed;
	right: 3px;
	top: 0;
}

#overlay {
	position: fixed;
	width: 100%;
	height: 100vh;
	background-color: #fff !important;
	z-index: 1;
	transform: translateY(-300%);
	transition: all 0.5s ease-in-out;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#overlay.menu {
	transform: translateY(0%);
	top: 0;
	min-height: auto;
}

#overlay a {
	text-decoration: none;
	color: var(--gray-600);
	font-size: 18px;
	margin: 0%;
	transition: opacity 0.2s linear;
	font-weight: 600;
	text-transform: uppercase;
}

#overlay a:hover {
	opacity: 1;
}

#overlay .menu-menu-main-container {
	width: 100%;
}

#menu-mobile .icon-dropdown:before {
	content: '\f054';
	font-family: 'FontAwesome';
	padding-right: 15px;
	float: right;
}

nav.navigation.post-navigation {
	background: #fff;
	margin-left: -13px;
}

/*Page*/
.site-main-page ul li {
	list-style: disc;
}

.site-main-page .header-page {
	display: none;
}

.page-top {
	padding-top: 2rem;
}

/*end footer*/

@media (min-width: 1920px) {
	.container {
		max-width: var(--container);
	}
}

@media (min-width: 1400px) {
	.container {
		max-width: var(--container) !important;
	}
}

@media (max-width: 768px) {

	/*header-mobile*/
	.header-desktop {
		display: none;
	}

	ul#menu-mobile>li>ul.sub-menu {
		display: none;
	}

	.header-mobile img.custom-logo {
		margin: 0px !important;
		width: 140px !important;
	}

	.list-icon-menu ul>li {
		float: left;
		line-height: 25px;
		padding: 0px 10px;
	}

	.mobile-menu #overlay ul.sub-menu>li>a {
		font-size: 16px !important;
		font-weight: 500;
	}

	.mobile-menu #overlay #menu-mobile>li ul>li ul.sub-menu {
		padding-left: 20px;
		padding-top: 0px
	}

	ul#menu-mobile {
		font-family: "roboto" !important;
	}

	.mobile-menu .list-icon-menu li.button-mobile {
		margin-top: 0px !important;
	}

	#overlay #menu-mobile li {
		padding-bottom: 10px;
		font-weight: 400;
	}

	.mobile-menu #overlay #menu-mobile>li ul>li ul>li {
		padding-bottom: 0px;
		line-height: 20px;
	}

	#overlay {
		align-items: flex-start !important;
		color: #000;
		font-weight: 600;
		padding: 15px;
	}

	.header-mobile {
		display: block;
		background: #d1c1ad !important;
		border-bottom: 1px solid #F0EFF4 !important;
		box-shadow: 0 0 20px -10px rgb(0 0 0 / 80%) !important;
	}

	.header-mobile img.custom-logo {
		margin: 0px !important;
		width: 140px !important;
	}

	.navbar-dark .navbar-toggler {
		color: rgb(98 22 22 / 55%) !important;
		border-color: rgb(48 0 0 / 10%) !important;
	}

	div#collapsibleNavbar {
		padding: 15px 5px;
		border-top: 1px solid #c0ad9c;
	}

	.list-icon-menu ul>li {
		float: left;
		line-height: 25px;
		padding: 0px 10px;
	}

	.mobile-menu .list-icon-menu ul>li {
		margin-top: 5px;
	}

	#menu-mobile>li.open>.sub-menu {
		display: block;
		padding-left: 5px;
		padding-top: 0px;
	}

	#menu-mobile>li>.sub-menu>li a {
		padding: 5px;
		display: block;
	}

	ul#menu-mobile>li>ul.sub-menu:hover {
		display: block !important;
	}

	.site-branding .custom-logo {
		width: 100%;
		height: auto;
	}

	.header-mobile .site-branding {
		width: 40%;
	}

	/**/
	/*
|--------------------------------------------------------------------------
| MOBILE MENU
|--------------------------------------------------------------------------
*/

	#overlay {
		display: none;
		background: #fff;
		border-top: 1px solid #eef1f8;
		padding: 20px 24px;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		z-index: 999;
	}

	#overlay.open {
		display: block;
		top: 65px;
		left: 0;
		transform: translateY(0);
	}


	/* MENU */
	#overlay ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	#overlay ul li {
		border-bottom: 1px solid #eef1f8;
	}

	#overlay ul li a {
		display: block;
		padding: 5px 0;
		font-size: .95rem;
		color: #111827;
		font-weight: 500;
	}

	.mobile-menu .btn-item {
		text-align: center;
	}

	#overlay .btn-primary-item {
		color: #ffffff;
	}

	/* BUTTONS */
	.mobile-actions {
		display: flex;
		flex-direction: column;
		gap: 10px;
		margin-top: 20px;
	}

	.mobile-actions .btn {
		justify-content: center;
	}


	/*
|--------------------------------------------------------------------------
| HAMBURGER
|--------------------------------------------------------------------------
*/

	.navbar-hamburger {
		width: 30px;
		height: 30px;
		border: none;
		background: none;
		padding: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 5px;
		cursor: pointer;
	}

	.navbar-hamburger span {
		width: 100%;
		height: 2px;
		background: #111827;
		border-radius: 999px;
		transition: .3s;
	}


	/* ACTIVE */
	.navbar-hamburger.active span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.navbar-hamburger.active span:nth-child(2) {
		opacity: 0;
	}

	.navbar-hamburger.active span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}


	/* LOCK BODY */
	body.menu-open {
		overflow: hidden;
	}

	/*style contact mobile*/
	/*style mobile*/
	.footer-grid {
		grid-template-columns: repeat(1, 1fr);
	}

}

@media only screen and (max-width: 576px) {}