/* poppins-regular - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: "Poppins";
	font-style: normal;
	font-weight: 400;
	src: url("../fonts/poppins-v24-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-500 - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: "Poppins";
	font-style: normal;
	font-weight: 500;
	src: url("../fonts/poppins-v24-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-600 - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: "Poppins";
	font-style: normal;
	font-weight: 600;
	src: url("../fonts/poppins-v24-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-700 - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: "Poppins";
	font-style: normal;
	font-weight: 700;
	src: url("../fonts/poppins-v24-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
	--brand-primary: #0e3f5a;
	--brand-primary-dark: #142937;
	--brand-primary-light: #eaf3f7;
	--brand-secondary: #617d8b;
	--brand-secondary-dark: #4e6673;
	--brand-secondary-light: #f3f7f9;
	--brand-accent: #fff3ea;
	--brand-accent-dark: #ff6b00;
	--brand-accent-light: #fff5e9;
	--bg-brand-secondary: #f8f9fa;
}
body {
	padding-top: 90px;
	font-family: "Poppins", sans-serif;
}
.btn-brand {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	height: 54px;
	padding: 0 28px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}
.btn-brand i {
	margin-left: 10px;
	font-size: 14px;
}
.btn-brand--outline i {
	margin-left: 0;
	margin-right: 10px;
}
.btn-brand--primary {
	background: var(--brand-primary);
	color: #fff;
	box-shadow: 0 12px 30px rgba(18, 50, 125, 0.2);
}
.btn-brand--primary:hover {
	background: var(--brand-primary-dark);
	color: #fff;
	text-decoration: none;
	transform: translateY(-3px);
	box-shadow: 0 18px 40px rgba(18, 50, 125, 0.25);
}
.btn-brand--outline {
	background: #fff;
	color: var(--brand-primary);
	border: 2px solid var(--brand-primary);
}
.btn-brand--outline:hover {
	background: var(--brand-primary);
	color: #fff;
	text-decoration: none;
	transform: translateY(-3px);
}
.btn-brand:focus {
	outline: none;
	box-shadow: none;
}
.btn-brand:active {
	transform: translateY(-1px);
}
/* ===========================
   SECTION
=========================== */
.section {
	padding: 100px 0;
	background: #fff;
}
.section__header {
	max-width: 720px;
	margin: 0 auto 60px;
}
.section__subtitle {
	display: inline-block;
	margin-bottom: 12px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #0d6efd;
}
.section__title {
	margin-bottom: 20px;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.3;
	color: #212529;
}
.section__description {
	margin: 0;
	font-size: 16px;
	line-height: 1.8;
	color: #6c757d;
}
@media (max-width: 991px) {
	.section {
		padding: 80px 0;
	}
	.section__title {
		font-size: 30px;
	}
}
@media (max-width: 767px) {
	.section {
		padding: 60px 0;
	}
	.section__header {
		margin-bottom: 40px;
	}
	.section__title {
		font-size: 26px;
	}
	.section__description {
		font-size: 15px;
	}
}
/* ===========================
   NAVBAR
=========================== */
.navbar-custom {
	background: #fff;
	padding: 18px 0;
	transition: 0.3s;
	box-shadow: none;
}
.navbar-custom.scrolled {
	padding: 10px 0;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.navbar-brand img {
	height: 45px;
	transition: 0.3s;
}
.navbar-custom.scrolled .navbar-brand img {
	height: 38px;
}
.navbar-nav {
	align-items: center;
}
.nav-item {
	margin: 0 10px;
}
.nav-link {
	color: var(--brand-primary-dark) !important;
	font-size: 16px;
	font-weight: 600;
	padding: 10px 14px !important;
	transition: all 0.25s ease;
}
.nav-link:hover {
	color: var(--brand-accent-dark) !important;
}
.nav-item.active .nav-link {
	color: var(--brand-accent-dark) !important;
}
.dropdown-menu {
	border: none;
	border-radius: 10px;
	padding: 10px;
	margin-top: 12px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.dropdown-item {
	padding: 10px 15px;
	border-radius: 6px;
	transition: 0.25s;
}
.dropdown-item:hover,
.dropdown-item.active {
	background: var(--brand-accent-light);
	color: var(--brand-accent-dark);
}
/* ===========================
   MOBILE NAVBAR
=========================== */
@media (max-width: 991px) {
	.navbar-collapse {
		background: #fff;
		margin-top: 15px;
		padding: 18px;
		border-radius: 12px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	}
	.navbar-nav {
		align-items: stretch;
	}
	.nav-item {
		margin: 4px 0;
	}
	.nav-link {
		display: block;
		width: 100%;
		padding: 12px 16px !important;
		border-radius: 8px;
		font-size: 15px;
	}
	.nav-link:hover {
		background: var(--brand-accent-light);
		box-shadow: none;
	}
	.nav-item.active .nav-link {
		background: var(--brand-accent-light);
		color: var(--brand-accent-dark) !important;
		box-shadow: none;
	}
	.navbar-custom .container {
		padding-left: 15px;
		padding-right: 15px;
	}
}
/* ===========================
   TOGGLER
=========================== */
.navbar-toggler {
	border: none;
	padding: 6px 0;
	background: transparent;
	outline: none !important;
	box-shadow: none !important;
}
.navbar-toggler:focus,
.navbar-toggler:active {
	outline: none;
	box-shadow: none;
}
.navbar-toggler span {
	display: block;
	width: 26px;
	height: 2.5px;
	background: var(--brand-primary-dark);
	margin: 6px 0;
	transition: 0.3s;
}
.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}
.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}
/* ==========================================================
   HERO
========================================================== */
.hero-slider {
	position: relative;
	overflow: hidden;
	background: #fff;
}

.hero-slider__swiper {
	position: relative;
	overflow: hidden;
}

.hero-slider__swiper .swiper-wrapper {
	display: flex;
}

.hero-slider__swiper .swiper-slide {
	flex-shrink: 0;
	width: 100%;
}

/* ==========================================================
   HERO WRAPPER
========================================================== */
.hero-slider__wrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 640px;
	overflow: hidden;
}

/* ==========================================================
   HERO CONTENT - LEFT
========================================================== */
.hero-slider__content {
	position: relative;
	width: 44%;
	display: flex;
	justify-content: flex-end;
	z-index: 5;
}

.hero-slider__inner {
	width: 100%;
	max-width: 560px;
	padding-right: 50px;
}

/* ==========================================================
   HERO MEDIA - RIGHT
========================================================== */
.hero-slider__media {
	position: relative;
	width: 56%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	z-index: 3;
}

/* ==========================================================
   HERO IMAGE CONTAINER
========================================================== */
.hero-slider__image {
	position: relative;
	width: 100%;
	height: 580px;

	overflow: hidden;

	border-radius: 140px 0 0 140px;

	background: #f5f5f5;

	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);

	isolation: isolate;
}

/* ==========================================================
   BLURRED BACKGROUND
========================================================== */
.hero-slider__image-bg {
	position: absolute;
	inset: -30px;

	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;

	filter: blur(25px);

	transform: scale(1.08);

	opacity: 0.75;

	z-index: 1;

	transition:
		transform 7s linear,
		opacity 0.5s ease;
}

/* Overlay agar background blur lebih soft */
.hero-slider__image-bg::after {
	content: "";

	position: absolute;
	inset: 0;

	background: rgba(255, 255, 255, 0.15);
}

/* ==========================================================
   MAIN IMAGE
========================================================== */
.hero-slider__image-main {
	position: relative;

	width: 100%;
	height: 100%;

	object-fit: contain;
	object-position: center;

	display: block;

	z-index: 2;

	transition: transform 7s linear;
}

/* ==========================================================
   IMAGE FRAME
========================================================== */
.hero-slider__image::before {
	content: "";

	position: absolute;
	inset: 12px;

	border: 8px solid #fff;

	border-radius: 128px 0 0 128px;

	pointer-events: none;

	z-index: 20;
}

/* ==========================================================
   IMAGE INNER SHADOW
========================================================== */
.hero-slider__image::after {
	content: "";

	position: absolute;
	inset: 0;

	box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.08);

	pointer-events: none;

	z-index: 10;
}

/* ==========================================================
   DECORATIVE DOTS
========================================================== */
.hero-slider__dots {
	position: absolute;

	width: 190px;
	height: 190px;

	background-image: radial-gradient(#d8d8d8 2px, transparent 2px);

	background-size: 18px 18px;

	opacity: 0.8;

	pointer-events: none;

	z-index: 1;

	transition: all 1s ease;
}

.hero-slider__dots--left {
	left: 40px;
	bottom: 70px;
}

.hero-slider__dots--right {
	right: 40px;
	top: 70px;
}

/* ==========================================================
   SUBTITLE
========================================================== */
.hero-slider__subtitle {
	display: inline-flex;
	align-items: center;

	padding: 10px 18px;

	margin-bottom: 24px;

	border-radius: 999px;

	background: var(--brand-accent-light);

	color: var(--brand-accent-dark);

	font-size: 14px;
	font-weight: 700;

	letter-spacing: 0.6px;

	text-transform: uppercase;
}

/* ==========================================================
   TITLE
========================================================== */
.hero-slider__title {
	margin: 0 0 24px;

	color: var(--brand-primary);

	font-size: 52px;
	font-weight: 800;

	line-height: 1.12;

	letter-spacing: -1px;
}

/* ==========================================================
   DESCRIPTION
========================================================== */
.hero-slider__description {
	max-width: 500px;

	margin-bottom: 36px;

	color: #6d6d6d;

	font-size: 17px;

	line-height: 1.9;
}

/* ==========================================================
   BUTTONS
========================================================== */
.hero-slider__buttons {
	display: flex;
	align-items: center;

	gap: 16px;

	flex-wrap: wrap;
}

/* ==========================================================
   BUTTON
========================================================== */
.hero-slider__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-width: 180px;
	height: 54px;

	padding: 0 28px;

	border-radius: 12px;

	font-size: 15px;
	font-weight: 600;

	text-decoration: none;

	transition: all 0.3s ease;
}

.hero-slider__button i {
	margin-left: 10px;

	font-size: 14px;
}

.hero-slider__button--outline i {
	margin-left: 0;
	margin-right: 10px;
}

/* ==========================================================
   PRIMARY BUTTON
========================================================== */
.hero-slider__button--primary {
	background: var(--brand-primary);

	color: #fff;

	box-shadow: 0 12px 30px rgba(18, 50, 125, 0.2);
}

.hero-slider__button--primary:hover {
	background: var(--brand-primary-dark);

	color: #fff;

	text-decoration: none;

	transform: translateY(-3px);

	box-shadow: 0 18px 40px rgba(18, 50, 125, 0.25);
}

/* ==========================================================
   OUTLINE BUTTON
========================================================== */
.hero-slider__button--outline {
	background: #fff;

	color: var(--brand-primary);

	border: 2px solid var(--brand-primary);
}

.hero-slider__button--outline:hover {
	background: var(--brand-primary);

	color: #fff;

	text-decoration: none;

	transform: translateY(-3px);
}

/* ==========================================================
   BUTTON STATES
========================================================== */
.hero-slider__button:focus {
	outline: none;

	box-shadow: none;
}

.hero-slider__button:active {
	transform: translateY(-1px);
}

/* ==========================================================
   TEXT SLIDE ANIMATION - INITIAL
========================================================== */
.swiper-slide .hero-slider__subtitle,
.swiper-slide .hero-slider__title,
.swiper-slide .hero-slider__description,
.swiper-slide .hero-slider__buttons {
	opacity: 0;

	transform: translateY(35px);
}

/* ==========================================================
   TEXT SLIDE ANIMATION - ACTIVE
========================================================== */
.swiper-slide-active .hero-slider__subtitle {
	opacity: 1;

	transform: translateY(0);

	transition: 0.6s ease 0.2s;
}

.swiper-slide-active .hero-slider__title {
	opacity: 1;

	transform: translateY(0);

	transition: 0.6s ease 0.35s;
}

.swiper-slide-active .hero-slider__description {
	opacity: 1;

	transform: translateY(0);

	transition: 0.6s ease 0.5s;
}

.swiper-slide-active .hero-slider__buttons {
	opacity: 1;

	transform: translateY(0);

	transition: 0.6s ease 0.65s;
}

/* ==========================================================
   IMAGE SLIDE ANIMATION
========================================================== */
.swiper-slide .hero-slider__image {
	opacity: 0;

	transform: translateX(70px) scale(0.95);
}

.swiper-slide-active .hero-slider__image {
	opacity: 1;

	transform: translateX(0) scale(1);

	transition:
		transform 0.9s ease 0.2s,
		opacity 0.9s ease 0.2s;

	box-shadow: 0 25px 70px rgba(0, 0, 0, 0.16);
}

/* ==========================================================
   IMAGE ZOOM EFFECT
========================================================== */
.swiper-slide-active .hero-slider__image-main {
	transform: scale(1.02);
}

.swiper-slide-active .hero-slider__image-bg {
	transform: scale(1.1);
}

/* ==========================================================
   DOTS ANIMATION
========================================================== */
.swiper-slide .hero-slider__dots--left {
	opacity: 0;

	transform: translateX(-30px);
}

.swiper-slide .hero-slider__dots--right {
	opacity: 0;

	transform: translateX(30px);
}

.swiper-slide-active .hero-slider__dots--left,
.swiper-slide-active .hero-slider__dots--right {
	opacity: 0.75;

	transform: translateX(0);
}

/* ==========================================================
   NAVIGATION
========================================================== */
.hero-slider__prev,
.hero-slider__next {
	position: absolute;

	bottom: 26px;

	width: 54px;
	height: 54px;

	border-radius: 50%;

	background: #ffffff;

	display: flex;
	align-items: center;
	justify-content: center;

	cursor: pointer;

	transition: 0.35s;

	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);

	z-index: 15;
}

.hero-slider__prev {
	right: 100px;
}

.hero-slider__next {
	right: 35px;
}

.hero-slider__prev i,
.hero-slider__next i {
	font-size: 17px;

	color: var(--brand-primary);

	transition: 0.35s;
}

.hero-slider__prev:hover,
.hero-slider__next:hover {
	background: var(--brand-primary);

	transform: translateY(-3px);
}

.hero-slider__prev:hover i,
.hero-slider__next:hover i {
	color: #ffffff;
}

/* ==========================================================
   DISABLED NAVIGATION
========================================================== */
.hero-slider__prev.swiper-button-disabled,
.hero-slider__next.swiper-button-disabled {
	opacity: 0.45;

	cursor: default;

	pointer-events: none;
}
/* ==========================================================
   PAGINATION
========================================================== */
.hero-slider__pagination {
	position: absolute;

	left: 0;
	right: 0;
	bottom: 42px;

	width: 100%;

	display: flex;
	align-items: center;
	justify-content: center;

	z-index: 15;
}

.hero-slider__pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;

	margin: 0 6px !important;

	background: #d7dce6;

	opacity: 1;

	border-radius: 50%;

	transition: 0.3s;
}

.hero-slider__pagination .swiper-pagination-bullet-active {
	background: var(--brand-accent-dark);

	transform: scale(1.2);
}

/* ==========================================================
   SWIPER CURSOR
========================================================== */
.hero-slider__swiper {
	cursor: grab;
}

.hero-slider__swiper:active {
	cursor: grabbing;
}

/* ==========================================================
   WRAPPER TRANSITION
========================================================== */
.hero-slider__wrapper {
	transition: 0.6s;
}

/* ==========================================================
   IMAGE HOVER / TRANSITION
========================================================== */
.hero-slider__image {
	transition:
		transform 0.6s ease,
		box-shadow 0.6s ease;
}
/* ==========================================================
   RESPONSIVE - MAX 1400px
========================================================== */
@media (max-width: 1400px) {
	.hero-slider__wrapper {
		min-height: 600px;
	}

	.hero-slider__content {
		width: 45%;
	}

	.hero-slider__media {
		width: 55%;
	}

	.hero-slider__image {
		height: 540px;
	}
}

/* ==========================================================
   RESPONSIVE - MAX 1200px
========================================================== */
@media (max-width: 1200px) {
	.hero-slider__wrapper {
		min-height: 560px;
	}

	.hero-slider__content {
		width: 46%;
	}

	.hero-slider__media {
		width: 54%;
	}

	.hero-slider__inner {
		max-width: 500px;
		padding-right: 35px;
	}

	.hero-slider__title {
		font-size: 46px;
	}

	.hero-slider__description {
		font-size: 16px;
	}

	.hero-slider__image {
		height: 500px;
		border-radius: 100px 0 0 100px;
	}

	.hero-slider__image::before {
		border-radius: 88px 0 0 88px;
	}
}

/* ==========================================================
   TABLET / MOBILE - MAX 991.98px
========================================================== */
@media (max-width: 991.98px) {
	/* ------------------------------------------------------
	   WRAPPER
	------------------------------------------------------ */
	.hero-slider__wrapper {
		position: relative;

		min-height: 88vh;

		padding: 0;

		display: flex;
		align-items: flex-end;

		overflow: hidden;
	}

	/* ------------------------------------------------------
	   MEDIA FULL SCREEN
	------------------------------------------------------ */
	.hero-slider__media {
		position: absolute;

		inset: 0;

		width: 100%;

		margin: 0;

		order: 0;

		display: block;

		z-index: 1;
	}

	/* ------------------------------------------------------
	   IMAGE CONTAINER
	------------------------------------------------------ */
	.hero-slider__image {
		position: absolute;

		inset: 0;

		width: 100%;
		height: 100%;

		margin: 0;

		border-radius: 0;

		box-shadow: none;

		background: #111;

		overflow: hidden;
	}

	/* ------------------------------------------------------
	   MOBILE MAIN IMAGE
	   FULL AREA - COVER
	------------------------------------------------------ */
	.hero-slider__image-main {
		position: absolute;

		inset: 0;

		width: 100%;
		height: 100%;

		object-fit: cover;
		object-position: center;

		transform: none !important;

		z-index: 2;
	}

	/* ------------------------------------------------------
	   BLURRED BACKGROUND DISABLE
	------------------------------------------------------ */
	.hero-slider__image-bg {
		display: none;
	}

	/* ------------------------------------------------------
	   REMOVE DESKTOP FRAME
	------------------------------------------------------ */
	.hero-slider__image::before {
		display: none;
	}

	/* ------------------------------------------------------
	   DARK GRADIENT OVER IMAGE
	------------------------------------------------------ */
	.hero-slider__image::after {
		content: "";

		position: absolute;

		inset: 0;

		background: linear-gradient(
			to bottom,
			rgba(8, 18, 45, 0.12) 0%,
			rgba(8, 18, 45, 0.2) 28%,
			rgba(8, 18, 45, 0.72) 68%,
			rgba(8, 18, 45, 0.95) 100%
		);

		pointer-events: none;

		z-index: 10;

		box-shadow: none;
	}

	/* ------------------------------------------------------
	   CONTENT
	------------------------------------------------------ */
	.hero-slider__content {
		width: 100%;

		position: relative;

		z-index: 20;

		display: flex;

		align-items: flex-end;
	}

	/* ------------------------------------------------------
	   CONTENT INNER
	------------------------------------------------------ */
	.hero-slider__inner {
		width: 100%;

		max-width: none;

		padding: 40px 24px 90px;
	}

	/* ------------------------------------------------------
	   SUBTITLE
	------------------------------------------------------ */
	.hero-slider__subtitle {
		display: inline-flex;

		align-items: center;

		background: rgba(255, 255, 255, 0.14);

		border: 1px solid rgba(255, 255, 255, 0.25);

		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);

		color: #fff;

		font-weight: 600;
	}

	/* ------------------------------------------------------
	   TITLE
	------------------------------------------------------ */
	.hero-slider__title {
		color: #fff;

		font-size: 42px;
	}

	/* ------------------------------------------------------
	   DESCRIPTION
	------------------------------------------------------ */
	.hero-slider__description {
		color: rgba(255, 255, 255, 0.92);
	}

	/* ------------------------------------------------------
	   BUTTON
	------------------------------------------------------ */
	.hero-slider__buttons {
		justify-content: flex-start;
	}

	.hero-slider__button {
		width: 100%;

		max-width: 300px;
	}

	/* ------------------------------------------------------
	   HIDE ARROWS
	------------------------------------------------------ */
	.hero-slider__prev,
	.hero-slider__next {
		display: none;
	}
}

/* ==========================================================
   MOBILE - MAX 767.98px
========================================================== */
@media (max-width: 767.98px) {
	.hero-slider__wrapper {
		min-height: 82vh;
	}

	/* ------------------------------------------------------
	   FULL SCREEN IMAGE
	------------------------------------------------------ */
	.hero-slider__image-main {
		object-fit: cover;

		object-position: center;
	}

	/* ------------------------------------------------------
	   CONTENT
	------------------------------------------------------ */
	.hero-slider__inner {
		padding: 36px 22px 85px;
	}

	.hero-slider__title {
		font-size: 34px;

		line-height: 1.15;
	}

	.hero-slider__description {
		font-size: 15px;

		line-height: 1.75;
	}
}

/* ==========================================================
   SMALL MOBILE - MAX 479.98px
========================================================== */
@media (max-width: 479.98px) {
	.hero-slider__wrapper {
		min-height: 78vh;
	}

	/* ------------------------------------------------------
	   IMAGE
	------------------------------------------------------ */
	.hero-slider__image-main {
		object-fit: cover;

		object-position: center;
	}

	/* ------------------------------------------------------
	   CONTENT
	------------------------------------------------------ */
	.hero-slider__inner {
		padding: 32px 18px 82px;
	}

	/* ------------------------------------------------------
	   SUBTITLE
	------------------------------------------------------ */
	.hero-slider__subtitle {
		font-size: 11px;

		padding: 8px 16px;

		margin-bottom: 18px;
	}

	/* ------------------------------------------------------
	   TITLE
	------------------------------------------------------ */
	.hero-slider__title {
		font-size: 30px;

		margin-bottom: 16px;
	}

	/* ------------------------------------------------------
	   DESCRIPTION
	------------------------------------------------------ */
	.hero-slider__description {
		font-size: 14px;

		line-height: 1.7;

		margin-bottom: 24px;
	}

	/* ------------------------------------------------------
	   BUTTON
	------------------------------------------------------ */
	.hero-slider__button {
		height: 52px;

		width: 100%;

		font-size: 15px;
	}
}
/*======================================
=            About Section
======================================*/
.about {
	padding: 100px 0;
	background: var(--bg-brand-secondary);
}
.about__gallery {
	position: relative;
	padding-right: 70px;
	padding-bottom: 60px;
}
.about__image {
	display: block;
	border-radius: 18px;
	object-fit: cover;
}
.about__image--main {
	width: 100%;
	height: 620px;
}
.about__image--secondary {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 260px;
	height: 200px;
	border: 8px solid #fff;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.about__experience {
	position: absolute;
	left: 30px;
	bottom: 30px;
	background: var(--brand-primary);
	color: #fff;
	padding: 25px 30px;
	border-radius: 16px;
	text-align: center;
}
.about__experience-number {
	margin: 0;
	font-size: 42px;
	font-weight: 700;
	line-height: 1;
}
.about__experience-text {
	display: block;
	margin-top: 8px;
	font-size: 15px;
}
.about__subtitle {
	display: inline-block;
	margin-bottom: 12px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #0d6efd;
}
.about__description {
	margin-bottom: 30px;
	font-size: 16px;
	line-height: 1.9;
	color: #6c757d;
}
/*======================================
=            Responsive
======================================*/
@media (max-width: 991px) {
	.about {
		padding: 80px 0;
	}
	.about__gallery {
		padding-right: 40px;
	}
	.about__image--main {
		height: 500px;
	}
	.about__image--secondary {
		width: 220px;
		height: 170px;
	}
}
@media (max-width: 767px) {
	.about {
		padding: 60px 0;
	}
	.about__gallery {
		padding: 0;
	}
	.about__image--main {
		height: 380px;
	}
	.about__image--secondary {
		display: none;
	}
	.about__experience {
		left: 20px;
		bottom: 20px;
		padding: 20px;
	}
	.about__experience-number {
		font-size: 32px;
	}
}
/*======================================
=      Product Slider
======================================*/
.product-slider__slider-wrapper {
	position: relative;
	padding: 0 25px;
}
.product-slider__slider {
	overflow: hidden;
	padding: 10px 5px 35px;
}
.product-slider__slider .swiper-slide {
	height: auto;
}
.product-slider__nav {
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	border: none;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-primary);
	cursor: pointer;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	z-index: 10;
	transition:
		opacity 0.3s ease,
		visibility 0.3s ease,
		background 0.3s ease;
}
.product-slider__nav:hover {
	background: var(--brand-primary);
	color: #fff;
}
.product-slider__nav--prev {
	left: 5px;
}
.product-slider__nav--next {
	right: 5px;
}
@media (max-width: 991px) {
	.product-slider {
		padding: 80px 0;
	}
	.product-slider__title {
		font-size: 30px;
	}
}
@media (max-width: 767px) {
	.product-slider {
		padding: 60px 0;
	}
	.product-slider__header {
		margin-bottom: 40px;
	}
	.product-slider__title {
		font-size: 26px;
	}
	.product-slider__description {
		font-size: 15px;
	}
	.product-slider__slider-wrapper {
		padding: 0;
	}
	.product-slider__nav {
		width: 48px;
		height: 48px;
	}
	.product-slider__nav--prev {
		left: -5px;
	}
	.product-slider__nav--next {
		right: -5px;
	}
}
.product-slider__nav.swiper-button-disabled {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
/*======================================
=            Why Us Section
======================================*/
.section.why-us {
	background: var(--bg-brand-secondary);
}
.why-us__list {
	align-items: stretch;
}
.why-us__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	padding: 40px 30px;
	background: #fff;
	border: 1px solid #edf1f5;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
	text-align: center;
	transition: all 0.3s ease;
}
.why-us__item:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}
.why-us__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin-bottom: 24px;
	border-radius: 50%;
	background: #edf4ff;
	color: #0d6efd;
	font-size: 30px;
	transition: all 0.3s ease;
}
.why-us__item:hover .why-us__icon {
	background: #0d6efd;
	color: #fff;
	transform: scale(1.08);
}
.why-us__heading {
	margin-bottom: 16px;
	font-size: 21px;
	font-weight: 700;
	color: #212529;
}
.why-us__text {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: #6c757d;
}
@media (max-width: 991px) {
	.why-us__item {
		padding: 35px 25px;
	}
}
@media (max-width: 767px) {
	.why-us__item {
		padding: 30px 20px;
	}
	.why-us__icon {
		width: 64px;
		height: 64px;
		margin-bottom: 20px;
		font-size: 26px;
	}
	.why-us__heading {
		font-size: 19px;
	}
	.why-us__text {
		font-size: 14px;
	}
}
/*======================================
=            Trusted Section
======================================*/
.trusted__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 80px 50px;
}
.trusted__item {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 160px;
}
.trusted__logo {
	max-width: 300px;
	max-height: 130px;
	width: 100%;
	object-fit: contain;
	opacity: 0.75;
	transition: 0.3s ease;
}
.trusted__item:hover .trusted__logo {
	filter: grayscale(0);
	opacity: 1;
	transform: scale(1.08);
}
@media (max-width: 767px) {
	.trusted__list {
		column-gap: 20px;
		row-gap: 50px;
	}
	.trusted__item {
		width: 130px;
	}
	.trusted__logo {
		max-width: 130px;
		max-height: 70px;
	}
}
/*======================================
=          Production Section
======================================*/
.section.production {
	padding: 100px 0;
	background: var(--bg-brand-secondary);
}
.production__featured {
	position: relative;
	display: block;
	height: 540px;
	overflow: hidden;
	border-radius: 20px;
	text-decoration: none;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}
.production__featured img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.45s;
}
.production__featured:hover {
	text-decoration: none;
}
.production__featured:hover img {
	transform: scale(1.05);
}
.production__featured-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.55));
	transition: 0.3s;
}
.production__featured:hover .production__featured-overlay {
	background: linear-gradient(rgba(13, 110, 253, 0.2), rgba(0, 0, 0, 0.6));
}
.production__featured-play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	color: #0d6efd;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	transition: 0.3s;
}
.production__featured:hover .production__featured-play {
	transform: translate(-50%, -50%) scale(1.08);
}
.production__featured-content {
	position: absolute;
	left: 35px;
	right: 35px;
	bottom: 30px;
	color: #fff;
}
.production__featured-label {
	display: inline-block;
	margin-bottom: 12px;
	padding: 6px 14px;
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(8px);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.production__featured-title {
	margin: 0;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.4;
}
.production__playlist {
	height: 540px;
	overflow-y: auto;
	padding-right: 8px;
}
.production__playlist::-webkit-scrollbar {
	width: 6px;
}
.production__playlist::-webkit-scrollbar-thumb {
	background: #d7dde8;
	border-radius: 20px;
}
.production__playlist::-webkit-scrollbar-track {
	background: transparent;
}
.production__item {
	display: flex;
	align-items: center;
	margin-bottom: 16px;
	padding: 10px;
	border: 1px solid #edf1f5;
	border-radius: 16px;
	background: #fff;
	text-decoration: none;
	color: inherit;
	transition: 0.3s;
}
.production__item:last-child {
	margin-bottom: 0;
}
.production__item:hover {
	transform: translateX(6px);
	border-color: #0d6efd;
	box-shadow: 0 15px 35px rgba(13, 110, 253, 0.12);
	text-decoration: none;
	color: inherit;
}
.production__thumbnail {
	position: relative;
	width: 130px;
	min-width: 130px;
	height: 82px;
	border-radius: 12px;
	overflow: hidden;
}
.production__thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.35s;
}
.production__item:hover .production__thumbnail img {
	transform: scale(1.08);
}
.production__play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	color: #0d6efd;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	transition: 0.3s;
}
.production__item:hover .production__play {
	transform: translate(-50%, -50%) scale(1.1);
}
.production__content {
	padding-left: 18px;
}
.production__video-title {
	margin-bottom: 8px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	color: #212529;
}
.production__video-text {
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
	color: #6c757d;
}
@media (max-width: 991px) {
	.production__featured {
		height: 420px;
		margin-bottom: 30px;
	}
	.production__playlist {
		height: auto;
		overflow: visible;
	}
}
@media (max-width: 767px) {
	.production__featured {
		height: 240px;
		border-radius: 16px;
	}
	.production__featured-content {
		left: 20px;
		right: 20px;
		bottom: 18px;
	}
	.production__featured-title {
		font-size: 20px;
	}
	.production__featured-play {
		width: 70px;
		height: 70px;
		font-size: 24px;
	}
	.production__item {
		padding: 8px;
		margin-bottom: 12px;
	}
	.production__thumbnail {
		width: 100px;
		min-width: 100px;
		height: 70px;
	}
	.production__content {
		padding-left: 12px;
	}
	.production__video-title {
		font-size: 15px;
		margin-bottom: 4px;
	}
	.production__video-text {
		font-size: 13px;
	}
}
.production-modal {
	position: relative;
	background: transparent;
	border: none;
	box-shadow: none;
}
.production-modal iframe {
	background: #000;
	border-radius: 16px;
}
.production-modal__close {
	position: absolute;
	top: -48px;
	right: 0;
	width: 42px;
	height: 42px;
	border: none;
	border-radius: 50%;
	background: #fff;
	color: #212529;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: 0.3s;
	z-index: 20;
}
.production-modal__close:hover {
	background: #0d6efd;
	color: #fff;
}
.production-modal__close:focus {
	outline: none;
	box-shadow: none;
}
#productionModal .modal-dialog {
	max-width: 980px;
}
#productionModal .modal-content {
	background: transparent;
}
#productionModal {
	padding: 0 15px;
}
@media (max-width: 767px) {
	.production-modal__close {
		top: -42px;
		width: 38px;
		height: 38px;
	}
}
/*======================================
=            Contact Section
======================================*/
.contact__card {
	height: 100%;
	padding: 40px;
	border: 1px solid #edf1f5;
	border-radius: 16px;
	background: #fff;
}
.contact__item {
	display: flex;
	align-items: flex-start;
}
.contact__item:not(:last-child) {
	margin-bottom: 35px;
}
.contact__icon {
	width: 56px;
	height: 56px;
	margin-right: 18px;
	border-radius: 50%;
	background: #edf4ff;
	color: #0d6efd;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	flex-shrink: 0;
}
.contact__label {
	margin-bottom: 8px;
	font-size: 20px;
	font-weight: 700;
	color: #212529;
}
.contact__text {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: #6c757d;
}
.contact__map {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	min-height: 520px;
	box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}
.contact__map iframe {
	width: 100%;
	height: 100%;
	min-height: 520px;
	border: 0;
}
@media (max-width: 991px) {
	.contact__map {
		min-height: 420px;
	}
}
@media (max-width: 767px) {
	.contact__card {
		padding: 30px 25px;
	}
	.contact__icon {
		width: 48px;
		height: 48px;
		font-size: 18px;
		margin-right: 15px;
	}
	.contact__label {
		font-size: 18px;
	}
	.contact__map {
		min-height: 420px;
	}
	.contact__map iframe {
		min-height: 420px;
	}
}
/* ==========================
   Vision Mission
========================== */
.vision-mission__card {
	height: 100%;
	background: #ffffff;
	padding: 35px;
	border-radius: 18px;
	display: flex;
	align-items: flex-start;
	gap: 25px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
}
.vision-mission__card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.vision-mission__icon {
	width: 65px;
	height: 65px;
	min-width: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--brand-accent-light);
	color: var(--brand-accent-dark);
	font-size: 26px;
}
.vision-mission__heading {
	font-size: 24px;
	font-weight: 700;
	color: #222;
	margin-bottom: 15px;
}
.vision-mission__text {
	color: #666;
	line-height: 1.8;
	margin-bottom: 0;
}
.vision-mission__list {
	padding-left: 20px;
	margin-bottom: 0;
}
.vision-mission__list li {
	color: #666;
	line-height: 1.8;
	margin-bottom: 10px;
}
@media (max-width: 768px) {
	.vision-mission__card {
		flex-direction: column;
		padding: 25px;
	}
}
/*======================================
=            Gallery Section
======================================*/
.gallery__item {
	display: block;
	text-decoration: none;
}
.gallery__item:hover {
	text-decoration: none;
}
.gallery__image {
	position: relative;
	overflow: hidden;
	border-radius: 14px;
	background: #f8f9fa;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
.gallery__image img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: 0.4s;
}
.gallery__overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(13, 110, 253, 0.72);
	opacity: 0;
	visibility: hidden;
	transition: 0.35s;
}
.gallery__zoom {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0d6efd;
	font-size: 20px;
	transform: scale(0.8);
	transition: 0.35s;
}
.gallery__item:hover .gallery__image img {
	transform: scale(1.08);
}
.gallery__item:hover .gallery__overlay {
	opacity: 1;
	visibility: visible;
}
.gallery__item:hover .gallery__zoom {
	transform: scale(1);
}
@media (max-width: 991px) {
	.gallery__image img {
		height: 220px;
	}
}
@media (max-width: 767px) {
	.gallery__image {
		border-radius: 12px;
	}
	.gallery__image img {
		height: 170px;
	}
	.gallery__zoom {
		width: 48px;
		height: 48px;
		font-size: 18px;
	}
}
/* ========================================
   PRODUCT SECTION
======================================== */
.product-section {
	padding: 60px 0;
}
.category-sidebar {
	position: sticky;
	top: 100px;
	background: #fff;
	border-radius: 18px;
	border: 1px solid #edf2f7;
	overflow: hidden;
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}
.sidebar-header {
	padding: 24px;
	border-bottom: 1px solid #edf2f7;
}
.sidebar-header h4 {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	color: #1e293b;
}
.sidebar-header p {
	margin: 10px 0 0;
	color: #64748b;
	font-size: 14px;
	line-height: 1.6;
}
/* ========================================
   CATEGORY LIST
======================================== */
.category-list {
	list-style: none;
	padding: 16px;
	margin: 0;
}
.category-list li + li {
	margin-top: 10px;
}
.category-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	text-decoration: none;
	border-radius: 12px;
	color: #334155;
	transition: 0.25s;
}
.category-left {
	display: flex;
	align-items: center;
	gap: 14px;
}
.category-left i {
	width: 20px;
	text-align: center;
	color: #94a3b8;
	transition: 0.25s;
}
.category-left span {
	font-size: 15px;
	font-weight: 500;
}
.category-count {
	min-width: 34px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	background: #f1f5f9;
	color: #64748b;
	font-size: 13px;
	font-weight: 600;
	transition: 0.25s;
}
.category-list a:hover {
	background: #eff6ff;
	color: #2563eb;
}
.category-list a:hover i {
	color: #2563eb;
}
.category-list a:hover .category-count {
	background: #2563eb;
	color: #fff;
}
.category-list li.active a {
	background: #2563eb;
	color: #fff;
}
.category-list li.active i {
	color: #fff;
}
.category-list li.active .category-count {
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
}
/* ========================================
   TOOLBAR
======================================== */
.product-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	margin-bottom: 40px;
}
/* LEFT */
.toolbar-left {
	flex: 1;
	min-width: 0;
}
/* SEARCH */
.search-box {
	position: relative;
	width: 100%;
}
.search-box i {
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: #94a3b8;
	font-size: 16px;
}
.search-box input {
	width: 100%;
	height: 52px;
	padding-left: 48px;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	box-shadow: none;
}
.search-box input:focus {
	border-color: #2563eb;
	box-shadow: none;
}
/* RIGHT */
.toolbar-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	flex-shrink: 0;
}
.product-count {
	color: #64748b;
	white-space: nowrap;
	font-size: 15px;
}
.product-count strong {
	color: #0f172a;
	font-weight: 700;
}
/* ACTION */
.toolbar-action {
	display: flex;
	align-items: center;
	gap: 12px;
}
.sort-select {
	width: 180px;
	height: 52px;
	border-radius: 12px;
}
.btn-filter {
	height: 52px;
	padding: 0 18px;
	border-radius: 12px;
	white-space: nowrap;
}
@media (max-width: 991.98px) {
	.product-toolbar {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}
	.toolbar-left {
		width: 100%;
	}
	.toolbar-right {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.product-count {
		display: none;
	}
	.toolbar-action {
		width: 100%;
		display: flex;
		gap: 10px;
	}
	.btn-filter {
		flex: 0 0 auto;
		height: 48px;
	}
	.sort-select {
		flex: 1;
		width: auto;
		height: 48px;
	}
	.search-box input {
		height: 48px;
	}
}
@media (max-width: 575.98px) {
	.product-toolbar {
		gap: 14px;
	}
	.toolbar-action {
		gap: 10px;
	}
	.btn-filter {
		min-width: 100px;
		padding: 0 16px;
	}
	.sort-select {
		min-width: 0;
	}
}
.filter-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	z-index: 1040;
}
.filter-overlay.show {
	opacity: 1;
	visibility: visible;
}
.filter-drawer {
	position: fixed;
	top: 0;
	right: -340px;
	width: 320px;
	max-width: 90%;
	height: 100vh;
	background: #fff;
	transition: 0.35s;
	z-index: 1050;
	display: flex;
	flex-direction: column;
}
.filter-drawer.show {
	right: 0;
}
.filter-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid #eee;
}
.btn-close-filter {
	border: none;
	background: none;
	font-size: 20px;
}
.filter-body {
	padding: 20px;
	overflow: auto;
}
.mobile-category-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.mobile-category-list li {
	margin-bottom: 10px;
}
.mobile-category-list a {
	display: block;
	padding: 12px 16px;
	border-radius: 10px;
	text-decoration: none;
	color: #333;
	background: #f8f9fa;
}
.mobile-category-list li.active a {
	background: #2563eb;
	color: #fff;
}
/* ========================================
   PRODUCT DETAIL
======================================== */
.product-detail {
	padding: 80px 0;
}
.product-info {
	padding-left: 25px;
}
.product-badge {
	display: inline-block;
	padding: 5px 10px;
	border-radius: 5px;
	background: #eef4ff;
	color: #2b5cf6;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.3px;
	margin-bottom: 15px;
}
.product-title {
	font-size: 2rem; /* 32px */
	font-weight: 700;
	line-height: 1.25;
	color: #17315b;
	margin-bottom: 28px;
}
.product-meta {
	border-top: 1px solid #edf1f7;
}
.meta-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
	border-bottom: 1px solid #edf1f7;
}
.meta-left {
	display: flex;
	align-items: center;
	font-size: 14px;
	color: #495057;
}
.meta-left i {
	width: 22px;
	margin-right: 10px;
	color: #2b5cf6;
	font-size: 16px;
}
.meta-right {
	font-size: 14px;
	color: #495057;
}
.meta-price {
	font-size: 1.65rem; /* ±26px */
	font-weight: 700;
	color: #2563eb;
	line-height: 1;
}
.btn-product {
	height: 50px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}
.btn-product i {
	font-size: 16px;
	margin-right: 8px;
}
.btn-success.btn-product {
	background: #25d366;
	border-color: #25d366;
	color: #fff;
}
.btn-success.btn-product:hover {
	background: #1fb85a;
	border-color: #1fb85a;
}
.btn-outline-primary.btn-product {
	background: #fff;
	border: 1.5px solid #2563eb;
	color: #2563eb;
}
.btn-outline-primary.btn-product:hover {
	background: #2563eb;
	color: #fff;
}
.feature-wrapper {
	margin-top: 28px;
	display: flex;
	justify-content: space-between;
	text-align: center;
}
.feature-item {
	width: 24%;
}
.feature-item i {
	font-size: 22px;
	color: #2b5cf6;
	margin-bottom: 10px;
}
.feature-item span {
	display: block;
	font-size: 12px;
	line-height: 1.45;
	color: #495057;
}
@media (max-width: 991.98px) {
	.product-info {
		padding-left: 0;
		margin-top: 35px;
	}
	.product-title {
		font-size: 28px;
	}
}
@media (max-width: 767.98px) {
	.meta-item {
		flex-direction: column;
		align-items: flex-start;
	}
	.meta-right,
	.meta-price {
		margin-top: 8px;
		margin-left: 32px;
	}
	.btn-product {
		font-size: 13px;
		height: 44px;
	}
	.feature-wrapper {
		flex-wrap: wrap;
	}
	.feature-item {
		width: 50%;
		margin-bottom: 25px;
	}
}
.product-tabs {
	border-bottom: 1px solid #e9ecef;
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.product-tabs::-webkit-scrollbar {
	display: none;
}
.product-tabs .nav-item {
	flex: 0 0 auto;
}
.product-tabs .nav-link {
	border: 0;
	border-bottom: 3px solid transparent;
	border-radius: 0;
	background: transparent;
	color: var(--brand-primary);
	font-size: 18px;
	font-weight: 700;
	padding: 16px 0;
	margin-right: 40px;
	white-space: nowrap;
	transition: 0.3s;
}
.product-tabs .nav-link:hover {
	color: #0d6efd;
}
.product-tabs .nav-link.active {
	color: var(--brand-accent-dark);
	border-bottom-color: var(--brand-accent-dark);
}
@media (max-width: 991.98px) {
	.product-tabs .nav-link {
		font-size: 16px;
		margin-right: 30px;
		padding: 14px 0;
	}
}
@media (max-width: 767.98px) {
	.product-content {
		padding: 40px 0;
	}
	.product-tabs .nav-link {
		font-size: 15px;
		margin-right: 24px;
		padding: 12px 0;
	}
	.tab-content {
		padding-top: 20px !important;
	}
	.tab-content p {
		font-size: 15px;
		line-height: 1.8;
	}
	.tab-content h3 {
		font-size: 24px;
		margin-top: 28px;
		margin-bottom: 15px;
	}
	.tab-content li {
		font-size: 15px;
		margin-bottom: 10px;
	}
}
@media (max-width: 575.98px) {
	.product-tabs .nav-link {
		font-size: 14px;
		margin-right: 20px;
		padding: 10px 0;
	}
	.tab-content p,
	.tab-content li {
		font-size: 14px;
	}
	.tab-content h3 {
		font-size: 22px;
	}
}

@media (max-width: 991px) {
	.product-detail {
		padding: 50px 0;
	}
	.product-info {
		margin-top: 40px;
		padding-left: 0;
	}
	.product-title {
		font-size: 34px;
	}
}
.gallery-thumbs {
	margin-top: 16px;
}
.gallery-thumbs .swiper-slide {
	width: 90px;
	height: 90px;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	border: 2px solid transparent;
	opacity: 0.6;
	transition: 0.3s;
}
.gallery-thumbs .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gallery-thumbs .swiper-slide-thumb-active {
	opacity: 1;
	border-color: #2563eb;
}
.related-product-section {
	padding: 80px 0;
}
.section-header {
	display: flex;
	justify-content: space-between;
	align-items: end;
	margin-bottom: 35px;
}
.section-subtitle {
	display: block;
	color: #2563eb;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
}
.section-title {
	font-size: 34px;
	font-weight: 700;
	margin: 0;
}
.view-all {
	color: #2563eb;
	font-weight: 600;
	text-decoration: none;
}
.view-all:hover {
	color: #0f172a;
}
@media (max-width: 991px) {
	.section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}
	.section-title {
		font-size: 28px;
	}
}
/*======================================
=            Page Header
======================================*/
.page-header {
	position: relative;
	min-height: 320px;
	display: flex;
	align-items: center;
	padding: 80px 0;
	color: #fff;
	overflow: hidden;
	background:
		linear-gradient(rgba(9, 20, 52, 0.75), rgba(9, 20, 52, 0.75)),
		url("../img/tensile-membrane.jpeg");
	background-size: cover;
	background-position: center;
}
.page-header__content {
	position: relative;
	z-index: 2;
}
.page-header__title {
	margin: 0 0 25px;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
}
.page-header__breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
}
.page-header__breadcrumb-item {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.85);
}
.page-header__breadcrumb-item:not(:last-child)::after {
	content: ">";
	margin: 0 12px;
	color: rgba(255, 255, 255, 0.6);
}
.page-header__breadcrumb-link {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	transition: 0.3s ease;
}
.page-header__breadcrumb-link:hover {
	color: #fff;
}
.page-header__breadcrumb-item--active {
	color: #fff;
}
@media (max-width: 991px) {
	.page-header {
		min-height: 280px;
		padding: 70px 0;
	}
	.page-header__title {
		font-size: 38px;
	}
}
@media (max-width: 767px) {
	.page-header {
		min-height: 240px;
		padding: 60px 0;
		text-align: center;
	}
	.page-header__title {
		font-size: 30px;
		margin-bottom: 20px;
	}
	.page-header__breadcrumb {
		justify-content: center;
	}
	.page-header__breadcrumb-item {
		font-size: 14px;
	}
}
/* ==========================
   PRODUCT CARD
========================== */
.product-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	border: 1px solid #edf2f7;
	border-radius: 18px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: all 0.35s ease;
}
.product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
	text-decoration: none;
	color: inherit;
}
/* ==========================
   IMAGE
========================== */
.product-card__image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4/3;
	background: #f8fafc;
}
.product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.product-card:hover .product-card__image img {
	transform: scale(1.08);
}
/* ==========================
   CATEGORY
========================== */
.product-card__category {
	position: absolute;
	top: 18px;
	left: 18px;
	display: inline-flex;
	align-items: center;
	padding: 9px 18px;
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	color: #fff;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 600;
	z-index: 2;
}
/* ==========================
   CONTENT
========================== */
.product-card__content {
	flex: 1;
	display: flex;
	align-items: flex-start;
	padding: 26px 26px 30px;
}
/* ==========================
   TITLE
========================== */
.product-card__title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	color: #2b2b2b;
	transition: color 0.3s ease;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	min-height: 2.8em;
}
.product-card:hover .product-card__title {
	color: #2563eb;
}
/*======================================
=              Footer
======================================*/
.footer {
	padding-top: 80px;
	background: #071a35;
	color: #fff;
}
.footer__logo {
	display: inline-block;
	margin-bottom: 25px;
}
.footer__logo img {
	max-height: 55px;
}
.footer__description {
	margin: 0;
	max-width: 420px;
	font-size: 15px;
	line-height: 1.9;
	color: #aeb9cb;
}
.footer__title {
	margin-bottom: 24px;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
}
.footer__menu {
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: 15px;
}
.footer__menu li {
	margin-bottom: 12px;
}
.footer__menu a {
	color: #aeb9cb;
	transition: 0.3s;
	text-decoration: none;
}
.footer__menu a:hover {
	color: #fff;
	padding-left: 6px;
}
.footer__contact {
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: 15px;
}
.footer__contact li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 18px;
}
.footer__contact i {
	width: 22px;
	margin-top: 4px;
	color: #0d6efd;
	flex-shrink: 0;
}
.footer__contact span {
	color: #aeb9cb;
	line-height: 1.8;
}
.footer__contact a {
	color: #aeb9cb;
	transition: 0.3s;
	text-decoration: none;
}
.footer__contact a:hover {
	color: #fff;
	padding-left: 6px;
}
.footer__social {
	display: flex;
	margin-top: 30px;
}
.footer__social a {
	width: 42px;
	height: 42px;
	margin-right: 12px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	transition: 0.3s;
	text-decoration: none;
}
.footer__social a:hover {
	background: #0d6efd;
	transform: translateY(-3px);
}
.footer__copyright {
	padding: 22px 0;
	text-align: center;
	font-size: 14px;
	color: #90a0b7;
}
/*======================================
=            Responsive
======================================*/
@media (max-width: 991px) {
	.footer {
		padding-top: 60px;
	}
}
@media (max-width: 767px) {
	.footer {
		padding-top: 50px;
	}
	.footer__title {
		margin-top: 10px;
	}
	.footer__social {
		justify-content: flex-start;
	}
}
/*======================================
=            Footer Bottom
======================================*/
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 22px 0;
	background: #091c3a;
}
.footer-bottom__wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer-bottom__copyright {
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}
.footer-bottom__menu {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-bottom__menu li {
	position: relative;
}
.footer-bottom__menu li:not(:last-child) {
	margin-right: 18px;
	padding-right: 18px;
}
.footer-bottom__menu li:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 1px;
	height: 14px;
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-50%);
}
.footer-bottom__menu a {
	color: #aeb9cb;
	text-decoration: none;
	font-size: 14px;
	transition: 0.3s;
}
.footer-bottom__menu a:hover {
	color: #fff;
}
/*======================================
=            Back To Top
======================================*/
.back-to-top {
	position: fixed;
	right: 30px;
	bottom: 105px;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #2f7cff;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
	z-index: 999;
	transition: 0.3s;
}
.back-to-top:hover {
	color: #fff;
	background: #1f63e0;
	transform: translateY(-5px);
	text-decoration: none;
}
.back-to-top i {
	font-size: 16px;
}
/*======================================
=            Responsive
======================================*/
@media (max-width: 991px) {
	.footer-bottom__wrapper {
		flex-direction: column;
		text-align: center;
	}
	.footer-bottom__copyright {
		margin-bottom: 15px;
	}
}
@media (max-width: 576px) {
	.footer-bottom__menu {
		flex-direction: column;
	}
	.footer-bottom__menu li {
		margin: 8px 0 !important;
		padding: 0 !important;
	}
	.footer-bottom__menu li::after {
		display: none;
	}
	.back-to-top {
		right: 18px;
		bottom: 105px;
		width: 46px;
		height: 46px;
	}
}
/*======================================
=         Product Skeleton
======================================*/

.product-card--skeleton {
	overflow: hidden;
	pointer-events: none;
}

.skeleton {
	position: relative;
	background: #ececec;
	overflow: hidden;
}

.skeleton::after {
	content: "";
	position: absolute;
	top: 0;
	left: -150%;
	width: 150%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.75),
		transparent
	);
	animation: skeleton-loading 1.2s infinite;
}

@keyframes skeleton-loading {
	100% {
		left: 100%;
	}
}

.skeleton-thumbnail {
	width: 100%;
	aspect-ratio: 4/3;
}

.skeleton-title {
	height: 16px;
	margin: 18px;
	border-radius: 4px;
}

.skeleton-title--short {
	width: 65%;
	margin-top: 0;
}
/*======================================
=            PRODUCT GALLERY
======================================*/

.product-gallery {
	position: relative;
}

/* Main Gallery */

.gallery-main {
	border-radius: 20px;
	overflow: hidden;
	background: #f8f9fa;
	margin-bottom: 16px;
}

.gallery-main .swiper-slide {
	aspect-ratio: 4/3;
	overflow: hidden;
}

.gallery-main .swiper-slide a {
	display: block;
	width: 100%;
	height: 100%;
}

.gallery-main .swiper-slide img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

/* Thumbnail */

.gallery-thumbs {
	margin-top: 15px;
}

.gallery-thumbs .swiper-slide {
	width: 90px;
	aspect-ratio: 1/1;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	border: 2px solid transparent;
	transition: 0.3s;
}

.gallery-thumbs .swiper-slide-thumb-active {
	border-color: var(--brand-primary);
}

.gallery-thumbs img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

/* Navigation */

.gallery-main .swiper-button-prev,
.gallery-main .swiper-button-next {
	width: 46px;
	height: 46px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	color: var(--brand-primary);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.gallery-main .swiper-button-prev:after,
.gallery-main .swiper-button-next:after {
	font-size: 18px;
	font-weight: 700;
}

/* Responsive */

@media (max-width: 991px) {
	.gallery-main {
		margin-bottom: 12px;
	}

	.gallery-thumbs .swiper-slide {
		width: 70px;
	}
}
.notfound-section {
	min-height: calc(100vh - 280px);

	display: flex;

	align-items: center;

	background: #fff;
}

.notfound-wrapper {
	max-width: 760px;

	margin: auto;
}

.notfound-code {
	font-size: 170px;

	line-height: 1;

	font-weight: 800;

	color: transparent;

	-webkit-text-stroke: 3px #0d3b84;

	letter-spacing: 8px;
}

.notfound-divider {
	width: 70px;

	height: 4px;

	background: #dc3545;

	margin: 25px auto;

	border-radius: 10px;
}

.notfound-title {
	font-size: 48px;

	font-weight: 700;

	color: #1f2937;

	margin-bottom: 25px;
}

.notfound-description {
	color: #6b7280;

	font-size: 18px;

	line-height: 1.9;

	max-width: 650px;

	margin: 0 auto 40px;
}

.notfound-actions {
	display: flex;

	justify-content: center;

	gap: 15px;

	flex-wrap: wrap;
}

.notfound-actions .btn {
	min-width: 220px;

	padding: 14px 28px;

	border-radius: 8px;

	font-weight: 600;
}

.btn-outline-primary {
	border-width: 2px;
}

@media (max-width: 991px) {
	.notfound-code {
		font-size: 130px;
	}

	.notfound-title {
		font-size: 36px;
	}
}

@media (max-width: 576px) {
	.notfound-code {
		font-size: 90px;

		-webkit-text-stroke: 2px #0d3b84;
	}

	.notfound-title {
		font-size: 28px;
	}

	.notfound-description {
		font-size: 16px;
	}

	.notfound-actions {
		flex-direction: column;
	}

	.notfound-actions .btn {
		width: 100%;
	}
}
/*==================================
=        WHATSAPP FLOATING         =
==================================*/

.wa-widget {
	position: fixed;
	right: 25px;
	bottom: 25px;
	z-index: 9999;
	display: flex;
	align-items: center;
	gap: 14px;
}

.wa-tooltip {
	background: #fff;

	padding: 12px 18px;

	border-radius: 14px;

	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);

	display: flex;

	flex-direction: column;

	transition: 0.35s;

	opacity: 0;

	visibility: hidden;

	transform: translateX(15px);

	white-space: nowrap;
}

.wa-tooltip strong {
	color: #1c1c1c;

	font-size: 15px;

	margin-bottom: 3px;
}

.wa-tooltip span {
	color: #777;

	font-size: 13px;
}

.wa-button {
	width: 65px;

	height: 65px;

	border-radius: 50%;

	background: #25d366;

	display: flex;

	align-items: center;

	justify-content: center;

	text-decoration: none;

	color: #fff;

	font-size: 34px;

	box-shadow: 0 15px 35px rgba(37, 211, 102, 0.35);

	transition: 0.35s;

	animation: waPulse 2s infinite;
}

.wa-button:hover {
	transform: translateY(-4px) scale(1.05);

	color: #fff;

	text-decoration: none;

	background: #1ebe5d;
}

.wa-widget:hover .wa-tooltip {
	opacity: 1;

	visibility: visible;

	transform: translateX(0);
}

/* Pulse */

@keyframes waPulse {
	0% {
		box-shadow:
			0 0 0 0 rgba(37, 211, 102, 0.45),
			0 15px 35px rgba(37, 211, 102, 0.35);
	}

	70% {
		box-shadow:
			0 0 0 18px rgba(37, 211, 102, 0),
			0 15px 35px rgba(37, 211, 102, 0.35);
	}

	100% {
		box-shadow:
			0 0 0 0 rgba(37, 211, 102, 0),
			0 15px 35px rgba(37, 211, 102, 0.35);
	}
}

/* Mobile */

@media (max-width: 768px) {
	.wa-widget {
		right: 18px;

		bottom: 18px;
	}

	.wa-button {
		width: 58px;

		height: 58px;

		font-size: 30px;
	}

	.wa-tooltip {
		display: none;
	}
}
/* =====================================================
   CATEGORY INTRO
===================================================== */

.category-intro {
	padding: 50px 0;
}

/* Card */

.category-intro__card {
	background: #fff;

	border-radius: 22px;

	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

	overflow: hidden;
}

/* =====================================================
   IMAGE
===================================================== */

.category-intro__image {
	padding: 30px;
}

.category-intro__image img {
	display: block;

	width: 100%;

	height: 280px;

	object-fit: cover;

	border-radius: 16px;

	transition: 0.35s ease;
}

.category-intro__card:hover .category-intro__image img {
	transform: scale(1.03);
}

/* =====================================================
   CONTENT
===================================================== */

.category-intro__content {
	padding: 40px 40px 40px 10px;
}

/* Breadcrumb */

.category-intro__breadcrumb {
	display: flex;

	align-items: center;

	flex-wrap: wrap;

	gap: 10px;

	margin-bottom: 20px;

	font-size: 14px;
}

.category-intro__breadcrumb a {
	color: #6b7280;

	text-decoration: none;

	transition: 0.25s;
}

.category-intro__breadcrumb a:hover {
	color: #0d3b66;
}

.category-intro__breadcrumb span {
	color: #c7c7c7;
}

.category-intro__breadcrumb strong {
	color: #0d3b66;

	font-weight: 600;
}

/* Title */

.category-intro__title {
	font-size: 26px;

	font-weight: 700;

	color: #14325d;

	margin-bottom: 18px;

	line-height: 1.2;
}

/* Orange Line */

.category-intro__divider {
	width: 80px;

	height: 4px;

	border-radius: 30px;

	background: #ff6b00;

	margin-bottom: 22px;
}

/* Description */

.category-intro__description {
	font-size: 15px;

	line-height: 2;

	color: #555;

	margin: 0;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {
	.category-intro {
		padding: 40px 0;
	}

	.category-intro__image {
		padding: 25px 25px 10px;
	}

	.category-intro__image img {
		height: 250px;
	}

	.category-intro__content {
		padding: 20px 30px 35px;
	}

	.category-intro__title {
		font-size: 28px;
	}
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {
	.category-intro {
		padding: 30px 0;
	}

	.category-intro__card {
		border-radius: 18px;
	}

	.category-intro__image {
		padding: 20px 20px 10px;
	}

	.category-intro__image img {
		height: 220px;

		border-radius: 14px;
	}

	.category-intro__content {
		padding: 20px;
	}

	.category-intro__breadcrumb {
		margin-bottom: 15px;

		font-size: 13px;

		gap: 8px;
	}

	.category-intro__title {
		font-size: 26px;

		margin-bottom: 15px;
	}

	.category-intro__divider {
		width: 60px;

		margin-bottom: 18px;
	}

	.category-intro__description {
		font-size: 14px;

		line-height: 1.8;
	}
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {
	.category-intro__image img {
		height: 180px;
	}

	.category-intro__title {
		font-size: 24px;
	}
}
/* =========================================================
   ARTICLE PAGE
========================================================= */

.article-page {
	padding: 70px 0 90px;
	background-color: #fff;
}

/* =========================================================
   HEADER
========================================================= */

.article-header {
	max-width: 760px;
	margin: 0 auto 45px;
}

.article-header__label {
	display: inline-block;

	margin-bottom: 12px;

	color: #1268f3;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
}

.article-header__title {
	margin: 0;

	color: #17202a;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.25;
}

.article-header__description {
	max-width: 650px;

	margin: 18px auto 0;

	color: #6c7a89;
	font-size: 16px;
	line-height: 1.8;
}

/* =========================================================
   SEARCH
========================================================= */

.article-toolbar {
	margin-bottom: 30px;
}

.article-search {
	position: relative;

	max-width: 640px;

	margin: 0 auto;
}

.article-search .form-control {
	height: 48px;

	padding: 0 50px 0 18px;

	border: 1px solid #e2e7ed;
	border-radius: 10px;

	background-color: #fff;

	color: #17202a;
	font-size: 14px;

	box-shadow: none;

	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.article-search .form-control:focus {
	border-color: #1268f3;

	box-shadow: 0 0 0 3px rgba(18, 104, 243, 0.08);
}

.article-search .form-control::placeholder {
	color: #9aa5b1;
}

.article-search__button {
	position: absolute;
	top: 0;
	right: 0;

	width: 48px;
	height: 48px;

	padding: 0;

	border: 0;

	background: transparent;

	color: #687684;
	font-size: 14px;

	cursor: pointer;
}

/* =========================================================
   ARTICLE GRID
========================================================= */

.article-grid {
	display: grid;

	grid-template-columns: repeat(3, minmax(0, 1fr));

	gap: 24px;

	align-items: stretch;
}

/* =========================================================
   ARTICLE CARD
========================================================= */

.article-card {
	display: flex;
	flex-direction: column;

	min-width: 0;

	overflow: hidden;

	border: 1px solid #e5e9ee;
	border-radius: 12px;

	background-color: #fff;

	color: inherit;
	text-decoration: none;

	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}

.article-card:hover {
	color: inherit;
	text-decoration: none;

	border-color: transparent;

	box-shadow: 0 12px 35px rgba(23, 32, 42, 0.1);

	transform: translateY(-4px);
}

/* =========================================================
   IMAGE
========================================================= */

.article-card__image {
	width: 100%;
	height: 215px;

	overflow: hidden;

	background-color: #f1f3f5;
}

.article-card__image img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;

	transition: transform 0.4s ease;
}

.article-card:hover .article-card__image img {
	transform: scale(1.04);
}

/* =========================================================
   BODY
========================================================= */

.article-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;

	padding: 20px;
}

/* =========================================================
   DATE
========================================================= */

.article-card__date {
	display: flex;
	align-items: center;
	gap: 7px;

	margin-bottom: 10px;

	color: #7b8794;
	font-size: 12px;
}

.article-card__date i {
	color: #1268f3;
}

/* =========================================================
   TITLE
========================================================= */

.article-card__title {
	margin: 0 0 10px;

	color: #17202a;

	font-size: 18px;
	font-weight: 700;
	line-height: 1.45;

	transition: color 0.2s ease;
}

.article-card:hover .article-card__title {
	color: #1268f3;
}

/* =========================================================
   EXCERPT
========================================================= */

.article-card__excerpt {
	display: -webkit-box;

	margin: 0;

	overflow: hidden;

	color: #687684;
	font-size: 14px;
	line-height: 1.7;

	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

/* =========================================================
   READ MORE
========================================================= */

.article-card__link {
	display: inline-flex;
	align-items: center;
	gap: 7px;

	margin-top: auto;
	padding-top: 18px;

	color: #1268f3;
	font-size: 13px;
	font-weight: 600;

	transition: gap 0.2s ease;
}

.article-card:hover .article-card__link {
	gap: 11px;
}

.article-card__link i {
	font-size: 10px;
}

/* =========================================================
   LOAD MORE
========================================================= */

.article-load-more {
	margin-top: 40px;
}

.article-load-more__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	min-width: 190px;
	height: 46px;

	padding: 0 24px;

	border: 0;
	border-radius: 8px;

	background-color: #1268f3;

	color: #fff;

	font-size: 13px;
	font-weight: 600;

	cursor: pointer;

	box-shadow: 0 6px 16px rgba(18, 104, 243, 0.18);

	transition:
		background-color 0.2s ease,
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.article-load-more__button:hover {
	background-color: #0b56cf;

	transform: translateY(-2px);

	box-shadow: 0 8px 20px rgba(18, 104, 243, 0.25);
}

.article-load-more__button i {
	font-size: 10px;
}

.article-load-more__info {
	margin: 12px 0 0;

	color: #8995a1;
	font-size: 12px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {
	.article-page {
		padding: 55px 0 70px;
	}

	.article-header__title {
		font-size: 34px;
	}

	.article-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767.98px) {
	.article-page {
		padding: 45px 0 60px;
	}

	.article-header {
		margin-bottom: 30px;
	}

	.article-header__label {
		font-size: 12px;
	}

	.article-header__title {
		font-size: 30px;
	}

	.article-header__description {
		margin-top: 14px;

		font-size: 14px;
		line-height: 1.7;
	}

	.article-toolbar {
		margin-bottom: 24px;
	}

	.article-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.article-card__image {
		height: 220px;
	}
}

@media (max-width: 575.98px) {
	.article-header__title {
		font-size: 26px;
	}

	.article-header__description {
		font-size: 13px;
	}

	.article-card__image {
		height: 200px;
	}

	.article-card__body {
		padding: 18px;
	}

	.article-card__title {
		font-size: 17px;
	}
}
/* =========================================================
   ARTICLE DETAIL PAGE
========================================================= */

.article-detail-page {
	padding: 30px 0 80px;
	background: #fff;
}

/* =========================================================
   BREADCRUMB
========================================================= */

.article-detail__breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;

	margin-bottom: 35px;

	font-size: 12px;
	color: #6b7280;
}

.article-detail__breadcrumb a {
	display: inline-flex;
	align-items: center;
	gap: 8px;

	color: #6b7280;
	text-decoration: none;

	transition: color 0.2s ease;
}

.article-detail__breadcrumb a:hover {
	color: #1677ff;
}

.article-detail__breadcrumb a i {
	font-size: 11px;
}

.article-detail__breadcrumb-separator {
	color: #a5acb8;
	font-size: 9px;
}

.article-detail__breadcrumb-current {
	color: #374151;

	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 450px;
}

/* =========================================================
   ARTICLE
========================================================= */

.article-detail {
	padding-right: 25px;
}

/* =========================================================
   META
========================================================= */

.article-detail__meta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;

	margin-bottom: 12px;

	font-size: 11px;
	color: #5f6875;
}

.article-detail__meta span {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.article-detail__meta i {
	font-size: 10px;
}

.article-detail__meta-separator {
	color: #9ca3af;
}

/* =========================================================
   TITLE
========================================================= */

.article-detail__title {
	max-width: 720px;

	margin: 0 auto 20px;

	font-size: 27px;
	line-height: 1.3;
	font-weight: 700;

	text-align: center;
	color: #142033;
}

/* =========================================================
   FEATURED IMAGE
========================================================= */

.article-detail__featured {
	width: 100%;
	height: 335px;

	margin-bottom: 22px;

	overflow: hidden;

	border-radius: 6px;
	background: #f1f3f5;
}

.article-detail__featured img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;
}

/* =========================================================
   ARTICLE CONTENT
========================================================= */

.article-detail__content {
	color: #4b5563;

	font-size: 13px;
	line-height: 1.75;
}

.article-detail__content > p:first-child {
	margin-top: 0;
}

.article-detail__content p {
	margin: 0 0 15px;
}

.article-detail__content h2 {
	margin: 20px 0 7px;

	color: #172235;

	font-size: 14px;
	line-height: 1.5;
	font-weight: 700;
}

.article-detail__content h2:first-of-type {
	margin-top: 18px;
}

/* =========================================================
   CONCLUSION
========================================================= */

.article-detail__conclusion {
	margin-top: 18px;
	padding: 11px 14px;

	border: 1px solid #c8ddff;
	border-left: 3px solid #1677ff;
	border-radius: 5px;

	background: #f0f6ff;
}

.article-detail__conclusion-title {
	margin-bottom: 2px;

	color: #172235;

	font-size: 12px;
	font-weight: 700;
}

.article-detail__conclusion p {
	margin: 0;

	font-size: 12px;
	line-height: 1.6;
	color: #536174;
}

/* =========================================================
   SHARE
========================================================= */

.article-detail__share {
	display: flex;
	align-items: center;
	gap: 12px;

	margin-top: 17px;
}

.article-detail__share-label {
	font-size: 11px;
	color: #697586;
}

.article-detail__share-list {
	display: flex;
	align-items: center;
	gap: 7px;
}

.article-detail__share-item {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 23px;
	height: 23px;

	border-radius: 50%;

	color: #fff;

	font-size: 11px;
	text-decoration: none;

	transition:
		transform 0.2s ease,
		opacity 0.2s ease;
}

.article-detail__share-item:hover {
	color: #fff;
	text-decoration: none;

	transform: translateY(-2px);
	opacity: 0.85;
}

.article-detail__share-item--facebook {
	background: #1877f2;
}

.article-detail__share-item--twitter {
	background: #1da1f2;
}

.article-detail__share-item--whatsapp {
	background: #25d366;
}

.article-detail__share-item--linkedin {
	background: #0a66c2;
}

/* =========================================================
   SIDEBAR
========================================================= */

.article-sidebar {
	padding-left: 10px;
	position: sticky;
	top: 90px;
}

.article-sidebar__box {
	padding: 18px 16px;

	border: 1px solid #e4e8ee;
	border-radius: 6px;

	background: #fff;
}

.article-sidebar__title {
	margin: 0 0 18px;

	color: #182235;

	font-size: 18px;
	line-height: 1.4;
	font-weight: 700;
}

/* =========================================================
   SIDEBAR ITEM
========================================================= */

.article-sidebar__item {
	display: flex;
	align-items: flex-start;
	gap: 10px;

	margin-bottom: 15px;

	color: inherit;
	text-decoration: none;
}

.article-sidebar__item:last-child {
	margin-bottom: 0;
}

.article-sidebar__item:hover {
	text-decoration: none;
}

/* Image */

.article-sidebar__image {
	flex: 0 0 49px;
	width: 49px;
	height: 49px;

	overflow: hidden;

	border-radius: 6px;
	background: #f1f3f5;
}

.article-sidebar__image img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;

	transition: transform 0.25s ease;
}

.article-sidebar__item:hover .article-sidebar__image img {
	transform: scale(1.05);
}

/* Content */

.article-sidebar__content {
	min-width: 0;
}

.article-sidebar__content h4 {
	display: -webkit-box;
	overflow: hidden;

	margin: 0 0 5px;

	color: #283244;

	font-size: 15px;
	line-height: 1.5;
	font-weight: 600;

	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.article-sidebar__item:hover .article-sidebar__content h4 {
	color: #1677ff;
}

.article-sidebar__content span {
	display: flex;
	align-items: center;
	gap: 4px;

	color: #7a8492;

	font-size: 9px;
}

.article-sidebar__content span i {
	font-size: 8px;
}

/* =========================================================
   ARTICLE NAVIGATION
========================================================= */

.article-detail__navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;

	margin-top: 45px;
	padding-top: 20px;

	border-top: 1px solid #e9edf2;
}

.article-detail__navigation-item {
	display: flex;
	flex-direction: column;

	color: inherit;
	text-decoration: none;
}

.article-detail__navigation-item:hover {
	text-decoration: none;
}

.article-detail__navigation-item--next {
	text-align: right;
}

.article-detail__navigation-label {
	display: flex;
	align-items: center;
	gap: 5px;

	margin-bottom: 7px;

	color: #6b7280;

	font-size: 9px;
}

.article-detail__navigation-label i {
	font-size: 8px;
}

.article-detail__navigation-title {
	color: #253044;

	font-size: 11px;
	line-height: 1.55;
	font-weight: 600;

	transition: color 0.2s ease;
}

.article-detail__navigation-item:hover .article-detail__navigation-title {
	color: #1677ff;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {
	.article-detail-page {
		padding-top: 25px;
	}

	.article-detail {
		padding-right: 0;
	}

	.article-sidebar {
		padding-left: 0;
		margin-top: 35px;
	}

	.article-sidebar__box {
		padding: 18px;
	}

	.article-detail__featured {
		height: 350px;
	}
}

@media (max-width: 767.98px) {
	.article-detail-page {
		padding: 20px 0 60px;
	}

	.article-detail__breadcrumb {
		margin-bottom: 25px;

		font-size: 11px;
	}

	.article-detail__breadcrumb-current {
		max-width: 200px;
	}

	.article-detail__meta {
		font-size: 10px;
	}

	.article-detail__title {
		font-size: 23px;
		line-height: 1.35;
	}

	.article-detail__featured {
		height: 240px;

		border-radius: 5px;
	}

	.article-detail__content {
		font-size: 13px;
		line-height: 1.7;
	}

	.article-detail__content h2 {
		font-size: 14px;
	}

	.article-detail__share {
		flex-wrap: wrap;
	}

	.article-detail__navigation {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.article-detail__navigation-item--next {
		text-align: left;
	}
}

@media (max-width: 575.98px) {
	.article-detail__breadcrumb {
		gap: 7px;
	}

	.article-detail__breadcrumb-current {
		display: none;
	}

	.article-detail__breadcrumb-separator:last-of-type {
		display: none;
	}

	.article-detail__title {
		font-size: 21px;
	}

	.article-detail__featured {
		height: 210px;
	}

	.article-sidebar__box {
		padding: 15px;
	}
}
/* ==========================================================
   ARTICLE EMPTY
========================================================== */

.article-empty {
	width: 100%;
	grid-column: 1 / -1;

	padding: 70px 30px;
	margin-top: 10px;

	text-align: center;

	background: #fff;
	border: 1px solid #e9ecef;
	border-radius: 12px;
}

/* Icon */

.article-empty__icon {
	width: 72px;
	height: 72px;

	margin: 0 auto 20px;

	display: flex;
	align-items: center;
	justify-content: center;

	background: #f5f7fa;
	border-radius: 50%;

	color: #adb5bd;
	font-size: 28px;
}

/* Title */

.article-empty__title {
	margin: 0 0 10px;

	color: #343a40;

	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
}

/* Description */

.article-empty__description {
	max-width: 420px;

	margin: 0 auto;

	color: #868e96;

	font-size: 14px;
	line-height: 1.7;
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 575.98px) {
	.article-empty {
		padding: 50px 20px;
	}

	.article-empty__icon {
		width: 64px;
		height: 64px;

		margin-bottom: 16px;

		font-size: 24px;
	}

	.article-empty__title {
		font-size: 18px;
	}

	.article-empty__description {
		font-size: 13px;
	}
}
