@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&display=swap");

/* scrollbar */
::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}

::-webkit-scrollbar-track {
	background-color: #ebebeb;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	height: 0px;
}

::-webkit-scrollbar-thumb {
	-webkit-border-radius: 10px;
	border-radius: 10px;
	background: #4c8074;
	width: 20px;
	height: 0px;
}

/* scrollbar */
:root {
	--ux-dark: #1a1a1a;
	--ux-darker: #111111;
	--ux-green: #4caf50;
	--ux-green-dark: #388e3c;
	--ux-teal: #2e7d6e;
	--ux-teal-light: #3e9e8d;
	--ux-text: #333333;
	--ux-muted: #666666;
	--ux-border: #e0e0e0;
	--ux-bg-light: #f8f9fa;
	--ux-bg-section: #f4f6f5;
	--ux-white: #ffffff;
	--ux-navy: #2c3e50;
}

* {
	box-sizing: border-box;
}

body {
	font-family: "Kanit", sans-serif;
	font-size: 15px;
	line-height: 1.7;
	color: var(--ux-text);
	background: var(--ux-white);
	overflow-x: hidden;
}
html {
	scroll-padding-top: 150px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Kanit", sans-serif;
	font-weight: 700;
	color: var(--ux-dark);
}

/* ─── NAVBAR ───────────────────────────────────────────── */
.navbar {
	background: var(--ux-white) !important;
	padding: 14px 0;
	border-bottom: 1px solid var(--ux-border);
	position: sticky;
	top: 0;
	z-index: 1030;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.07);
}

.navbar-brand img {
	width: 240px;
}

/* Text logo fallback */
.navbar-brand .brand-text {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--ux-dark);
	letter-spacing: -0.5px;
	line-height: 1;
}
.navbar-brand .brand-text span {
	color: var(--ux-green);
}
.navbar-brand .brand-sub {
	font-size: 0.6rem;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--ux-text);
	font-weight: 400;
	display: block;
	margin-top: -2px;
	font-family: "Kanit", sans-serif;
}

.navbar-nav .nav-link {
	font-weight: 400;
	color: var(--ux-dark) !important;
	letter-spacing: 0.3px;
	padding: 6px 14px !important;
	transition: color 0.2s;
	/* text-transform: uppercase; */
	font-size: 16px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
	color: #4c8074 !important;
}

/* Toggler button – hamburger */
.navbar-toggler {
	border: 0;
	border-radius: 4px;
	padding: 5px 9px;
}
.navbar-toggler:focus {
	box-shadow: none;
}
.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ─── OFFCANVAS SIDEBAR (right, 100% accurate) ──────────── */
.offcanvas.offcanvas-end {
	width: 314px;
	border-left: 1px solid var(--ux-border);
}
.offcanvas-header {
	position: absolute;
	right: 0;
}
nav.offcanvas-nav {
	margin-top: 21px;
}
.offcanvas-header .offcanvas-title {
	font-family: "Kanit", sans-serif;
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--ux-white);
}
.offcanvas-header .offcanvas-title span {
	color: var(--ux-green);
}
.offcanvas-body {
	padding: 24px 20px;
	background: var(--ux-white);
}
.offcanvas-nav .nav-link {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--ux-dark);
	padding: 11px 0;
	border-bottom: 1px solid var(--ux-border);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: flex;
	align-items: center;
	gap: 10px;
	transition:
		color 0.2s,
		padding-left 0.2s;
}
.offcanvas-nav .nav-link:hover {
	color: var(--ux-green);
	padding-left: 6px;
}
.offcanvas-nav .nav-link i {
	font-size: 1rem;
	color: var(--ux-teal);
}
.offcanvas-contact {
	margin-top: 28px;
	padding: 18px;
	background: var(--ux-bg-section);
	border-radius: 8px;
}
.offcanvas-contact p {
	font-size: 16px;
	color: var(--ux-text);
	margin-bottom: 6px;
}
.offcanvas-contact a {
	font-size: 0.85rem;
	color: #595959;
	font-weight: 600;
	text-decoration: none;
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
	position: relative;
	min-height: 480px;
	background: url("images/banner/hero-image.jpg") center/cover no-repeat;
	display: flex;
	align-items: center;
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(26, 26, 26, 0.82) 0%,
		rgba(26, 26, 26, 0.55) 60%,
		rgba(26, 26, 26, 0.3) 100%
	);
}
.hero .container {
	position: relative;
	z-index: 1;
}
.hero h1 {
	font-family: "Kanit", sans-serif;
	font-size: clamp(1.8rem, 4vw, 2.9rem);
	font-weight: 300;
	color: var(--ux-white);
	line-height: 1.15;
	margin-bottom: 16px;
	letter-spacing: -0.5px;
}
.hero p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.88);
	max-width: 59%;
	line-height: 1.65;
	font-family: "Martel Sans", sans-serif;
	margin-top: 40px;
	margin-bottom: 0;
}
.btn-hero {
	background: var(--ux-green);
	color: var(--ux-white);
	font-weight: 700;
	font-size: 0.85rem;
	padding: 12px 28px;
	border-radius: 4px;
	border: none;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	text-decoration: none;
	display: inline-block;
	transition:
		background 0.2s,
		transform 0.2s;
}
.btn-hero:hover {
	background: var(--ux-green-dark);
	color: var(--ux-white);
	transform: translateY(-1px);
}

/* ─── SECTION COMMONS ────────────────────────────────────── */
section {
	padding: 36px 0px;
}
.section-title {
	font-size: 40px;
	font-weight: 300;
	margin-bottom: 8px;
	color: var(--ux-dark);
}
.section-title span {
	color: var(--ux-green);
}
.section-lead {
	color: var(--ux-text);
	max-width: 100%;
	line-height: 1.7;
	font-weight: 300;
	font-size: 18px;
}
.section-divider {
	width: 48px;
	height: 4px;
	background: var(--ux-green);
	border-radius: 2px;
	margin: 0 0 24px;
}

/* ─── INTRO ──────────────────────────────────────────────── */
#introduction {
	background: var(--ux-white);
}
.font-600 {
	font-weight: 500;
}
#introduction p {
	font-size: 18px;
	line-height: 1.75;
	color: var(--ux-text);
	margin-bottom: 14px;
	font-weight: 300;
}
#introduction p:last-child {
	margin-bottom: 0;
}

.intro-highlight {
	background: var(--ux-dark);
	color: var(--ux-white);
	padding: 22px 28px;
	border-radius: 6px;
	font-weight: 700;
	font-size: 1rem;
	margin-top: 24px;
}
.intro-highlight span {
	color: var(--ux-green);
}

/* ─── ABOUT ──────────────────────────────────────────────── */

#about p {
	color: var(--ux-text);
	margin-bottom: 14px;
	font-size: 18px;
	line-height: 1.75;
	font-weight: 300;
}

/* ─── APPLICATIONS ───────────────────────────────────────── */
#applications {
	background: var(--ux-white);
}
.app-card {
	background: var(--ux-white);
	border: 1px solid var(--ux-border);
	border-radius: 8px;
	padding: 22px 20px;
	height: 100%;
	transition:
		box-shadow 0.25s,
		transform 0.25s;
}
.app-card:hover {
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
	transform: translateY(-3px);
}
.app-card-icon {
	width: 44px;
	height: 44px;
	background: var(--ux-teal);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}
.app-card-icon i {
	font-size: 1.3rem;
	color: var(--ux-white);
}
.app-card h5 {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 8px;
	color: var(--ux-dark);
}
.app-card p {
	font-size: 16px;
	color: var(--ux-text);
	line-height: 1.6;
	margin: 0;
	font-weight: 300;
}

/* ─── OPERATIONAL BENEFITS ───────────────────────────────── */

.benefit-step {
	display: flex;
	gap: 20px;
	margin-bottom: 36px;
	position: relative;
}
.benefit-number {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	background: #dfece9;
	color: black;
	font-weight: 300;
	font-size: 18px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
	z-index: 999;
	border: 1px solid lightgray;
}
.height_custom {
	height: 413px;
	object-fit: cover;
	border-radius: 8px;
}
.benefit-content h5 {
	margin-bottom: 10px;
	color: var(--ux-dark);
	font-weight: 300;
	font-size: 22px;
	margin-top: 7px;
}
.benefit-content ul {
	padding-left: 18px;
	margin: 0;
}
.benefit-content ul li {
	font-size: 17px;
	margin-bottom: 6px;
	line-height: 1.55;
	font-weight: 300;
}
.benefit-content ul li strong {
	color: var(--ux-dark);
	font-weight: 400;
}
.benefit-content {
	margin-left: 11px;
}
/* Benefits connector line */
.benefits-timeline {
	position: relative;
}
.benefit-content {
	margin-left: 28px;
}
.benefits-timeline::before {
	content: "";
	position: absolute;
	left: 17px;
	top: -13px;
	bottom: 0;
	width: 3px;
	background: #dfece9;
}
.benefit-step::after {
	content: "";
	width: 72px;
	height: 3px;
	background: #dfece9;
	position: absolute;
	left: 0px;
	top: 18px;
}
/* ─── GALLERY ────────────────────────────────────────────── */
#gallery {
	background: var(--ux-white);
}
.gallery-phone {
	background: #000;
	border-radius: 28px;
	border: 4px solid #1a1a1a;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
	max-width: 180px;
	margin: 0 auto 16px;
	aspect-ratio: 9/18;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gallery-phone-inner {
	width: 100%;
	height: 100%;
	background: var(--ux-white);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.gallery-phone-header {
	background: var(--ux-dark);
	padding: 10px 12px 8px;
	flex-shrink: 0;
}
.gallery-phone-header .brand {
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 800;
	font-size: 0.85rem;
	color: #fff;
}
.gallery-phone-header .brand span {
	color: var(--ux-green);
}
.gallery-phone-header .sub {
	font-size: 0.5rem;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
	letter-spacing: 1px;
}
.gallery-phone-body {
	padding: 12px;
	flex: 1;
	overflow: hidden;
}
.gallery-phone-body .form-label-sm {
	font-size: 0.5rem;
	color: var(--ux-text);
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 2px;
}
.gallery-phone-body .mock-input {
	background: var(--ux-bg-section);
	border: 1px solid var(--ux-border);
	border-radius: 3px;
	height: 16px;
	margin-bottom: 6px;
}
.gallery-phone-body .mock-btn {
	background: var(--ux-teal);
	color: #fff;
	font-size: 0.5rem;
	text-align: center;
	border-radius: 3px;
	padding: 3px 8px;
	font-weight: 700;
	width: 100%;
	margin-top: 6px;
}
.gallery-phone-body .mock-list-item {
	font-size: 0.5rem;
	padding: 4px 0;
	border-bottom: 1px solid var(--ux-border);
	color: var(--ux-text);
}
.gallery-phone-body .mock-badge {
	display: inline-block;
	background: var(--ux-teal);
	color: #fff;
	font-size: 0.45rem;
	border-radius: 3px;
	padding: 1px 4px;
	float: right;
}
.gallery-caption {
	text-align: center;
	font-size: 0.78rem;
	color: var(--ux-text);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* SECTION BACKGROUND */
#customizable-checklists {
	background: #4f7f73; /* teal background */
	padding: 80px 20px;
}

/* WHITE CARD CONTAINER */
.checklist-wrapper {
	background: #f5f5f5;
	width: 100%;
	padding: 40px 50px;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* TITLE */
.checklist-wrapper h2 {
	font-size: 32px;
	font-weight: 300;
	margin-bottom: 35px;
}

/* GRID */
.checklist-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px 40px;
}

/* ITEM */
.item {
	display: flex;
	gap: 15px;
	align-items: flex-start;
}

/* NUMBER BOX */
.num {
	min-width: 36px;
	height: 34px;
	background: #d6e0dc;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 300;
	font-size: 20px;
}

/* TEXT */
.item h5 {
	font-size: 22px;
	font-weight: 300;
	margin-bottom: 6px;
}

.item p {
	font-size: 18px;
	margin-top: 10px;
	font-weight: 300;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.checklist-grid {
		grid-template-columns: 1fr;
	}

	.checklist-wrapper {
		padding: 30px 20px;
	}
	#customizable-checklists {
    padding: 55px 0;
	}
}

/* ─── AUTOMATED REMINDERS ────────────────────────────────── */
#reminders {
	background: var(--ux-white);
	padding-bottom: 60px;
}

.reminder-card h5 {
	font-size: 24px;
	font-weight: 300;
	margin-bottom: 8px;
	color: var(--ux-dark);
}
.reminder-card p {
	font-size: 18px;
	color: var(--ux-text);
	line-height: 1.65;
	margin: 0;
	font-weight: 300;
}
.reminder-card {
	padding-right: 23px;
}
/* ─── REPORTING ──────────────────────────────────────────── */
section#reporting {
	padding-bottom: 60px;
}
.report-table {
	width: 100%;
	border-collapse: collapse;
}
.report-table td {
	padding: 14px 16px;
	border: 1px solid var(--ux-border);
	font-size: 0.88rem;
	vertical-align: top;
}
.report-table td:first-child {
	color: var(--ux-dark);
	width: 32%;
	font-weight: 300;
	font-size: 18px;
	background: var(--ux-white);
}
.report-table td:last-child {
	font-size: 18px;
	font-weight: 300;
}

.custom_img_ht {
	height: 591px;
	width: 100%;
	object-fit: contain;
	border-radius: 34px;
	overflow: hidden;
}
.report-table tr:nth-child(even) td {
	background: #f2f2f2;
}

/* ─── SECURE STORAGE ─────────────────────────────────────── */
/* CONTAINER */
.storage-accordion {
	max-width: 800px;
}

/* ITEM */
.acc-item {
	margin-bottom: 10px;
}

/* BUTTON */
.acc-btn {
	background: none;
	border: none;
	padding: 10px 0px 0 0;
	font-size: 18px;
	font-weight: 300;
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	text-align: left;
	cursor: pointer;
	color:black;
}

/* ARROW */
.arrow {
	width: 0;
	height: 0;
	border-left: 6px solid #1f2d3d;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	transition: transform 0.2s ease;
}

/* ROTATE WHEN OPEN */
.acc-btn:not(.collapsed) .arrow {
	transform: rotate(90deg);
}

/* BODY */
.acc-body {
	margin-left: 16px;
	padding-left: 27px;
	border-left: 1px solid #ddd;
	color: #4a5568;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.7;
	margin-top: 5px;
}

/* ─── MOBILE APP ─────────────────────────────────────────── */
/* SECTION BACKGROUND IMAGE */
#mobile-app {
	position: relative;
	background: url("./images/banner/mobile.png") center/cover no-repeat;
	padding: 90px 0;
	color: #fff;
}

/* DARK OVERLAY */
.mobile-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
}

/* CONTENT */
.mobile-content {
	position: relative;
	z-index: 2;
}

/* TITLE */
.mobile-content h2 {
	font-size: 40px;
	font-weight: 300;
	margin-bottom: 50px;
	color: white;
}

/* FEATURES GRID */
.mobile-features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

/* EACH FEATURE */
.feature {
	text-align: left;
}

/* ICON */
.feature i {
	font-size: 46px;
	color: #66ab9b;
	margin-bottom: 12px;
	display: inline-block;
}

/* TITLE */
.feature h6 {
	font-size: 22px;
	font-weight: 300;
	margin-bottom: 10px;
	color: white;
}

/* TEXT */
.feature p {
	font-size: 17px;
	color: white;
	line-height: 1.6;
	font-weight: 300;
}

/* RESPONSIVE */
@media (max-width: 992px) {
	.mobile-features {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 576px) {
	.mobile-features {
		grid-template-columns: 1fr;
	}

	.mobile-content h2 {
		font-size: 28px;
	}
}

/* ─── CONTACT ────────────────────────────────────────────── */
#contact {
	padding: 80px 0;
}

/* WRAPPER */

/* TITLE */
.contact-wrapper h2 {
	font-size: 40px;
	font-weight: 300;
	margin-bottom: 30px;
}

/* TEXT */
.contact-wrapper p {
	font-size: 20px;
	line-height: 1.2;
	margin-bottom: 23px;
	font-weight: 300;
}

/* EMAIL LINK */
.contact-wrapper a {
	color: #1f2d3d;
	text-decoration: none;
}

.contact-wrapper a:hover {
	text-decoration: underline;
}

/* ─── BACK TO TOP ────────────────────────────────────────── */
.back-to-top {
	position: fixed;
	bottom: 28px;
	right: 24px;
	width: 42px;
	height: 42px;
	background: var(--ux-teal);
	color: var(--ux-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 1.1rem;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
	transition:
		background 0.2s,
		transform 0.2s;
	opacity: 0;
	pointer-events: none;
	z-index: 999;
}
.back-to-top.visible {
	opacity: 1;
	pointer-events: auto;
}
.back-to-top:hover {
	background: var(--ux-green);
	color: var(--ux-white);
	transform: translateY(-2px);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 991.98px) {
	.navbar-nav {
		display: none !important;
	}
	section {
		padding: 52px 0;
	}
}
@media (max-width: 575.98px) {
	.hero {
		min-height: 380px;
	}
	.hero h1 {
		font-size: 1.7rem;
	}
	section {
		padding: 44px 0;
	}
	.contact-card {
		padding: 24px 20px;
	}
}

/* ─── UTILITY ────────────────────────────────────────────── */
.text-green {
	color: var(--ux-green) !important;
}
.text-teal {
	color: var(--ux-teal) !important;
}
.bg-teal {
	background: var(--ux-teal) !important;
}
.fw-800 {
	font-weight: 800;
}
.lh-sm {
	line-height: 1.35;
}
.custom_img {
	width: 300px;
}
.image_container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 30px;
}
.login_text {
	padding: 4px 10px !important;
	border: 1.5px solid #787878 !important;
	margin-left: 10px;
	border-radius: 4px;
}
/* ─── BACK TO TOP ────────────────────────────────────────── */
.back-to-top {
	position: fixed;
	bottom: 28px;
	right: 24px;
	width: 42px;
	height: 42px;
	background: var(--ux-teal);
	color: var(--ux-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 1.1rem;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
	transition:
		background 0.2s,
		transform 0.2s;
	opacity: 0;
	pointer-events: none;
	z-index: 999;
}
.back-to-top.visible {
	opacity: 1;
	pointer-events: auto;
}
.back-to-top:hover {
	background: var(--ux-green);
	color: var(--ux-white);
	transform: translateY(-2px);
}

/* ─── GALLERY THUMBS ─────────────────────────────────────── */
.gallery-thumb {
	cursor: pointer;
	transition:
		transform 0.2s,
		opacity 0.2s;
	border-radius: 8px;
}
.gallery-thumb:hover {
	transform: scale(1.03);
	opacity: 0.88;
}

/* ─── LIGHTBOX ───────────────────────────────────────────── */
.lightbox-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.92);
	z-index: 9999;
	align-items: center;
	justify-content: center;
}
.lightbox-overlay.active {
	display: flex;
}
.lightbox-content {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 90vw;
	max-height: 90vh;
}
.lightbox-img {
	max-width: 80vw;
	max-height: 80vh;
	object-fit: contain;
	border-radius: 6px;
	user-select: none;
}
.lightbox-counter {
	position: absolute;
	top: -36px;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	font-size: 15px;
	font-family: "Kanit", sans-serif;
	font-weight: 300;
	letter-spacing: 1px;
	white-space: nowrap;
}
.lightbox-close {
	position: absolute;
	top: 20px;
	right: 24px;
	background: none;
	border: none;
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	z-index: 10000;
	line-height: 1;
	opacity: 0.8;
	transition: opacity 0.2s;
}
.lightbox-close:hover {
	opacity: 1;
}
.lightbox-arrow {
	background: none;
	border: none;
	color: #fff;
	font-size: 80px;
	cursor: pointer;
	padding: 0 20px;
	line-height: 1;
	opacity: 0.7;
	transition: opacity 0.2s;
	user-select: none;
	flex-shrink: 0;
}
.lightbox-arrow:hover {
	opacity: 1;
}
@media (max-width: 576px) {
	.lightbox-arrow {
		font-size: 50px;
		padding: 0 10px;
	}
	.lightbox-img {
		max-width: 78vw;
	}
}

/* responsive */
@media (max-width: 1200px) {
	.navbar-brand img {
		width: 180px;
	}
	.navbar-expand-lg .navbar-nav .nav-link {
		font-size: 14px;
	}
}

@media (max-width: 992px) {
	.hero h1 br,
	.hero p br {
		display: none;
	}
	.hero p {
		max-width: 100%;
	}
	button#lightboxPrev {
		margin-left: 10px;
	}
	section {
		padding: 25px 0;
	}
	.section-title {
		font-size: 36px;
	}
	.col-lg-5.ps-5.d-lg-flex.flex-column.gap-3 {
		padding-left: 14px !important;
		display: flex;
		margin-top: 50px;
	}
}

@media (max-width: 768px) {
	.container {
		padding-left: 24px;
		padding-right: 24px;
	}
	.hero {
		min-height: 381px;
	}
	.hero p,
	#introduction p,
	.section-lead,
	#about p,
	.benefit-content ul li,
	.item p,
	.reminder-card p,
	.report-table td:last-child,
	.report-table td:first-child,
	.acc-body,
	.feature p {
		font-size: 16px;
	}
	#mobile-app {
		padding-top: 47px;
	}
	.contact-wrapper p {
		font-size: 18px;
	}
	.contact-wrapper h2 {
		font-size: 28px;
	}
	#contact {
		padding: 32px 0;
	}
	.mobile-content h2 {
		margin-bottom: 26px;
	}
	.reminder-card h5 {
		font-size: 18px;
		font-weight: 400;
	}
	#reminders {
		padding-bottom: 14px;
	}
	.section-title,
	.checklist-wrapper h2 {
		font-size: 28px;
	}
	.mobile-features {
		gap: 20px;
	}
}
