/*
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: #087c6c;
	--var-color-b: #ecfae5;
	--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: #ffffff;
	--font-menu-color: #087c6c;
}
html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}
body{
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-family: "Times New Roman", Times, serif!important;
}
p{
	font-family: "Times New Roman", Times, serif!important;
	font-size: 1.2rem;
}
a, h1, h2, h3, h4, h5, h6{
	font-family: "Poppins", serif!important;
}
main{
	width: 100%;
	min-height: 74vh;
}
@media(min-width: 1200px){
	main{
		width: 80%;
	}
}
.ttl_white, .ttl_white h1{
	color: white!important;
}
.ttl_icon, .ttl_icon h1{
	color: var(--var-color-icon)!important;
}
.ttl_primary, .ttl_primary h1{
	color: var(--var-color-a)!important;
}
.wrapper--{
	min-height: 98.1vh;
}

.images__hero{
	height: 320px;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
}
.images__hero:after {
	z-index: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	content: "";
}
.images__hero_box{
	display: flex;
	position: absolute;
	width: 100%;
	height: 100%;
}
.images__hero_box img{
	width: auto;
	min-width: 100%;
	height: auto;
	min-height: 100%;
	object-fit: cover;
}
.primary--logo{
	padding: 1rem;
	position: relative;
	z-index: 1;
}
.primary--logo img{
	max-width: 100%;
	object-fit: contain;
	height: 100%;
	padding: 0;
	background-color: transparent;
}
.mh-sidebar {
	width: 100%;
	padding: 1rem;
}

.mh-sidebar-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
	display: block;
}
.mh-sidebar-menu li {
	list-style: none;
	position: relative;
	padding: 0;
}
.mh-sidebar-menu li:not(:first-child),
.mh-sidebar-menu li:not(:last-child){
	padding-top: 5px;
	padding-bottom: 5px;
}
.mh-sidebar-menu li:first-child{
	padding-bottom: 5px;
	padding-top: 0;
}
.mh-sidebar-menu li:last-child{
	padding-top: 5px;
	padding-bottom: 0;
}
.mh-sidebar-menu a {
	display: flex;
	align-items: center;
	padding: 10px 20px;
	font-size: var(--var-fontsize-menu);
	font-weight: var(--var-fontweight-menu);
	color: var(--font-menu-color);
	border-radius: 10px 0 0px 10px;
	text-decoration: none;
	transition: color 0.5s ease, transform 0.3s ease, background 0.3s;
}
.btn-back{
	color: var(--var-color-a);
}
.btn-back:hover{
	color: var(--var-color-b);
}
.mh-sidebar-menu a:hover{
	color: var(--var-color-icon);
}
#menu-universal, .menu{
	padding: 0;
}
/* Position context for submenu items */
li.has-submenu, li.has-submenu2 {
	position: relative;
}

/* Submenu styles */
.submenu, .submenu2 {
	background-color: transparent; /* 'none' is invalid */
	padding: 0 0 0 15px; /* indent */
	border-radius: 0 0 0 10px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

/* Open submenu */
.has-submenu.active > .submenu,
.has-submenu2.active > .submenu2 {
	max-height: none; /* large enough to show content */
}

/* Submenu links */
.submenu li a {
	font-size: var(--var-fontsize-submenu);
	font-weight: var(--var-fontweight-menu);
	color: var(--var-color-a) !important;
}
.submenu li a:hover {
	color: var(--var-color-icon) !important;
}
/* Menu links with submenu */
.has-submenu > a,
.has-submenu2 > a {
	cursor: pointer;
}

/* Arrow styles */
.submenu-arrow,
.submenu-arrow2 {
	display: inline-block;
	position: absolute;
	top: 15px;
	right: 10px;
	cursor: pointer;
	user-select: none;
	font-weight: bold;
	transition: transform 0.3s ease;
	pointer-events: none; /* disables clicking on arrow */
}

/* Rotate arrow on open */
li.has-submenu.active > .submenu-arrow {
	transform: rotate(90deg);
}
li.has-submenu2.active > .submenu-arrow2 {
	transform: rotate(90deg);
}

.mh-sidebar-menu .current-menu-item > a,
.mh-sidebar-menu .current_page_item > a,
.current-menu-parent a{
	font-weight: bold;
	color: var(--var-color-icon)!important;
}
/* Toggle button */
.sidebar-toggle {
	display: none;
	background: none;
	color: var(--var-color-a);
	padding: 12px 20px;
	font-size: 18px;
	border: none;
	cursor: pointer;
	z-index: 99;
	position: relative;
}
.close-menu {
	display: none;
}

/*
** slider
*/
.mhslider-container {
	position: relative;
	overflow: hidden;
	height: 600px;
}

.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%);
	}
}


.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;
	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;
}
#main-content--{
	width: 100%;
	padding: 0;
}
.layout-flex{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.layout-flex .mh-column--{
	flex-basis: 100%;
}
#navigation--{
	padding: 1rem 0;

}
.navigation--container{
	align-items: center;
}
.nav--boxmenu{
	display: flex;
	align-items: center;
	border-radius: 1rem;
	background: var(--bg-menu-color);
	/*box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
	width: 100%;*/
}
.sect__session{
	width: 100%;
	margin: 0 auto 1.5rem auto;
	padding: 1rem;
	border-radius: 1rem;
	/*box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
	background-color: var(--bg-card-color);*/
}
.footer--wrap{
	width: 100%;
	margin: 0 auto;
	padding: 2.5rem 1rem 1rem;
	background-color: var(--var-color-a);
}
.theme__ttl{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem 1rem;
	font-family: "Poppins", serif!important;
}
.theme__ttl h1{
	font-weight: 800;
}
/**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;
	background: var(--bg-card-color);
	border-radius: 8px;
	text-align: center;
}
.about-us-preview h2 {
	font-size: 24px;
	margin-bottom: 15px;
}
.about-us-preview p {
	font-size: 16px;
	color: #000000;
}
.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-a);
	transition: all 0.25s;
}

.socials--link a:hover svg {
	fill: var(--var-color-b);
	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;
	color: white;
}
.fp--sectright{
	border-radius: 1rem;
}
#book-travis{
	align-items: center;
	width: 100%;
	text-align: center;
}
.btn--universal{
	display: inline-block;
	text-decoration: none;
	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;
	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-popular{
	display: flex;
	justify-content: center;
	margin-top: 1rem;
}
.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{
	margin-bottom: 1.5rem;
}


.container--popular{
	padding: 0;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	column-gap: 20px;
	grid-row-gap: 30px;
}
.card__popular{
	background-size: cover;
	background-position: center;
	height: 2vw;
	min-height: 220px;
	font-size: 1.5vw;
	color: white;
	box-sizing: border-box;
	text-decoration: none;
	border-radius: 1rem;
	transition: all .3s ease-in-out;
}
.card__popular_ttl{
	display: flex;
	width: 100;
	height: 100%;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	font-size: 23px;
	text-shadow: 0px 1px 5px black;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	text-align: center;
	text-decoration: none;
	transition: all .3s ease-in-out;
}
.card__popular:hover .card__popular_ttl{
	background: rgba(0, 0, 0, .8);
	border-radius: 1rem;
}

.container--services{
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 30px;
	justify-content: center;
}
.card__services{
	background-size: cover;
	background-position: center;
	height: 2vw;
	min-height: 220px;
	width: 100%;
	font-size: 1.5vw;
	color: white;
	box-sizing: border-box;
	text-decoration: none;
	border-radius: 1rem;
	transition: all .3s ease-in-out;
}
.card__services_ttl{
	display: flex;
	width: 100;
	height: 100%;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	font-size: 23px;
	text-shadow: 0px 1px 5px black;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	text-align: center;
	text-decoration: none;
	transition: all .3s ease-in-out;
}
.card__services:hover .card__services_ttl{
	background: rgba(0, 0, 0, .8);
	border-radius: 1rem;
}
/**
 * temp tour
 */
.container--block {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
}
.card--block {
	width: 300px;
	margin: 15px;
	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__caption a{
	opacity: 0;
}
.card--block:hover .card__caption a {
	opacity: 1;
}
.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;
}
/*
** call us
*/
.call-us-now{
	padding: 2rem 0;
	display: flex;
	justify-content: center;
	margin-bottom: 8rem;
}
.box__call-us {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 90%;
	max-width: 800px;
	padding: 20px;
	border-radius: 1rem;
	column-gap: 20px;
	text-decoration: none;
	box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
	transition: box-shadow 0.5s ease;
	overflow: hidden;
	min-height: 100px; /* optional: locks in some visual height */
}
.box__call-us.__green{
	background: var(--var-color-a);
}
.box__call-us.__icon{
	background: var(--var-color-icon);
}
.box__call-us:hover {
	box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.25);
}

/* Left content block */
.bcu__left {
	flex: 3;
	font-size: 16px;
	color: white;
	text-align: left;
	opacity: 1;
	transition: all 0.5s ease;
	z-index: 1;
}

.box__call-us:hover .bcu__left {
	opacity: 0;
	transform: translateX(-10%);
}

/* Wrapper maintains space */
.bcu__right-wrapper {
	flex: 1;
	position: relative;
	align-content: center;
}

/* Actual right content */
.bcu__right {
	position: relative;
	font-size: 24px;
	font-weight: bold;
	color: white;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	transition: all 0.5s ease;
	height: 100%;
	width: 100%;
}

/* Hover: center it absolutely */
.box__call-us:hover .bcu__right {
	position: absolute;
	left: 50%;
	transform: translate(-200%, 0%);
	justify-content: center;
	text-align: center;
}
@media (min-width: 1024px) {
	.card__thumb::after {
		top: calc(100% - 140px);
	}
}
.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%;
}
@media (min-width: 1024px) {
	.card__caption {
		top: calc(100% - 60px);
		transform: unset;
	}
}
.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;
}
.container__page{
	width: 100%;
	margin: 0 auto;
}
.container__main{
	padding: 0 10px;
	margin: 0 auto;
}
@media(max-width: 768px){
	.fp--about{
		flex-direction: column-reverse!important;
	}
	.nav--boxmenu{
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.mh-sidebar {
		padding: 0 1rem 0 1rem;
		max-width: 50%!important;
	}
	.primary--logo{
		padding: 0 5px;
		max-width: 50%!important;
	}
	.sidebar-toggle {
		float: right;
	}
	.ajax-search-form{
		max-width: 35%;
		display: none;
	}
	#book-travis{
		max-width: 50%;
	}
	.btn--universal{
		font-size: 11px;
	}
	.fp--sectleft{
		padding-bottom: 1rem!important;
		padding-left: 0!important;
		padding-right: 0!important;
	}
	.fp--sectleft h1{
		padding: 1rem 0;
		font-size: 5vw!important;
	}
}
/* Mobile full-screen overlay */
@media (max-width: 1200px) {
	.fp--sectleft{
		padding-left: 0;
		padding-right: 1rem;
		padding-bottom: 0;
	}
	.sidebar-toggle {
		display: block;
	}
	.primary--logo{
		max-width: 30%;
	}
	.mh-sidebar{
		max-width: 15%;
	}
	.mh-sidebar-menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		background-color: rgba(255, 255, 255, 1);
		padding: 60px 20px;
		transform: translateY(-100%);
		opacity: 0;
		z-index: 1000;
		overflow-y: auto;
		list-style: none;
	}
	.mh-sidebar-menu .current-menu-item > a,
	.mh-sidebar-menu .current_page_item > a {
		background-color: var(--var-color-b);
	}
	.mh-sidebar-menu.active {
		transform: translateY(0);
		opacity: 1;
	}
	.mh-sidebar-menu li{
		padding: 0!important;
		border-radius: none;
	}
	#menu-universal{		
		border: solid;
		border-color: var(--var-color-b);
		border-width: .5px;
	}
	.mh-sidebar-menu li a {
		display: block;
		padding: 15px;
		font-size: 20px;
		color: #000;
		text-decoration: none;
		border: solid;
		border-color: var(--var-color-b);
		border-width: .5px;
		border-radius: unset!important;
	}

	.mh-sidebar-menu li a:hover {
		color: var(--var-color-a);
		background-color: var(--var-color-b);
	}
	.close-menu {
		display: block;
		position: absolute;
		top: 20px;
		right: 20px;
		font-size: 30px;
		background: none;
		border: none;
		color: #000;
		cursor: pointer;
	}
}
/* Tablet dan perangkat kecil */
@media (min-width: 600px){
	.container--popular{
		grid-template-columns: repeat(3, 1fr);
	}
	.card__services{
		width: 30%;
	}
	.images__hero{
		height: 600px;
	}
}
@media (min-width: 800px){
	.container--popular{
		grid-template-columns: repeat(4, 1fr);
	}
	.card__services{
		width: 20%;
	}
}
@media (min-width: 1200px){
	.container__main{
		padding-left: 0;
	}
	.container--popular{
		grid-template-columns: repeat(5, 1fr);
	}
	.fp--sectleft{
		padding-left: 0!important;
	}
	.mh-sidebar {		
		padding: 1rem 0 1.5rem 1.5rem;
	}
	.social-media{
		width: 100%;
	}
	.primary--logo{
		padding: 1.5rem;
	}
	#main-content--{
		width: 80%;
		padding: 0;
	}
	#navigation--{
		padding: 0;
	}
	.layout-flex{
		display: flex;
		flex-wrap: nowrap;
	}
	.layout-flex .mh-column--{
		flex-basis: 20%;
	}
	.layout-flex.fp--about{
		align-items: flex-end;
	}
	.mh-block--{
		gap: .5rem;
	}
	.navigation--container{
		position: fixed;
		padding-bottom: 1.5rem;
		width: 20%;
		top: 0;
		left: 0;
		z-index: 999;
		border-radius: 0 10px 10px 0;
		flex-wrap: wrap;
		height: 100%;
		overflow-y: auto;
		align-items: baseline;
		align-content: baseline;
	}
	.nav--boxmenu{
		flex-wrap: wrap;
		width: 100%;
		border-radius: 0 10px 10px 0;
	}
	.fp--sectright{
		overflow: hidden;
	}
	.fp--sectright img{
		width: 100%;
		height: 100%;
		object-fit: cover;
		scale: 1.2;
	}
}
