/*
Theme Name: WebPortal
Theme URI: 
Author: MH
Author URI: webportal-mh.com
Description: Design by MH
Version: 1.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: webportal
*/

:root{
	--var-color-a: #f79802;
	--var-color-b: #0a0a5c;
	--var-color-c: #dbdbdb;
	--var-color-wh: #ffffff;
	--var-color-icon: #9c155f;
	--var-color-bg-1: #f3f3f3;
	--var-color-line-1: #e9e9e9;
	--font-family--manrope: "Manrope", sans-serif;
	--font-family--potta-one: "PottaOne", system-ui;
	--font-family--poppins: "Poppins", serif;
	--font-family--nunito-sans: "NunitoSans", sans-serif;
	--font-family--inter: "Inter", sans-serif;
	--var-fontsize-menu: 18px;
	--var-fontsize-submenu: 16px;
	--var-fontweight-menu: 600;
	--bg-menu-color: #ecfae5;
	--bg-card-color: #0d0d6b;
	--font-menu-color: #087c6c;
	--shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
	0 1px 2px 0 rgba(0, 0, 0, 0.06);
	--shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
	0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
	0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--color: #c7232f;
	--color2: #161d27;
	--color2-dark: #0f131a;
}

*,
*::before,
*::after {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	list-style: none;
	list-style-type: none;
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

html {
	scroll-behavior: smooth;
	height: -webkit-fill-available;
}

body {
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	color: #000;
	background-color: #f5eac1;
	transition: 0.35s;
}
body.darkmode {
	color: #fff;
	background-color: var(--color2-dark);
}

main {
	overflow: hidden;
}

a,
button {
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: none;
	outline: none;
	background: none;
}

img,
video {
	display: block;
	max-width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
}
/*
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}
*/
@-webkit-keyframes slideLeft {
	0% {
		opacity: 0;
		transform: translateX(100%);
	}
	100% {
		opacity: 1;
		transform: translateX(0%);
	}
}

@keyframes slideLeft {
	0% {
		opacity: 0;
		transform: translateX(100%);
	}
	100% {
		opacity: 1;
		transform: translateX(0%);
	}
}
@-webkit-keyframes slideRight {
	0% {
		opacity: 1;
		transform: translateX(0%);
	}
	100% {
		opacity: 0;
		transform: translateX(100%);
	}
}
@keyframes slideRight {
	0% {
		opacity: 1;
		transform: translateX(0%);
	}
	100% {
		opacity: 0;
		transform: translateX(100%);
	}
}
/*
** slider
*/
.mhslider-container {
	position: relative;
	overflow: hidden;
	height: 450px;
}

.fade-slide {
	opacity: 0;
	transition: opacity 1s ease-in-out;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
}

.fade-slide.active {
	opacity: 1;
	transition: opacity 1s ease-in-out;
	position: relative;
	z-index: 1;
}

.fade-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform-origin: center;
}
.fade-slide.active img {
	animation: kenburns 20s ease-in-out forwards;
}

@keyframes kenburns {
	0% {
		transform: scale(1) translate(0, 0);
	}
	100% {
		transform: scale(2) translate(-2%, -2%);
	}
}
.produk-card img{
	height: 220px;
}

.mhsliderprev,
.mhslidernext {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0,0,0,0.5);
	color: white;
	border: none;
	font-size: 2rem;
	padding: 0 10px;
	cursor: pointer;
	z-index: 10;
}
.mhsliderprev {
	left: 10px;
}
.mhslidernext {
	right: 10px;
}

.mhsliderdots {
	text-align: center;
	position: absolute;
	bottom: 0;
	z-index: 9;
	left: 0;
	right: 0;
}
.mhsliderdot {
	display: inline-block;
	height: 12px;
	width: 12px;
	background-color: #bbb;
	border-radius: 50%;
	margin: 0 4px;
	cursor: pointer;
}
.mhsliderdot.active {
	background-color: #717171;
}


.fp--sectright{
	overflow: hidden;
}
footer{
	clear: both;
	position: relative;
	float: right;
	width: 100%;
}
#back-to-top{
	width: 60px;
	height: 40px;
	bottom: 100px;
	right: 10px;
	border-radius: 30px;
	background-color: #9c155fa3;
	justify-content: center;
	align-content: center;
}
#back-to-top:hover{
	background-color: var(--var-color-icon);
}
.box-icon-top{
	width: 100%;
	text-align: center;
}
.box-icon-top i{
	font-size: 14px;
	color: #fff;
}
#footer--column{
	max-width: 990px;
}

.primary--logo{
	max-width: 60px;
	padding: 5px;
	position: relative;
	z-index: 1;
}
.primary--logo img{
	max-width: 100%;
	object-fit: contain;
	height: 100%;
	padding: 0;
	background-color: transparent;
}
.sect__session{
	width: 100%;
	margin: 0 auto 1.5rem auto;
	padding: 1rem;
}
.sect__session2{
	width: 100%;
	margin: 0 auto 1.5rem auto;
	padding: 1rem;
	background-color: #0d0d6b;
}
.hero-produk {
	position: relative;
	width: 100%;
	height: 30vh;
	min-height: 200px;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
}

.hero-text {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5); /* Optional: semi-transparent background */
	padding: 2rem;
	align-content: center;
}
.hero-text h1 {
	text-transform: uppercase;
	font-size: 2rem;
	margin: 0;
}
@media(min-width: 768px){
	.hero-text h1{
		font-size: 3rem;
	}
}
.footer--wrap{
	width: 100%;
	margin: 0 auto;
	padding: 2.5rem 1rem 1rem;
}
.theme__ttl{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem 1rem;
}
.theme__ttl h1{
	font-size: 2.5rem;
	font-weight: 700;
}
/**live-search*/
.ajax-search-form {
	position: relative;
	margin: 10px;
	border-radius: 10px;
	width: 100%;
	max-width: 100%;
}
.ajax-search-form input{
	border: none;
	border-radius: 10px;
	padding: 10px 20px;
	width: 100%;
	outline-color: var(--var-color-a);
	color: var(--var-color-a);
}
.ajax-search-form span{
	padding: 10px;
	position: absolute;
	right: 0;
}
.ajax-search-form span i{
	color: var(--var-color-a);
}
#search-results {
	position: absolute;
	top: 100%;
	background: #fff;
	width: 100%;
	z-index: 999;
	max-height: 300px;
	overflow-y: auto;
}
.ajax-search-results li {
	padding: 10px;
	border-bottom: 1px solid #eee;
}
.ajax-search-results li:hover {
	background-color: #f9f9f9;
}
.fp--sectleft h1{
	font-size: 3vw;
	font-variant: small-caps;
	font-style: oblique;
	color: var(--var-color-a);
}
.about-us-preview {
	padding: 30px;
	border-radius: 8px;
	text-align: center;
}
.about-us-preview h2 {
	font-size: 24px;
	margin-bottom: 15px;
	color: #c4c4c4;
}
.about-us-preview p {
	font-size: 16px;
	color: #c4c4c4;
}
.about-us-preview .btn-about {
	display: inline-block;
	margin-top: 15px;
	padding: 10px 20px;
	background: var(--var-color-a);
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
}
.about-us-preview .btn-about:hover {
	background: #005d8f;
}

.socials--link {
	display: flex;
	align-items: center;
	padding: 10px;
	list-style: none;
	margin: 0;
	justify-content: center;
	gap: 15px;
}

.socials--link a {
	display: flex;
	width: 35px;
}

.socials--link a svg {
	fill: var(--var-color-b);
	transition: all 0.25s;
}

.socials--link a:hover svg {
	fill: var(--var-color-a);
	transform: scale(1);
}
.member-of{
	width: 100%;
	margin: 0 auto;
}
.member-of img{
	max-width: 100%;
}
.member-of-icon {
	display: flex;
	align-items: center;
	padding: 10px;
	list-style: none;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.member-of-icon a {
	display: flex;
	max-width: 150px;
}

.member-of-icon a img {
	fill: var(--var-color-wh);
	transition: all 0.25s;
}

.member-of-icon a:hover img {
	fill: var(--var-color-a);
	transform: scale(1);
}
.footer--left img{
	max-width: 100%;
	object-fit: contain;
	max-height: 100px;
}
.footer--cp p{
	margin: 0;
	font-size: 11px;
	text-align: center;
	font-weight: 600;
}
.fp--sectright{
	border-radius: 1rem;
}
#book-travis{
	align-items: center;
	width: 100%;
	text-align: center;
}
.btn--universal{
	display: inline-block;
	text-decoration: none;
	font-family: 'Noto Sans', sans-serif;
	cursor: pointer;
	box-shadow: -1px 3px 3px 0 rgba(80, 80, 80, .2);
	padding: 10px 14px;
	border: none;
	border-radius: 30px;
	margin: 10px;
	color: #fff;
	font-weight: bold;
	flex: 0 0 auto;
}
.btn-1 {
	background: var(--var-color-a);
	transition: all 0.25s ease-in-out;
}

.btn-1:hover {
	background-color: var(--var-color-wh);
	color: var(--var-color-a);
	position: relative;
	top: -3px;
	box-shadow: -6px 14px 12px 2px rgba(90, 90, 90, .12);
	transition: all 0.25s ease-in-out;
}
.wa-float-btn {
	position: fixed;
	display: flex;
	align-items: center;
	bottom: 30px;
	right: 10px;
	width: 60px;
	height: 60px;
	background-color: #25D366;
	color: white;
	padding: 5px;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 4px 8px rgba(0,0,0,0.3);
	z-index: 1000;
	transition: transform 0.3s;
}
.wa-float-btn svg{
	margin: auto;
	fill: #fff;
	width: 45px;
	height: 45px;
}
.wa-float-btn:hover {
	transform: scale(1.1);
}
.wa-chat-widget {
	position: fixed;
	bottom: 140px;
	right: 20px;
	width: 260px;
	background: white;
	border: 1px solid #ccc;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.2);
	z-index: 1000;
	font-family: Arial, sans-serif;
	opacity: 0;
	transform: translateY(20px);
	pointer-events: none;
	transition: all 0.3s ease;
}

.wa-chat-widget.active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.wa-header {
	background-color: #25D366;
	color: white;
	padding: 10px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	text-align: center;
	font-weight: bold;
}

.wa-body {
	padding: 10px;
}

.wa-body input {
	width: calc(100% - 20px);
	padding: 8px;
	margin-bottom: 10px;
}

.wa-body button {
	width: 100%;
	padding: 8px;
	background-color: #25D366;
	color: white;
	border: none;
	cursor: pointer;
	border-radius: 5px;
}
.wa-toast {
	position: fixed;
	bottom: 100px;
	right: 20px;
	background-color: #333;
	color: #fff;
	padding: 10px 15px;
	border-radius: 8px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s ease;
	z-index: 9999;
	font-size: 14px;
}
.wa-toast.show {
	opacity: 1;
	pointer-events: auto;
}
/**
 * tour
 * 
 */
.slider--product{
	width: 100%;
	overflow: hidden;
	margin: 0 auto;
}
.swiper-container {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}
.slider--product .gallery-top{
	height: 400px;
	overflow: hidden;
	object-fit: cover;
}
.gallery-top img{
	height: 100%;
	width: 100%;
}
.gallery-thumbs .swiper-slide {
	opacity: 0.4;
	cursor: pointer;
	height: 80px;
}
.gallery-thumbs .swiper-slide img{
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.gallery-thumbs .swiper-slide-thumb-active {
	opacity: 1;
	border: 2px solid #0073aa;
}
.gallery-top .swiper-slide img {
	width: 100%;
	object-fit: cover;
	cursor: zoom-in;
}
.swiper-wrapper img{
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.swiper-pagination-bullet {
	background: #aaa;
	opacity: 0.6;
	transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
	background: #0073aa;
	opacity: 1;
}
.button-control-tour{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.button-control-tour .swiper-pagination{
	position: relative!important;
}
.section-ttl{
	position:relative;  
}
.section-ttl .en{
	display:block;
	font-size:2rem;
	margin-bottom:10px;
	color: var(--var-color-a);
}
.section-ttl:after{
	position:absolute;
	content:"";
	width:5rem;
	height:3px;
	background-color:var(--var-color-icon);
}
.tour--info{
	height: 100%;
	background-color: var(--bg-menu-color);
	border-radius: 1rem;
	padding: 1rem;
	transition: all .3s ease-in-out;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.tour--info:hover{
	box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
.tour--header td{
	padding-right: 10px;
}
.footer--contact-two .fc--icon,
.footer--contact-one .fc--icon{
	padding-right: 10px;
}
.fp--about-container {
	margin: 0 auto;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
	position: relative; /* Added for proper pseudo-element positioning */
}

.fp--about-container::after {
	content: ""; /* Required for pseudo-elements */
	width: 100%;
	height: 100%;
	position: absolute; /* Changed from relative */
	top: 0;
	left: 0;
	z-index: 1;
	background-image: linear-gradient(0deg, #0b0b6c, transparent);
	pointer-events: none; /* Optional: allows clicks to pass through */
}
.fp--about{
	position: relative;
	z-index: 2;
}
#pesan_email{
	margin: 0 auto;
	position: fixed;
	z-index: 999;
	right: 0;
	max-width: 300px;
	top: 0;
}
.container--block {
	display: flex;
	grid-gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
}
.card--block {
	width: 300px;
	background-color: white;
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.5);
}
.card--block, .card__thumb{
	border-radius: 1rem;
}
.card--block:hover .card__caption {
	top: 50%;
	transform: translateY(-50%);
}
.card--block:hover .card__image {
	transform: translateY(-10px);
}
.card--block:hover .card__thumb::after {
	top: 0;
}
.card__thumb {
	position: relative;
	height: 300px;
	width: 300px;
	margin: 0 auto;
	overflow: hidden;
}
.card__thumb img{
	height: 110%;
	width: 100%;
	object-fit: cover;
}
.card__thumb::after {
	position: absolute;
	top: 0;
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 40%, rgba(255, 255, 255, 0) 100%);
	transition: 0.3s;
}
.card__thumb .card__button{
	opacity: 0;
}
.card__thumb:hover .card__button{
	opacity: 1;
}
.card__image {
	transition: 0.5s ease-in-out;
}
.card__caption {
	position: absolute;
	top: 50%;
	z-index: 1;
	padding: 0 20px;
	color: white;
	transform: translateY(-50%);
	text-align: center;
	transition: 0.3s;
	width: 100%;
}
.card__title {
	display: -webkit-box;
	max-height: 85px;
	overflow: hidden;
	font-size: 23px;
	line-height: 28px;
	text-shadow: 0px 1px 5px black;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.card__button {
	display: inline-block;
	padding: 10px 20px;
	color: white;
	border: 1px solid white;
	font-size: 12px;
	text-transform: uppercase;
	text-decoration: none;
	transition: 0.3s;
}
.card__button:hover {
	color: black;
	background-color: white;
}

.section {
	margin: 0 auto;
	padding: 6rem 0 2rem;
}
.centered {
	text-align: center;
	vertical-align: middle;
	margin-bottom: 1rem;
}
/*
**-- header
*/
.header-carousel-container {
	width: 100%;
	height: 200px;
	overflow: hidden;
	position: relative;
	margin: 0 auto;
}

.header-carousel-track {
	display: flex;
	height: 100%;
	transition: transform 0.5s ease;
}
.header-carousel-slide {
	flex: 0 0 calc(100% / 5);
	padding: 5px;
	box-sizing: border-box;
}

@media (max-width: 1024px) {
	.header-carousel-slide {
		flex: 0 0 calc(100% / 3);
	}
}

@media (max-width: 768px) {
	.header-carousel-slide {
		flex: 0 0 calc(100% / 2);
	}
}
@media (max-width: 480px) {
	.header-carousel-slide {
		flex: 0 0 calc(100% / 1);
	}
}

.header-carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 8px;
}
.header-carousel-buttons {
	opacity: 0;
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	pointer-events: none;
	transition: opacity 0.4s ease;
}
.header-carousel-button {
	pointer-events: auto;
	background: rgba(0,0,0,0.4);
	border: none;
	color: white;
	font-size: 2rem;
	padding: 0.2em 0.6em;
	cursor: pointer;
}
.header-carousel-container:hover .header-carousel-buttons {
	opacity: 1;
	pointer-events: auto;
}
/* Fixed header after scroll */
.header__temp.fixed-header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
	background-color: #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
body.fixed-header-active .main-content {
	padding-top: 100px; /* Adjust based on your header height */
}
.header__temp {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 100;
	margin: 0 auto;
	padding: 2px 0;
	transition: all 0.3s ease;
	background-repeat: no-repeat!important;
	background-size: cover!important;
	background-position: center center!important;
}
.menu__inner{
	margin: 0;
}
.darkmode .header__temp {
	background-color: var(--color2);
}

.navbar__header {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin: 0 auto;
}
.navbar__header .navbar__left {
	display: flex;
	flex: 0 0 25%;
	align-items: center;
}
@media (max-width: 766px) {
	.navbar__header .navbar__left {
		flex: 0 0 30%;
	}
}
.navbar__header .navbar__center {
	display: flex;
	flex: 0 0 50%;
	justify-content: center;
}
@media (max-width: 766px) {
	.navbar__header .navbar__center {
		flex: 0 0 auto;
		align-items: center;
	}
}
.navbar__header .navbar__right {
	display: flex;
	flex: 0 0 25%;
	align-items: center;
	justify-content: flex-end;
	-moz-column-gap: 1.5rem;
}
.navbar__social_search{
	display: flex;
	flex-wrap: nowrap;
}
@media (max-width: 766px) {
	.navbar__header .navbar__right {
		flex: 0 0 50%;
		align-items: center;
	}
}
@media (max-width: 920px) {
	.navbar__social_search .social-media{
		display: none;
	}
}
@media (max-width: 1132px) {
	.navbar__social_search .ajax-search-form{
		display: none;
	}
}

.brand {
	display: flex;
	align-items: center;
	order: 1;
}
.brand svg {
	width: 60px;
	height: 60px;
}

@media (max-width: 766px) {
	.menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 350px;
		max-width: 85%;
		height: 100%;
		z-index: 100;
		overflow: hidden;
		background-color: #fff;
		transform: translate(-100%);
		transition: all 0.4s ease-in-out;
	}
	.menu.is-active {
		transform: translate(0%);
	}
	.darkmode .menu {
		background-color: var(--color2);
	}
}
.menu .menu__header {
	display: none;
	box-shadow: var(--shadow-medium);
}
@media (max-width: 766px) {
	.menu .menu__header {
		position: relative;
		top: 0;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		height: 4rem;
		z-index: 110;
		visibility: hidden;
		background: transparent;
	}
	.menu .menu__header.is-active {
		visibility: visible;
		background-color: #fff;
	}
	.menu .menu__header.is-active > .menu__arrow {
		display: flex;
	}
	.darkmode .menu .menu__header.is-active {
		background-color: var(--color2);
	}
}
@media (max-width: 766px) {
	.menu .menu__header .menu__arrow {
		display: none;
		justify-content: center;
		align-items: center;
		cursor: pointer;
		width: 3rem;
	}
	.menu .menu__header .menu__arrow:hover i {
		color: var(--color);
	}
	.menu .menu__header .menu__arrow > i {
		font-size: .8rem;
		color: #000;
		transition: all 0.25s ease;
	}
	.darkmode .menu .menu__header .menu__arrow > i {
		color: #fff;
	}
}
@media (max-width: 766px) {
	.menu .menu__header .menu__title {
		cursor: pointer;
		font-weight: 500;
		text-transform: capitalize;
		color: #000;
		transition: all 0.25s ease;
	}
	.menu .menu__header .menu__title:hover {
		color: var(--color);
	}
	.darkmode .menu .menu__header .menu__title {
		color: #fff;
	}
}
@media (max-width: 766px) {
	.menu .menu__inner {
		height: 100%;
		margin-top: -3rem;
		overflow-y: auto;
		overflow-x: hidden;
	}
}
.menu .menu__inner .menu__item {
	position: static;
	display: inline-block;
	padding-right: 20px;
	padding: 15px 40px 15px 0;
}
.menu .menu__inner .menu__item:last-child {
	padding-right: 0;
}
.menu .menu__inner .menu__item:hover > .menu__link {
	color: var(--color);
}
.darkmode .menu .menu__inner .menu__item:hover > .menu__link {
	color: var(--color);
}
@media (max-width: 766px) {
	.menu .menu__inner .menu__item {
		display: block;
		padding: 0;
	}
}
@media (min-width: 767px) {
	.menu .menu__inner .menu__item:hover > .menu__link i {
		transform: rotate(-90deg);
	}
}
@media (min-width: 767px) {
	.menu .menu__inner .menu__item.menu__dropdown:hover > .submenu {
		opacity: 1;
		visibility: visible;
		top: 100%;
	}
}
.menu .menu__inner .menu__item .menu__link {
	display: flex;
	text-decoration: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	color: #000;
	text-transform: capitalize;
	transition: all 0.25s ease;
}
@media (max-width: 766px) {
	.menu .menu__inner .menu__item .menu__link {
		justify-content: space-between;
		padding: 20px;
	}
}
.menu .menu__inner .menu__item .menu__link > i {
	margin-left: 5px;
	font-size: .8rem;
	transform: rotate(90deg);
	transition: 0.35s;
}
@media (max-width: 766px) {
	.menu .menu__inner .menu__item .menu__link > i {
		margin-left: 10px;
		transform: rotate(0deg);
	}
}
.darkmode .menu .menu__inner .menu__item .menu__link {
	color: #fff;
}

.submenu {
	position: absolute;
	z-index: 100;
	top: 110%;
	left: 50%;
	width: 100%;
	height: auto;
	padding: 20px 15px;
	border-radius: 0.25rem;
	border-top: 2px solid var(--color);
	background-color: #fff;
	box-shadow: var(--shadow-medium);
	opacity: 0;
	visibility: hidden;
	transition: all 0.35s ease-in-out;
	transform: translateX(-50%);
}
.darkmode .submenu {
	border-top: 2px solid var(--color);
	background-color: var(--color2);
}
@media (max-width: 766px) {
	.submenu {
		position: absolute;
		display: none;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		max-width: none;
		min-width: auto;
		margin: 0;
		padding: 100px 15px 0 15px;
		border-radius: 0;
		border-top: 0;
		box-shadow: none;
		opacity: 1;
		overflow-y: auto;
		visibility: visible;
		transform: translateX(0%);
	}
	.submenu.is-active {
		display: block;
	}
}
@media (min-width: 767px) {
	.submenu {
		-webkit-animation: none !important;
		animation: none !important;
	}
	.primary--logo{
		max-width: 80px;
	}
	.submenu.megamenu__normal {
		left: 65%;
		max-width: 250px;
		width: 100%;
		height: auto;
		margin: 0 auto;
	}
	.submenu.megamenu__text, .submenu.megamenu__image {
		display: flex;
		flex-wrap: wrap;
		max-width: 95%;
		height: auto;
		margin: 0 auto;
	}
}
@media (min-width: 975px) {
	.submenu.megamenu__text, .submenu.megamenu__image {
		max-width: fit-content;
	}
}
.submenu.megamenu__image .submenu__inner a,
.submenu.megamenu__image .blog a{
	display: flex;
	flex-flow: column;
	align-items: center;
	text-align: center;
}
@media (max-width: 766px) {
	.submenu.megamenu__image .submenu__inner a,
	.submenu.megamenu__image .blog a {
		flex-flow: row;
		align-items: center;
		padding-bottom: 20px;
		text-align: left;
	}
}
.submenu.megamenu__image .submenu__inner a img {
	display: block;
	width: 100%;
	height: 150px;
	margin-bottom: 15px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 10px;
}
@media (max-width: 766px) {
	.submenu.megamenu__image .submenu__inner a img {
		width: 30%;
		height: 80px;
		margin-bottom: 0;
		margin-right: 15px;
	}
}
.submenu .submenu__inner {
	width: 20%;
	padding: 0 15px;
}
.submenu .blog {
	width: 50%;
	padding: 0 15px;
}
@media (max-width: 766px) {
	.submenu .submenu__inner,
	.submenu .blog {
		width: 100%;
		padding: 0;
	}
}
.submenu .submenu__inner .submenu__title,
.submenu .blog .submenu__title{
	font-size: 16px;
	font-weight: 500;
	color: var(--color);
	text-transform: uppercase;
	transition: all 0.3s ease;
}
.darkmode .submenu .submenu__inner .submenu__title,
.darkmode .submenu .blog .submenu__title {
	color: var(--color);
}
@media (max-width: 766px) {
	.submenu .submenu__list {
		margin-bottom: 20px;
	}
}
.submenu .submenu__list li {
	display: block;
	line-height: 1;
	margin: 0 auto;
}
.submenu .submenu__list li a {
	display: inline-block;
	padding: 10px 0;
	line-height: 1.4;
	text-transform: capitalize;
	color: #000;
	transition: all 0.25s ease-in-out;
}
.submenu .submenu__list li a:hover {
	color: var(--color);
}
@media (max-width: 766px) {
	.submenu .submenu__list li a {
		display: block;
	}
}
.darkmode .submenu .submenu__list li a {
	color: #fff;
}
.darkmode .submenu .submenu__list li a:hover {
	color: var(--color);
}

.switch {
	position: relative;
	display: block;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin-right: 10px;
}
.switch .switch__light,
.switch .switch__dark {
	position: absolute;
	top: 50%;
	left: 50%;
	transform-origin: center;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease-in;
}
.switch .switch__light {
	font-size: 20px;
	visibility: visible;
	color: #000;
}
.darkmode .switch .switch__light {
	font-size: 0;
	visibility: hidden;
}
.switch .switch__dark {
	font-size: 0;
	visibility: hidden;
	color: #fff;
}
.darkmode .switch .switch__dark {
	font-size: 20px;
	visibility: visible;
}

.overlay {
	position: fixed;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	background-color: rgba(0, 0, 0, 0.7);
	transition: all 0.45s ease-in-out;
	pointer-events: none;
}
@media (max-width: 766px) {
	.overlay {
		cursor: url("https://i.imgur.com/cPh9Zm5.png"), zoom-out;
		pointer-events: visible;
	}
	.overlay.is-active {
		opacity: 1;
		visibility: visible;
	}
}

.burger {
	position: relative;
	display: block;
	cursor: pointer;
	width: 25px;
	height: 15px;
	margin-right: 15px;
	opacity: 0;
	visibility: hidden;
	background: transparent;
}
@media (max-width: 766px) {
	.burger {
		opacity: 1;
		visibility: visible;
	}
}
.burger .burger-line {
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	height: 2px;
	opacity: 1;
	border-radius: 15px;
	background: #000;
}
.darkmode .burger .burger-line {
	background: #fff;
}
.burger .burger-line:nth-child(1) {
	top: 0px;
}
.burger .burger-line:nth-child(2) {
	top: 8px;
	width: 70%;
}
.burger .burger-line:nth-child(3) {
	top: 16px;
}
@media (min-width: 768px) {
	.card__thumb::after {
		top: calc(100% - 140px);
	}
	.card__caption {
		top: calc(100% - 60px);
		transform: unset;
	}
}

/*
== beranda ==
*/
.floating {
	animation-name: floating;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
	margin-top: 5px;
}

@keyframes floating {
	from {
		transform: translate(0, 0px);
	}

	65% {
		transform: translate(0, 15px);
	}

	to {
		transform: translate(0, -0px);
	}
}
.type-container {
	font-size: 32px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
}

/* 🔁 Blinking cursor */
.cursor {
	display: inline-block;
	width: 2px;
	height: 1em;
	background-color: white;
	margin-left: 5px;
	animation: blink 0.7s infinite;
}

/* ✨ Blink animation */
@keyframes blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0; }
}
.boxcard__benefit{
	grid-gap: .5rem;
}
.card__benefit {
	position: relative;
	padding: 5px;
}
@media(min-width: 768px){
	.boxcard__benefit{
		gap: 1.25rem;
	}
	.card__benefit{
		padding: 2.5rem;
	}
}
.card__benefit::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	transition: 0.6s;
	z-index: 0;
	background-color: #4f46e5;
}
.card__benefit:hover {
	box-shadow: 0.063rem 0.063rem 1.25rem 0.375rem rgba(0, 0, 0, 0.53);
}
.card__benefit:nth-child(1)::before {
	bottom: 0;
	right: 0;
	clip-path: circle(calc(6.25rem + 7.5vw) at 100% 100%);
}
.card__benefit:nth-child(2)::before {
	bottom: 0;
	left: 0;
	clip-path: circle(calc(6.25rem + 7.5vw) at 0% 100%);
}
.card__benefit:nth-child(3)::before {
	top: 0;
	right: 0;
	clip-path: circle(calc(6.25rem + 7.5vw) at 100% 0%);
}
.card__benefit:nth-child(4)::before {
	top: 0;
	left: 0;
	clip-path: circle(calc(6.25rem + 7.5vw) at 0% 0%);
}
.card__benefit p {
	transition: 0.8s;
}

.card__benefit:hover::before {
	clip-path: circle(110vw at 100% 100%);
}

.card__benefit:hover p {
	color: #fff;
}

@media screen and (min-width: 62.5rem) {
	.circle {
		position: absolute;
		width: 100%;
		height: 100%;
		z-index: 0;
	}
}

.card__benefit:nth-child(1) .circle {
	background: url("<?php echo get_template_directory_uri().'/assets/img/carousel-header/WhatsApp Image 2025-04-23 at 21.31.05.jpeg'?>") no-repeat 50% 50%/cover;
	bottom: 0;
	right: 0;
	clip-path: circle(calc(6.25rem + 7.5vw) at 100% 100%);
}

.card__benefit:nth-child(2) .circle {
	background: url("<?php echo get_template_directory_uri().'/assets/img/carousel-header/WhatsApp Image 2025-04-23 at 21.31.06.jpeg'?>") no-repeat 50% 50%/cover;
	bottom: 0;
	left: 0;
	clip-path: circle(calc(6.25rem + 7.5vw) at 0% 100%);
}

.card__benefit:nth-child(3) .circle {
	background: url("<?php echo get_template_directory_uri().'/assets/img/carousel-header/WhatsApp Image 2025-04-23 at 21.31.07.jpeg'?>") no-repeat 50% 50%/cover;
	top: 0;
	right: 0;
	clip-path: circle(calc(6.25rem + 7.5vw) at 100% 0%);
}

.card__benefit:nth-child(4) .circle {
	background: url("<?php echo get_template_directory_uri().'/assets/img/carousel-header/WhatsApp Image 2025-04-23 at 21.31.05.jpeg'?>") no-repeat 50% 50%/cover;
	top: 0;
	left: 0;
	clip-path: circle(calc(6.25rem + 7.5vw) at 0% 0%);
}