:root {
	--notification-background: #0ea340;
	--notification-primary: #aaec8a;
	--background: #faf9ff;
}

*,
ul {
	margin: 0;
	padding: 0;
}

.container-main {
	width: 80%;
	margin: auto;
}

.container-full {
	width: 100%;
	position: relative;
	overflow: hidden;
}

a,
a:hover {
	text-decoration: none;
	color: #000;
}

body {
	font-family: "Inter", sans-serif;
	font-size: 14px;
}

.header-top {
	background: #114232;
	color: white;
}

.header-top ul {
	display: flex;
	list-style-type: none;
	gap: 10px;
}

.header-top ul li a {
	display: block;
	padding: 13px 10px;
	color: white;
	font-size: 13px;
}

.header-content {
	background: #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.09);
}

nav ul {
	display: flex;
	list-style-type: none;
	gap: 10px;
}

nav ul li a {
	display: block;
	font-weight: 700;
	color: #114232;
	padding: 30px 15px;
}

.list-news {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	padding: 30px 0;
}

.list-news li {
	display: flex;
	gap: 15px;
}

.list-news li h2 {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.6;
}

.list-news li h6 {
	-webkit-line-clamp: 3;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.3em;
}

.list-news li img {
	width: 100px;
	height: 90px;
	object-fit: cover;
}

.parent {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(4, 1fr);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}

.parent div {
	position: relative;
}

.parent>div {
	overflow: hidden;
}

.parent div img {
	width: 100%;
	object-fit: cover;
	transition: 0.7s;
}

.parent>div:hover img {
	transform: scale(1.2);
}

.parent>div:first-child {
	grid-area: 1 / 1 / 6 / 4;
	height: 500px;
	position: relative;
}

.parent>div:first-child img {
	height: 100%;
}

.parent>div:nth-child(2) {
	grid-area: 1 / 4 / 3 / 6;
	height: 250px;
}

.parent>div:last-child {
	grid-area: 3 / 4 / 5 / 6;
	height: 250px;
}

.parent .parent-news {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 20px;
	background: rgb(0, 0, 0);
	background: linear-gradient(0deg,
			rgba(0, 0, 0, 0.8795167725293243) 0%,
			rgba(0, 0, 0, 0) 100%);
}

.parent .parent-news a h2 {
	font-size: 24px;
	color: white;
}

.parent-news h6 {
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.3em;
}

.truncate {
	-webkit-line-clamp: 3;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.5em;
}

.parent>div:nth-child(2) img,
.parent>div:last-child img {
	height: 250px;
}

.news-slide img {
	height: 200px;
	object-fit: cover;
}

.titlebar h5 {
	position: relative;
	padding-bottom: 13px;
}

.titlebar h5::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	height: 4px;
	width: 100%;
	background: #ddd;
}

.titlebar h5::after {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	height: 5px;
	width: 60px;
	background: #43766c;
}

.top-news ul li {
	display: grid;
	grid-template-columns: 45px 1fr;
	gap: 20px;
	margin-bottom: 20px;
}

.top-news ul li:last-child {
	margin: 0;
}

.top-news ul li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	border-radius: 50%;
	font-weight: 700;
	width: 45px;
	height: 45px;
	background: #ddd;
}

.top-news ul li h6 {
	font-weight: 700;
}

.search-form {
	overflow: hidden;
	height: 0;
	transition: 0.5s;
}

.search-form.show {
	height: 70px;
}

.search-form.auto {
	height: auto !important;
}

.search-form input {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 2px;
}

.search-form input:focus {
	outline: none;
}

.search-form-mobile {
	display: none;
}

.hamburger {
	display: none;
}

.content-blog p {
	font-size: 18px;
	line-height: 30px;
}

footer {
	background: #000;
	padding: 50px 0 30px 0;
	color: white;
}

footer .menus li a {
	color: white;
	padding: 5px 0;
	display: block;
	font-weight: 600;
}

footer .menus {
	list-style-type: none;
}

footer .footer-menu {
	padding-top: 30px;
	border-top: 1px solid #dddddd1a;
	display: flex;
	gap: 10px;
	list-style-type: none;
}

footer .footer-menu a {
	color: white;
	font-weight: 600;
}

footer .tags {
	display: flex;
	list-style-type: none;
	gap: 5px;
	flex-wrap: wrap;
}

footer .tags li {
	max-width: 150px;
}

footer .tags a {
	color: white;
	border: 1px solid #ffffff4a;
	padding: 5px 10px;
	display: block;
	border-radius: 3px;
	font-size: 12px;
}

.link-blog {
	display: flex;
	margin: 10px 0;
	justify-content: space-between;
	align-items: center;
}

.link-blog ul,
.footer-sosmed,
.form-us .sosmed {
	display: flex;
	list-style-type: none;
	gap: 4px;
}

.link-blog ul li a,
.footer-sosmed li a,
.form-us .sosmed li a {
	padding: 10px 15px;
	color: white;
	border-radius: 2px;
}

.link-blog ul li:first-child a,
.form-us .sosmed li:first-child a,
.footer-sosmed li:first-child a {
	background-color: #132492;
}

.link-blog ul li:nth-child(2) a,
.form-us .sosmed li:nth-child(2) a,
.footer-sosmed li:nth-child(2) a {
	background-color: #132492;
	background-color: #13926c;
}

.link-blog ul li:nth-child(3) a,
.form-us .sosmed li:nth-child(3) a,
.footer-sosmed li:nth-child(3) a {
	background-color: #3886fb;
}

.link-blog ul li:nth-child(4) a,
.form-us .sosmed li:nth-child(4) a,
.footer-sosmed li:nth-child(4) a {
	background-color: #66a2fc;
}

.link-blog ul li:nth-child(5) a,
.form-us .sosmed li:nth-child(5) a,
.footer-sosmed li:nth-child(5) a {
	background-color: #326abe;
}

.link-blog h1 {
	margin: 0;
	font-weight: 700;
	line-height: 25px;
	text-align: center;
}

.link-blog h1 span {
	display: block;
	font-size: 16px;
}

.form-comments {
	margin: 20px 0;
	background: #f7f7f7;
	border-radius: 4px;
	padding: 20px;
	border: 1px solid #ddd;
}

.form-input {
	position: relative;
	margin-bottom: 20px;
}

.form-input label {
	margin: 0;
}

.form-input input[type="text"] {
	width: 100%;
	border: 1px solid #ddd;
	padding: 12px;
	border-radius: 2px;
}

.form-input textarea {
	width: 100%;
	border: 1px solid #ddd;
	padding: 10px;
	border-radius: 2px;
	height: 200px;
}

.form-input button {
	padding: 13px 25px;
	border: none;
	background: #43766c;
	color: white;
	border-radius: 2px;
}

.mega-news {
	overflow: hidden;
	height: 0;
	transition: 0.3s;
}

.mega-news.show {
	height: 300px;
}

.btn-fixed {
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 99;
}

.btn-fixed i.fa-whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: #25d366;
	color: white;
	border-radius: 50%;
	font-size: 30px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.img-scale {
	overflow: hidden;
	transition: 1s;
	position: relative;
	height: 200px;
	margin-bottom: 10px;
}

.img-scale img {
	transition: 1s;
}

.img-scale:hover img {
	transform: scale(1.2);
}

.tags {
	display: flex;
	align-items: center;
	gap: 30px;
	margin: 20px 0;
}

.tags ul {
	display: flex;
	gap: 10px;
	list-style-type: none;
	gap: 10px;
}

.tags ul li a {
	display: block;
	border: 1px solid #898989;
	padding: 7px 15px;
	font-size: 12px;
	transition: 1s;
}

.tags ul li a:hover {
	background: #114232;
	border: 1px solid transparent;
	color: white;
}

.comments {
	margin: 50px 0;
}

.comment-user {
	list-style-type: none;
}

.comment-user li {
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
}

.comment-user li img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
}

.drop-cap::first-letter {
	initial-letter: 4;
	color: #114232;
	font-weight: bold;
	margin-right: 0.75em;
	position: relative !important;
}

.drop-cap img {
	max-width: 70% !important;
	border-radius: 3px;
}

.content-blog ol,
.content-blog ul {
	margin-left: 20px;
}

img.img-blog {
	width: 250px !important;
	margin: 0 30px 30px 0;
}

.card-news {
	position: relative;
	background: #132492;
	height: 250px;
	margin-bottom: 20px;
}

.card-news .parent-news {
	position: absolute;
	bottom: 0;
	left: 0;
	color: white;
	padding: 20px;
	background: rgb(0, 0, 0);
	background: linear-gradient(0deg,
			rgba(0, 0, 0, 0.8795167725293243) 0%,
			rgba(0, 0, 0, 0) 100%);
}

.card-news .parent-news h6 {
	color: white;
}

.card-news img {
	height: 250px;
}

.list-news-left {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 10px;
	margin-bottom: 20px;
}

.list-news-left:first-child {
	position: relative;
}

.list-news-left:first-child {
	display: block;
}

.list-news-left:first-child img {
	width: 100% !important;
	height: 250px !important;
	object-fit: cover;
}

.list-news-left:first-child .parent-news {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 20px;
	color: white;
}

.list-news-left:first-child .parent-news h6 {
	color: white;
}

.list-news-left img {
	height: 70px;
	width: 100px;
	object-fit: cover;
}

.list-news-left h6 {
	font-size: 14px;
}

article p img {
	width: 70% !important;
	height: auto !important;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

.post-wp img {
	width: 100%;
	height: auto;
}

.menu-dropdown {
	position: absolute;
	top: 4rem;
	max-width: 25rem;
	border-radius: 0.3rem;
	background: var(--white);
	display: none;
	flex-direction: column;
	box-shadow: 0 5px 30px rgba(27, 31, 35, 0.1), 0 0 1px rgba(27, 31, 35, 0.4),
		0 1px 2px rgba(27, 31, 35, 0.15);
	z-index: 2;
	animation: fadeIn 0.2s ease-in-out;
	gap: 0 !important;
}

.menu-dropdown a {
	padding: 10px;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(0.99) translateY(-0.7em);
		transform-origin: top;
	}

	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

nav ul>li:hover .menu-dropdown {
	display: flex;
	opacity: 1;
}

.page-hero {
	width: 100%;
	height: 300px;
	position: relative;
	background: linear-gradient(207deg,
			rgba(17, 66, 50, 0.7814775568430498) 0%,
			rgba(0, 67, 37, 0.7758753159466911) 100%),
		url("https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?q=80&w=1770&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}

.form-us {
	background: #fff;
	padding: 30px;
	border-radius: 10px;
	position: relative;
	top: -100px;
	width: 80%;
	margin: auto;
	box-shadow: 0 4px 50px rgba(7, 54, 24, 0.1);
}

.form-us ul.list li {
	display: grid;
	grid-template-columns: 50px 1fr;
	margin-bottom: 20px;
}

.form-us ul.list li p {
	margin: 0;
}

.form-us ul.list li i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: white;
	background: #114232;
}

.d-grid {
	display: grid;
	grid-template-columns: 250px 1fr;
	gap: 25px;
}

.notification {
	position: fixed;
	width: max-content;
	left: 0;
	right: 0;
	bottom: 1.5rem;
	margin-left: auto;
	margin-right: auto;
	border-radius: 0.375rem;
	background-color: var(--notification-background);
	color: var(--background);
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
	transform: translateY(1.875rem);
	opacity: 0;
	visibility: hidden;
	animation: fade-in 3s linear;
	display: none;
}

.notification.show {
	display: block;
}

.notification__icon {
	height: 1.625rem;
	width: 1.625rem;
	margin-right: 0.25rem;
}

.notification__body {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 1rem 0.5rem;
}

.notification__progress {
	position: absolute;
	left: 0.25rem;
	bottom: 0.25rem;
	width: calc(100% - 0.5rem);
	height: 0.2rem;
	transform: scaleX(0);
	transform-origin: left;
	background: linear-gradient(to right,
			var(--notification-background),
			var(--notification-primary));
	border-radius: inherit;
	animation: progress 2.5s 0.3s linear;
}

@keyframes fade-in {
	5% {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	95% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes progress {
	to {
		transform: scaleX(1);
	}
}

.skeleton {
	--bg: #e1e1e1;
	--glare-bg: linear-gradient(90deg,
			transparent,
			hsla(0, 0%, 100%, 0.4),
			transparent);
	position: relative;
	background-color: var(--bg);
	overflow: hidden;
}

.skeleton::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: var(--glare-bg);
	transform: translateX(-100%);
	animation: skeleton-glare 1.75s infinite ease-out;
	z-index: 1;
}

@keyframes skeleton-glare {
	to {
		transform: translateX(100%);
	}
}

.card-skelekton {
	height: auto;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.09);
	background-color: white;
	border-radius: 5px;
	overflow: hidden;
}

.card__img {
	width: 100%;
	height: 200px;
}

.card__body {
	padding: 16px 16px 48px;
}

.card__text {
	font-size: 1rem;
	height: 1em;
	border-radius: 20px;
}

.card__body>.card__text {
	margin: 0.5em 0;
}

.card__body>.card__text:first-child {
	margin-top: 0.25rem;
}

.card__body>.card__text:last-child {
	margin-bottom: 0.25rem;
	width: 66%;
}

#result-search {
	position: relative;
	list-style-type: none;
}

#result-search li a {
	display: block;
	padding: 10px;
}

.button-group-main {
	display: flex;
}

.button-group-main input {
	width: 100%;
	padding: 10px;
	border: none;
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

.button-group-main button {
	width: 95px;
	border: none;
	background: #114232;
	color: white;
	border: 1px solid transparent;
}

.button-group-main input:focus {
	border: 1px solid #114232;
	outline: none;
}

.link-kategori {
	border: 1px solid #ddd;
	list-style-type: none;
}

.link-kategori a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 20px;
}

.link-kategori li {
	border-bottom: 1px solid #ddd;
}

.link-kategori li:last-child {
	border-bottom: none;
}

.link-kategori a:hover {
	background: #114232;
	color: white;
}

.link-kategori span {
	transition: .5s;
}

.link-kategori a:hover span:first-child {
	transform: translateX(10px);
}

.capcha {
	margin: 20px 0;
	display: flex;
	gap: 10px;
}

.capcha img {
	height: 60px;
}

.capcha input {
	padding: 4px 10px !important;
	height: 40px;

}

.capcha input::placeholder {
	font-size: 12px;
}

.submenu {
	position: absolute !important;
	right: -305px;
	top: 0;
	background: #fff;
	width: 300px;
	border-radius: 5px;
	border: 1px solid #ddd;
	display: none;
	animation: fadeIn 0.2s ease-in-out;
}

.submenu li a {
	display: block;
	padding: 8px 16px;
}

.item-submenu:hover .submenu {
	display: block;
	opacity: 1;
}

iframe {
	width: 100%;
	height: 500px;
}

@media only screen and (max-width: 768px) {
	.img-scale {
		height: 125px;
	}

	iframe {
		height: 250px;
	}

	.d-grid {
		grid-template-columns: 1fr;
	}

	body {
		overflow-x: hidden;
	}

	.container-main {
		width: 95%;
	}

	footer .footer-menu {
		flex-direction: column;
		margin-bottom: 30px;
	}

	img.img-blog {
		width: 100%;
		margin: 0 0 30px 0;
	}

	.drop-cap::first-letter {
		-webkit-initial-letter: 2;
		initial-letter: 2;
		color: #114232;
		font-weight: bold;
		margin-right: 0.6em;
	}

	.drop-cap img {
		width: 100% !important;
		border-radius: 3px;
	}

	.link-blog ul li span {
		display: none;
	}

	.content-blog p {
		font-size: 13px;
		line-height: 25px;
	}

	.hamburger {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		color: #646464;
		font-size: 20px;
		width: 45px;
		height: 45px;
		border: 1px solid #ddd;
		margin: 10px 0;
	}

	.list-news-responsive {
		overflow-x: scroll;
	}

	.list-news {
		grid-template-columns: 1fr 1fr 1fr;
		width: 200%;
	}

	.list-news li img {
		width: 90px;
		height: 70px;
	}

	.list-news li h2 {
		font-size: 13px;
	}

	.list-news li h6 {
		font-size: 13px;
		-webkit-line-clamp: 2;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		overflow: hidden;
		line-height: 1.3em;
	}

	.parent {
		display: block;
	}

	.parent>div,
	.parent>div img {
		height: 300px !important;
	}

	.parent>div {
		margin-bottom: 20px;
	}

	aside {
		position: fixed;
		top: 0;
		left: -100%;
		height: 100vh;
		width: 70%;
		background: #fff;
		z-index: 999;
		transition: 0.5s;
	}

	aside nav ul {
		display: block;
	}

	aside.show {
		left: 0;
	}

	nav ul li a {
		padding: 10px 15px;
	}

	.search {
		display: none;
	}

	.search-form-mobile {
		display: block;
		transition: 0.5s;
		padding: 15px 10px;
		border-bottom: 1px solid #ddd;
	}

	.search-form-mobile input {
		width: 100%;
		padding: 10px;
		border: 1px solid #ddd;
		border-radius: 2px;
	}

	.search-form-mobile input:focus {
		outline: none;
	}

	.menu-dropdown {
		position: relative;
		top: 0;
		border-radius: 0;
		box-shadow: none !important;
		background: #11423220;
	}

	.form-us {
		padding: 20px 10px;
		width: 95%;
		margin-top: 50px;
	}

	.form-us h3,
	.page-hero h2 {
		font-size: 18px;
	}

	.form-us p,
	.page-hero p {
		font-size: 13px;
	}

	.page-hero {
		height: 150px;
	}

	.submenu {
		position: relative !important;
		right: 0;
		width: 100%;
		border-radius: 0;
		border: none;
	}
}