:root {
	--color-bg: #F9FAFB;
	--color-text: #131727;
	--color-accent: #0CBAF5;
	--color-accent-2: #B6EBFD;
	--color-accent-3: #0A9DD4;
	--color-depth: #1E2938;
	--color-depth-2: #2a4b72;
	--shadow-depth: rgba(49,92,144,0.3);
	--shadow-depth-2: rgba(42,75,114,0.3);
	--surface: #F3F3F3;
	--border: #E4E4E4;
	--transition-cubic: cubic-bezier(.4,0,.2,1);
	--font-heading: "Plus Jakarta Sans", sans-serif;
	--font-body: "DM Sans", sans-serif;
	--fs-4xl: 48px;
	--fs-3xl: 32px;
	--fs-xxl: 24px;
	--fs-xl: 20px;
	--fs-lg: 18px;
	--fs-md: 16px;
	--fs-sm: 14px;
	--fs-xs: 13px;
	--lh-sm: 1.2;
	--lh-md: 1.5;
	--radius: 10px;
	--radius-lg: 15px;
	--radius-xl: 30px;
}

body {
	background: var(--color-bg);
	color: var(--color-text);
	font: 400 var(--fs-md)/var(--lh-md) var(--font-body);
}
h1,
h2,
h3 {
	font-family: var(--font-heading);
	line-height: var(--lh-sm);
	color: var(--color-text);
}
h1 {
	font-size: var(--fs-xxl);
}
h2 {
	font-size: var(--fs-xl);
}
h3 {
	font-size: var(--fs-lg);
}
h4,
h5,
h6 {
	font-family: var(--font-heading);
	line-height: var(--lh-sm);
	color: var(--color-text);
}
.title-font {
	font-family: var(--font-heading);
}
.text-accent {
	color: var(--color-accent);
}
.text-accent-2 {
	color: var(--color-accent-2);
}
.text-depth {
	color: var(--color-depth);
}
.text-depth-2 {
	color: var(--color-depth-2);
}
.text-dark {
	color: var(--color-text) !important;
}
.text-light {
	color: var(--color-bg) !important;
}
.text-gray {
	color: var(--bs-gray-700);
}
.bg-default {
	background-color: var(--color-bg) !important;
}
.bg-accent {
	background-color: var(--color-accent) !important;
}
.bg-accent-2 {
	background-color: var(--color-accent-2) !important;
}
.bg-depth {
	background-color: var(--color-depth) !important;
}
.bg-depth-2 {
	background-color: var(--color-depth-2) !important;
}
.bg-dark {
	background: linear-gradient(90deg,rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0) 100%), rgba(var(--bs-dark-rgb),var(--bs-bg-opacity));
}
.bg-fade {
	background-image: linear-gradient(to bottom, var(--color-bg), var(--bs-white));
}
.fs-4xl {
	font-size: var(--fs-4xl);
}
.fs-3xl {
	font-size: var(--fs-3xl);
}
.fs-xxl {
	font-size: var(--fs-xxl);
}
.fs-xl {
	font-size: var(--fs-xl);
}
.fs-lg {
	font-size: var(--fs-lg);
}
.fs-md {
	font-size: var(--fs-md);
}
.fs-sm {
	font-size: var(--fs-sm);
}
header {
	position: absolute;
	z-index: 11;
	left: 0;
	top: 0;
	width: 100%;
	padding-top: 0.75rem;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	background-color: var(--bs-white);
	transform: translateY(0);
}
header.hidden {
	transition: transform .3s ease;
	transform: translateY(-100%);
}
header.scrolled {
	position: fixed;
	transform: translateY(0);
}
header .logo {
	display: flex;
	margin-bottom: -0.4rem;
}
header .logo svg {
	width: 164px;
	height: 42px;
	transition: all 0.4s ease;
}
header .logo:hover svg {
	fill: var(--color-accent-2);
}
header .col-right,
header .col-left {
	position: absolute;
	display: flex;
	align-items: center;
	width: calc(50% - 120px);
	height: 100%;
	top: 0;
}
header .col-left {
	justify-content: flex-end;
	left: 0;
}
header .col-left:not(:only-child) {
	justify-content: space-between;
}
header .col-right {
	justify-content: space-between;
	right: 0;
}
.page-wrapper,
.k6video {
	position: relative;
	transition: transform .6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.k6video::before,
.k6video::after {
	position: absolute;
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
.k6video::before {
	z-index: 1;
	opacity: 0.65;
	background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}
.k6video::after {
	z-index: 2;
	opacity: 0.5;
	background-color: var(--color-depth);
}
.k6video > div {
	position: relative;
	z-index: 3;
}
.k6video > video {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}
.content-overlay {
	height: 100vh;
	height: 100dvh;
}
.btn-theme {
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .75rem 1.5rem;
	border: 0;
	border-radius: .75rem;
	color: var(--bs-white);
	text-decoration: none;
	background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-3) 100%);
	box-shadow: 0 4px 15px var(--shadow-depth-2);
	transform: translateZ(0);
	transition: all .3s var(--transition-cubic);
}
.btn-theme:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(12,188,247,0.4);
}
.btn-theme:active {
	transform: translateY(0);
}
.btn-theme.btn-sm {
	padding: .5rem 1rem;
}
.btn-theme-light {
	background: var(--bs-white);
	color: var(--color-accent);
	box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.btn-theme-light:hover {
	box-shadow: 0 10px 36px rgba(0,0,0,0.3);
}
.btn-theme-dark {
	background: var(--color-depth-2);
	box-shadow: 0 4px 15px var(--shadow-depth);
}
.btn-theme-dark:hover {
	box-shadow: 0 6px 20px rgba(49,92,144,0.4);
}
.btn-line {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .75rem 1.5rem;
	border-radius: .75rem;
	color: var(--color-text);
	text-decoration: none;
	border: 2px solid var(--color-accent);
	background: linear-gradient(to right, transparent 50%, var(--color-accent) 50%);
	background-size: 200% 100%;
	background-position: left;
	transition: all .3s var(--transition-cubic);
}
.btn-line:hover {
	background-position: right;
	color: var(--bs-white);
}
.btn-line-light {
	border: 2px solid rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(0.25rem);
	background: rgba(255, 255, 255, 0);
	color: var(--bs-white);
}
.btn-line-light:hover {
	background-color: rgba(255, 255, 255, 0.1);
}
.btn-theme svg,
.btn-line svg {
	width: 1.25rem;
	height: 1.25rem;
	fill: currentColor;
	flex-shrink: 0;
}
.btn-theme svg:first-child,
.btn-line svg:first-child {
	margin-left: -0.15rem;
}
.btn-theme svg:last-child,
.btn-line svg:last-child {
	margin-right: -0.15rem;
}
.btn-theme.stroke svg,
.btn-line.stroke svg {
	fill: none;
	stroke: currentColor;
}
.btn-theme-lg {
	padding: 1rem 2.5rem;
}
.accent-line {
	width: 120px;
	height: 3px;
	margin: 0 auto;
	background: linear-gradient(90deg, var(--color-accent), #0000);
	border-radius: 3px;
}
.p-6 {
	padding: 4.5rem !important;
}
.pt-6 {
	padding-top: 4.5rem !important;
}
.pb-6 {
	padding-bottom: 4.5rem !important;
}
.ps-6 {
	padding-left: 4.5rem !important;
}
.pe-6 {
	padding-right: 4.5rem !important;
}
.py-6 {
	padding-top: 4.5rem !important;
	padding-bottom: 4.5rem !important;
}
.px-6 {
	padding-left: 4.5rem !important;
	padding-right: 4.5rem !important;
}
.m-6 {
	margin: 4.5rem !important;
}
.mt-6 {
	margin-top: 4.5rem !important;
}
.mb-6 {
	margin-bottom: 4.5rem !important;
}
.ms-6 {
	margin-left: 4.5rem !important;
}
.me-6 {
	margin-right: 4.5rem !important;
}
.my-6 {
	margin-top: 4.5rem !important;
	margin-bottom: 4.5rem !important;
}
.mx-6 {
	margin-left: 4.5rem !important;
	margin-right: 4.5rem !important;
}
header nav > ul {
	display: flex;
	gap: 0.5rem;
	padding: 0;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 0 auto;
}
header nav > ul > li {
	display: block;
	position: relative;
	list-style: none;
}
.burger {
	position: relative;
	width: 31px;
	height: 24px;
	background: transparent;
	cursor: pointer;
	display: block;
}
.burger input {
	display: none;
}
.burger span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: var(--bs-white);
	border-radius: 9px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: .25s ease-in-out;
}
.burger span:nth-of-type(1) {
	top: 0px;
	transform-origin: left center;
}
.burger span:nth-of-type(2) {
	top: 50%;
	transform: translateY(-50%);
	transform-origin: left center;
}
.burger span:nth-of-type(3) {
	top: 100%;
	transform-origin: left center;
	transform: translateY(-100%);
}
.burger input:checked ~ span:nth-of-type(1) {
	transform: rotate(45deg);
	top: 0px;
	left: 5px;
}
.burger input:checked ~ span:nth-of-type(2) {
	width: 0%;
	opacity: 0;
}
.burger input:checked ~ span:nth-of-type(3) {
	transform: rotate(-45deg);
	top: 22px;
	left: 5px;
}
.divider {
	position: relative;
	height: 0.25rem;
	margin-top: 0.75rem;
	background: var(--surface);
}
.divider-inner {
	position: absolute;
	inset: 0;
	display: flex;
}
.divider-left,
.divider-right {
	flex: 1;
	opacity: 0.6;
	background: linear-gradient(to right, var(--color-accent), transparent);
}
.divider-right {
	background: linear-gradient(to left, var(--color-accent), transparent);
}
.divider-gap {
	width: 8rem;
}
footer .divider {
	margin-top: 0;
	background: var(--color-depth);
}
.dd-btn {
	border: 0;
	padding: 0;
	margin: 0;
	outline: 0;
	background: transparent;
	font-size: var(--fs-md);
	color: var(--bs-white);
	white-space: nowrap;
}
.dd-btn svg {
	width: 24px;
	height: 24px;
	stroke: var(--bs-white);
	transition: all 0.4s ease;
}
.dd-btn.active svg {
	transform: rotate(180deg);
}
.v-line {
	height: 2rem;
	width: 1px;
	background: linear-gradient(to bottom, transparent, var(--bs-gray-500), transparent);
}
#loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-text);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	transition: opacity 0.4s ease;
	pointer-events: auto;
}
#loading.hidden {
	opacity: 0;
	pointer-events: none;
}
#loading svg {
	fill: none;
	stroke-dasharray: 50px;
	stroke-width: 2px;
	stroke: var(--color-accent);
	animation: loading 7.5s infinite linear;
}
.btn-vector svg,
.btn-vector-fill svg {
	width: 24px;
	height: 24px;
	transition: all 0.4s ease;
}
.btn-vector svg {
	stroke: var(--color-text);
}
.btn-vector-fill svg {
	fill: var(--color-text);
}
footer {
	position: relative;
	overflow: hidden;
	background: linear-gradient(to bottom right, #212838, #131727, #212838);
}
footer > * {
	position: relative;
	z-index: 10;
}
footer .logo svg {
	width: 219px;
	height: 56px;
}
.bg-blobs {
	position: absolute;
	inset: 0;
	opacity: 0.05;
	overflow: hidden;
	z-index: 1 !important;
}
.blob {
	position: absolute;
	background: var(--color-accent);
	border-radius: 999999px;
	filter: blur(64px);
}
.blob-1 {
	top: 2.5rem;
	right: 2.5rem;
	width: 16rem;
	height: 16rem;
}
.blob-2 {
	bottom: 2.5rem;
	left: 2.5rem;
	width: 24rem;
	height: 24rem;
}
.hero-section {
	position: relative;
	padding-top: 5rem;
	padding-bottom: 5rem;
	overflow: hidden;
	background: linear-gradient(135deg, var(--color-accent), var(--color-accent-3), var(--color-accent));
}
.hero-blobs {
	position: absolute;
	inset: 0;
	opacity: 0.3;
}
.hero-blob {
	position: absolute;
	background: white;
	border-radius: 50%;
	filter: blur(64px);
	animation: blob 7s infinite;
}
.hero-blob-1 {
	top: 5rem;
	left: 2.5rem;
	width: 18rem;
	height: 18rem;
}
.hero-blob-2 {
	top: 10rem;
	right: 5rem;
	width: 24rem;
	height: 24rem;
	animation-delay: 2s;
}
.hero-blob-3 {
	bottom: 5rem;
	left: 33%;
	width: 20rem;
	height: 20rem;
	animation-delay: 4s;
}
.hero-content {
	position: relative;
	z-index: 10;
}
.header-menu-item {
	padding: 0.5rem 0.75rem;
	position: relative;
	display: block;
	color: #4B5563;
	transition: color 0.3s ease;
	background: none;
	border: none;
	cursor: pointer;
	font: inherit;
	text-decoration: none;
}
.header-menu-item::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--color-accent), var(--color-accent-3));
	transition: width 0.3s ease;
}
.header-menu-item:hover::after {
	width: 100%;
}
.header-menu-item.active,
.header-menu-item:not(.active):hover {
	color: #111827;
}
.nav-card {
	display: inline-flex;
	gap: 0.5rem;
	border-radius: var(--radius);
	overflow: hidden;
}
.nav-card a {
	position: relative;
	display: inline-flex;
	width: 32px;
	height: 32px;
	color: var(--bs-white);
	background-color: var(--color-accent);
	border-radius: 4px;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	transition: all 0.4s ease;
	overflow: hidden;
}
.nav-card a > * {
	display: block;
	z-index: 2;
}
.nav-card svg {
	width: 24px;
	height: 24px;
	stroke: var(--bs-white);
}
.social {
	display: flex;
	gap: 0.35rem;
}
.social a {
	position: relative;
	display: inline-flex;
	padding: 0.5rem;
	background-color: var(--color-accent);
	border-radius: 10px;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	transition: all 0.3s var(--transition-cubic);
	background-color: var(--color-depth-2);
	overflow: hidden;
}
.social a:hover {
	background-color: var(--color-accent);
}
.social a svg {
	position: relative;
	width: 18px;
	height: 18px;
}
.social a.btn-vector svg {
	stroke: var(--bs-white);
}
.social a.btn-vector-fill svg {
	fill: var(--bs-white);
}
.nav-card a::before {
	position: absolute;
	display: block;
	content: '';
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 6px;
	height: 6px;
	background-color: var(--color-depth-2);
	border-radius: 50%;
	opacity: 0;
	transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-card a:hover::before,
.nav-card a.active::before {
	width: 48px;
	height: 48px;
	opacity: 1;
}
.footer-card {
	background: var(--color-depth-2);
	color: var(--bs-white);
	display: flex;
	border-radius: var(--radius-lg) 0;
	padding: 1rem;
	font-size: var(--fs-lg);
	text-decoration: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-shadow: 15px 15px 0 0 rgba(0,0,0,0.5);
	min-height: 180px;
	gap: 0.35rem;
	transition: box-shadow 0.2s ease;
}
.footer-card svg {
	width: 48px;
	height: 48px;
	display: block;
	stroke: var(--color-accent-2);
}
.footer-card span {
	transition: all 0.4s ease;
}
.footer-card:hover {
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}
.footer-card:hover span {
	color: var(--color-accent-2);
}
.footer-divider {
	border-top: 1px solid var(--color-depth);
}
.bg-opacity {
	background-color: rgba(0,0,0,0.5);
}
.links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	line-height: 1;
}
.links li {
	position: relative;
	display: block;
	padding: 0.25rem 0;
}
.links li:first-child {
	padding-top: 0;
}
.links li:last-child {
	padding-bottom: 0;
}
.links svg {
	position: absolute;
	left: 0;
	top: calc(0.25rem + 1px);
	width: 14px;
	height: 14px;
	stroke: var(--color-accent);
}
footer .links svg {
	stroke: var(--bs-gray-600);
}
.links li:first-child svg {
	top: 1px;
}
.links svg + * {
	margin-left: 20px;
}
.links a,
.links span {
	display: inline-block;
	font-size: var(--fs-sm);
	text-decoration: none;
	transition: all 0.2s ease;
}
footer .links a,
footer .links span {
	color: var(--bs-white);
}
.links a:hover {
	color: var(--color-accent);
}
.lb-image {
	position: relative;
	display: block;
}
.lb-image::before {
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	background: rgba(0,0,0,0.25);
	backdrop-filter: blur(5px);
	content: '';
	opacity: 0;
	transform: translate(-50%, -50%);
	transition: all 0.2s ease;
	border-radius: 50%;
	z-index: 1;
}
.lb-image:hover::before {
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	border-radius: var(--radius-lg);
	opacity: 1;
}
.lb-image::after {
	position: absolute;
	display: block;
	content: '';
	width: 48px;
	height: 48px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj48cGF0aCBkPSJNMSAxMnM0LTggMTEtOCAxMSA4IDExIDgtNCA4LTExIDgtMTEtOC0xMS04eiI+PC9wYXRoPjxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjMiPjwvY2lyY2xlPjwvc3ZnPg==");
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 0;
	z-index: 2;
}
.lb-image:hover::after {
	opacity: 1;
}
.gradient-fade {
	position: absolute;
	inset: 0;
	pointer-events: none;
	border-radius: var(--radius-lg);
	background-image: linear-gradient(to top, #0009 0%, #0003 50%, transparent 100%);
}
.img-radius {
	border-radius: var(--radius-lg);
}
.img-radius {
	box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.product-card {
	position: relative;
	display: block;
	border-radius: var(--radius-lg);
	box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
	transition: all 0.2s ease;
	overflow: hidden;
}
.product-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.flag {
	width: 24px;
	height: 16px;
}
.inline-icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}
.dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
}
.dot.bg-depth {
	opacity: 0.5;
}
.stroke-depth-2 {
	stroke: var(--color-depth-2);
}
.stroke-white {
	stroke: var(--bs-white);
}
[class*="badge-image-"] {
	position: absolute;
	display: block;
	bottom: 20px;
	border-radius: var(--radius);
	color: var(--bs-white);
	font-size: var(--fs-lg);
}
.badge-image-left {
	left: 25px;
}
.badge-image-right {
	right: 25px;
}
.card-benefit h2 {
	display: block;
	width: 32px;
	text-align: center;
}
.card-benefit svg {
	width: 48px;
	height: 48px;
	fill: var(--color-depth-2);
}
.card-benefit img.icon {
	display: block;
	width: 48px;
	height: 48px;
}
.card-benefit.sm-icon svg {
	width: 32px;
	height: 32px;
	fill: none;
	stroke: var(--color-depth-2);
}
.card-benefit.sm-icon img.icon {
	width: 32px;
	height: 32px;
}
.user--content {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
.user--content > * {
	margin-top: 0;
	margin-bottom: 1rem;
	padding-top: 0;
	padding-bottom: 0;
}
.user--content > *:first-child {
	margin-top: 0;
}
.user--content > *:last-child {
	margin-bottom: 0;
}
.user--content img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}
.user--content h1,
.user--content h2,
.user--content h3,
.user--content h4,
.user--content h5,
.user--content h6 {
	color: var(--color-depth);
}
.user--content h1 {
	font-size: var(--fs-3xl);
}
.user--content h2 {
	font-size: var(--fs-xxl);
}
.user--content h3 {
	font-size: var(--fs-xl);
}
.user--content hr {
	margin-top: 0;
	margin-bottom: 1rem;
	border-top: 1px solid var(--color-accent-3);
}
.user--content ul {
	list-style: none;
	padding: 0;
	margin: 0;
	margin-bottom: 1rem;
}
.user--content li {
	list-style: none;
	position: relative;
	padding-left: 1.5rem;
}
.user--content li::before {
	position: absolute;
	left: 0;
	margin: 0;
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	vertical-align: middle;
	transform: translateY(3px);
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230CBAF5' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='9 18 15 12 9 6'></polyline></svg>");
	background-size: contain;
}
.text-center .user--content li {
	padding-left: 0;
}
.text-center .user--content li::before {
	position: relative;
	margin-top: -0.5rem;
	margin-right: 0.25em;
}
.btn-link,
.user--content a {
	display: inline-block;
	color: var(--color-accent);
	text-decoration: underline;
}
.btn-link:active,
.btn-link:hover,
.user--content a:active,
.user--content a:hover {
	color: var(--color-depth-2);
}
.btn-simple {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 8px 36px;
	border: 2px solid transparent;
	font-size: 16px;
	background-color: var(--color-accent);
	border-radius: 12px;
	font-weight: 600;
	color: var(--bs-white);
	box-shadow: 0 0 0 2px var(--color-accent);
	cursor: pointer;
	overflow: hidden;
	text-decoration: none;
	transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.btn-simple svg {
	position: absolute;
	width: 24px;
	fill: var(--bs-white);
	z-index: 9;
	transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.btn-simple .arr-right {
	right: 16px;
}
.btn-simple .arr-left {
	left: -25%;
}
.btn-simple .text {
	position: relative;
	z-index: 1;
	transform: translateX(-12px);
	transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.btn-simple:hover {
	box-shadow: 0 0 0 12px transparent;
	color: var(--bs-white);
	border-radius: 100px;
}
.btn-simple:hover .arr-right {
	right: -25%;
}
.btn-simple:hover .arr-left {
	left: 16px;
}
.btn-simple:hover .text {
	transform: translateX(12px);
}
.btn-simple:hover svg {
	fill: var(--bs-white);
}
.btn-simple:active {
	scale: 0.95;
	box-shadow: 0 0 0 4px var(--color-accent);
}
.btn-simple.bg-depth-2 {
	background-color: var(--color-depth-2);
	box-shadow: 0 0 0 2px var(--color-depth-2);
}
.btn-simple.bg-depth-2:active {
	box-shadow: 0 0 0 4px var(--color-depth-2);
}
.btn-simple.bg-depth-2:hover {
	box-shadow: 0 0 0 12px transparent;
}
.glare {
	position: relative;
	overflow: hidden;
}
.glare::before,
.glare::after {
	position: absolute;
	display: block;
	content: '';
	inset: -25%;
	background: linear-gradient(75deg,transparent 44%,rgba(255,255,255,.55) 50%,transparent 56%);
	mix-blend-mode: screen;
	filter: blur(2px);
	transform: translateX(-120%);
	pointer-events: none;
}
.glare::before {
	animation: glare 5.3s ease-in-out infinite;
	animation-delay: 2.3s;
	opacity: .25;
}
.glare::after {
	animation: glare 8.9s ease-in-out infinite;
	animation-delay: 1.6s;
	opacity: .15;
}
.k6banner {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--bs-white);
}
.content-card {
	position: relative;
	display: block;
	padding: 1.25rem;
	border: 2px solid #e4e4e4;
	border-radius: 1rem;
	box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
	background-color: var(--bs-white);
}
.content-card.has-hover {
	transition: all .3s var(--transition-cubic);
}
.content-card.has-hover:hover {
	border-color: var(--color-accent);
}
.group {
	position: relative;
	display: flex;
	max-width: 100%;
	margin-bottom: 1rem;
	align-items: center;
	line-height: 30px;
}
.group > input {
	width: 100%;
	height: 45px;
	line-height: 30px;
	padding: .25rem .75rem;
	border: 2px solid transparent;
	border-radius: var(--radius);
	outline: none;
	background-color: var(--surface);
	color: var(--color-text);
	transition: .15s var(--transition-cubic);
}
.group > textarea {
	width: 100%;
	min-height: 100px;
	line-height: 21px;
	padding: .5rem .75rem;
	border: 2px solid transparent;
	border-radius: var(--radius);
	outline: none;
	background-color: var(--surface);
	color: var(--color-text);
	transition: .15s var(--transition-cubic);
}
.group > svg + input,
.group > svg + textarea {
	padding-left: 2.75rem;
}
.group > input::placeholder {
	color: #94a3b8;
}
.group > input:focus,
.group > input:hover,
.group > textarea:focus,
.group > textarea:hover {
	outline: none;
	border-color: var(--color-depth-2);
	background-color: #fff;
	box-shadow: 0 0 0 5px var(--shadow-depth-2);
}
.group > svg {
	position: absolute;
	top: calc(1rem - 1px);
	left: 1rem;
	width: 1rem;
	height: 1rem;
	stroke: var(--color-text);
}
.group > input::placeholder,
.group > textarea::placeholder {
	color: var(--color-text);
	opacity: 0.5;
}
.group > select {
	position: relative;
	padding-right: 2rem;
	width: 100%;
	height: 45px;
	line-height: 30px;
	padding: .25rem 2.75rem .25rem .75rem;
	border: 2px solid transparent;
	border-radius: var(--radius);
	outline: none;
	background-color: var(--surface);
	color: var(--color-text);
	transition: .2s ease;
	appearance: none;
}
.group > select + svg {
	position: absolute;
	width: 24px;
	height: 24px;
	top: 50%;
	right: 0.75rem;
	left: initial;
	stroke: var(--color-text);
	transform: translateY(-50%);
	transition: transform 0.2s ease;
	pointer-events: none;
}
.group > select + svg.rotated {
	transform: translateY(-50%) rotate(180deg);
}
.group > select:focus,
.group > select:hover {
	outline: none;
	border-color: var(--color-depth-2);
	background-color: #fff;
	box-shadow: 0 0 0 5px var(--shadow-depth-2);
}
.group-label {
	position: relative;
	margin-bottom: 0.75rem;
}
.group-label:after {
	content: "";
	background: var(--color-accent);
	border-radius: 2px;
	width: 24px;
	height: 2px;
	position: absolute;
	bottom: -4px;
	left: 0;
}
.checkbox {
	position: relative;
	display: flex;
	max-width: 100%;
	margin-bottom: 1rem;
	align-items: center;
	line-height: 20px;
	cursor: pointer;
}
.checkbox > div {
	position: absolute;
	flex: 0 0 auto;
	left: 0;
	width: 28px;
	height: 28px;
	border: 2px solid var(--surface);
	border-radius: var(--radius);
	outline: none;
	background: var(--surface);
	z-index: 1;
	transition: .2s ease;
}
.checkbox:hover > div,
.checkbox:focus > div {
	border-color: var(--color-depth-2);
	background-color: #fff;
	box-shadow: 0 0 0 5px var(--shadow-depth-2);
}
.checkbox > input[type="checkbox"] {
	visibility: hidden;
	display: none;
}
.checkbox > svg {
	position: relative;
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	z-index: 2;
	transform: translateX(-2px);
}
.checkbox > svg polyline {
	stroke-dasharray: 100;
	stroke-dashoffset: 100;
	transition: .4s stroke-dashoffset;
	opacity: 0;
}
.checkbox > input[type="checkbox"]:checked + svg polyline {
	stroke-dashoffset: 0;
	opacity: 1;
}
.checkbox > span {
	display: block;
	flex: 1 1 auto;
	margin-left: 0.5rem;
	user-select: none;
}
form .invalid-feedback {
	display: block;
	width: 100%;
	margin: -0.75rem 0 1rem;
	font-style: italic;
	font-size: var(--fs-sm);
}
.map-card {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
	background-color: var(--bs-white);
}
.map-card iframe {
	position: relative;
	display: block;
	width: 100%;
	height: 240px;
	border: 0;
	outline: 0;
	z-index: 1;
}
.map-wrapper {
	position: relative;
}
.map-wrapper iframe {
	position: relative;
	display: block;
	width: 100%;
	height: 40vw;
	min-height: 400px;
	max-height: 600px;
	border: 0;
	outline: 0;
	z-index: 1;
}
.list-card {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 1.5rem;
	row-gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.list-card li {
	position: relative;
	margin: 0;
	padding-left: 32px;
}
.list-card li::before {
	position: absolute;
	display: block;
	content: '';
	left: 0;
	top: 0;
	width: 24px;
	height: 24px;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%237B8B4D" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat center center;
	background-size: contain;
}

.options {
	position: absolute;
	display: flex;
	flex-direction: column;
	border-radius: 15px 0;
	padding: 8px 0;
	left: calc(100% + 15px);
	opacity: 0;
	transform: translateY(-50%);
	background-color: var(--color-depth-2);
	box-shadow: 0 3px 0px -1px rgba(0,0,0,0.25);
	transition: 0.3s;
	color: var(--bs-white);
	font-size: 0.8rem;
	letter-spacing: 0.5px;
	white-space: nowrap;
}
.options.start {
	left: initial;
	right: calc(100% + 15px);
}
.options > div {
	padding: 2px 12px;
	cursor: pointer;
	transition: 0.2s ease;
}
.options > div:hover {
	color: var(--color-accent-2);
}
.options > div a {
	color: var(--bs-white);
	text-decoration: none;
	transition: 0.3s;
}
.options > div:hover a {
	color: var(--color-accent-2);
}
.active + .options {
	opacity: 1;
	transform: translateY(0);
}
#recaptcha-badge {
	display: none;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.alert {
	border-radius: var(--radius);
	font-size: var(--fs-xs);
}
.notification {
	padding: 5rem 0;
}
.notification .col-12 > svg {
	position: relative;
	display: block;
	box-sizing: content-box;
	width: 160px;
	height: 160px;
	margin: 0 auto -3rem auto;
	padding: 1rem;
	fill: var(--bs-white);
	border-radius: var(--radius-lg);
	box-shadow: 10px 10px 15px -5px rgba(0,0,0,0.15);
	transition: all 0.25s ease;
}
.notification .col-12:hover > svg {
	transform: translateY(-4rem);
}
.notification.p-0 .col-12 > svg {
	width: 90px;
	height: 90px;
	margin-bottom: 1rem;
	transform: none;
}
.notify-section {
	min-height: 600px;
}
.notify-icon {
	display: block;
	width: 120px;
	height: 120px;
	padding: 1.5rem;
	border-radius: 9999px;
	margin: 0 auto 1.5rem auto;
}
.bg-invalid {
	background-color: var(--bs-form-invalid-color);
}
.bg-valid {
	background-color: var(--bs-form-valid-color);
}
.hiw-ping {
	position: absolute;
	top: 0;
	left: calc(50% + 2rem);
	width: 2rem;
	height: 2rem;
	border-radius: 9999px;
	opacity: 0.75;
	animation: ping 1s cubic-bezier(0, 0, .2, 1) infinite;
}
.btn-filter {
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	transition: all 0.2s ease;
}
.btn-filter svg {
	width: 16px;
	height: 16px;
	stroke: var(--color-text);
	margin-top: -1px;
	transition: all 0.2s ease;
}
.btn-filter:hover {
	color: var(--color-depth-2);
}
.btn-filter:hover svg {
	stroke: var(--color-depth-2);
}
.offcanvas {
	position: fixed;
	gap: 30px;
	top: 0;
	right: -100%;
	bottom: 0;
	width: 360px;
	box-shadow: 0 16px -32px 0 rgba(0, 0, 0, 0.8);
	background-color: var(--bs-white);
	z-index: 997;
	padding: 30px;
	scrollbar-width: none;
	opacity: 0;
	visibility: hidden;
	transition: 0.45s ease-in-out;
	overflow-y: scroll;
}
.offcanvas.opened {
	opacity: 1;
	visibility: visible;
	right: 0;
	transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	transition-duration: 0.6s;
}
.offcanvas.opened + * + .page-wrapper {
	transform: translateX(-300px);
}
.body-overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 995;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.92);
	visibility: hidden;
	opacity: 0;
	transition: 0.45s ease-in-out;
}
.offcanvas.opened + .body-overlay {
	opacity: 1;
	visibility: visible;
}
.offcanvas-logo {
	width: 160px;
	height: 45px;
	fill: var(--color-bg);
}
.offcanvas-close {
	width: 40px;
	height: 40px;
	stroke: var(--bs-white);
	transition: all 0.4s ease;
	cursor: pointer;
	background: var(--bs-gray-500);
	padding: 0.75rem;
	border-radius: var(--radius);
}
.offcanvas-close:hover {
	stroke: var(--color-text);
}
.offcanvas ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.offcanvas li {
	position: relative;
}
.offcanvas li a,
.offcanvas li span {
	position: relative;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: left;
	padding: 0.75rem 1rem;
	border-radius: 0.75rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	color: var(--color-depth);
	background-image: linear-gradient(to right, var(--bs-gray-300), var(--bs-gray-400));
	text-decoration: none;
}
.offcanvas li a:hover {
	color: var(--bs-white);
}
.offcanvas li.active a {
	box-shadow: 0 10px 15px -3px rgba(12, 188, 247, 0.2), 0 4px 6px -4px rgba(12, 188, 247, 0.2);
	color: var(--bs-white) !important;
	background-image: linear-gradient(to right, #0cbcf7, #0aa8e0);
}
.offcanvas li a svg {
	width: 24px;
	height: 24px;
	stroke: var(--color-bg);
	transition: all 0.4s ease;
}
.offcanvas li.active a svg {
	stroke: var(--color-accent-2);
}
.offcanvas li a:hover svg {
	stroke: var(--color-accent-2);
	margin-right: 15px;
}
.w-auto {
	width: 1px !important;
	white-space: nowrap;
}
#product {
	margin-bottom: 1rem;
}
#product .product-card {
	box-shadow: none;
	transform: none !important;
	cursor: default;
	pointer-events: none;
}
#product .product-card div.mt-2 {
	display: none;
}
#product .product-card p.mb-1 + p {
	margin-bottom: 0;
}
.price-info {
	background-color: var(--color-accent);
	padding: 1rem;
	margin-top: 1rem;
	align-items: center;
	flex-wrap: wrap;
	display: flex;
	border-radius: var(--radius-lg) 0;
}
.hero-badge {
	display: inline-flex;
	align-items: center;
	align-self: center;
	justify-content: center;
	padding: 0.5rem 1.5rem;
	border-radius: 9999px;
	background-color: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: var(--bs-white);
}
.hero-badge > * {
	display: inline-block;
	vertical-align: middle;
}
.section-overlay {
	position: relative;
	z-index: 2;
	box-shadow: 0 -10px 15px -3px rgba(0, 0, 0, 0.1), 0 -4px 6px -4px rgba(0, 0, 0, 0.1);
}
.hiw-step {
	text-align: center;
}
.hiw-icon-wrap {
	position: relative;
	margin-bottom: 1.5rem;
	display: inline-block;
}
.hero-icon {
	width: 5rem;
	height: 5rem;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	background: linear-gradient(135deg, var(--color-accent-3), var(--color-accent));
	box-shadow: 0 4px 15px rgba(12,188,247,0.25);
	transition: all 0.3s ease;
}
.hero-icon:hover {
	box-shadow: 0 6px 20px rgba(12,188,247,0.35);
	transform: scale(1.05);
}
.hiw-badge {
	position: absolute;
	top: -0.5rem;
	right: -0.5rem;
	width: 2rem;
	height: 2rem;
	background: var(--bs-white);
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--color-accent);
	box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}
.hiw-badge span {
	font-size: 0.875rem;
	color: var(--color-accent);
}
.hiw-step h3 {
	color: var(--color-text);
	margin-bottom: 0.75rem;
}
.hiw-step p {
	margin-bottom: 0;
	color: var(--bs-gray-600);
	line-height: var(--lh-sm);
}
.hero-icon svg,
.hero-icon img {
	width: 2.5rem;
	height: 2.5rem;
	display: block;
	object-fit: contain;
}
.frosted-glass {
	position: relative;
	padding: 0.5rem 1rem;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.file-card {
	background: var(--bs-white);
	border: 1px solid var(--border);
	transition: all .3s var(--transition-cubic);
}
.file-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.file-card .text-secondary {
	line-height: var(--lh-sm);
	font-size: var(--fs-xs);
}
.file-icon {
	width: 3.5rem;
	height: 3.5rem;
	padding: 0.5rem;
	background-color: var(--color-depth);
	transition: transform .3s;
}
.file-icon svg {
	stroke: var(--bs-white);
}
.file-icon:hover {
	transform: scale(1.1);
}
.file-title {
	font-size: 1rem;
	font-weight: 600;
}
.content-left {
	min-width: 0;
}
.overlay-btn {
	width: 4rem;
	height: 4rem;
	background-color: var(--color-depth-2);
	transition: transform 0.3s;
}
.overlay-btn svg {
	stroke: var(--bs-white);
	width: 2rem;
	height: 2rem;
}
.img-popup:hover .group-hover-scale {
	transform: scale(1);
}
.scale-0 {
	transform: scale(0);
}
.ldcv::before {
	background: rgba(0,0,0,.92);
}
.course-card {
	border-width: 2px;
	border-color: #f3f4f6;
	transition: all .3s;
	text-decoration: none;
}
.course-card svg {
	width: 24px;
	height: 24px;
}
.course-card:hover {
	border-color: rgba(12,188,247,.3) !important;
	transform: translateY(-8px);
	box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
}
.course-card-bar {
	height: 4px;
	background: linear-gradient(to right, var(--color-accent), var(--color-accent-3));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s;
}
.course-card:hover .course-card-bar {
	transform: scaleX(1);
}
.badge-level {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem .9rem;
	font-size: .875rem;
	border-radius: 9999px;
	background: linear-gradient(to right, rgba(12,188,247,.10), rgba(10,168,224,.10));
	border: 2px solid rgba(12,188,247,.20);
	color: var(--color-accent-3);
}
.badge-level.badge-lg {
	font-size: var(--fs-lg);
	font-weight: 500;
}
.badge-certified {
	padding: 0.25rem .9rem;
	font-size: .875rem;
	border-radius: 9999px;
	background-color: #f0fdf4;
	border: 2px solid #bbf7d0;
	color: #15803d;
}
.badge-certified svg {
	width: 18px;
	height: 18px;
	stroke: #15803d;
}
.course-title {
	transition: color .3s;
}
.course-card:hover .course-title {
	color: var(--color-accent);
}
.icon-bubble {
	width: 36px;
	height: 36px;
	border-radius: 12px;
	background: linear-gradient(to bottom right, var(--color-accent), var(--color-accent-3));
	box-shadow: 0 8px 20px rgba(12,188,247,.20);
	stroke: var(--bs-white);
}
.course-arrow {
	fill: #9ca3af;
	transition: all .3s;
}
.course-card:hover .course-arrow {
	fill: var(--color-accent);
	transform: translateX(4px);
}
.video-wrapper {
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: var(--radius-lg);
	box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.youtube-iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}
.no-shadow {
	box-shadow: none !important;
}
.list-group-item {
	font-size: var(--fs-xs);
}
.custom-radio {
	display: flex;
	flex-direction: column;
	border: 2px solid var(--border);
	border-radius: 1rem;
	box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
	background-color: var(--bs-white);
	overflow: hidden;
}
.correct .custom-radio {
	border: 2px solid #bbf7d0;
	background-color: #f0fdf4;
}
.incorrect .custom-radio {
	border: 2px solid #f7bbda;
	background-color: #fdf0f4;
}
.custom-radio input[type="radio"] {
	display: none;
}
.radio-label {
	display: flex;
	align-items: center;
	padding: 10px 20px;
	cursor: pointer;
	border-bottom: 1px solid var(--border);
	transition: background-color 0.3s ease-in-out;
}
.radio-label:last-child {
	border-bottom: none;
}
.radio-circle {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	border: 2px solid var(--color-accent);
	border-radius: 50%;
	margin-right: 10px;
	transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.radio-text {
	font-size: var(--fs-xs);
	transition: color 0.3s ease-in-out;
}
.custom-radio input[type="radio"]:checked + .radio-label {
	background-color: var(--color-accent) !important;
}
.custom-radio input[type="radio"]:checked + .radio-label .radio-circle {
	border-color: var(--bs-white);
	background-color: var(--color-accent);
}
.custom-radio input[type="radio"]:checked + .radio-label .radio-text {
	color: var(--bs-white);
}
#verify {
	position: fixed;
	z-index: 11;
	left: 0;
	bottom: 0;
	border-top: 2px solid var(--border);
	width: 100%;
	padding: 0.5rem;
	background: var(--bs-white);
}
.test-summary strong {
	float: right;
}
.partners a {
	text-decoration: none;
}
.partners img {
	width: 64px;
	height: auto;
}

@media (min-width: 1400px) {
	.container {
		max-width: 1440px;
	}
}
@media (min-width: 1600px) {
	.container {
		max-width: 1560px;
	}
}
@media (min-width: 1921px) {
	.container {
		max-width: 1880px;
	}
}
@media (min-width: 991px) {
	.text-justify {
		text-align: justify;
	}
	.py-lg-6 {
		padding-top: 4.5rem !important;
		padding-bottom: 4.5rem !important;
	}
	.pt-lg-6 {
		padding-top: 4.5rem !important;
	}
	.pb-lg-6 {
		padding-bottom: 4.5rem !important;
	}
}

@media (max-width: 1399px) {
	.footer-card {
		font-size: 20px;
	}
}
@media (max-width: 1199px) {
	.footer-card {
		min-height: 90px
	}
	.footer-card svg {
		width: 32px;
		height: 32px;
	}
}
@media (max-width: 992px) {
	header .container {
		max-width: calc(100% - 30px);
	}
	.btn-filter + form {
		display: none;
	}
}
@media (max-width: 768px) {
	.py-5 {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}
	.py-6 {
		padding-top: 2.5rem !important;
		padding-bottom: 2.5rem !important;
	}
	.fs-4xl {
		font-size: var(--fs-3xl);
	}
	.fs-3xl {
		font-size: var(--fs-xxl);
	}
	.fs-xxl {
		font-size: var(--fs-xl);
	}
	.fs-xl {
		font-size: var(--fs-lg);
	}
	.fs-lg {
		font-size: var(--fs-md);
	}
	.user--content h1 {
		font-size: var(--fs-xxl);
	}
	.user--content h2 {
		font-size: var(--fs-xl);
	}
	.user--content h3 {
		font-size: var(--fs-lg);
	}
	.list-card {
		grid-template-columns: repeat(1, 1fr);
	}
	.notify-section {
		min-height: 400px;
	}
}
@media (max-width: 576px) {
	body {
		font: 400 var(--fs-sm)/var(--lh-sm) var(--font-body);
	}
	header.scrolled {
		padding: 0;
	}
	header .container {
		max-width: 100%;
	}
	.offcanvas {
		width: 100%;
		padding: 30px;
	}
	.fs-4xl {
		font-size: var(--fs-xl);
	}
	.fs-3xl {
		font-size: var(--fs-lg);
	}
	.fs-xxl {
		font-size: var(--fs-lg);
	}
	.notification {
		padding: 2rem 0;
	}
	.notification .col-12 > svg {
		width: 120px;
		height: 120px;
		margin: 0 auto -2.5rem auto;
	}
	.notification .col-12:hover > svg {
		transform: none;
	}
	.content-card {
		padding: 1rem;
	}
	.notify-section {
		min-height: auto;
	}
}

@keyframes pulse {
	from {
		opacity: 0;
	}
	to {
		opacity: 0.5;
	}
}
@keyframes ping {
	75%, 100% {
		transform: scale(2);
		opacity: 0;
	}
}
@keyframes loading {
	0% {
		stroke-dashoffset: 0px;
	}
	100% {
		stroke-dashoffset: 500px;
	}
}
@keyframes blob {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}
	33% {
		transform: translate(30px, -50px) scale(1.1);
	}
	66% {
		transform: translate(-20px, 20px) scale(0.9);
	}
}