/* @font-face { */
    /* font-family: 'SourceHanSansCN'; */
    /* src: url('../fonts/SourceHanSansCN-Regular.woff2') format('woff2'); */
    /* font-weight: normal; */
    /* font-style: normal; */
	/* font-display: swap; */
/* } */
/* @font-face { */
    /* font-family: 'SourceHanSansCN'; */
    /* src: url('../fonts/SourceHanSansCN-Medium.woff2') format('woff2'); */
    /* font-weight: 500; */
    /* font-style: normal; */
	/* font-display: swap; */
/* } */
/* @font-face { */
    /* font-family: 'SourceHanSansCN'; */
    /* src: url('../fonts/SourceHanSansCN-Light.woff2') format('woff2'); */
    /* font-weight: 300; */
    /* font-style: normal; */
	/* font-display: swap; */
/* } */
/* @font-face { */
    /* font-family: 'SourceHanSansCN'; */
    /* src: url('../fonts/SourceHanSansCN-Medium.woff2') format('woff2'); */
    /* font-weight: 600; */
    /* font-style: normal; */
	/* font-display: swap; */
/* } */
html,body{
	/* font-family: 'SourceHanSansCN', sans-serif; */
	font-family: "Noto Sans", sans-serif;
	font-size: 16px;
	color: var(--color-default);
	line-height: 1.4;
	font-weight: 400;

}
a{
	color: var(--color-default);
	text-decoration: none;
}
h3{
	font-size: 32px;
	font-weight: 400;
	line-height: 120%; /* 38.4px */
	letter-spacing: 0.32px;
	/* text-transform: uppercase; */
	margin-bottom: 20px;
}
main{
	transition: all .3s ease;
}
main.blur{
	filter: blur(3px);
}
.gap{
	padding-top: 30px;
}
.container{
	max-width: 1240px;
}
.color-default{
	color: var(--color-default) !important;
}
.color-dark{
	color: var(--color-dark) !important;
}
.bg-white{
	background-color: #fff !important;
}
.position-relative{
	position: relative;
}
.navigationbar{
	height: 73px;
	/* background: red; */
	width: 100%;
	position: fixed;
	z-index: 1010;
	transition: top 0.5s ease-in-out;
	background: linear-gradient(180deg, rgb(5 5 5 / 55%) 0%, rgb(0 0 0 / 0%) 100%);
}
#header.active .navigationbar{
	background: #fff;
}
.navigationbar.scrolled{
	background: linear-gradient(180deg, rgb(5 5 5 / 47%) 0%, rgb(0 0 0 / 0%) 100%);
	backdrop-filter: blur(5px);
}
.nav-down {
	top: 0;
}

.nav-up {
	top: -73px;
}
.navigationflex{
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 40px;
}

.megamenu{
position: fixed;
    top: -100%;
    /* top: 0; */
    left: 0;
    background: white;
    width: 100%;
    height: 350px;
    min-height: 350px;
    z-index: 1010;
    transition: all .5s ease-in;
    padding-top: 73px;
    box-shadow: 6px 10px 10px -14px #000;
	padding-bottom: 60px;
}

.megamenu.opened{
	 top: 0vh;
}
.logo-black{
    position: absolute;
    left: 0;
	transition: all 1s ease;
	opacity: 0;
}
.logo-black.show{
	opacity: 1;
}

.menucontent{
	display: none;
	transition: opacity  .5s ease;
	opacity: 0;
	height: 100%;
}
.menucontent.active{
	display: block;
	opacity: 1;
}
.menucontent h5{
	font-weight: 400;
	font-size: 24px;
	margin-bottom: 6px;
	
}
.box-menu-model {
	font-size: 16px;
}
.box-menu-model img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	transition: all .25s ease;
}
.wrapper-menu-model:hover .box-menu-model img{
	transform: scale(1.05);
}
.mainmenu .menu-item > a {
	
	color: #fff;
    display: block;
    padding: 6px 16px;
    font-size: 14px;
	line-height: 1;
    text-decoration: none;
    position: relative;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}
.mainmenu .menu-item > a:hover{
	color: var(--color-orange);
}
.mainmenu.active .menu-item > a{
	color: var(--color-default);
}
.mainmenu.active .menu-item > a:hover{
	color: #04182F;
}

.section{
	position: relative;
}
.banner-hero {
    position: absolute;
    bottom: 60px;
    /* left: 40px; */
	color: #fff;
	width: 100%;
}
.section-banner{
	height: 100vh;
	min-height: 680px;
	max-height: 1080px;
}
.section-banner img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sectionhero{
	 position: absolute;
	 color: #fff;
}
.herolabel{
	letter-spacing: 0.84px;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 1;
	margin-bottom: 6px;
}
.banner-hero h1{
	font-size: 40px;
    letter-spacing: 0.4px;
    /* text-transform: uppercase; */
    margin-bottom: 10px;
    line-height: 120%;
    font-weight: 400;
}
.button-lepas{
	color: #fff;
	text-transform: uppercase;
	padding: 10px 22px;
	position: relative;
	text-decoration: none;
	display: inline-block;
}
.button-lepas:after{
	content: url(../img/ci.svg);
    width: 100%;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
	
}
.page-document{
	padding-top: 100px;
	padding-bottom: 100px;
}
.page-document img{
	max-width: 100%;
}
.bg-dark.page-document a,
.bg-dark.page-document h1{
	/* color: var(--color-orange); */
	color: var(--color-white);
}
.bg-dark.page-document h1{
	margin-bottom: 30px;
	font-weight: 400;
	font-size: 2rem;
}
article{
	text-align: justify;
	line-height: 1.6;
	font-size: 16px;
	/* color: var(--color-dark); */
}
.bg-dark article {
    font-weight: 300;
}
article p{
	margin-bottom: 1.5rem;
}
article table{
	text-align: left;
	    line-height: 1.6;
}
article ol{
	margin-bottom: 1rem;
}
article li{
	margin-bottom: 1rem;
}
article h4{
	margin-bottom: 1rem;
	    font-size: 16px;
}
article strong{
	    font-weight: 700;
}
 .cookie-table {
	background: transparent;
	overflow: hidden;
	/* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
	margin-bottom: 20px;
}

.cookie-table table {
	width: 100%;
	margin: 0;
	border-collapse: collapse;
	border: 1px solid #e0e0e0;
}

.cookie-table thead {
	/* background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%); */
}

.cookie-table thead th {
	color: #fff;
	font-weight: 700;
	/* font-size: 1.1rem; */
	padding: 10px 10px;
	text-align: center;
	border-right: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
}

.cookie-table thead th:last-child {
	border-right: none;
}

.cookie-table tbody tr {
	border-bottom: 1px solid #e0e0e0;
	transition: background-color 0.3s ease;
}

.cookie-table tbody tr:hover {
	/* background-color: #f9f9f9; */
}

.cookie-table tbody tr:last-child {
	border-bottom: none;
}

.cookie-table tbody td {
	padding: 10px 10px;
	text-align: center;
	/* color: #333; */
	/* font-size: 0.95rem; */
	border-right: 1px solid #e0e0e0;
}

.cookie-table tbody td:last-child {
	border-right: none;
}

.cookie-table tbody td:first-child {
	font-weight: 500;
	/* color: #222; */
}
 .data-table {
	/* background: #fff; */
	background: transparent;
	overflow: hidden;
	/* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
	margin-bottom: 20px;
}

.data-table table {
	width: 100%;
	margin: 0;
	border-collapse: collapse;
	border: 1px solid #e0e0e0;
}

.data-table thead {
	background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
	background: transparent;
}

.data-table thead th {
	color: #fff;
	font-weight: 500;
	/* font-size: 1.05rem; */
	/* padding: 18px 25px; */
	padding: 10px 10px;
	text-align: left;
	/* border-right: 1px solid rgba(255, 255, 255, 0.2); */
	border-right: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
}

.data-table thead th:last-child {
	border-right: none;
}

.data-table tbody tr {
	border-bottom: 1px solid #e0e0e0;
}

.data-table tbody tr:last-child {
	border-bottom: none;
}

.data-table tbody td {
	padding: 10px 10px;
	color: #fff;
	/* font-size: 0.95rem; */
	line-height: 1.6;
	vertical-align: top;
	border-right: 1px solid #e0e0e0;
	/* background: #fff; */
}

.data-table tbody td:last-child {
	border-right: none;
}

.data-table tbody tr:nth-child(odd) td:first-child {
	/* background-color: #fef5e7; */
}

.data-table tbody tr:nth-child(even) td:first-child {
	/* background-color: #fef5e7; */
}

.data-table tbody td:first-child {
	/* background-color: #fef5e7; */
}
.section-overview{
	height: 600px;
	background: url(../img/overview.jpg) no-repeat;
	background-size: cover;
}
.img-overview{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.overview-hero{
	position: absolute;
    left: 50%;
    top: auto;
    color: #fff;
    width: 462px;
    text-transform: uppercase;
    text-align: center;
    transform: translateX(-50%);
    bottom: 7%;
}
.triangle{
	background: #EAEAEA;
}
.triangle.lighter{
	background: #FFFDFC;
}
.triangle-left{
	
	left: 0;
	bottom: 0;
	width: 50%;
	height: 132px;
	position: absolute;
	clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.triangle-right{
	right: 0;
	bottom: 0;
	width: 50%;
	height: 132px;
	position: absolute;
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.section-discover{
	padding-top: 30px;
	padding-bottom: 30px;
	background: linear-gradient(180deg, #EAEAEA 0%, #FFF 100%);
}
.section-discover h3{
	font-size: 32px;
	font-weight: 400;
	line-height: 120%; /* 38.4px */
	letter-spacing: 0.32px;
	text-transform: uppercase;
}



.wrapper-discover{
	display: flex;
	column-gap: 12px;
	position: relative;
    overflow: hidden;
}

.pillar {
	flex: 1;
	position: relative;
	overflow: hidden;
	transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	/* margin-right: -300px; */
	/* margin-right: -18vw ; */
}

.pillar:last-child {
	 /* margin-right: -140px; */
	 /* margin-right: -200px; */
	 /* margin-right: -9.417vw; */
}
.pillar::before {
	/* content: ''; */
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	transition: background 0.6s ease;
	z-index: 1;
}

.pillar:hover::before {
	background: rgba(0, 0, 0, 0);
}

.pillar:hover {
	z-index: 10 !important;
}

.section-inner {
	width: 100%;
	height: 100%;
	position: relative;
}

.pillar img.img-discover {
	/* width: 120%; */
	width: 132%;
	/* height: 120%; */
	height: 132%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.4, 0, 0.8, 1);
	object-position: center;
	transform-origin: center;
	transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    position: absolute;
}

.pillar:hover img.img-discover {
	/* transform: scale(1.05); */
}

/* Default state - all equal */
.pillar {
	flex: 1;
	flex: 0.8;
	height: 400px;
	height: 320px;
	cursor: url(../img/cursor.png), pointer;
}

/* Hover states */
.pillar:hover {
	/* flex: 2; */
	flex: 1;
}
.pillar.active {
	/* flex: 2; */
	flex: 1;
}
.pillar.active::before {
	/* background: rgba(0, 0, 0, 0); */
}

.wrapper-flex:has(.pillar:hover) .pillar:not(:hover) {
	flex: 0.8;
}

.wrapper-flex:has(.pillar:hover) .pillar:not(:hover):before {
	/* background: rgba(0, 0, 0, 0.6); */
}
.overlay-discover{
	position: absolute;
    width: 100%;
    padding: 24px 24px;
    bottom: 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.32) 32%, rgba(0, 0, 0, 0.8));
    filter: blur(0px);
    backdrop-filter: blur(1.5px);
    height: 94px;
}
.img-overlay-discover{
	display: block;
	margin: 0 auto 14px;
}
.link-discover{
	color: var(--color-orange);
	/* text-transform: uppercase; */
	font-weight: 400;
	display: flex;
	gap: 3px;
	align-items: center;
	/* justify-content: center; */
	text-decoration: none;
	    line-height: 16px;
		transition: all .5s ease;
}
.link-discover:hover{
	text-decoration: underline;
}
.box-discover .link-discover{
	justify-content: center;
}
.link-discover:after{
	content: url(../img/arrow-discover.svg);
	height: 16px;
    width: 16px;
    display: inline-flex;
	transition: all .5s ease;
}
.link-discover:hover:after{
	transform: translateX(3px);
}
.link-back{
	color: var(--color-orange);
	font-weight: 400;
	display: flex;
	gap: 3px;
	align-items: center;
	text-decoration: none;
	line-height: 16px;
	transition: all .5s ease;
	    transform: translateX(-3px);
}
.link-back:before{
	content: url(../img/arrow-discover.svg);
	height: 16px;
    width: 16px;
    display: inline-flex;
	transform: rotate(-180deg);
	transition: all .5s ease;
}
.link-back:hover{
	text-decoration: underline;
}
.link-back:hover:before{
		transform: rotate(-180deg) translateX(3px);
}
.link-big{
	font-size: 60px;
	position: relative;
	line-height: 1;
	display: block;
	transition: all .5s ease;
	
    margin-bottom: 10px;
}
.link-big:hover{
	color: var(--color-orange);
}
.link-big:after{
    content: '';
    width: 60px;
    height: 60px;
    /* background: url(../img/arrow-bigs.png) no-repeat; */
    background: url(../img/arrow-big.png) no-repeat;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-position: right;
	/* transition: all .5s cubic-bezier(0.4, 0, 0.8, 1); */
	transition: all .5s ease;

}
.link-big:hover:after{
	 background-image: url(../img/arrow-big-after.png);
	/* background-position: left; */
	
}
.section-padding{
	padding-top: 30px;
	padding-bottom: 30px;
}
.card-news{
	margin-bottom: 1.75rem;
}
.card-news__img{
	width: 100%;
	height: 270px;
	overflow: hidden;
}
.card-news__img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 1s ease;
}
.card-news:hover .card-news__img img{
	transform: scale(1.05);
}
.card-news__content{
	display: flex;
	height: 100%;
	flex-direction: column;
	justify-content: space-between;
}
.card-news__info{
	padding: 12px 0 12px;
}
.card-title{
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%; /* 24px */
	letter-spacing: 0%;
	margin-bottom: 12px;
	transition: all .25s ease;
}
.card-title:hover{
	color: var(--color-orange);
	text-decoration: underline;
}
.card-description{
	color: var(--color-light);
	letter-spacing: 0.56px;
}

.pagination {
    justify-content: center;
}
/* Container Reset */
.pagination.orange-style {
    border: none;
    gap: 0px; /* Spacing between numbers */
    align-items: center;
}

/* Remove all borders and backgrounds */
.orange-style .page-item,
.orange-style .page-link {
    border: none !important;
    background: none !important;
    padding: 5px 10px;
    color: var(--color-default); /* Default number color */
    text-transform: uppercase;
}

/* Orange Color for Active Page and Hover */
.orange-style .page-item.active .page-link,
.orange-style .page-link:hover {
    color: var(--color-orange) !important; 
}

/* Style for the Previous/Next Text */
.orange-style .prev.page-link,
.orange-style .next.page-link {
    letter-spacing: 0.2px;
}
.orange-style .prev.page-link:before {
    /* content: url(../img/arrow-discover.svg); */
	content: '';
    height: 16px;
    width: 16px;
    display: inline-flex;
    transform: rotate(-180deg) translateY(-3px);
    transition: all .5s ease;
	background-color: var(--color-default);
    -webkit-mask-image: url(icon.svg);
    mask-image: url(../img/arrow-discover.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}
.orange-style .next.page-link:after {
	content: '';
    height: 16px;
    width: 16px;
    display: inline-flex;
    transform: translateY(2px);
    transition: all .5s ease;
	background-color: var(--color-default);
    -webkit-mask-image: url(icon.svg);
    mask-image: url(../img/arrow-discover.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
	    opacity: 0.6;
}
.orange-style .prev.page-link:hover:before,
.orange-style .next.page-link:hover:after{
	background-color: var(--color-orange);
}
/* Disabled State (Grayed out) */
.orange-style .page-item.disabled .page-link {
    color: #ccc !important;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Current Page simple underline (optional, based on image) */
.orange-style .page-item.active .page-link {
    /* font-weight: bold; */
}
/* Container for alignment */
.edit-btn-wrap {
    text-align: right;
    position: fixed;
    bottom: 0;
    z-index: 999;
    padding: 10px 10px;
    background: var(--color-orange);
}

/* Matching your borderless orange style */
.post-edit-link {
    color: #fff !important; /* Your specific orange/gold */
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border: none !important;
    background: none !important;
    transition: opacity 0.3s ease;
}

.post-edit-link:hover {
    opacity: 0.7;
    color: #e6a53d; /* Keep orange on hover */
    text-decoration: underline; /* Optional: adds a visual cue */
}
.footer{
	background: var(--bg-light-grey);
	background: #4E5054;
	/* padding: 60px 60px 0; */
	color: #B0B0B0;
}
.footer hr{
	margin: 0;
}
.footer-top{
	padding-top: 24px;
	padding-bottom: 24px;
}
.disclaimer{
	font-size: 12px;
}
.footer h6{
	color: #979493;
	font-weight: 300;
	letter-spacing: 0.84px;
	line-height: 1.2;
	margin-bottom: 8px;
	font-size: 13px;
}
.row-footer{
	padding-bottom: 80px;
}
.ul-footer{
	list-style: none;
	padding-left: 0px;
}
.ul-footer li{
	padding: 8px 0;
}
.ul-footer li a{
	transition: all .25s ease;
}
.ul-footer li a:hover{
	color: var(--color-orange);
	text-decoration: underline;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 60px;
	max-width: 1400px;
	margin: 0 auto 60px;
}

.footer-column h3 {
	font-size: 16px;
	font-weight: 400;
	color: #666;
	margin-bottom: 20px;
	letter-spacing: 0.5px;
}

.footer-column ul {
	list-style: none;
}

.footer-column ul li {
	margin-bottom: 12px;
}

.footer-column ul li a {
	color: #1a1a1a;
	text-decoration: none;
	font-size: 15px;
	transition: color 0.3s;
}

.footer-column ul li a:hover {
	color: #666;
}
.footer-right{
	
}
.h5stayup{
	font-size : 20px;
	font-weight: 600;
	margin-bottom: 16px;
}
.subscribe-btn {
	display: inline-block;
	padding: 10px 0;
	color: #1a1a1a;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	border-bottom: 2px solid #1a1a1a;
	transition: opacity 0.3s;
}

.subscribe-btn:hover {
	opacity: 0.7;
}

.support-phone {
font-size: 20px;
    margin-top: 10px;
    letter-spacing: 0.2px;
}

.footer-bottom {
	/* border-top: 1px solid #DEDEDE; */
	padding-top: 20px;
	padding-bottom: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	flex-wrap: wrap;
}
.footer-bottom__left{
	display: flex;
	align-items: center;
}
.copyright {
	/* color: var(--color-slate-grey); */
	color: #DEDEDE;
	font-size: 12px;
	line-height: 1.6;
	font-weight: 300;
	padding-right: 20px;
    margin-right: 20px;
    border-right:1px solid rgb(255 255 255 / 20%);

}

.footer-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-links a {
	text-decoration: none;
	font-size: 12px;
	transition: color 0.3s;
	font-weight: 400;
}

.footer-links a:hover {
	color: #666;
	color: var(--color-orange);
	text-decoration: underline;
}

.social-links {
	display: flex;
	gap: 20px;
	align-items: center;
}

.social-links a {
	color: var(--color-default);
	font-size: 20px;
	transition: color 0.3s;
	    line-height: 20px;
    display: inline-flex;
}

.social-links a:hover {
	color: var(--color-slate-grey);
}

.language-selector {
	display: flex;
	gap: 8px;
	font-size: 12px;
}

.language-selector span {
}

.language-selector span:not(:last-child)::after {
	content: "|";
	margin-left: 8px;
}

.section-about{
	background: #FFFDFC;
}


.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.hero-section::after {
	content: '';
	position: absolute;
	top: -5%;
	left: -5%;
	width: 110%;
	height: 110%;
	background-image: url('../img/bg-coming-soon-2.jpg');
	background-size: cover;
	background-position: center bottom;
	animation: kenBurns 90s ease-in-out infinite alternate;
	z-index: 0;
}

@keyframes kenBurns {
	0% {
		transform: scale(1) translateX(0) translateY(0);
	}
	25% {
		transform: scale(1.10) translateX(-2%) translateY(-2%);
	}
	50% {
		transform: scale(1.03) translateX(2%) translateY(1%);
	}
	75% {
		transform: scale(1.07) translateX(-1%) translateY(2%);
	}
	100% {
		transform: scale(1.13) translateX(1%) translateY(-1%);
	}
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, 
		rgba(74, 144, 164, 0.1) 0%, 
		rgba(135, 206, 235, 0.15) 50%,
		rgba(44, 62, 80, 0.25) 100%);
	z-index: 1;
}

.content-wrapper {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 2rem;
	animation: fadeInUp 1.2s ease-out;
}

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

.logo-container {
	margin-bottom: 30px;
	animation: floatIn 1.5s ease-out;
}

@keyframes floatIn {
	from {
		opacity: 0;
		transform: translateY(-20px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.logo {
	width: 100%;
	/* max-width: 720px; */
	/* max-width: 580px; */
	max-width: 420px;
	height: auto;
	filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
	/*animation: gentlePulse 4s ease-in-out infinite;*/
}

@keyframes gentlePulse {
	0%, 100% {
		transform: scale(1);
		filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
	}
	50% {
		transform: scale(1.02);
		filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.25));
	}
}

.tagline {
  
	text-align: center;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
	margin-bottom: 40px;
	letter-spacing: 0.24px;
	/* text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); */
	animation: fadeIn 1.8s ease-out 0.3s backwards;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.cta-button {
	display: inline-block;
	padding: 16px 21px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.56px;
	text-transform: uppercase;
	color: #04182F;
	/*background: rgba(255, 255, 255, 0.12);*/
	border: 1px solid #04182F;
	border-radius: 4px;
	text-decoration: none;
	backdrop-filter: blur(10px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	animation: slideUp 1.5s ease-out 0.6s backwards;
	line-height: 1;
	min-width: 150px;
}
.cta-button.color-white{
	color: #fff;
	border-color: #fff;
}
@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, 
		transparent, 
		rgba(255, 255, 255, 0.3), 
		transparent);
	transition: left 0.6s ease;
}

.cta-button:not([disabled]):hover::before {
	left: 100%;
}

.cta-button:not([disabled]):hover {
	background: rgba(255, 255, 255, 0.25);
   /* border-color: rgba(255, 255, 255, 0.9);*/
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.cta-button[disabled] {
  background-color: rgba(3, 6, 11, 0.05);
  border-color: #979493;
  color: #979493;
  cursor: not-allowed;
}

.social-footer {
	position: absolute;
	bottom: 2rem;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	z-index: 2;
	animation: fadeIn 2s ease-out 1s backwards;
}

.social-icon {
	width: 24px;
	height: 24px;
	color:#fff;
	opacity: 0.8;
	transition: all 0.3s ease;
	cursor: pointer;
}
.social-icon.lemon8{
	width: auto
}
.social-icon:hover {
	opacity: 1;
	transform: translateY(-3px);
	filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.4));
}

.language-toggle {
	display: flex;
	gap: 0.5rem;
	font-size: 0.85rem;
	color: #fff;
	opacity: 0.8;
}

.language-toggle span {
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.language-toggle span:hover {
	opacity: 1;
}

.language-toggle .separator {
	cursor: default;
}

/* Decorative wave overlay */
.wave-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 150px;
	background: linear-gradient(to top, rgba(44, 62, 80, 0.4), transparent);
	z-index: 1;
	pointer-events: none;
}

.section-contact-us.roi {
    /* height: 100vh; */
    /* background: url(../img/sky-eye.jpg) no-repeat; */
    /* background: url(../img/sky-large.jpg) no-repeat; */
    background: url(../img/sky-bg.png) no-repeat;
    background-size: 100vw;
	position: relative;
    background-position-x: center;
	/* padding-bottom: 18%; */
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	will-change: transform;
	/* padding-bottom: 125px; */
	padding-bottom: 40px;
}

.header-label {
	font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.84px;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 40px;
    /* font-size: 28px; */
    font-weight: 500;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 0.4px;
}
.section-roi{
	background: url(../img/footer-2.png) no-repeat;
	background-position-y: bottom;
	background-size: 100vw;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
	/* min-height: 300px; */

}
.bg-kl{
	background: url(../img/footer-2.png) no-repeat;
	background-position-y: bottom;
	background-size: 100vw;
	position:absolute;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
	z-index: 0;

}
.section-roi .form-container {
    padding: 40px;
    border-radius: 8px;
    margin: 0 auto;
    padding-bottom: 128px;
	padding-bottom: 17vw;
}
.section-roi .copyright ,
.footer-links a,
.social-links a
{
    color: #fff;
}
.footer-light .footer-links a{
	color: #DEDEDE;
}
.icon-social{
	opacity: .7;
	transition: all .25s ease;
	width: 24px;
	height: 24px;
}
.social-links a:hover .icon-social{
	opacity: 1;
}
.lepas-eye{
	max-width: 506px;
}
.eye{
	position: absolute;
    right: -11%;
    bottom: 34%;
}
.eye.eye-left{
	position: absolute;
    left: -11%;
    right: auto;
	transform: scaleX(-1);
}
.eyelepas{
	/* display: none; */
}
.eyelepas {
    /* display: none; */
    position: absolute;
    width: 277px;
    /* bottom: 113px; */
    bottom: 60px;
}
.eyelepas.eye-left {
    left: 160px;
}
.eyelepas.eye-right{
    left: auto;
	right: 160px;
}
.logo,
h1,
h2 {
  margin: 0;
  line-height: 1;
  font-family: "Cinzel", serif;
  font-weight: 400;
}


.stage {
  position: relative;
  background: white;
  visibility: hidden;
}

/*  ========================================================================== 
    Nav Header
    ========================================================================== */
.header {
  position: fixed;
  left: 40px;
  top: 24px;
  z-index: 100;
  display: flex;
}


.logo {
  font-size: 27px;
  letter-spacing: -1px;
}

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

.nav-btn {
  display: block;
  margin: -2px 0 0 56px;
}


.nav-btn__svg {
  pointer-events: none;
}

/*  ========================================================================== 
    Intro
    ========================================================================== */
.intro {
  height: 100vh;
}

.intro {
	position: relative;
	overflow: hidden;
	/* background: #161414 url(../img/bg-landing-1.jpg); */
	background: #161414 url(../img/hero.jpg);
	background-size: cover;
	color: #fff;
	background-repeat: no-repeat;
	background-position: center center;
}

.intro__content {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    z-index: 3;
    width: 80%;
}


.intro__title {
  /* font-size: 25vw; */
  overflow: hidden;
  /* letter-spacing: -2.3vw; */
  /* padding-right: 2.3vw; */
}


.intro__img {
  position: absolute;
  width: 35%;
  max-width: 390px;
  height: auto;
}


.intro__img--1 {
  z-index: 2;
  left: 10%;
  bottom: 35%;
}


.intro__img--2 {
  z-index: 1;
  left: 25%;
  bottom: 40%;
}


.intro__txt {
  /* max-width: 35vw; */
  /* margin-left: 25vw; */
      font-size: 2.116vw;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: 0.169vw;
}


/*  ========================================================================== 
    Slides
    ========================================================================== */
.slide {
  display: flex;
  align-items: stretch;
  height: 100vh;
  overflow: hidden;
}
.slide:nth-of-type(even) {
  /* background: #C4CDC4; */
}


/*  Columns
    ========================================================================== */
.col {
  flex-basis: 50%;
}

.col--1 {
  position: relative;
  z-index: 1;
}

.col--2 {
  position: relative;
  overflow: hidden;
}


/*  ========================================================================== 
    Column Content
    ========================================================================== */
.col__content {
  position: relative;
  display: flex;
  flex-direction: column;
  /* justify-content: flex-end; */
  justify-content: flex-start;
  overflow: hidden;
  /* height: 100%; */
  /* padding: 6vw 6vw 10vw; */
  /* padding: 11.243vw 7.937vw 10vw; */
  position: absolute;
  left: 10vw;
  top: 50%;
  transform: translateY(-50%);
  max-width: 635px;
  /* max-width: 590px; */
}

.col__content_right{
	left: auto;
	right: 10vw;
	text-align: right
}
.col__content.col__content_center{
left: auto;
    right: auto;
    text-align: center;
    position: relative;
    top: unset;
    transform: none;
    display: inline-flex;
}
.slide-intro .col__content{
	max-width: 780px;
}
/*  Column Content
    ========================================================================== */
.col__content-title {

}

.col__content-wrap {
  display: flex;
}
.col__content.col__content_center .col__content-wrap {
  display: block;
}


.col__content-txt {
  font-size: 14px;
    /* font-weight: 300; */
    color: #fff;
	max-width: 500px;
}


.slide-link {
  position: relative;
  order: 1;
  display: flex;
  justify-content: flex-end;
  width: 75px;
  height: 53px;
}
.slide-link > * {
  pointer-events: none;
}


.slide-link__circ {
  width: 53px;
  height: 53px;
  border-radius: 50%;
  border: 1px solid var(--dark);
}

.slide-link__line {
  position: absolute;
  top: 25px;
  left: 0;
  width: 64px;
  height: 3px;
  background: var(--dark);
}

.line {
  overflow: hidden;
}
.line:nth-of-type(even) {
  /* margin-top: -1vw; */
}

.line__inner {
  display: block;
}

.slide__scroll-link {
  position: absolute;
  right: -113px;
  bottom: 3.5vw;
  display: block;
  width: 140px;
  height: 140px;
  background: var(--dark);
  overflow: hidden;
}


.slide__scroll-line {
  position: absolute;
  left: 26px;
  bottom: 0;
  width: 1px;
  height: 100%;
}

.slide--0 .slide__scroll-line {
  background: #C0D7D8;
}

.slide--1 .slide__scroll-line {
  background: #D8C0C0;
}

.slide--2 .slide__scroll-line {
  background: #CDD5E0;
}

.slide--3 .slide__scroll-line {
  background: #F3D3B0;
}

.slide--4 .slide__scroll-line {
  background: #F8E9E6;
}

.slide--5 .slide__scroll-line {
  background: #D1E2EC;
}

.slide--6 .slide__scroll-line {
  background: #D7CEC5;
}
.col__content--4 .col__content-wrap{
	max-width: 486px;
	margin-left: auto
}
/*  ========================================================================== 
    Column Image
    ========================================================================== */
.col__image-wrap {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 160vh;
}

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

.bg-dark{
	/* background: #161414 url(../img/bg-dark.jpg); */
    background-size: cover;
    color: #fff;   
    background-repeat: no-repeat;
    background-position: top center;
}
.slide{
	background-size: cover;
    color: #fff;
   
    background-repeat: no-repeat;
    background-position: top center;
	
}
.slide--1{
	background-image:  url(../img/bg-landing-1a.jpg);
}
.slide--2{
	background-image:  url(../img/bg-landing-2a.jpg);
}
.slide--3{
	background-image:  url(../img/bg-landing-3a.jpg);
}
.slide--4{
	background-image:  url(../img/bg-landing-4a.jpg);
}
.slide--5{
	background-image:  url(../img/bg-landing-5a.jpg);
}
.slide{
	position: relative;
}
h1, h2 {
	margin: 0;
	line-height: 1.2;
	font-family: unset;
	font-weight: 400;
	letter-spacing: 0;
	color: #EB9201;
}
.intro__title {
    /* margin: 0 0 2vw; */
    margin: 0 0 0;
	letter-spacing: 0;
	line-height: 1.0;
}
.intro__title .intro-line {

    text-align: center;
}
.col__content-title {
    margin: 0 0 1rem;
	letter-spacing: 0;
	line-height: 1.2;
}
.col__content-title.big .line__inner{
	font-size: 40px;
}
.logo, h1, h2 {
    margin: 0;
    line-height: 1;
    font-family: unset;
    font-weight: 400;
}
.text-gradient,.line__inner{
	font-size: 32px;
	padding: 0 0px;
	display: inline-block;
	line-height: 1.3;

}
/* Navbar Styles */
.navbar-lepas {
	
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background-color: transparent;
	transition: background-color 0.5s ease, box-shadow 0.5s ease;
	background: linear-gradient(180deg, rgb(5 5 5 / 47%) 0%, rgb(0 0 0 / 0%) 100%);
}

.navbar-lepas.scrolled {

    backdrop-filter: blur(5px);
	/* background: #ffffff; */
	background-color: rgba(-255, -255, -255, 0.2);
}
.navbar-lepas.scrolled .hamburger span,
.navbar-lepas.scrolled .menu-btn-text
{
	/* color: #000; */
}
.navbar-lepas.menu-open {
	background: #ffffff;
	/* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
	/* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
}

.navbar-content {
	padding: 1.5rem 4px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	transition: all .5s ease;
}
.navbar-lepas.scrolled .navbar-content{
	padding: 1rem 4px;
	
}
.menu-open .navbar-content {
	border-bottom: 1px solid #4e505421;
}
/* Menu Button */
.menu-btn {
	background: none;
	border: none;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	cursor: pointer;
	transition: opacity 0.3s ease;
	color: #ffffff;
}

.menu-btn:hover {
	opacity: 0.7;

}

.navbar-lepas.menu-open .menu-btn {
	color: var(--color-default);
}
.navbar-lepas.menu-open .menu-btn:hover {
	color: #000;
	opacity: 1;
}

.menu-btn-text {
	font-size: 13px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	font-weight: 400;
}

/* Hamburger Icon */
.hamburger {
	width: 20px;
	height: 16px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.hamburger span {
	display: block;
	height: 2px;
	background-color: currentColor;
	transition: all 0.3s ease;
	transform-origin: center;
}

.navbar-lepas.menu-open .hamburger span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.navbar-lepas.menu-open .hamburger span:nth-child(2) {
	opacity: 0;
}

.navbar-lepas.menu-open .hamburger span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Logo */
.navbar-logo {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.navbar-logo img {
	height: 24px;
	transition: opacity 0.5s ease;
}

.logo-white {
	opacity: 1;
}

.logo-black {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
}

.navbar-lepas.menu-open .logo-white,
.navbar-lepas.scrolled .logo-white{
	/* opacity: 0; */
}

.navbar-lepas.menu-open .logo-black,
.navbar-lepas.scrolled .logo-black
{
	/* opacity: 1; */
}

/* Language Selector */
.lang-selector {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 13px;
	letter-spacing: 1px;
}

.lang-selector button {
	background: none;
	border: none;
	cursor: pointer;
	transition: opacity 0.3s ease;
	font-weight: 400;
}

.lang-selector button:hover {
	opacity: 0.7;
}

.lang-selector .lang-active {
	color: var(--color-orange);
	font-weight: 500;
}

.lang-selector .lang-inactive {
	color: rgba(255, 255, 255, 0.7);
}

.navbar-lepas.menu-open .lang-selector .lang-inactive {
	color: #666666;
}

.lang-separator {
	color: rgba(255, 255, 255, 0.4);
}

.navbar-lepas.menu-open .lang-separator {
	color: #cccccc;
}

/* Menu Dropdown */
.menu-dropdown {
	background-color: #ffffff;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease, opacity 0.5s ease;
	opacity: 0;
}

.navbar-lepas.menu-open .menu-dropdown {
	max-height: 400px;
	opacity: 1;
}

.menu-dropdown-content {
	padding: 4rem 4px;
}

.menu-dropdown ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.menu-dropdown li {
	margin-bottom: 10px;
	opacity: 0;
	transform: translateY(-20px);
	transition: all 0.6s ease;
}

.navbar-lepas.menu-open .menu-dropdown li {
	opacity: 1;
	transform: translateY(0);
}

.navbar-lepas.menu-open .menu-dropdown li:nth-child(1) {
	transition-delay: 0.1s;
}

.navbar-lepas.menu-open .menu-dropdown li:nth-child(2) {
	transition-delay: 0.2s;
}

.navbar-lepas.menu-open .menu-dropdown li:nth-child(3) {
	transition-delay: 0.3s;
}

.menu-dropdown a {
    font-size: 24px;
    text-decoration: none;
    /* font-weight: 400; */
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.menu-dropdown a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #1a1a1a;
	transition: width 0.5s ease;
	display: none;
}

.menu-dropdown a:hover {
	color: #000;
}

.menu-dropdown a:hover::after {
	width: 100%;
}

 .brand-section {
	text-align: left;
	max-width: 400px;
	margin-left: auto;
}

/* Logo */
.brand-logo {
	margin-bottom: 2rem;
}

.brand-logo img {
	max-width: 100%;
	height: auto;
}

.logo-text {
	font-size: 4rem;
	color: #d4a574;
	margin-bottom: 0;
	letter-spacing: 3px;
}

/* Values Navigation */
.values-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
	    line-height: 1;
}

.value-item {
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
}

.value-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-orange);
    display: inline-block;
    margin-right: 10px;
    transition: all 0.3s ease;
    transform: translateY(-7px) rotate(45deg);
}

.value-text {
	/* font-size: 32px; */
	font-size: 28px;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--color-orange);
	transition: all 0.3s ease;
}

.value-item:hover .value-text,
.value-item.active .value-text {
	color: #ffffff;
	font-weight: 500;
}

.value-item:hover .value-dot,
.value-item.active .value-dot {
	background-color: #ffffff;
	/* transform: scale(1.3); */
}

/* Content Area */
.content-area {
	position: relative;
	/* min-height: 200px; */
	padding: 0;
}

.content-item {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.6s ease;
	pointer-events: none;
	padding: 1rem 0;
}

.content-item.active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.content-title {
	font-size: 2rem;
	font-weight: 300;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #d4a574;
	margin-bottom: 1.5rem;
}

.content-description {
	font-size: 14px;
	line-height: 1.4;
	color: #fff;
	max-width: 400px;
	margin: 0 auto;
	font-weight: unset;
}

/* Decorative Line */
.decorative-line {
	width: 100px;
	height: 1px;
	background: linear-gradient(90deg, transparent, #d4a574, transparent);
	margin: 3rem auto;
	opacity: 0.5;
}
.page-banner{
	background: url(../img/bg-news.jpg) no-repeat;
	background-size: cover;
	height: 500px;
	height: 26.274vw;
}
.banner-title{
	font-size: 70px;
	font-size: 3.678vw;
	font-weight: 500;
	color: #fff;
	margin-bottom: 3.208vw;	
}
.page-content{
	min-height: 50vh;
	
}
.section-padding{
	/* padding-top: 60px; */
	/* padding-top: 3.125vw; */
	/* padding-bottom: 60px; */
	/* padding-bottom: 3.125vw; */
	
	padding-top: 1.083vw;
	padding-bottom: 1.083vw;
}
.category-section{
	/* padding-bottom: 40px; */
	padding-top: 3vw;
	padding-bottom: 3vw;
	border-bottom: 1px solid #979493;
}
.category-section:last-of-type{
	border-bottom: 0px;
	padding-bottom: 0px;
}
.category-header{
	/* padding-bottom: 40px; */
	padding-bottom: 2.083vw;
}
.category-title{
	color: var(--color-orange);
	font-size: 28px;
	margin-bottom: 0;
}
.btn-readmore{
    color: var(--Navy-Gray, #04182F);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: var(--Static-Title-Medium-Line-Height, 24px);
    letter-spacing: 0.28px;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid var(--Navy-Gray, #04182F);
    background: var(--Opacity-White-10, rgba(255, 255, 255, 0.10));
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
	transition: all .5s ease;
}
.btn-readmore:hover{
	color: var(--color-orange);
	border-color: var(--color-orange);
}
.page-banner.dark{
	background: var(--color-dark);
}
.article-title{
	font-size: 40px;
	font-size: 2.083vw;
	font-weight: 500;
	color: #fff;
	margin-bottom: 1px;	
	    line-height: 1.3;

}
.article-title span{
    display: block;
    font-size: 1.042vw;
    padding-top: 20px;
}
.article-info {
    display: flex;
    column-gap: 20px;
    font-size: 16px;
    color: var(--color-orange);
    font-weight: 500;
	margin-bottom: 2.083vw;
	    line-height: 1;
}
.article-info > span {
    display: inline-flex;
    line-height: 15px;
	font-weight: 300;
}
.wrapper-back{
	/* margin-bottom: 2.083vw; */
	margin-bottom: 3.125vw;
}
.wrapper-article-info{
	padding-bottom: 3.125vw;
}
.wp-caption-text{
    /* font-size: 12px; */
    font-size: 14px;
    /* padding: 5px 0; */
    padding: 8px 0;
    font-style: italic;
	    line-height: 1.2;
		text-align: left;
}
.wp-caption-text a{
	text-decoration: underline;
	color: var(--color-orange);
}
.entry-content p.is-empty {
	margin-bottom: 8px;
    line-height: 0.5;
}
.entry-content img{
	max-width: 100%;
	/* width: 100%; */
	height: auto;
	margin-bottom: 1rem;
}
.entry-content figure img{
	margin-bottom: 0rem;
}
.entry-content img.aligncenter{
	margin: 0 auto 1.5rem;
    display: block;
}
.entry-content h6{
	font-weight: bold;
}
.entry-content h5{
	font-weight: bold;
}
.entry-content h2 {
    margin: 0;
    line-height: 1;
    font-family: unset;
 font-weight: bold;
    color: var(--color-default);
    margin-bottom: 1.75rem;
}
.entry-content strong{
	font-weight: bold;
}
figure {
    margin: 0 0 1rem;
    max-width: 100%;
}
.wrapper-follow p{
	color: var(--color-dark);
	/* letter-spacing: 0.28px; */
text-transform: uppercase;
}

.wrapper-follow {
    padding: 35px 0 0;
}
.box-comment{
    padding: 2.083vw 2.083vw;
    background: #F6F6F6;
    border-radius: 8px;
	color: var(--color-dark);
}
.box-comment p:last-of-type{
		margin-bottom: 0;
}
.entry-content  iframe {
    border: 0;
    max-width: 100%;
    height: 670px;
}
.entry-content iframe + p {
	display: none;
}
.entry-content iframe + p + div.wp-caption-text{
	padding-top: 3px;
}
.wrapper-follow .icon-social {
    opacity: 1;
    transition: all .25s ease;
	width: 32px;
}
.wrapper-follow  .social-links {
    gap: 14px;
}
.card-date{
color: #818285;
    margin-bottom: 7px;
    font-size: 13px;
	letter-spacing: 0.3px;
}
.card-title span{
	display: none;
}
.img-tick{
	margin-bottom: 40px;
}
.section-thankyou{
    background: url(../img/sky-bg.png) no-repeat;
    background-size: 100vw;
    position: relative;
    background-position-x: center;
    padding-top: 10%;
}
.section-thankyou h3{
	font-weight: 500;
}

 /* SVG tick icon */
    .icon-wrap {
      width: 80px;
      height: 80px;
      margin: 0 auto 2rem;
    }

    .icon-wrap svg {
      width: 80px;
      height: 80px;
      overflow: visible;
    }

    .circle-bg {
      transform-origin: 40px 40px;
      transform: scale(0);
    }

    .circle-ring {
      fill: none;
      stroke: white;
      stroke-width: 2;
      /* perimeter of rect stroke path ~= 4*(62-2) = but visually use 248 */
      stroke-dasharray: 248;
      stroke-dashoffset: 248;
    }

    .tick-path {
      fill: none;
      stroke: white;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-dasharray: 55;
      stroke-dashoffset: 55;
    }

    .animate-circle-bg {
      animation: popIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }

    .animate-ring {
      animation: drawRing 0.75s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .animate-tick {
      animation: drawTick 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    @keyframes popIn {
      from { transform: scale(0); }
      to   { transform: scale(1); }
    }

    @keyframes drawRing {
      from { stroke-dashoffset: 248; }
      to   { stroke-dashoffset: 0; }
    }

    @keyframes drawTick {
      from { stroke-dashoffset: 55; }
      to   { stroke-dashoffset: 0; }
    }
	
.thankyou-wrap {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}

.thankyou-wrap.visible { opacity: 1; transform: translateY(0); }
	
/* Responsive */
@media (max-width: 768px) {

	.values-nav {
		gap: 1rem;
		/* padding: 0 20px; */
	}
	.value-dot {
		width: 6px;
		height: 6px;
		background-color: var(--color-orange);
		display: inline-block;
		margin-right: 4px;
		transition: all 0.3s ease;
		transform: translateY(-3px) rotate(45deg);
	}
	.value-text {
		font-size: 22px;
        letter-spacing: 1px;
	}

	.content-title {
		font-size: 1.5rem;
	}

	.content-description {
		font-size: 1rem;
		text-align: left;
	}
}

/* Animation on load */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.brand-logo {
	animation: fadeInUp 0.8s ease forwards;
}

.values-nav {
	animation: fadeInUp 1s ease 0.2s forwards;
	opacity: 0;
	animation-fill-mode: forwards;
}

.content-area {
	animation: fadeInUp 1.2s ease 0.4s forwards;
	opacity: 0;
	animation-fill-mode: forwards;
}

.intro.partner--0{
	background-image: url(../img/bg-partner-1a.jpg);
}
.intro-partner .intro__content {
    position: absolute;
    left: auto;
    right: 10vw;
    transform: translate(0%, -50%);
    top: 50%;
    z-index: 3;
    /* width: 562px; */
    width: 490px;

}
.intro__content h1{
    font-size: 48px;
    color: #fff;
    font-weight: 400;
}
.intro-partner .content-description {
    /* font-size: 16px; */
    max-width: 100%;
}
.intro-partner .brand-section {
    text-align: left;
    max-width: 100%;
}
.partner--1{
	background-image: url(../img/bg-partner-2a.jpg);
}
.partner--2{
	background-image: url(../img/bg-partner-3.jpg);
}
.partner--3{
	background-image: url(../img/bg-partner-4.jpg);
	background-image: url(../img/sky-large.jpg);
}
.partner--4{
	
}

/* Video Background Container */
.video-background {
	   position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;

}

.video-background video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

/* Optional overlay to darken video for better text readability */
.video-background::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
}

/* Video Controls */
.video-controls {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 100;
}

.control-button {
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border: 0px solid rgba(255, 255, 255, 0.3);
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.2rem;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: .2;
}
.control-button  i{
	font-size: 25px;
	line-height: 1;
}
.control-button:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.5);
	opacity: 1;
}

/* Fallback for browsers that don't support video */
.video-background .fallback-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: none;
}
.col__content-txt.w-100{
	max-width: unset;
}
 .con {
margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    font-size: 16px;
    list-style: none;
    font-weight: 400;
	padding-left: 0;
}
.con li {
    width: 48%;
    min-height: 0.54rem;
    display: flex;
    align-items: baseline;
	margin-bottom: 14px;
}
.con li span, 
.requirement ul li .wordCon div span {
width: 6px;
    height: 6px;
    background-color: #fff;
    margin-right: 10px;
    transform: translateY(-2px);
}

.slide-container {
	/* min-height: 100vh; */
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

.slide-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
	display: none;
}

.slide-content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1400px;
	padding: 40px;
}

.tab-navigation {
	/* position: absolute; */
	/* top: 40px; */
	/* left: 50%; */
	/* transform: translateX(-50%); */
	/* z-index: 10; */
}
.nav-pills{
	
}
.nav-pills .nav-link {
    color: #f39c12;
    background: transparent;
    padding: 12px 20px;
    margin: 0 10px;
    border-radius: 0;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 18px;
	position: relative;

}
.nav-pills .nav-link::before {
	content: '♦';
	content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    /* background-color: var(--color-orange); */
    background-color: #f39c12;
    display: inline-block;
    margin-right: 0;
    left: 0;
    transition: all 0.3s ease;
    transform: translateY(10px) rotate(45deg);
	opacity: 0;
}
.nav-pills .nav-link.active {
	background: transparent;
	color: #fff;
	border-color: #f39c12;
	
}
.nav-pills .nav-link.active::before{
	opacity: 1;
}
.nav-pills .nav-link:hover {
	/* background: rgba(255, 255, 255, 0.1); */
	/* color: #f39c12; */
}
.nav-pills .nav-link:hover::before{
	opacity: 1;
}
.tab-content-wrapper{
	display: flex;
	/* align-items: center; */
	gap: 60px;
	margin-top: 30px;
}

.text-content {
	/* flex: 1; */
	color: #fff;
	text-align: left;
}

.text-content h2 {
	font-size: 2.5rem;
	margin-bottom: 40px;
	font-weight: 300;
}

.text-content h2 .highlight {
	color: #f39c12;
	font-weight: 600;
}

.text-content ul {
	list-style: none;
	padding: 0;
}

.text-content li {
	padding: 15px 0;
	padding-left: 26px;
	position: relative;
	font-size: 16px;
	line-height: 1.6;
	opacity: 0;
	animation: fadeInUp 0.6s ease forwards;
}

.text-content li:nth-child(1) { animation-delay: 0.1s; }
.text-content li:nth-child(2) { animation-delay: 0.2s; }
.text-content li:nth-child(3) { animation-delay: 0.3s; }
.text-content li:nth-child(4) { animation-delay: 0.4s; }
.text-content li:nth-child(5) { animation-delay: 0.5s; }

.text-content li::before {
	content: '♦';
	content: '';
	position: absolute;
	width: 6px;
	height: 6px;
	/* background-color: var(--color-orange); */
	background-color: #fff;
	display: inline-block;
	margin-right: 0;
	left: 0;
	transition: all 0.3s ease;
	transform: translateY(9px) rotate(45deg);
}

.image-content {
	flex: 1;
	position: relative;
}

.showroom-image {
	/* width: 100%; */
    /* height: auto; */
    width: auto;
    max-width: 100%;
    height: 100%;
    /* border-radius: 8px; */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.3s;
    object-fit: cover;
}

.slide-indicators {
position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.indicator {
	width: 40px;
	height: 3px;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
}

.indicator.active {
	background: #f39c12;
}

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

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.box-email{
	padding: 10px 25px;
	border-radius: 4px;
	border: 1px solid #FFF;
	background: rgba(255, 255, 255, 0.30);
	color: var(--color-default);
	text-align: center;
	font-weight: 400;
}
.email-name{
	color: #04182F;
	margin-bottom: 10px;
	font-weight: 500;
}
.partner--3 .col__content-title .line__inner{
	font-size: 40px;
}
.link-arrow{
	color: var(--color-default);
	display: flex;
	
	align-items: center;
	/* justify-content: center; */
	text-decoration: none;
	line-height: 16px;
	    font-weight: 400;

}

.link-arrow:after{
	content: url(../img/arrow-discover.svg);
	height: 16px;
    width: 16px;
    display: inline-flex;
		transition: all .25s ease;
}
.link-arrow:hover:after{
	    transform: translateX(5px);
}
/*  ========================================================================== 
    Footer
    ========================================================================== */
.footer {
}

.footer__link {
}

.footer__link-top {
  position: absolute;
  left: 50%;
  bottom: 100px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: var(--dark);
  font-size: 18px;
  color: white;
  text-decoration: none;
  font-family: "Cinzel", serif;
}

.footer__link-top-line {
  position: absolute;
  top: -50px;
  left: 50%;
  width: 1px;
  height: 50px;
  background: var(--dark);
}

.footer__copyright {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
}
.section-contact-us{
    /* height: 100vh; */
    /* background: url(../img/contact-us-banner.jpg) no-repeat; */
    /* background-size: cover; */
}


.section-contact-us-bottom{
    height: 100vh;
    background: url(../img/contact-dealer-bg.jpg) no-repeat;
    background-size: cover;
}

.form-check p {
    margin: 0;
    display: flex;
    align-items: flex-start;
}
.form-check .wpcf7-form-control-wrap {
    display: flex;
    align-items: flex-start;
    width: auto;
    border: none;
    outline: none;
	        
}
.form-check.form-check-exclusive .wpcf7-form-control-wrap{
	flex: 0 0 auto;
        width: 100%;
}
.form-checkc .wpcf7-form-control-wrap {
    display: flex;
    align-items: flex-start;
    width: 100%;
    border: none;
    outline: none;
}


.form-check .wpcf7-checkbox,
.form-check .wpcf7-acceptance {
    display: flex;
    align-items: flex-start;
    width: 100%;
    border: none;
    outline: none;
	background: transparent;
}
.form-check .wpcf7-list-item {
    display: flex;
    align-items: flex-start;
    margin: 0;
    width: 100%;
    border: none;
    outline: none;
}
.form-check .wpcf7-list-item input[type="checkbox"],
.form-check input[type="checkbox"] {
margin-right: 8px;
    margin-top: 3px;
    flex-shrink: 0;
    border: 1px solid #4E5054;
    width: 14px;
    height: 14px;
    border-radius: 0.25em;
}
.form-check .wpcf7-list-item-label,
.form-check .form-check-label {
    line-height: 1.5;
    cursor: pointer;
    flex: 1;
    word-wrap: break-word;
    border: none;
    outline: none;
    margin-left: 0;
	font-size: 13px;
}
.wpcf7-not-valid-tip {
    font-size: 13px;
}
.form-check .wpcf7-list-item input[type="checkbox"], .form-check input[type="checkbox"] {
    margin-right: 8px;
    margin-top: 3px;
    flex-shrink: 0;
    border: 1px solid #4E5054;
    width: 14px;
    height: 14px;
    border-radius: 0.25em;
}

.form-check-input input[type="checkbox"]:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.form-check-input input[type="checkbox"]:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}
.form-check-input[type=checkbox] {
    border-radius: .25em;
}
.form-check .form-check-input {
    float: left;
    margin-left: -1.5em;
}
.form-check-input input[type="checkbox"] {
    --bs-form-check-bg: var(--bs-body-bg);
    flex-shrink: 0;
    width: 1em;
    height: 1em;
    margin-top: .25em;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-form-check-bg);
    background-image: var(--bs-form-check-bg-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: var(--bs-border-width) solid var(--bs-border-color);
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    print-color-adjust: exact;
}
.form-container {
	padding: 40px;
	border-radius: 8px;
	margin: 0 auto;
}
.contact-form .form-label {
	font-size: 14px;
	color: #666;
	margin-bottom: 8px;
}
.contact-form .form-control,
.form-control,
 .form-select {
	background-color: rgba(3, 6, 11, 0.05);
	border: none;
	padding: 12px;
	font-size: 14px;
	color: #333;
	border-bottom:1px solid #B3B4B5;
	border-radius:0px;

}
.contact-form .form-control:focus, 
.form-control:focus, 
.form-select:focus {
	background-color: rgba(3, 6, 11, 0.05);
	box-shadow: none;
	border: none;
		border-bottom:1px solid #EB9201;
}
.wpcf7-form label:not(.form-check-label){
	    display: inline-block;
    letter-spacing: 0.84px;
    margin-bottom: 8px;
    font-size: 13px;
}

.contact-form  .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10'%3E%3Cpath d='M1 1l7 7 7-7' stroke='%23EB9201' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}




.contact-form textarea.form-control {
	min-height: 120px;
	resize: vertical;
}
.contact-form .form-check-label {
	font-size: 13px;
	color: #666;
}
.contact-form .btn-submit {
	background-color: transparent;
	border: 0px;
	color: #04182F;

	text-transform: uppercase;
	font-weight: 400;
line-height: 16px;
	transition: all 0.3s;
	  position: relative; /* penting */
}


.contact-form .btn-submit::after {
  content: "";
  background: url("../img/ci.svg") no-repeat center;
  width: 123px;   /* adjust ikut size svg */
  height: 11px;   /* adjust ikut height svg */
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.contact-form .btn-submit:hover {
	background-color: transparent;
	color: #EB9201;
}
.box-form{
	padding: 30px 30px;
	background: rgb(255 255 255 / 60%);
}
.back-to-top {
    position: fixed;
    bottom: calc( 0px + 2rem);
    right: 2rem;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(12px);
    /* transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s; */
	transition: all .25s ease;
    z-index: 100;
    color: #EB9201;
    font-size: 13px;
    text-transform: uppercase;
}
.back-to-top img{
	margin-bottom: 10px;
	transition: all .25s ease;
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover img{
		transform: translateY(-5px);

}
/* Responsive adjustments */
@media (max-width: 768px) {
.logo {
	max-width: 350px;
}

.tagline {
	font-size: 1.5rem;
	margin-bottom: 2rem;
}

.cta-button {
	padding: 0.875rem 0.875rem;
	font-size: 0.85rem;
}

.social-footer {
	gap: 1.5rem;
	bottom: 1.5rem;
}
.logo-container {
    margin-bottom: 48px;
}
.eye {
	right: 20%;
	bottom: 56%;
	width: 90px;
}
.eye.eye-left {
	left: 20%;
}

.triangle-left,
.triangle-right {
    height: 70px;
}
.section-roi{
	background: url(../img/footer-3-m.png) no-repeat;
	background-size: contain;
	background-position-y: bottom;
	        /* background-size: 150%; */
}
.footer-bottom__left {
    flex-wrap: wrap;
	order: 1;
	text-align: center;
        justify-content: center;
}
.footer-links {
    order: 0;
	        justify-content: center;
}
.footer-bottom__right.footer-links {
	margin: 0 auto 24px;
}
.copyright {
    padding-right: 0px;
    margin-right: 0;
    border-right: 0px solid #DEDEDE;
	order: 1;
}
.footer-bottom__left .footer-links {
	order: 0;
	margin-bottom: 6px;
}
.footer-bottom {
    padding-top: 20px;
    padding-bottom: 10px;
	        row-gap: 12px;
        justify-content: center;
}
.col__content {  
    /* left: 0; */
    /* top: 50%; */
    /* transform: translateY(-50%); */
    /* max-width: 80%; */
    /* padding: 10px 30px; */
	
	left: 0;
	top: auto;
	bottom: 25px;
	transform: none;
	max-width: 100%;
	padding: 10px 20px;
}
.col__content_right {
    /* left: auto; */
    /* right: 0; */
    /* text-align: right; */
	
	left: 0;
	right: auto;
	text-align: left;
} 
.line__inner {
    font-size: 22px;
}
.slide-intro .line__inner {
	font-size: 30px;
}
.brand-section {
    text-align: center;
}
.slide--1 {
    /* background-position-x: 56%; */
}
.slide--2 {
    /* background-position-x: 37%; */
}
.slide--3 {
    /* background-position-x: 68%; */
}
.slide--4 {
    /* background-position-x: 35%; */
}
.slide--5 {
    /* background-position-x: 99%; */
}
.lang-selector {
    gap: 0px;
}
.intro {
    /* background-position-x: 65%; */
}
.content-wrapper {
	flex-direction: column;
	gap: 40px;
}

.text-content h2 {
	font-size: 2rem;
}

.nav-pills .nav-link {

}
.intro-partner .intro__content {

    width: 80%;
}
.intro__content h1 {
	font-size: 42px;
}
.tab-content-wrapper {
    gap: 25px;
}
 .cookie-table {
	overflow-x: auto;
}

.cookie-table table {
	min-width: 800px;
}

.cookie-table thead th,
.cookie-table tbody td {
	padding: 15px;
	font-size: 0.9rem;
}
 .data-table {
	overflow-x: auto;
}

.data-table table {
	min-width: 700px;
}

.data-table thead th,
.data-table tbody td {
	padding: 15px;
	font-size: 0.9rem;
}

}/* END MOBILE  768px */

@media (max-width: 480px) {
	.logo {
		max-width: 280px;
	}

	.social-footer {
		flex-wrap: wrap;
		gap: 1rem;
	}
}

/* Subtle parallax effect on scroll */
@media (prefers-reduced-motion: no-preference) {
	.hero-section {
		background-attachment: fixed;
	}
}

@media (min-width: 1601px){
.container{
	max-width: 1320px;
}
.col__content {
	max-width: 770px;
}
.line__inner {
    font-size: 32px;
}
.col__content-title.big .line__inner {
    font-size: 58px;
}
.content-description {
    font-size: 18px;
}
}/* 1601 */

@media screen and (min-width: 1300px) and (max-width: 1599px) {
.col__content {
	left: 6vw;
	max-width: 590px;
}
.col__content_right {
    left: auto;
    right: 6vw;
    text-align: right;
}
.text-gradient, .line__inner {
    font-size: 28px;
}
}


@media screen and (min-width: 1201px) and (max-width: 1299px) {
.col__content {
	left: 5vw;
	max-width: 576px;
}
.col__content_right {
    left: auto;
    right: 5vw;
    text-align: right;
}
.text-gradient, .line__inner {
    font-size: 28px;
}
}