body {
	background: url('/images/Background.webp') no-repeat center top;
	background-size: cover;
	background-attachment: fixed;
	margin: 0;
	padding: 0;
	font-family: var(--font-base);
}

.container {
	max-width: var(--maxw);
	margin: 0 auto;
	border-left: 1px solid;
	border-right: 1px solid;
	border-image: linear-gradient(var(--brand-yellow), var(--brand-orange)) 1;
}

.top-header {
	background: var(--black);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--sp-pad) var(--sp-lg);
}

.top-header .logo {
	height: 50px;
}

.livechat-btn {
	background: linear-gradient(var(--brand-yellow), var(--brand-orange));
	color: var(--white);
	font-weight: bold;
	font-size: var(--fs-meta);
	text-transform: uppercase;
	padding: var(--sp-gp) var(--sp-lg);
	border-radius: 20px;
	text-decoration: none;
	text-shadow: 0 0 4px var(--black);
	animation: blink 1s infinite;
}

@keyframes blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}

.headline-bar {
	display: flex;
	align-items: center;
	background-color: var(--ink);
	position: relative;
	height: 40px;
	overflow: hidden;
}

.headline-bar::before {
	content: "";
	position: absolute;
	top: 0;
	left: 35px;
	right: 0;
	height: 2px;
	background-color: var(--brand-yellow);
}

.headline-bar::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 25px;
	right: 0;
	height: 2px;
	background-color: var(--brand-orange);
}

.headline-right-skew {
	position: relative;
	width: 35px;
	height: 100%;
	background-image: linear-gradient(var(--brand-yellow), var(--brand-orange));
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: var(--sp-gp);
	transform: skewX(-25deg);
	z-index: 2;
	overflow: visible;
}

.headline-right-skew::after {
	content: "";
	position: absolute;
	top: 0;
	right: -8px;
	width: 20px;
	height: 100%;
	background-image: linear-gradient(var(--brand-yellow), var(--brand-orange));
	transform: skewX(25deg);
	z-index: -1;
}

.headline-icon {
	position: relative;
	width: 35px;
	height: 100%;
	background-image: linear-gradient(var(--brand-yellow), var(--brand-orange));
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: var(--sp-gp);
	transform: skewX(-25deg);
	z-index: 2;
	overflow: visible;
}

.headline-icon::before {
	content: "";
	position: absolute;
	top: 0;
	left: -10px;
	width: 35px;
	height: 100%;
	background-image: linear-gradient(var(--brand-yellow), var(--brand-orange));
	z-index: 1;
}

.headline-icon::after {
	content: "";
	position: absolute;
	right: -15px;
	top: 0;
	width: 10px;
	height: 100%;
	background-image: linear-gradient(var(--brand-yellow), var(--brand-orange));
	z-index: 1;
}

.headline-icon i {
	color: var(--white);
	font-size: var(--fs-p);
	transform: skewX(25deg);
	z-index: 3;
	position: relative;
}

.headline-marquee {
	flex: 1;
	overflow: hidden;
	position: relative;
	z-index: 0;
}

.marquee {
	display: inline-block;
	white-space: nowrap;
	padding-left: 100%;
	animation: marquee 12s linear infinite;
	color: var(--white);
	font-weight: bold;
	font-size: var(--fs-meta);
	text-transform: uppercase;
	position: relative;
	z-index: 0;
}

.marquee a {
	color: transparent;
	background: var(--accent);
	-webkit-background-clip: text;
	background-clip: text;
	font-weight: bold;
	text-decoration: none;
}

@keyframes marquee {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-100%); }
}

.header-banner {
	position: relative;
}

.header-banner img {
	width: 100%;
	display: block;
}

.header-buttons {
	width: 100%;
	display: flex;
	text-transform: uppercase;
}

.header-buttons a {
	flex: 1;
	text-align: center;
	padding: var(--sp-lg) 0;
	color: var(--white);
	text-decoration: none;
	font-size: var(--fs-p);
	font-weight: bold;
}

.btn-login {
	background-image: linear-gradient(to right, rgb(32, 122, 185) 0%, rgb(30, 120, 183) 17%, rgb(27, 106, 172) 54%, rgb(22, 102, 165) 76%, rgb(24, 100, 162) 78%, rgb(22, 96, 157) 100%);
}

.btn-daftar {
	background-image: linear-gradient(to right, #77bd1f 0%, #70b921 13%, #70b61f 15%, #67b31d 31%, #44a115 80%, #45a118 81%, #42a018 85%, #3c9c14 91%, #3d9d15 94%, #399911 98%, #3b9b13 100%);
}

.btn-login:hover,
.btn-daftar:hover {
	filter: brightness(0.85);
}

.header-buttons i {
	margin-right: var(--sp-gp);
}

.main-content {
	display: grid;
	grid-template-columns: 1fr minmax(auto, 340.95px);
	gap: var(--sp-gp);
	padding: var(--sp-pad) var(--sp-pad) 0;
	background: var(--ink);
}

.article-body {
	flex: 1;
	background: rgba(255, 255, 255, 0.95);
	padding: var(--sp-pad);
}

.article-body ol {
	padding-left: var(--sp-xl);
}

.article-body ul {
	padding: var(--sp-xs) 0 var(--sp-lg) var(--sp-xl);
}

.article-body h1 {
	margin: 0;
	text-align: center;
	text-transform: uppercase;
}

.article-body .h1-des {
	margin: var(--sp-xs) 0 var(--sp-pad);
	font-size: var(--fs-h2);
	text-align: center;
	text-transform: uppercase;
}

.article-body h2 {
	text-transform: uppercase;
}

.article-body h3 {
	margin-bottom: var(--sp-pad);
}

.article-body p {
	text-align: justify;
}

.article-body li>p {
	margin: 0;
}

.article-body li>ul {
	margin-bottom: var(--sp-pad);
}

.article-body a {
	color: transparent;
	background: linear-gradient(var(--accent), var(--brand-orange));
	-webkit-background-clip: text;
	background-clip: text;
	font-weight: bold;
	text-decoration: none;
}

.article-body a:hover {
	color: var(--black);
}

.article-body .article-banner {
	width: 100%;
	height: auto;
	display: block;
}

.article-sidebar {
	position: sticky;
	top: 20px;
	align-self: flex-start;
	width: 300px;
	display: flex;
	flex-direction: column;
	margin: 0 0 var(--sp-lg);
	gap: var(--sp-gp);
}

.panel--sidebar {
	background: transparent;
	border: 0;
	box-shadow: none;
	position: -webkit-sticky;
	position: sticky;
	top: 15px;
}

.widget {
	background: transparent;
	border: 0;
	box-shadow: none;
	margin-bottom: var(--sp-xl);
}

.widget:last-child {
	margin-bottom: 0;
}

.widget__title {
	font-weight: bold;
	margin-bottom: var(--sp-pad);
	position: relative;
	color: var(--white);
}

.widget__title::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	margin-top: var(--sp-gp);
	background: linear-gradient(90deg, var(--brand-yellow), var(--brand-orange));
}

.widget-search {
	display: flex;
	align-items: center;
}

.widget--search input[type="search"] {
	flex: 1 1 auto;
	height: 40px;
	padding: 0 var(--sp-pad);
	border: 1px solid var(--gray-text);
	background: var(--white);
	color: var(--ink);
	outline: none;
}

.widget--search .btn--secondary {
	height: 39px;
	border: none;
	background: var(--accent);
	color: var(--black);
	font-weight: bold;
	cursor: pointer;
	padding: var(--sp-pad) var(--sp-lg);
}

.widget-search .btn:hover {
	filter: brightness(0.95);
}

.promo {
	position: relative;
	overflow: hidden;
}

.promo__track {
	display: flex;
	transition: transform var(--t);
	will-change: transform;
}

.promo__track.is-noanim {
	transition: none;
}

.promo__slide {
	flex: 0 0 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.promo__slide.is-active {
	opacity: 1;
}

.promo__slide img {
	width: 100%;
}

.promo__ctrl {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 25px;
	height: 25px;
	font-size: var(--fs-p);
	display: flex;
	justify-content: center;
	background: rgba(0, 0, 0, .6);
	color: var(--white);
	border: 0;
	cursor: pointer;
	border-radius: 0;
	z-index: 3;
}

.promo__prev {
	left: 0;
}

.promo__next {
	right: 0;
}

.promo__ctrl:hover {
	background: var(--brand-yellow);
	color: var(--white);
	border-color: var(--brand-yellow);
}

.promo__dots {
	position: absolute;
	left: 50%;
	bottom: 10px;
	transform: translateX(-50%);
	display: flex;
	gap: var(--sp-gp);
	list-style: none;
	margin: 0;
	padding: 0;
	z-index: 4;
}

.promo__dot {
	width: 20px;
	height: 4px;
	background: var(--white);
	border-radius: 0;
	border: none;
	transition: background var(--t);
}

.promo__dot.is-active {
	background: var(--brand-yellow);
}

.list {
	margin: 0;
	padding: var(--sp-pad);
	background: var(--white);
	border: 1px solid var(--gray-line);
}

.sidebar-links {
	list-style: none;
	margin: 0;
	font-weight: bold;
}

.sidebar-links li {
	margin-bottom: var(--sp-pad);
}

.sidebar-links li .icon {
	margin-right: var(--sp-xs);
	color: var(--accent);
}

.sidebar-links a {
	display: inline-block;
	color: var(--accent);
	text-decoration: none;
}

.sidebar-links a:hover,
.list--cats a:hover {
	background: linear-gradient(var(--brand-yellow), var(--brand-orange));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}

.list--cats {
	list-style: none;
	margin: 0;
	padding: var(--sp-pad);
	background: var(--white);
	border: 1px solid var(--gray-line);
}

.list--cats li {
	padding-bottom: var(--sp-gp);
	background: transparent;
	border: 0;
}

.list--cats li:not(:first-child) {
	padding-top: var(--sp-gp);
}

.list--cats a {
	display: block;
	text-decoration: none;
	color: var(--ink);
	font-weight: bold;
}

.list--latest {
	list-style: none;
}

.list--latest a {
	display: block;
	text-decoration: none;
	color: var(--ink);
	padding: var(--sp-gp) 0;
}

.list--latest a:hover {
	color: var(--black);
	text-decoration: underline;
}

.faq-container {
	margin: 0 auto;
}

.faq-item {
	background: var(--ink);
	border-radius: 6px;
	margin-bottom: var(--sp-pad);
	overflow: hidden;
}

.faq-item input {
	display: none;
}

.faq-item label {
	display: block;
	padding: var(--sp-lg) var(--sp-xl);
	background-image: linear-gradient(var(--brand-yellow), var(--brand-orange));
	color: var(--black);
	cursor: pointer;
}

.faq-item .faq-answer {
	max-height: 0;
	overflow: hidden;
	color: var(--white);
	padding: 0 var(--sp-xl);
}

.faq-item input:checked ~ .faq-answer {
	max-height: 300px;
}

.copyright-info {
	text-align: center;
	font-size: var(--fs-meta);
	color: var(--white);
	padding: var(--sp-gp) 0 80px;
	text-transform: uppercase;
	background: var(--ink);
}

.copyright-info::before {
	content: "";
	display: block;
	height: 1px;
	background: linear-gradient(to right, var(--brand-yellow), var(--brand-orange));
	margin-bottom: var(--sp-gp);
}

.copyright-info a {
	color: transparent;
	background: var(--accent);
	-webkit-background-clip: text;
	background-clip: text;
	font-weight: bold;
	text-decoration: none;
}

.floating-footer {
	position: fixed;
	bottom: 0;
	width: var(--maxw);
	max-width: 100%;
	background-image: linear-gradient(var(--brand-yellow), var(--brand-orange));
	z-index: var(--z-nav);
	box-shadow: var(--shadow);
}

.footer-container {
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: var(--sp-xs);
	text-shadow: 0 0 4px var(--black);
}

.footer-container a {
	flex: 1;
	text-align: center;
	color: var(--white);
	text-decoration: none;
	font-size: var(--fs-meta);
	padding: var(--sp-pad);
}

.footer-container a i {
	display: block;
	font-size: var(--fs-h4);
}

.floating-footer a {
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
	gap: var(--sp-gp);
}

.floating-footer a:hover,
.floating-footer a.active {
	background-color: var(--black);
}

.back-to-top {
	position: fixed;
	bottom: 100px;
	right: 20px;
	background: var(--accent);
	color: var(--white);
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--fs-h4);
	box-shadow: var(--shadow);
	text-decoration: none;
	transition: opacity var(--t), transform var(--t);
	opacity: 0;
	visibility: hidden;
	z-index: var(--z-overlay);
}

.back-to-top:hover {
	background: var(--brand-orange);
	transform: scale(1.05);
}

body:not(:target) .back-to-top {
	opacity: 1;
	visibility: visible;
}

/* =========================
   NAVIGATION SECTION
   ========================= */
.topic-nav {
	background: var(--white);
	overflow: visible;
}

.topic-nav__wrap {
	margin: 0 auto;
	text-align: center;
}

.topic-nav h2 {
	display: block;
	font-size: var(--fs-h2);
	text-transform: uppercase;
	margin: 0;
	padding: var(--sp-lg) 0;
	color: var(--white);
	background: var(--ink);
}

.topic-nav h2::before {
	content: "";
	display: none;
}

.topic-nav__row--cats {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--sp-gp);
	padding: var(--sp-pad) 0;
}

.topic-nav__link {
	text-decoration: none;
	color: var(--ink);
	font-size: var(--fs-h3);
	line-height: var(--lh);
	padding: 0 var(--sp-pad);
	font-weight: bold;
}

.topic-nav__link:hover {
	color: var(--accent);
}

.topic-nav__sep {
	display: inline-block;
	width: 2px;
	height: 15px;
	background: var(--gray-line);
	margin: 0 var(--sp-pad);
}

@media (max-width: 768px) {
	.container {
		border-image: none;
	}

	.header-buttons {
		position: relative;
	}

	.main-content {
		display: flex;
		flex-direction: column;
	}

	.main-content .article-sidebar {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.topic-nav__wrap {
		padding-left: 0;
		padding-right: 0;
	}

	.topic-nav h2 {
		font-size: var(--fs-h2);
	}

	.topic-nav__row--cats {
		display: flex;
		justify-content: flex-start;
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		padding: 0 var(--sp-pad);
		scrollbar-width: none;
	}

	.topic-nav__row--cats::-webkit-scrollbar {
		display: none;
	}

	.topic-nav__link {
		padding: var(--sp-gp);
	}

	.topic-nav__sep {
		margin: 0 var(--sp-gp);
	}

	.topic-nav__link,
	.topic-nav__sep {
		flex: 0 0 auto;
		white-space: nowrap;
	}
}