html {
	font-size: 14px;
	font-weight: 400;
	line-height: 28px;
	height: 100%;
    scroll-behavior: smooth;

}

body {
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-size: 1rem;
	letter-spacing: 0.1px;
	line-height: 1.8;
	color: #051922;
	overflow-x: hidden;
}

body img {
	max-width: 100%;
}

a {
	cursor: pointer;
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

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

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	margin: 0 0 1.25rem 0;
	color: #051922;
}

h1:last-child,
.h1:last-child,
h2:last-child,
.h2:last-child,
h3:last-child,
.h3:last-child,
h4:last-child,
.h4:last-child,
h5:last-child,
.h5:last-child,
h6:last-child,
.h6:last-child {
	margin: 0;
}

h1,
.h1 {
	font-size: 4rem;
	font-weight: 700;
	line-height: 4rem;
}

@media only screen and (max-width: 767.96px) {
	h1,
	.h1 {
		font-size: 3rem;
		line-height: 3.25rem;
	}
}

@media only screen and (max-width: 575.96px) {
	h1,
	.h1 {
		font-size: 2.5rem;
		line-height: 2.75rem;
	}
}

h2,
.h2 {
	font-size: 3rem;
	font-weight: 700;
	line-height: 3.25rem;
}

@media only screen and (max-width: 767.96px) {
	h2,
	.h2 {
		font-size: 2.5rem;
		line-height: 2.75rem;
	}
}

@media only screen and (max-width: 575.96px) {
	h2,
	.h2 {
		font-size: 2rem;
		line-height: 2.25rem;
	}
}

h3,
.h3 {
	font-size: 2rem;
	font-weight: 700;
	line-height: 2.25rem;
}

@media only screen and (max-width: 575.96px) {
	h3,
	.h3 {
		font-size: 1.75rem;
		line-height: 2rem;
	}
}

h4,
.h4 {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.75rem;
}

@media only screen and (max-width: 575.96px) {
	h4,
	.h4 {
		font-size: 1.25rem;
		line-height: 1.5rem;
	}
}

h5,
.h5 {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5rem;
}

h6,
.h6 {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5rem;
}

p {
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-size: 1rem;
	letter-spacing: 0.1px;
	line-height: 1.8;
	color: #051922;
	margin: 0 0 .25rem 0;
}

p:last-child {
	margin: 0;
}

/* -----------------------------------------------------------------------------

# All Common Styles

----------------------------------------------------------------------------- */
.loader {
	bottom: 0;
	height: 100%;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 1111;
	background: #fff;
	overflow-x: hidden;
}

.loader-inner {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	height: 50px;
	width: 50px;
}

.circle {
	width: 8vmax;
	height: 8vmax;
	border-right: 4px solid #000;
	border-radius: 50%;
	-webkit-animation: spinRight 800ms linear infinite;
	animation: spinRight 800ms linear infinite;
}

.circle:before {
	content: "";
	width: 6vmax;
	height: 6vmax;
	display: block;
	position: absolute;
	top: calc(50% - 3vmax);
	left: calc(50% - 3vmax);
	border-left: 3px solid #f28123;
	border-radius: 100%;
	-webkit-animation: spinLeft 800ms linear infinite;
	animation: spinLeft 800ms linear infinite;
}

.circle:after {
	content: "";
	width: 6vmax;
	height: 6vmax;
	display: block;
	position: absolute;
	top: calc(50% - 3vmax);
	left: calc(50% - 3vmax);
	border-left: 3px solid #f28123;
	border-radius: 100%;
	-webkit-animation: spinLeft 800ms linear infinite;
	animation: spinLeft 800ms linear infinite;
	width: 4vmax;
	height: 4vmax;
	top: calc(50% - 2vmax);
	left: calc(50% - 2vmax);
	border: 0;
	border-right: 2px solid #000;
	-webkit-animation: none;
	animation: none;
}

@-webkit-keyframes spinLeft {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(720deg);
		transform: rotate(720deg);
	}
}

@keyframes spinLeft {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(720deg);
		transform: rotate(720deg);
	}
}

@-webkit-keyframes spinRight {
	from {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
	to {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

@keyframes spinRight {
	from {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
	to {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

.mt-80 {
	margin-top: 80px;
}

@media only screen and (max-width: 767.96px) {
	.mt-80 {
		margin-top: 50px;
	}
}

.mb-80 {
	margin-bottom: 80px;
}

@media only screen and (max-width: 767.96px) {
	.mb-80 {
		margin-bottom: 50px;
	}
}

.mt-100 {
	margin-top: 100px;
}

@media only screen and (max-width: 767.96px) {
	.mt-100 {
		margin-top: 80px;
	}
}

.mb-100 {
	margin-bottom: 100px;
}

@media only screen and (max-width: 767.96px) {
	.mb-100 {
		margin-bottom: 80px;
	}
}

.mt-150 {
	margin-top: 150px;
}

@media only screen and (max-width: 767.96px) {
	.mt-150 {
		margin-top: 100px;
	}
}

.mb-150 {
	margin-bottom: 150px;
}

@media only screen and (max-width: 767.96px) {
	.mb-150 {
		margin-bottom: 100px;
	}
}

.pt-80 {
	padding-top: 80px;
}

@media only screen and (max-width: 767.96px) {
	.pt-80 {
		padding-top: 50px;
	}
}

.pb-80 {
	padding-bottom: 80px;
}

@media only screen and (max-width: 767.96px) {
	.pb-80 {
		padding-bottom: 50px;
	}
}

.pt-100 {
	padding-top: 100px;
}

@media only screen and (max-width: 767.96px) {
	.pt-100 {
		padding-top: 80px;
	}
}

.pb-100 {
	padding-bottom: 100px;
}

@media only screen and (max-width: 767.96px) {
	.pb-100 {
		padding-bottom: 80px;
	}
}

.pt-150 {
	padding-top: 150px;
}

@media only screen and (max-width: 767.96px) {
	.pt-150 {
		padding-top: 100px;
	}
}

.pb-150 {
	padding-bottom: 150px;
}

@media only screen and (max-width: 767.96px) {
	.pb-150 {
		padding-bottom: 100px;
	}
}

.gray-bg {
	background-color: #f5f5f5;
}

.orange-text {
	color: #f28123;
}

.blue-bg {
	background-color: #162133;
}

a.boxed-btn {
	font-family: "Poppins", sans-serif;
	display: inline-block;
	background-color: #f28123;
	color: #fff;
	padding: 10px 20px;
}

a.bordered-btn {
	font-family: "Poppins", sans-serif;
	display: inline-block;
	color: #fff;
	border: 2px solid #f28123;
	padding: 7px 20px;
}

a.read-more-btn {
	display: inline-block;
	margin-top: 15px;
	color: #051922;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	font-weight: 700;
}

a.read-more-btn:hover {
	color: #f28123;
}

a.boxed-btn,
a.bordered-btn,
a.cart-btn {
	border-radius: 50px;
}

.section-title h3 {
	font-size: 40px;
	position: relative;
	padding-bottom: 15px;
}

.section-title h3:after {
	position: absolute;
	content: "";
	left: 0px;
	right: 0px;
	bottom: 0px;
	width: 50px;
	height: 2px;
	background-color: #f28123;
	margin: 0 auto;
}

.section-title p {
	font-size: 15px;
	margin: 0 auto;
	color: #555;
	margin-top: 10px;
	line-height: 1.8;
}

.section-title {
	margin-bottom: 50px;
}

.breadcrumb-bg {
	background-image: url(../img/breadcrumb-bg.jpg);
}

.breadcrumb-text p {
	color: #f28123;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 7px;
}

.breadcrumb-text h1 {
	font-size: 50px;
	font-weight: 900;
	color: #fff;
	margin: 0;
	margin-top: 20px;
}

.breadcrumb-section {
	padding: 150px 0;
	background-size: cover;
	background-position: center center;
	position: relative;
	z-index: 1;
	background-attachment: fixed;
	padding-top: 200px;
}

.breadcrumb-section:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: #07212e;
	z-index: -1;
	opacity: 0.8;
}

/* -----------------------------------------------------------------------------

# Header Styles

----------------------------------------------------------------------------- */
ul.navbar-nav li.nav-item a.nav-link,
ul.navbar-nav li.nav-item.active a.nav-link {
	color: #051922;
}

.top-header-area {
	position: relative;
	z-index: 999;
	width: 100%;
	padding: 15px 0;
}

.top-header-area.white ul.navbar-nav li.nav-item a.nav-link,
.top-header-area.white ul.navbar-nav li.nav-item.active a.nav-link {
	color: #fff;
}

ul.navbar-nav li.nav-item a.nav-link,
ul.navbar-nav li.nav-item.active a.nav-link {
	color: #fff;
	font-weight: 700;
	margin-right: 14px;
}

a.navbar-brand img {
	max-width: 150px;
}

nav.main-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
nav.main-menu i {
	font-size: 10px;
}

nav.main-menu ul li {
	display: inline-block;
}

nav.main-menu ul li a {
	color: #fff;
	font-weight: 700;
	display: block;
	padding: 15px;
}

nav.main-menu ul > li {
	position: relative;
}

nav.main-menu ul ul.sub-menu {
	position: absolute;
	background-color: #fff;
	width: 220px;
	padding: 15px 15px;
	margin: 0;
	left: 0;
	top: 50px;
	border-radius: 3px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	opacity: 0;
	visibility: hidden;
	-webkit-box-shadow: 0 0 20px #555555;
	box-shadow: 0 0 20px #555555;
}

nav.main-menu ul ul.sub-menu li {
	display: block;
	text-align: left;
}

nav.main-menu ul ul.sub-menu li a {
	color: #555;
	font-weight: 600;
	padding: 7px 10px;
	font-size: 13px;
}

nav.main-menu ul > li:hover ul {
	opacity: 1;
	visibility: visible;
}

nav.main-menu ul li:last-child a {
	display: inline-block;
}

nav.main-menu > ul li:last-child {
	float: right;
}

.site-logo {
	float: left;
	max-width: 150px;
}

ul.sub-menu li:last-child {
	float: none !important;
}

.mean-container .mean-bar {
	background-color: transparent;
	position: absolute;
	right: 0;
	top: 15px;
}

.mean-bar a.meanmenu-reveal {
	background-color: #f28123;
}

.main-menu-wrap {
	position: relative;
}

.mean-container a.meanmenu-reveal {
	color: #051922;
}

.mean-container a.meanmenu-reveal span {
	background-color: #051922;
}

.mean-container .mean-nav ul li a {
	padding: 0.5em 5%;
}

.mean-container .mean-nav ul li li a {
	padding: 0.5em 10%;
}

.mean-container .mean-nav ul li a.mean-expand {
	font-size: 16px;
	height: 10px;
	line-height: 10px;
	width: 15px;
}

.mean-container a.meanmenu-reveal {
	padding: 8px 8px 6px;
}

nav.mean-nav > ul > li:first-child > a {
	border-top: none;
}

.header-icons a {
	color: #fff;
	display: inline-block;
	padding: 10px;
}

.site-logo {
	padding: 6px 0;
}

.top-header-area.sepherate-header ul li > a,
.top-header-area.sepherate-header .header-icons a {
	color: #051922;
}

nav.main-menu ul ul.sub-menu li {
	display: block;
}

nav.main-menu ul ul.sub-menu li a {
	color: #555;
	padding: 8px;
	font-size: 13px;
	font-weight: 600;
}

nav.main-menu ul li.current-list-item > a {
	color: #f28123;
}

nav.main-menu li > a {
	position: relative;
	display: inline-block;
	color: #012738;
	text-decoration: none;
}

nav.main-menu li > a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 10px;
	width: 0;
	height: 3px;
	background-color: #0b7f7f;
	transition: none; /* Disable transition for smooth animation */
}

nav.main-menu li.hover > a::after {
	animation: kiriKeKanan 1s forwards;
}

nav.main-menu li.leave > a::after {
	animation: kananKeKiri 1s forwards;
}

@keyframes kiriKeKanan {
	0% {
		width: 0;
		left: 0;
	}
	100% {
		width: 100%;
		left: 0;
	}
}

@keyframes kananKeKiri {
	0% {
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 0;
	}
}

nav.main-menu li a {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.top-header-area .header-icons a {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.top-header-area .header-icons a:hover {
	color: #f28123;
}

.sticky-wrapper {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 999 !important;
}

.sticky-wrapper.is-sticky .top-header-area {
	background-color: rgba(11, 127, 127, 0.7); /* Transparansi */
	padding: 2px 0;
	backdrop-filter: blur(20px); /* Efek blur di belakang */
	-webkit-backdrop-filter: blur(20px); /* Untuk kompatibilitas Safari */
}

.top-header-area {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

ul.navbar-nav {
	margin: 0 auto;
}

.search-area {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 5555;
	background-color: #051922;
	width: 100%;
	height: 100%;
	text-align: center;
}

span.close-btn {
	position: absolute;
	right: 0%;
	color: #fff;
	top: 5%;
	cursor: pointer;
}

.search-area {
	height: 100%;
}

.search-area div {
	height: 100%;
}

.search-bar {
	height: 100%;
	display: table;
	width: 100%;
}

a.mobile-show {
	display: none;
}

.search-area .search-bar div.search-bar-tablecell {
	display: table-cell;
	vertical-align: middle;
	height: auto;
}

.search-bar-tablecell input {
	border: none;
	padding: 15px;
	width: 60%;
	background-color: transparent;
	border-bottom: 1px solid #f28123;
	display: block;
	margin: 0 auto;
	text-align: center;
	font-size: 50px;
	font-weight: 700;
	margin-bottom: 40px;
	color: #fff;
}

.search-bar-tablecell button[type="submit"] {
	border: none;
	background-color: #f28123;
	padding: 15px 30px;
	cursor: pointer;
	display: inline-block;
	border-radius: 50px;
	font-weight: 700;
}

.search-bar-tablecell input::-webkit-input-placeholder {
	color: #fff;
}

.search-bar-tablecell input:-ms-input-placeholder {
	color: #fff;
}

.search-bar-tablecell input::-ms-input-placeholder {
	color: #fff;
}

.search-bar-tablecell input::placeholder {
	color: #fff;
}

.search-bar-tablecell button[type="submit"] i {
	margin-left: 5px;
}

.search-area {
	visibility: hidden;
	opacity: 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.search-area.search-active {
	visibility: visible;
	opacity: 1;
	z-index: 999;
}

.search-bar-tablecell h3 {
	color: #fff;
	margin-bottom: 30px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 7px;
}

/* -----------------------------------------------------------------------------

# Footer Styles

----------------------------------------------------------------------------- */
.single-logo-item img {
	max-width: 180px;
	margin: 0 auto;
}

.logo-carousel-section {
	background-color: #f5f5f5;
	padding: 50px 0;
}

.footer-area {
	background-color: rgb(2, 53, 53);
	color: #fff;
	padding: 100px 0;
}

h2.widget-title {
	font-size: 24px;
	font-weight: 500;
	position: relative;
	padding-bottom: 20px;
	color: #fff;
}

h2.widget-title:after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 20px;
	height: 2px;
	background-color: #f28123;
	content: "";
}

.footer-box p {
	color: #fff;
	opacity: 0.7;
	line-height: 1.8;
}

.footer-box ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-box ul li {
	opacity: 0.7;
	margin-bottom: 10px;
	line-height: 1.8;
}

.footer-box ul li:last-child {
	margin-bottom: 0;
}

.footer-box.subscribe form input[type="email"] {
	border: none;
	background-color: #012738;
	width: 78%;
	padding: 15px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	color: #fff;
}

.footer-box.subscribe form button {
	width: 20%;
	border: none;
	background-color: #012738;
	color: #f28123;
	padding: 14px 0;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	cursor: pointer;
}

.footer-box.subscribe form button:focus {
	outline: none;
}

.copyright {
	background-color: #051922;
	border-top: 1px solid #232a35;
}

.copyright p {
	margin: 0;
	color: #fff;
	opacity: 0.7;
	padding: 16px 0;
	font-size: 15px;
}

.copyright a {
	color: #f28123;
	font-weight: 700;
}

.copyright a:hover {
	color: #f59d53;
}

.social-icons ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.social-icons ul li {
	display: inline-block;
}

.social-icons ul li a {
	font-size: 16px;
	color: #fff;
	opacity: 0.7;
	padding: 16px 10px;
	display: block;
}

.footer-box ul li a {
	color: #fff;
}

.footer-box.pages ul li {
	position: relative;
	padding-left: 20px;
}

.footer-box.pages ul li:before {
	position: absolute;
	left: 0;
	top: 0;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #f28123;
}

/* -----------------------------------------------------------------------------

# Hover Styles

----------------------------------------------------------------------------- */
a.navbar-brand {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

a.navbar-brand:hover {
	opacity: 0.7;
}

a.boxed-btn {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

a.boxed-btn:hover {
	background-color: #051922;
	color: #f28123;
}

a.bordered-btn {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

a.bordered-btn:hover {
	background-color: #f28123;
	color: #fff;
}

ul.sub-menu a {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

ul.sub-menu li:hover a {
	color: #f28123;
}

.single-tof-box {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.single-tof-box:hover {
	-webkit-box-shadow: 0 0 80px #353535;
	box-shadow: 0 0 80px #353535;
}

a.video-play-btn {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

a.video-play-btn:hover {
	background-color: #333;
	color: #f28123;
}

.latest-news-bg {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.single-latest-news:hover .latest-news-bg {
	opacity: 0.8;
}

a.tof-btn {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

a.tof-btn i {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

a.tof-btn:hover {
	color: #f28123;
}

a.tof-btn:hover i {
	margin-left: 10px;
}

.single-latest-news {
	-webkit-box-shadow: 0 0 20px #dddddd;
	box-shadow: 0 0 20px #dddddd;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.single-latest-news:hover {
	-webkit-box-shadow: 0 0 0;
	box-shadow: 0 0 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.single-logo-item {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.single-logo-item:hover {
	opacity: 0.7;
}

.footer-box.pages ul li a {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.footer-box.pages ul li:hover a {
	color: #f28123;
}

.footer-box.subscribe form button {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.footer-box.subscribe form button:hover {
	background-color: #f28123;
	color: #051922;
}

.social-icons ul li:hover a {
	color: #f28123;
}

.social-icons ul li a {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

ul.social-link-team li a {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

ul.social-link-team li a:hover {
	background-color: #051922;
	color: #f28123;
}

.counter-box {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.counter-box:hover {
	-webkit-box-shadow: 0 0 80px #6f6f6f;
	box-shadow: 0 0 80px #6f6f6f;
}

input[type="submit"] {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	border-radius: 50px !important;
}

input[type="submit"]:hover {
	background-color: #051922;
	color: #f28123;
}

div.owl-controls,
.owl-controls div {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

div.owl-controls div.owl-nav div:hover {
	opacity: 0.7;
}

.product-section {
    position: relative; /* Menetapkan posisi relatif untuk kontainer */
}

.pagination-wrapper {
    position: absolute;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
    top: 165px; /* Posisi di atas */
    right: 150px; /* Posisi ke kanan */
}

@media only screen and (max-width: 600px) {
    .pagination-wrapper {
        top: 160px; /* Posisi di atas */
        right: 15px; /* Posisi ke kanan */
    }
}
    
.pagination-info {
    margin-top: 10px;
    font-size: 14px;
    color: #023535;
    text-align: right;
    padding-right: 20px; /* Posisi teks ke kanan */
}

.pagination a {
    display: inline-block;
    padding: 4px 10px;
    margin: 2px;
    border: 1px solid #023535;
    text-decoration: none;
    color: #023535;
}

 .pagination a.active {
    border: 1px solid #023535;
    font-weight: bold;
}

.pagination-wrap ul li a {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.pagination-wrap ul li:hover a {
	background-color: #f28123;
}

.icons a i {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.icons a:hover i {
	color: #f28123;
}

.tof-text a.tof-btn {
	margin-top: 15px;
	display: inline-block;
}

.single-pricing-table {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.single-pricing-table:hover {
	-webkit-box-shadow: 0 0 20px #ddd;
	box-shadow: 0 0 20px #ddd;
}

.product-image img {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.product-image img:hover {
	-webkit-box-shadow: none;
	box-shadow: none;
}

a.cart-btn {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

a.cart-btn:hover {
	background-color: #051922;
	color: #f28123;
}

.recent-posts ul li {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.recent-posts ul li:hover {
	opacity: 0.7;
}

ul.sub-menu li a {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

ul.sub-menu li:hover a {
	color: #f28123 !important;
}

.sidebar-section ul li a {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.sidebar-section ul li a:hover {
	opacity: 0.7;
}

.comment-text-body h4 a {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.comment-text-body h4 a:hover {
	color: #f28123;
}

ul.product-share li a {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

ul.product-share li:hover a {
	color: #f28123;
}

.service-menu ul li a {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.service-menu ul li a.active {
	font-weight: 600;
	color: #ffe200;
}

.service-menu ul li a:hover {
	color: #ffe200;
}

.single-product-item {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.single-product-item:hover {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.search-bar-tablecell button[type="submit"] {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.search-bar-tablecell button[type="submit"]:hover {
	background-color: #fff;
	color: #000;
}

span.close-btn {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

span.close-btn:hover {
	color: #fff;
}

a.mobile-show.search-bar-icon {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

a.mobile-show.search-bar-icon:hover {
	color: #f28123;
}

/* -----------------------------------------------------------------------------

# Hero Styles

----------------------------------------------------------------------------- */
.hero-bg {
	position: relative;
	width: 100%;
	height: 100vh; /* Video akan memenuhi tinggi layar */
	overflow: hidden; /* Menyembunyikan bagian video yang keluar dari container */
}

#hero-video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw; /* Menutupi seluruh lebar layar */
	height: 100vh; /* Menutupi seluruh tinggi layar */
	object-fit: cover; /* Menutupi container tanpa mendistorsi rasio */
	transform: translate(-50%, -50%) scale(1.2); /* Pusatkan video */
	z-index: -1;
}

@media only screen and (max-width: 600px) {
	.hero-bg {
		height: 50vh;
	}

	#hero-video {
		width: 100vw; /* Menyesuaikan lebar dengan layar perangkat */
		height: auto; /* Tetap menjaga tinggi proporsional */
		transform: translate(-50%, -35%) scale(1.2); /* Menghilangkan zoom pada tampilan mobile */
	}
}

.hero-text {
	display: table;
	height: 100%;
}

.hero-text-tablecell {
	display: table-cell;
}

.hero-area {
	height: 100%;
	position: relative;
	z-index: 1;
}

.hero-area:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: #07212e;
	z-index: -1;
	opacity: 0.6;
}

.hero-text p.subtitle {
	color: #f28123;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 7px;
	font-size: 15px;
}

.hero-text h1 {
	font-size: 64px;
	font-weight: 700;
	line-height: 1.3;
	color: #fff;
}

.hero-area div {
	height: 100%;
}

.hero-area div.hero-text {
	height: 100%;
	width: 100%;
}

.hero-area div.hero-text-tablecell {
	height: auto;
	vertical-align: middle;
}

.hero-area div.hero-text-tablecell div {
	height: auto;
	vertical-align: middle;
}

.hero-btns {
	margin-top: 35px;
}

.hero-btns a.bordered-btn {
	margin-left: 15px;
}

.hero-area div.hero-form {
	background-color: #fff;
	text-align: center;
	width: 380px;
	margin: 0 auto;
	margin-right: 0;
	border-radius: 5px;
	-webkit-box-shadow: 0 0 15px #2d2d2d;
	box-shadow: 0 0 15px #2d2d2d;
	position: absolute;
	right: 30px;
	bottom: -15%;
	height: 600px;
}

input[type="submit"] {
	background-color: #f28123;
	color: #051922;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 15px;
	border: none !important;
	cursor: pointer;
	padding: 15px 25px;
	border-radius: 3px;
}

.homepage-bg-1 {
	background-image: url(../img/hero-bg.jpg);
}

.homepage-bg-2 {
	background-image: url(../img/hero-bg-2.jpg);
}

.homepage-bg-3 {
	background-image: url(../img/hero-bg-3.jpg);
}

.homepage-slider {
	height: 100%;
}

.homepage-slider div {
	height: 100%;
}

.homepage-slider div.hero-text {
	display: table;
	width: 100%;
}

.homepage-slider div.hero-text-tablecell {
	height: auto;
	vertical-align: middle;
	display: table-cell;
}

.homepage-slider div.hero-text-tablecell div {
	height: auto;
}

.single-homepage-slider {
	background-size: cover;
	background-position: center;
	background-color: #020c0e;
	position: relative;
	z-index: 1;
}

.single-homepage-slider:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #051922;
	content: "";
	z-index: -1;
	opacity: 0.7;
}

div.owl-controls,
.owl-controls div {
	height: auto;
	top: 50%;
	color: #f28123;
	font-size: 48px;
}

.homepage-slider {
	position: relative;
}

.owl-prev {
	position: absolute;
	left: -30px;
	margin-top: -30px;
}

.owl-next {
	position: absolute;
	right: -30px;
	margin-top: -30px;
}

/* -----------------------------------------------------------------------------

# List Styles

----------------------------------------------------------------------------- */
.list-section {
	background-color: #f5f5f5;
}

.list-box {
	overflow: hidden;
	letter-spacing: 0.5px;
}

.list-box .content h3 {
	display: block;
	line-height: 22px;
	font-size: 18px;
	margin-bottom: 4px;
}

.list-box .content p {
	margin-bottom: 0px;
	opacity: 0.75;
}

.list-box .list-icon i {
	display: block;
	font-size: 24px;
	margin-right: 15px;
	color: #f28123;
	width: 65px;
	height: 65px;
	text-align: center;
	line-height: 60px;
	border: 2px #f28123 dotted;
	border-radius: 999px;
}

/* -----------------------------------------------------------------------------

# News Styles

----------------------------------------------------------------------------- */
.news-bg-1 {
	background-image: url(../img/latest-news/news-bg-1.jpg);
}

.news-bg-2 {
	background-image: url(../img/latest-news/news-bg-2.jpg);
}

.news-bg-3 {
	background-image: url(../img/latest-news/news-bg-3.jpg);
}

.news-bg-4 {
	background-image: url(../img/latest-news/news-bg-4.jpg);
}

.news-bg-5 {
	background-image: url(../img/latest-news/news-bg-5.jpg);
}

.news-bg-6 {
	background-image: url(../img/latest-news/news-bg-6.jpg);
}

.latest-news-bg {
	height: 200px;
	background-size: cover;
	background-position: center;
	border-radius: 10px;
	background-color: #ddd;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.single-latest-news h3 {
	font-size: 20px;
	line-height: 1.25em;
	font-weight: 600;
}

.single-latest-news h3 a {
	color: #051922;
}

p.blog-meta span {
	margin-right: 15px;
	opacity: 0.6;
	color: #051922;
	font-size: 0.85em;
}

p.blog-meta span:last-child {
	margin-right: 0;
}

p.blog-meta span i {
	margin-right: 5px;
}

p.excerpt {
	line-height: 1.8;
	color: #555;
}

.latest-news a.boxed-btn {
	margin-top: 80px;
}

.news-text-box {
	padding: 25px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.single-latest-news {
	margin-bottom: 30px;
}

.single-artcile-bg {
	background-image: url(../img/latest-news/news-bg-3.jpg);
	height: 450px;
}

.pagination-wrap {
	margin-top: 40px;
}

.pagination-wrap ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.pagination-wrap ul li {
	display: inline-block;
}

.pagination-wrap ul li a {
	color: #6f6f6f;
	font-size: 15px;
	background-color: #f3f3f3;
	display: inline-block;
	padding: 8px 14px;
	border-radius: 5px;
	margin: 3px;
	font-weight: 600;
	border-radius: 50px;
}

.pagination-wrap ul li a.active {
	background-color: #f28123;
}

.single-artcile-bg {
	background-size: cover;
	background-position: center;
	background-color: #ddd;
	border-radius: 5px;
	margin-bottom: 20px;
}

.single-article-text h2 {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 10px;
}

.single-article-text p {
	font-size: 15px;
	line-height: 1.6;
	color: #051922;
}

.comments-list-wrap {
	margin: 100px 0;
}

.comments-list-wrap h3 {
	font-size: 25px;
	font-weight: 600;
	margin-bottom: 50px;
}

.comment-template h4 {
	font-size: 25px;
	font-weight: 600;
	margin-bottom: 50px;
}

.single-comment-body {
	position: relative;
}

.comment-user-avater {
	position: absolute;
	left: 0;
	top: 0;
}

.comment-user-avater img {
	width: 60px;
	max-width: 60px;
	border-radius: 50%;
}

.comment-text-body {
	padding-left: 80px;
	margin-bottom: 40px;
}

.comment-text-body h4 {
	font-size: 18px;
	font-weight: 600;
}

span.comment-date {
	opacity: 0.5;
	font-size: 80%;
	font-weight: 700;
	margin-left: 5px;
}

.comment-text-body h4 a {
	color: #051922;
	font-size: 80%;
	margin-left: 10px;
	border-bottom: 1px solid #aaa;
}

.single-comment-body.child {
	margin-left: 75px;
}

.comment-text-body p {
	color: #888;
	line-height: 2;
	margin: 0;
}

.comment-template h4 {
	margin-bottom: 10px;
}

.comment-template > p {
	opacity: 0.7;
	margin-bottom: 30px;
}

.comment-template form p input[type="text"] {
	border: 1px solid #ddd;
	width: 49%;
	padding: 15px;
	border-radius: 5px;
	font-size: 15px;
	color: #051922;
}

.comment-template form p input[type="email"] {
	border: 1px solid #ddd;
	width: 49%;
	padding: 15px;
	border-radius: 5px;
	font-size: 15px;
	color: #051922;
	margin-left: 10px;
}

.comment-template form p textarea {
	border: 1px solid #ddd;
	padding: 15px;
	font-size: 15px;
	color: #051922;
	border-radius: 5px;
	height: 250px;
	resize: none;
	width: 100%;
}

.sidebar-section {
	margin-left: 30px;
}

.sidebar-section h4 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 15px;
}

.sidebar-section ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sidebar-section ul li {
	line-height: 1.5;
}

.sidebar-section ul li a {
	color: #555;
	font-size: 15px;
}

.sidebar-section > div {
	margin-bottom: 60px;
}

.sidebar-section > div:last-child {
	margin-bottom: 0;
}

.recent-posts ul li,
.archive-posts ul li {
	position: relative;
	padding-left: 17px;
	margin-bottom: 10px;
}

.recent-posts ul li:before,
.archive-posts ul li:before {
	position: absolute;
	left: 0;
	top: 2px;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}

.tag-section ul li {
	display: inline-block;
}

.tag-section ul li a {
	background-color: #ddd;
	padding: 3px 10px;
	display: block;
	border-radius: 5px;
	margin-bottom: 10px;
	margin-right: 5px;
}

/* -----------------------------------------------------------------------------

# Cart Banner Styles

----------------------------------------------------------------------------- */
.cart-banner {
	background-color: #f5f5f5;
}

.cart-banner .image-column {
	position: relative;
	margin-top: 40px;
}

.cart-banner .image-column .price-box {
	position: absolute;
	left: 15%;
	top: -30px;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	border: 1px solid #fff;
	background-color: rgba(242, 129, 35, 0.75);
}

.cart-banner .image-column .price-box .inner-price {
	position: relative;
	width: 94px;
	height: 94px;
	margin: 0 auto;
	margin-top: 8px;
	text-align: center;
	border-radius: 50%;
	background-color: #f28123;
}

.cart-banner .image-column .price-box .inner-price .price {
	color: #051922;
	padding-top: 27px;
	position: relative;
	display: inline-block;
	line-height: 18px;
	font-weight: 400;
}

.cart-banner .image-column .price-box .inner-price .price strong {
	color: #051922;
	font-size: 24px;
}

.cart-banner .content-column {
	position: relative;
	padding-top: 40px;
}

.cart-banner .content-column h3 {
	font-size: 40px;
}

.cart-banner .content-column h4 {
	position: relative;
	font-weight: 300;
	text-transform: uppercase;
}

.cart-banner .content-column .text {
	position: relative;
	font-weight: 400;
	line-height: 1.8em;
	margin-top: 25px;
	margin-bottom: 25px;
}

.time-counter {
	position: relative;
	margin-bottom: 25px;
}

.time-counter .time-countdown {
	position: relative;
}

.time-countdown .counter-column {
	position: relative;
	display: inline-block;
	margin: 0px 0px 5px;
	font-size: 13px;
	line-height: 1em;
	padding: 8px 20px 14px;
	text-transform: capitalize;
	text-align: center;
	border: 2px solid #f28123;
}

.time-countdown .counter-column .count {
	position: relative;
	display: block;
	font-size: 30px;
	line-height: 1.4em;
	padding: 0px 0px;
	color: #f28123;
	font-weight: 700;
	letter-spacing: 1px;
}

/* -----------------------------------------------------------------------------

# Testimonial Styles

----------------------------------------------------------------------------- */
.client-avater {
	margin-bottom: 20px;
}

.client-meta h3 {
	font-size: 20px;
	font-weight: 600;
}

.client-meta h3 span {
	display: block;
	font-size: 70%;
	margin-top: 10px;
	color: #051922;
	font-weight: 600;
	opacity: 0.5;
}

p.testimonial-body {
	font-size: 17px;
	font-style: italic;
	width: 700px;
	margin: 0 auto;
	line-height: 1.8;
	color: #999999;
	margin-top: 20px;
}

.last-icon {
	margin-top: 20px;
	font-size: 25px;
	opacity: 0.3;
}

.client-avater img {
	max-width: 100px;
	border-radius: 50%;
	margin: 0 auto;
}

/* -----------------------------------------------------------------------------

# About Styles

----------------------------------------------------------------------------- */
a.video-play-btn {
	position: absolute;
	background-color: #f28123;
	color: #051922;
	width: 90px;
	height: 90px;
	text-align: center;
	line-height: 92px;
	border-radius: 50%;
	font-size: 20px;
	padding-left: 5px;
	display: block;
	z-index: 2;
	top: 50%;
	margin-top: -45px;
	-webkit-box-shadow: 0 0 20px #adadad;
	box-shadow: 0 0 20px #adadad;
	left: 50%;
	margin-left: -45px;
}

.abt-bg {
	background-image: url(../img/abt.jpg);
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: center;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.abt-bg:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: #051922;
	opacity: 0.3;
}

.abt-section .abt-text {
	padding: 50px;
	padding-left: 30px;
}

.abt-text p {
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 10px;
}

.abt-text p.top-sub {
	opacity: 0.8;
	margin-bottom: 10px;
}

.abt-text p:last-child {
	margin-bottom: 0;
}

/* -----------------------------------------------------------------------------

# Shop Banner Styles

----------------------------------------------------------------------------- */
.shop-banner {
	position: relative;
	background-color: #f5f5f5;
	background-image: url(../img/1.jpg);
	background-size: cover;
	padding: 110px 0px 115px;
}

.shop-banner h3 {
	position: relative;
	font-size: 50px;
	line-height: 1.2em;
	margin-bottom: 0px;
}

.shop-banner .sale-percent {
	position: relative;
	font-size: 60px;
	font-weight: 700;
	color: #f28123;
}

.shop-banner .sale-percent span {
	position: relative;
	font-size: 24px;
	line-height: 1.1em;
	color: #051922;
	font-weight: 400;
	text-align: center;
	margin-right: 10px;
	display: inline-block;
}

/* -----------------------------------------------------------------------------

# About Page Styles

----------------------------------------------------------------------------- */
.feature-bg {
	position: relative;
	margin: 150px 0;
}

.feature-bg:after {
	background-image: url(../img/feature-bg.jpg);
	position: absolute;
	right: 0;
	top: 0;
	width: 40%;
	height: 100%;
	content: "";
	background-size: cover;
	background-position: center;
	border-top-left-radius: 5px;
	-webkit-box-shadow: 0 0 20px #cacaca;
	box-shadow: 0 0 20px #cacaca;
	border-bottom-left-radius: 5px;
}

.team-bg-1 {
	background-image: url(../img/team/team-1.jpg);
}

.team-bg-2 {
	background-image: url(../img/team/team-2.jpg);
}

.team-bg-3 {
	background-image: url(../img/team/team-3.jpg);
}

.team-bg-4 {
	background-image: url(../img/team/team-4.jpg);
}

.team-bg {
	height: 400px;
	background-size: cover;
	background-position: center;
	border-radius: 5px;
	background-color: #ddd;
}

.single-team-item {
	position: relative;
}

.single-team-item h4 {
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	margin-top: 15px;
	margin-bottom: 10px;
}

.single-team-item h4 span {
	font-size: 70%;
	display: block;
	margin-top: 10px;
	opacity: 0.7;
}

ul.social-link-team {
	position: absolute;
	bottom: 80px;
	left: 0;
	right: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
}

ul.social-link-team li {
	display: inline-block;
}

ul.social-link-team li a {
	color: #fff;
	background-color: #f28123;
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	border-radius: 50%;
	display: block;
	margin: 5px;
}

/* -----------------------------------------------------------------------------

# Contact Page Styles

----------------------------------------------------------------------------- */
.form-title {
	margin-bottom: 25px;
}

.form-title h2 {
	font-size: 25px;
}

.form-title p {
	font-size: 15px;
	line-height: 1.8;
}

.contact-form form p input[type="text"],
.contact-form form p input[type="tel"],
.contact-form form p input[type="email"] {
	width: 49%;
	padding: 15px;
	border: 1px solid #ddd;
	border-radius: 3px;
}

.contact-form form p textarea {
	border: 1px solid #ddd;
	padding: 15px;
	height: 200px;
	border-radius: 3px;
	width: 100%;
	resize: none;
}

.contact-form-wrap {
	background-color: #fbfbfb;
	padding: 45px 30px;
	border-radius: 5px;
}

.contact-form-box {
	padding-left: 40px;
	margin-bottom: 30px;
}

.contact-form-box h4 {
	font-size: 20px;
	font-weight: 600;
	position: relative;
	margin-bottom: 10px;
}

.contact-form-box h4 i {
	position: absolute;
	left: -13%;
	color: #f28123;
	top: 2px;
}

.contact-form-box p {
	line-height: 1.8;
	opacity: 0.8;
}

.contact-form-wrap .contact-form-box:last-child {
	margin: 0;
}

.find-location p {
	color: #fff;
	font-size: 40px;
	margin: 0;
	font-weight: 600;
	padding: 95px 0;
}

.find-location p i {
	margin-right: 10px;
	color: #f28123;
}

#form_status span {
	color: #fff;
	font-size: 14px;
	font-weight: normal;
	background: #e74c3c;
	width: 100%;
	text-align: center;
	display: inline-block;
	padding: 10px 0px;
	border-radius: 3px;
	margin-bottom: 18px;
}

#form_status span.loading {
	color: #333;
	background: #eee;
	border-radius: 3px;
	padding: 18px 0px;
}

#form_status span.notice {
	color: yellow;
}

#form_status .success {
	color: #fff;
	text-align: center;
	background: #2ecc71;
	border-radius: 3px;
	padding: 30px 0px;
}

#form_status .success i {
	color: #fff;
	font-size: 45px;
	margin-bottom: 14px;
}

#form_status .success h3 {
	color: #fff;
	margin-bottom: 10px;
}

/* -----------------------------------------------------------------------------

# Shop Page Styles

----------------------------------------------------------------------------- */
.product-filters {
	margin-bottom: 80px;
}

.product-filters ul {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
}

.product-filters ul li {
	display: inline-block;
	font-weight: 700;
	font-size: 18px;
	margin: 15px;
	border: 2px solid #051922;
	color: #323232;
	cursor: pointer;
	padding: 8px 20px;
	border-radius: 25px;
}

.product-filters ul li.active {
	border: 2px solid #f28123;
	background-color: #f28123;
	color: #fff;
}

.single-product-item {
	margin-bottom: 30px;
}

.product-image {
	padding: 30px;
	padding-bottom: 0;
}

.product-image img {
	width: 90%;
	border-radius: 5px;
	margin-bottom: 20px;
}

.single-product-item h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}

p.product-price {
	font-family: "Poppins", sans-serif;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 15px;
}

p.product-price span {
	display: block;
	opacity: 0.8;
	font-size: 15px;
	font-weight: 400;
}

a.cart-btn {
	font-family: "Poppins", sans-serif;
	display: inline-block;
	background-color: #f28123;
	color: #fff;
	padding: 10px 20px;
}

a.cart-btn i {
	margin-right: 5px;
}

.single-product-img img {
	border-radius: 5px;
	-webkit-box-shadow: 0 0 20px #ddd;
	box-shadow: 0 0 20px #ddd;
}

.single-product-content h3 {
	font-size: 22px;
	font-weight: 600;
}

p.single-product-pricing span {
	font-size: 18px;
	display: block;
	opacity: 0.8;
	margin-bottom: 10px;
	font-weight: 400;
}

.single-product-content p {
	font-size: 15px;
	color: #555;
	line-height: 1.8;
}

.single-product-content p.single-product-pricing {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #051922;
	line-height: inherit;
}

input[type="number"] {
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 10px;
	width: 100px;
	margin-bottom: 15px;
}

.single-product-form a.cart-btn {
	margin-bottom: 15px;
}

.single-product-content h4 {
	font-size: 20px;
	font-weight: 600;
	margin-top: 35px;
}

ul.product-share {
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.product-share li {
	display: inline-block;
}

ul.product-share li a {
	display: block;
	color: #051922;
	margin-right: 10px;
}

.single-product-content {
	margin-left: 30px;
}

table.cart-table {
	border: 1px solid #f9f9f9;
	width: 100%;
}

thead {
	border-bottom: 1px solid #eee;
}

tr.table-head-row th {
	border-right: 1px solid #efefef;
	padding: 15px;
	font-weight: 500;
	text-align: center;
}

tr.table-head-row th:last-child {
	border-right: none;
}

.cart-table-wrap tbody tr td {
	text-align: center;
}

td.product-image img {
	max-width: 50px;
	-webkit-box-shadow: none;
	box-shadow: none;
	margin-bottom: 0;
}

.cart-table-wrap tbody tr td {
	border: 1px solid #efefef;
	padding: 20px 0;
	color: #051922;
}

thead.cart-table-head tr {
	background-color: #efefef;
}

td.product-quantity input {
	margin-bottom: 0;
}

td.product-remove a {
	color: #051922;
}

.total-section table.total-table {
	border: 1px solid #efefef;
	width: 100%;
}

tr.table-total-row {
	background-color: #efefef;
}

tr.table-total-row th {
	font-weight: 500;
	font-size: 15px;
	padding: 15px;
}

table.total-table tbody tr.total-data td {
	border: 1px solid #efefef;
	padding: 19px 15px;
}

tr.total-data td strong {
	margin-right: 32px;
}

.cart-buttons {
	margin-top: 30px;
}

.cart-buttons a:first-child {
	margin-right: 20px;
}

.coupon-section {
	margin-top: 50px;
}

.coupon-section h3 {
	font-size: 20px;
	font-weight: 500;
}

.coupon-form-wrap form p input[type="text"] {
	border: 1px solid #ddd;
	color: #051922;
	padding: 15px;
	width: 100%;
	border-radius: 5px;
	font-size: 15px;
}

.card.single-accordion {
	margin-bottom: 15px;
	border-bottom: 1px solid #efefef !important;
}

.card.single-accordion .card-header {
	background-color: #fff;
	border: none;
	padding: 0;
}

.card.single-accordion:last-child {
	margin-bottom: 0;
}

.card.single-accordion .card-header h5 button {
	color: #051922;
	font-size: 15px;
	display: block;
	width: 100%;
	text-align: left;
	padding: 20px;
	text-decoration: none;
	border: none;
	background-color: #efefef;
	position: relative;
	padding-left: 50px;
	font-weight: 600;
}

.card.single-accordion {
	border: 1px solid #f9f9f9;
}

.billing-address-form {
	padding: 20px;
}

.billing-address-form form p input {
	border: 1px solid #ddd;
	padding: 15px;
	width: 100%;
	border-radius: 3px;
}

.billing-address-form form p textarea {
	width: 100%;
	border-radius: 3px;
	border: 1px solid #ddd;
	padding: 15px;
	height: 120px;
	resize: none;
}

.shipping-address-form p,
.card-details p {
	margin: 0;
}

.card.single-accordion .card-header h5 button:before {
	position: absolute;
	left: 20px;
	top: 50%;
	content: "\f058";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	line-height: 22px;
	margin-top: -11px;
	color: #f28123;
}

.billing-address-form form p:last-child {
	margin-bottom: 0;
}

table.order-details {
	border: 1px solid #efefef;
}

table.order-details thead tr th {
	background-color: #efefef;
	padding: 18px;
	font-size: 15px;
	font-weight: 500;
}

table.order-details tbody td {
	border: 1px solid #efefef;
	padding: 15px;
}

.order-details-wrap > a {
	margin-top: 30px;
}

.card.single-accordion {
	border: 1px solid #eeeeee;
}

.single-product-item {
	-webkit-box-shadow: 0 0 20px #e4e4e4;
	box-shadow: 0 0 20px #e4e4e4;
	padding-bottom: 50px;
	border-radius: 5px;
}

/* -----------------------------------------------------------------------------

# 404 Page Styles

----------------------------------------------------------------------------- */
.error-text i {
	font-size: 90px;
	margin-bottom: 30px;
}

.error-text h1 {
	font-size: 40px;
	font-weight: 500;
	margin-bottom: 10px;
}

.error-text p {
	font-size: 15px;
	margin-bottom: 30px;
}

.full-height-section {
	height: 100%;
	display: table;
	width: 100%;
}

.full-height-tablecell {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
}
/* custome */
.areaMenu {
	display: grid;
	gap: 20px;
	margin-top: 10px;
	margin-bottom: 20px;
}

@media (min-width: 992px) {
	.areaMenu {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}
}

@media (max-width: 991px) {
	.areaMenu {
		grid-template-columns: repeat(2, 1fr);
	}
}
.cardMenu {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	background-color: rgb(11, 127, 127, 0.1);
	color: #000;
	margin-bottom: 20px;
	text-align: center;
}
.cardMenu img {
	border-radius: 10px;
	width: 100%;
	height: auto;
	max-width: 60px;
	margin-bottom: 3px;
}
.cardMenu:hover {
	box-shadow: 0 3px 10px rgb(11, 127, 127);
}

.judul {
	font-size: 18px;
	background-color: rgb(11, 127, 127);
	color: #ffffff;
	width: fit-content;
	padding-left: 25px;
	padding-right: 25px;
	border-radius: 10px;
	margin-top: 15px;
	margin-bottom: 25px;
}

.areaPejabat {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-round;
	gap: 25px;
	padding: 0px 0px 0px 0px;
}
.pejabat {
	text-align: center;
	width: 110px;
}

.bulat {
	width: 80px;
	height: 80px;
	background-color: #d3d3d3;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.3s ease;
	padding: 3px;
	margin: 0 auto; /* Tambahkan ini untuk mengatur elemen ke tengah */
}

.bulat img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.pejabat .nama {
	font-size: 11px;
	font-weight: bold;
	display: block;
}

.pejabat .jabatan {
	font-size: 11px;
}

.pejabat .tahun {
	font-size: 11px;
}

.areaPejabat .aktif {
	background-color: rgb(11, 127, 127);
	border: 3px solid rgb(11, 127, 127);
	padding: 0;
}

.bulat:hover {
	background-color: rgb(11, 127, 127);
}

.detailPejabat {
	position: relative;
	border-radius: 10px;
	top: 100px;
	width: 100%;
	max-height: 500px;
	overflow: hidden;
}
.kutipan {
	padding-top: 130px;
	font-size: 14px;
	font-weight: 600;
	text-align: right;
	font-style: italic;
	color: #0b7f7f;
}

.detailPejabat img {
	width: 100%;
	border-radius: 10px;
	object-fit: cover; /* Memastikan gambar memenuhi area */
	object-position: top;
	transform: scale(1.5) translateY(15%);
}

.detailPejabat .info {
	position: absolute;
	bottom: 0; /* Menempel pada bagian bawah gambar */
	left: 0;
	right: 0;
}
.info .name {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 2px;
	background-color: rgba(11, 127, 127);
	color: white;
	padding: 5px;
	border-radius: 5px;
}
.info .desc {
	font-size: 12px;
	margin-bottom: 2px;
	background-color: rgba(11, 127, 127);
	color: white;
	padding: 5px;
	border-radius: 5px;
}

/* Tampilan Desktop/Laptop */
.event {
	display: flex;
	justify-content: center;
	margin: auto;
	background-color: #fff;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	max-width: 100%;
}

.content {
	flex: 1;
	padding-right: 20px;
	position: relative;
	overflow: hidden;
}

.content h2 {
	color: #027373;
}

.content p {
	color: #444;
}

.content .btn {
	background-color: #027373;
	color: white;
	padding: 5px 10px;
	text-decoration: none;
	border-radius: 5px;
	display: inline-block;
	margin-top: 10px;
}

.image-event {
	width: 100%;
	max-width: 600px;
	height: 400px;
	background-color: #ddd;
	background-size: cover;
	background-position: center;
	border-radius: 10px;
	opacity: 1;
	transition: opacity 1.5s ease-in-out;
}

.navigation {
	position: absolute;
	display: flex;
	flex-direction: column;
	margin-left: 20px;
	margin-right: 20px;
	bottom: 0;
	right: 55%;
}
.nav-btn {
	background-color: #f5f5f5;
	color: #027373;
	border: 1px solid #027373;
	margin: 5px;
	cursor: pointer;
	width: 40px;
	height: 40px;
	border-radius: 50%;
}
.nav-btn:hover {
	background-color: #027373;
	color: #ffffff;
}

.event-info {
	margin-top: 10px;
	font-size: 16px;
	font-weight: bold;
	color: #027373;
	bottom: 0;
	position: absolute;
	text-align: center;
}

/* Tampilan Mobile */
@media screen and (max-width: 768px) {
	.event {
		flex-direction: column; /* Menumpuk konten dalam satu kolom */
	}

	.content {
		padding: 15px;
		padding-bottom: 0; /* Menghilangkan padding bawah untuk mengurangi ruang kosong */
	}

	.image-event {
		width: 100%;
	}

	.navigation {
		flex-direction: row; /* Mengubah navigasi menjadi horizontal */
		justify-content: center;
		bottom: 0;
		left: 45%;
	}

	.nav-btn {
		width: 30px;
		height: 30px;
	}

	.event-info {
		position: relative; /* Mengatur posisi info agar tetap di bawah konten */
		bottom: auto;
		margin-bottom: 10px;
	}
}

.terbaru {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 35px;
	margin-top: 10px;
	margin-bottom: 20px;
}

.kartu {
	width: 250px;
	background-color: white;
	border-radius: 12px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.kartu-image img {
	width: 100%;
	height: 150px;
	display: block;
	object-fit: cover;
}

.kartu-content {
	padding: 10px;
}

.category {
	background-color: #78c4d4;
	color: white;
	border-radius: 12px;
	display: inline-block;
	padding: 2px 10px;
	font-size: 12px;
	margin-bottom: 2px;
}

.kartu-title {
	font-size: 12px;
	margin: 0 0 5px 0;
}

.kartu-description {
	font-size: 12px;
	color: #555;
	margin-bottom: 20px;
}

.kartu-footer {
	display: flex;
	align-items: center;
}

.author-image {
	border-radius: 50%;
	width: 40px;
	height: 40px;
	margin-right: 10px;
}

.author-info {
	font-size: 12px;
}

.author-name {
	font-weight: bold;
	display: block;
}

.post-time {
	color: #777;
}
/* Media query for mobile view */
@media (max-width: 600px) {
	.terbaru {
		gap: 20px;
		justify-content: center;
	}
	.kartu {
		width: calc(50% - 20px); /* Two cards per row with gap consideration */
	}
}
.gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	max-width: 100%;
}

.gallery-item {
	background-color: #ccc;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	color: #666;
	text-align: center;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gallery-item video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gallery-item a {
	position: absolute;
	bottom: -15rem;
	background-color: #027373;
	color: #f5f5f5;
	width: 100%;
	height: 18%;
	align-content: center;
}
.gallery-item:hover a {
	bottom: 0;
}

.gallery-item:nth-child(2) {
	grid-row: span 2;
}

.gallery-item:nth-child(6) {
	grid-column: span 2;
}

.gallery-item:nth-child(8) {
	grid-column: span 2;
}

.panel ul {
	display: grid;
	grid-template-columns: repeat(5, 120px);
	gap: 65px;
	list-style: none;
	padding-bottom: 60px;
	justify-content: center;
}

.panel-item {
	text-align: center;
	position: relative;
}

.panel-item:nth-child(6) {
	grid-column-start: 1;
	margin-left: 90px;
	margin-top: -70px;
}

.panel-item:nth-child(7) {
	margin-left: 90px;
	margin-top: -70px;
}

.panel-item:nth-child(8) {
	margin-left: 90px;
	margin-top: -70px;
}

.panel-item:nth-child(9) {
	margin-left: 90px;
	margin-top: -70px;
}
.panel-item:nth-child(10) {
	grid-column-start: 1;
	margin-left: 180px;
	margin-top: -70px;
}
.panel-item:nth-child(11) {
	margin-left: 180px;
	margin-top: -70px;
}
.panel-item:nth-child(12) {
	margin-left: 180px;
	margin-top: -70px;
}

.panel-item .icon {
	position: relative;
	width: 120px;
	height: 120px;
	display: block;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	background-color: rgb(11, 127, 127, 0.1);
	color: #000;
	border-radius: 10px;
	transform: rotate(45deg);
	transition: border 0.25s ease;
	overflow: hidden;
}

.panel-item .icon img {
	height: 60px;
	width: 60px;
	object-fit: contain;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.panel-item .icon:hover {
	box-shadow: 0 3px 10px rgb(11, 127, 127);
}
.panel-item span {
	display: inline-block;
	background: #fff;
	color: #333;
	padding: 2px 15px;
	border-radius: 20px;
	white-space: nowrap;
	font-size: 11px;
	font-weight: 500;
	cursor: pointer;
	position: absolute;
	bottom: -30px;
	left: 52%;
	transform: translate(-50%, 0) scale(0) rotate(-45deg);
	transition: all 0.3s ease;
	opacity: 0;
	border: 1px solid rgb(11, 127, 127);
}

.panel-item .icon:hover span {
	bottom: 43%;
	opacity: 1;
	transform: translate(-50%, 0) scale(1) rotate(-45deg);
}
/* CSS yang sudah ada tetap digunakan untuk desktop */

/* Media Query untuk tampilan ponsel */
@media (max-width: 768px) {
	.panel ul {
		grid-template-columns: repeat(
			3,
			90px
		); /* Mengubah jumlah kolom menjadi 3 */
		gap: 15px; /* Mengurangi jarak antar elemen */
		justify-content: center;
	}

	.panel-item {
		margin-left: 0;
		margin-top: 0;
	}

	.panel-item:nth-child(6),
	.panel-item:nth-child(7),
	.panel-item:nth-child(8),
	.panel-item:nth-child(9),
	.panel-item:nth-child(10),
	.panel-item:nth-child(11),
	.panel-item:nth-child(12) {
		grid-column-start: auto;
		margin-left: 0;
		margin-top: 0;
	}

	.panel-item .icon {
		width: 90px;
		height: 90px;
		transform: none;
	}

	.panel-item .icon img {
		height: 45px;
		width: 45px;
		transform: translate(-50%, -50%);
	}

	.panel-item span {
		bottom: -20px;
		left: 50%;
		font-size: 10px;
		padding: 2px 10px;
		transform: translate(-50%, 0) scale(0);
	}

	.panel-item .icon:hover span {
		bottom: 43%;
		transform: translate(-50%, 0) scale(1);
	}
}
.report-container {
	background: url("../img/custom/batik-footer.jpg") repeat center center;
	background-size: 200px auto;
	max-width: 1200px;
	margin-top: 50px;
	margin-bottom: 50px;
	border-radius: 15px;
	display: relative;
}
.report-container .box {
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: rgb(11, 127, 127, 0.8);
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
	border-radius: 15px;
}

.report-text {
	color: white;
	font-size: 20px;
	font-weight: bold;
	max-width: 700px;
	display: block;
}

.report-button {
	background-color: #f1f3f4;
	color: rgb(11, 127, 127);
	font-size: 24px;
	font-weight: bold;
	border: none;
	border-radius: 10px;
	padding: 5px 30px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	text-align: center;
}

.report-button:hover {
	background-color: #e2ba81;
}

.menu-atas {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px 100px;
	background-color: rgba(11, 127, 127, 0.5);
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	
}

.scrolled {
	background: url("../img/custom/motif_sarung.png") repeat center center;
	background-size: 300px auto;
	box-shadow: 0px 4px 6px -2px rgba(0, 0, 0, 0.2);
	
}

.scrolled .main-pilihan a:hover {
	color: #555;
	background-color: #f4f4f4;
	border-radius: 5px;
}

.scrolled .main-pilihan a {
	color: #051922;
	font-size: 14px;
	font-weight: 700;
	transition: color 0.3s ease, font-size 0.3s ease, font-weight 0.3s ease; /* Menambahkan transisi */
}

.scrolled .sub-pilihan a {
	font-size: 13px;
	font-weight: 500;
}

.site-logo a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.site-logo a h3 {
	color: #ffffff;
}
.scrolled .site-logo a h3 {
	color: #051922;
}

.site-logo img {
	height: 50px;
}

.main-pilihan {
	display: flex;
	align-items: center;
}

.main-pilihan ul {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}

.main-pilihan li {
	position: relative;
	margin-right: 5px;
}

.main-pilihan a {
	text-decoration: none;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	padding: 8px 15px;
	text-decoration: none;
}

.main-pilihan li:hover > .sub-pilihan {
	display: block;
}

.sub-pilihan {
	display: none; /* Menyembunyikan sub-menu secara default */
	position: absolute;
	top: 120%;
	left: 0;
	background-color: #fff;
	border-radius: 4px;
	list-style: none;
	padding: 10px 0;
	min-width: 200px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	z-index: 1000;
}

.sub-pilihan li {
	margin: 0;
}

.sub-pilihan a {
	display: none;
	padding: 8px 15px;
	color: #000;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
}
.sub-sub {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.pencarian {
	width: 100%;
	padding: 2px 5px;
	padding-right: 10px; /* Untuk memberi ruang bagi ikon */
	border: 1px solid #ccc;
	border-radius: 25px; /* Membuat sudut melengkung */
	font-size: 13px;
	outline: none;
	transition: border-color 0.3s ease;
}

.pencarian:focus {
	border-color: #007bff; /* Ubah warna border saat fokus */
}

.search-icon {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	font-size: 12px;
	pointer-events: none; /* Ikon tidak mengganggu klik pada input */
	transition: color 0.3s ease;
}

/* Mengubah warna ikon saat input fokus */
.pencarian:focus + .search-icon {
	color: #007bff;
}

/* Style responsif */
@media (max-width: 600px) {
	.search-container {
		max-width: 100%;
		max-width: 100px;
	}
	.pencarian {
		font-size: 12px;
		max-width: 100px;
	}
}

/* Memunculkan sub-menu saat elemen li induk di-hover */
.main-pilihan li:hover > .sub-pilihan a {
	display: block;
}

.sub-pilihan a:hover {
	background-color: #f4f4f4;
}

.main-pilihan a:hover {
	background-color: rgb(11, 127, 127, 0.2);
	border-radius: 5px;
}
.main-pilihan i {
	margin-left: 5px;
}

.main-pilihan li:last-child {
	margin-right: 0;
}

.main-pilihan .fa-search {
	font-size: 18px;
	color: #ffffff;
}

.menu-item::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 4px;
	background: #0b7f7f; /* Warna garis */
	transition: width 0.5s ease, left 0.5s ease;
	border-radius: 2px;
}
.menu-item i {
	font-size: 10px;
}

.menu-item:hover::after {
	width: 100%;
	left: 0;
}

.menu-item:hover::after {
	animation: slidein 0.5s forwards;
}

.menu-item::after {
	animation: slideout 0.5s forwards;
}
.hamburger-menu {
	display: none;
}
@media (max-width: 768px) {
	.menu-atas {
		padding: 10px 20px;
		background: url("../img/custom/motif_sarung.png") repeat center center;
		background-size: 300px auto;
		box-shadow: 0px 4px 6px -2px rgba(0, 0, 0, 0.2);
	}
	
	.site-logo a h3 {
		color: #051922;
	}
	
	.main-pilihan ul {
		display: none;
		flex-direction: column;
		width: 100%;
		position: absolute;
		top: 100%;
		left: 0;
		background: url("../img/custom/motif_sarung.png") repeat center center;
		background-size: 300px auto;
	}
	
	.main-pilihan a {
		color: #051922;
		font-size: 14px;
		font-weight: 700;
		display: flex;
		justify-content: space-between;
	}
	
	.sub-pilihan {
		display: none;
	}
	
	.sub-pilihan a {
		display: none;
		padding: 8px 15px;
		color: #000;
		font-size: 13px;
		font-weight: 500;
		text-decoration: none;
	}
	
	.menu-item {
		display: flex;
	}
	
	.menu-item::after {
		display: none;
	}
	
	.hamburger-menu {
		display: block;
	}

	.hamburger {
		font-size: 24px;
	}
}

/* Style for showing menu when hamburger clicked */
.main-pilihan.show ul {
	display: flex;
}

@keyframes slidein {
	from {
		width: 0;
		left: 0;
	}
	to {
		width: 100%;
		left: 0;
	}
}

@keyframes slideout {
	from {
		width: 100%;
		left: 0;
	}
	to {
		width: 0;
		left: 100%;
	}
}

.whatsapp-float {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.whatsapp-float a {
	background-color: #25d366;
	color: white;
	font-size: 24px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: background-color 0.3s ease;
	position: relative;
}

.whatsapp-float a:hover {
	background-color: #128c7e;
}

.whatsapp-text {
	margin-right: 10px;
	background-color: white;
	color: #000;
	padding: 5px 10px;
	border-radius: 20px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	opacity: 0;
	transition: opacity 0.3s ease;
	white-space: nowrap;
	font-weight: bold;
	position: absolute;
	bottom: 5px; /* Tempatkan tooltip sedikit di atas tombol */
	right: 50px;
	pointer-events: none; /* Tidak mengganggu interaksi klik */
}

.whatsapp-float a:hover ~ .whatsapp-text {
	opacity: 1; /* Tooltip muncul saat hover tombol */
}

.logo-carousel-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.berita {
	display: block;
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
}

.berita-image {
	width: auto;
	height: 150px; /* Adjust height as necessary */
	overflow: hidden;
	background-color: #f0f0f0; /* Light gray background if the image doesn't load */
}

.berita-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.berita-content {
	padding: 15px;
}

.berita-title {
	font-size: 12px;
	font-weight: bold;
	margin: 5px 0;
	color: #1a1a1a;
}

.berita-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 12px;
	color: #7a7a7a;
}

.author-name {
	display: flex;
	align-items: center;
	margin-right: 10px;
}

.post-time {
	display: flex;
	align-items: center;
}
.pengunjung {
	background-color: #051922;
	border-radius: 10px;
	padding: 10px;
	width: 100%; /* Sesuaikan dengan ukuran yang Anda inginkan */
	text-align: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pengunjung-header {
	background-color: #051922; /* Warna latar belakang header */
	color: #869094;
	padding: 10px;
	border-radius: 8px 8px 0 0;
	font-size: 18px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pengunjung-header i {
	margin-right: 8px;
	/* Gunakan ikon sesuai kebutuhan Anda */
}

.pengunjung-content {
	display: flex;
	justify-content: space-around;
	padding: 10px;
	border-radius: 0 0 8px 8px;
}

.data-item {
	text-align: center;
}

.data-item p {
	margin: 0;
	font-size: 14px;
	color: #5f6f72; /* Warna teks untuk label Hari, Bulan, Tahun */
}

.data-item .value {
	font-size: 22px;
	color: #869094;
	font-weight: bold;
}
.profile-card {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
    text-align: center;
	overflow: hidden;
}

.background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.background img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
}


.fullscreen-center {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}


.list-profil {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.profile-content {
	position: relative;
	margin-top: 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	
}

.profile-picture {
	width: 200px;
	height: 200px;
	margin: 0 auto;
	border-radius: 50%;
	overflow: hidden;
	border: 5px solid white;
	padding: 0px;
	background-color: #f0f0f0;
}

.profile-picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	
}

.profile-info {
	margin-top: 15px;
	background-color: #f0f0f0;
	padding: 10px 20px 10px 20px;
	border-radius: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	max-width: 400px;
	width: 400px;
	text-align: center;
	
}

.profile-info h2 {
	font-size: 1.5em;
	margin: 0;
	color: #333;
}

.profile-info p {
	font-size: 1.2em;
	color: #777;
	margin: 5px 0 0;
}

/* Media Queries */
@media (max-width: 740px) {
	.list-profil {
		gap: 15px; /* Sesuaikan jarak antar elemen */
	}

	.profile-content {
		margin-top: 0; /* Kurangi margin untuk tata letak lebih rapi */
	}

	.profile-info {
		padding: 10px 40px; /* Kurangi padding agar lebih pas */
		width: 90%; /* Batasi lebar untuk memastikan responsivitas */
	}

	.profile-info h2 {
		font-size: 1.3em; /* Sesuaikan ukuran font */
	}

	.profile-info p {
		font-size: 1.1em; /* Sesuaikan ukuran font */
	}

	.profile-picture {
		width: 160px; /* Perkecil gambar profil */
		height: 160px;
		border: 4px solid white; /* Perkecil border */
		padding: 3px; /* Kurangi padding */
	}
}

.nav-container {
	padding: 23px 50px 24px 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	
}
.scrolled .nav-container {
	background: url("../img/custom/motif_sarung.png") repeat center center;
	background-size: 300px auto;
	box-shadow: 0px 4px 6px -2px rgba(0, 0, 0, 0.2);
}

.nav-logo {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.nav-logo img {
	height: 50px;
}

.nav-menu {
	display: flex;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.nav-menu li {
	margin: 0 15px;
	font-size: 14px;
	font-weight: 700;
}

.nav-menu a {
	color: white;
	text-decoration: none;
}

.scrolled .nav-menu a {
	color: #051922;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: color 0.3s ease, font-size 0.3s ease, font-weight 0.3s ease; /* Menambahkan transisi */
	
}
.burger-menu {
	display: none;
	flex-direction: column;
	cursor: pointer;
}
.burger-bar {
	width: 25px;
	height: 3px;
	background-color: white;
	margin: 3px 0;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
	.nav-container {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		padding: 7px 9px;
		background: url("../img/custom/motif_sarung.png") repeat center center;
		background-size: 300px auto;
		box-shadow: 0px 4px 6px -2px rgba(0, 0, 0, 0.2);
	
	}
    .nav-menu a {
    	color: #051922;
    	text-decoration: none;
    	align-items: center;
	}

	.nav-logo {
		position: static;
		transform: none;
		
	}
	
    .nav-logo img {
		
		align-items: flex-start;
		padding: 0px 0px 0px 10px;
    }
    
	.nav-menu {
		display: none;
		flex-direction: column;
		width: 100%;
		padding:0px 0px 0px 0px;
	}

	.nav-menu.active {
		display: flex;
	}

	.nav-menu li {
		margin: 10px 0;
	}

	.burger-menu {
		display: block;
		position: absolute;
		top: 20px;
		right: 20px;
		cursor: pointer;
	}

	.nav-left, .nav-right {
		display: flex;
		flex-direction: column;
		gap: 10px;
		width: 100%;
		text-align: center;
	}
	
    .burger-menu {
        display: block;
        position: absolute;
        top: 7px;
        right: 20px;
        cursor: pointer;
        font-size: 25px; /* Tambahkan ukuran font agar icon cukup besar */
        color: #007bff; /* Sesuaikan warna */
    }
    
    .burger-menu:hover {
        color: orange; /* Warna jingga saat kursor berada di atas */
    }
    
    .burger-menu.active i {
        content: "\f00d"; /* kode unicode font-awesome untuk "X" */
    }
}

.leaders-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	padding: 20px 0;
}
.leader-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.leader-image {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 15px;
}
.leader-name {
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 5px;
}
.leader-position {
	color: #777;
	font-size: 0.9em;
}

.visiMisi {
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
	justify-content: center;
	align-items: flex-start;
	padding-top: 80px;
    padding-bottom: 100px;
}

.cardVisi {
    max-height: 100vh;
	background-color: white;
	border-radius: 12px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	padding: 2.5rem;
	flex: 1 1 400px;
	max-width: 500px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.cardVisi h2 {
	color: var(--primary-color);
	font-size: 2.2rem;
	margin-bottom: 1.5rem;
	text-align: center;
	position: relative;
}

.cardVisi h2::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 3px;
	background-color: var(--accent-color);
}

.cardVisi-content {
	font-size: 1.1rem;
	text-align: justify;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.5s ease forwards;
	animation-delay: 0.2s;
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.mission-list {
	list-style-type: none;
	padding-left: 0;
}

.mission-list li {
	margin-bottom: 1rem;
	padding-left: 2rem;
	position: relative;
	opacity: 0;
	transform: translateX(-20px);
	animation: fadeInLeft 0.5s ease forwards;
}

@keyframes fadeInLeft {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.mission-list li::before {
	content: "•";
	color: var(--secondary-color);
	font-size: 1.5rem;
	position: absolute;
	left: 0;
	top: -0.2rem;
}
.kontribusi-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.kontribusi-item {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	height: 300px;
}
.kontribusi-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.kontribusi-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}
.kontribusi-content h3 {
	font-size: 24px;
	margin-bottom: 5px;
	color: #ffffff;
}
.kontribusi-content p {
	font-size: 14px;
	color: #cccccc;
}
.btn-lihat {
	display: inline-block;
	padding: 8px 20px;
	background-color: #ffffff;
	color: #000000;
	text-decoration: none;
	border-radius: 5px;
	font-size: 14px;
	margin-top: 10px;
}
.card-lambang {
	width: 100%;
	background-color: rgb(27, 31, 35, 0.9);
	border-radius: 10px;
	padding: 10px;
	margin: 10px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.card-lambang h6 {
	margin: 0;
	display: block;
	color: #f5f5f5;
}
.card-lambang p {
	color: #f5f5f5;
}

.lambang {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 80%;
	max-height: 80%;
	z-index: 1;
	display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    filter: drop-shadow 2px 10px 20px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
    .lambang {
        position: relative;
        max-width: 100%;
        max-height: auto;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .lambang img {
        width: 100%;
        height: auto;
    }

}

.full-page {
	height: 100vh;           /* Penuhi tinggi layar */
	width: 100vw;            /* Penuhi lebar layar */
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.gallery {
	width: 100%;
	height: 100%;
	/* bisa tambahkan layout grid atau flex di sini */
}

.timeline-vertical {
    position: relative;
    margin-top: 40px;
    padding-left: 30px;
    border-left: 3px solid #ccc;
}
.timeline-item {
    margin-bottom: 40px;
    position: relative;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 10px;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 3px solid #007bff;
    border-radius: 50%;
}
.timeline-period {
    font-weight: bold;
    margin-bottom: 15px;
    color: #007bff;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  background-color: #e5e7eb;  /* abu-abu muda */
  border-radius: 9999px;      /* bentuk bulat */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #374151;             /* abu-abu gelap */
  transition: all 0.3s ease;
  border: none;
  margin: 0 5px;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
  background-color: #d1d5db;  /* warna hover */
}



/* splash screen */
