/* 
Theme Name: Tabu
Description: -
Author: AW Bali Digital
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
html {
    scroll-behavior: smooth;
}

body{
    max-width: 2000px !important;
    margin: auto !important;
}

/* =============== Light Box =============== */
.lightbox-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.95);
	z-index: 99999;
	cursor: pointer;
	animation: fadeIn 0.3s ease;
}

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

.lightbox-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 90%;
	max-height: 90vh;
	cursor: default;
	animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
	from { transform: translate(-50%, -50%) scale(0.8); }
	to { transform: translate(-50%, -50%) scale(1); }
}

.lightbox-content img {
	width: 100%;
	height: auto;
	max-height: 90vh;
	object-fit: contain;
	display: block;
}

.lightbox-close {
	position: absolute;
	top: 20px;
	right: 40px;
	color: #fff;
	font-size: 50px;
	font-weight: 300;
	cursor: pointer;
	z-index: 100000;
	transition: all 0.3s;
	line-height: 1;
	text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.lightbox-close:hover {
	color: #f44336;
}

.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	font-size: 30px;
	font-weight: 300;
	cursor: pointer;
	padding: 20px;
	user-select: none;
	transition: all 0.3s;
	z-index: 100000;
	background: rgba(0,0,0,0.3);
	border-radius: 5px;
	line-height: 1;
}

.lightbox-nav:hover {
	background: rgba(0,0,0,0.6);
	transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
	left: 20px;
}

.lightbox-next {
	right: 20px;
}

.lightbox-counter {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	background-color: rgba(0, 0, 0, 0.7);
	padding: 12px 25px;
	border-radius: 25px;
	z-index: 100000;
	backdrop-filter: blur(10px);
}

.lightbox-loading {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 18px;
}

/* =============== End Light Box =============== */

.about-horizontal-gallery a{
	cursor: default !important;
}

h1, h2, h3, h4, h5, h6, p{
	margin: 0 !important;
}

.u-mark {
  position: relative;
  display: inline-block;
}

.nav-logo, .nav-logo a {
	line-height: 0;
}

.u-mark::after {
  content: "";
  position: absolute;
  top: 7px; 
  left: 6.2px;
  width: 38%;
  height: 1.5px;
  background: #000;
  transform: rotate(-10deg);
}

.u-mark-text {
	position: relative;
  	display: inline-block;
}

.u-mark-text::after {
	content: "";
  	position: absolute;
  	top: 6px; 
  	left: 5.5px;
  	width: 38%;
  	height: 1.2px;
  	background: #000;
  	transform: rotate(-10deg);
}


/* =============== Navbar ============== */
.main-navbar{
    background: transparent;
	transition: background-color 0.25s;
    background-image: linear-gradient(180deg, #363636 0%, #00000000 100%)
}

.main-navbar.nav-scrolled {
	background-color: #fff !important;
	background-image: none;
	box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.main-navbar.nav-scrolled .elementor-item.elementor-item-active{
	color: #8E3238 !important;
}

.main-navbar.nav-scrolled .elementor-item:after{
	background-color: #8E3238 !important;
}

.main-navbar.nav-scrolled a:hover{
	color: #8E3238 !important;
}

.main-navbar a:hover{
	color: #fff !important;
}

.main-navbar .elementor-item:after{
	background-color: #fff !important;
}

.main-navbar .elementor-item.elementor-item-active{
	color: #fff !important;
}

.main-navbar li.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-572{
	margin-left: 160px;
}

/* 	Sidebar menu */
.elementor-nav-menu--dropdown.elementor-nav-menu__container {
	position: fixed !important;
	top: 0 !important;
	right: -100% !important;
	left: auto !important;
	width: 100% !important;
	height: 100vh !important;
	background: #ffffff !important;
	z-index: 9998 !important;
	overflow-y: auto !important;
	transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
	padding-top: 0px !important;
	margin-top: 72px !important;
}
            
.elementor-nav-menu--dropdown.elementor-nav-menu__container.menu-active {
	transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
	right: 0 !important;
}
            
.elementor-nav-menu--dropdown .elementor-nav-menu {
	padding: 20px !important;
	display: block !important;
}
            
.elementor-nav-menu--dropdown .menu-item {
	margin-bottom: 0 !important;
	border-bottom: 1px solid #f0f0f0 !important;
	opacity: 0;
	transform: translateX(30px);
	animation: slideInMenuItem 0.3s ease forwards;
}
            
.elementor-nav-menu--dropdown.menu-active .menu-item:nth-child(1) {
	animation-delay: 0.1s;
}
.elementor-nav-menu--dropdown.menu-active .menu-item:nth-child(2) {
	animation-delay: 0.15s;
}
.elementor-nav-menu--dropdown.menu-active .menu-item:nth-child(3) {
	animation-delay: 0.2s;
}
.elementor-nav-menu--dropdown.menu-active .menu-item:nth-child(4) {
	animation-delay: 0.25s;
}
.elementor-nav-menu--dropdown.menu-active .menu-item:nth-child(5) {
	animation-delay: 0.3s;
}
.elementor-nav-menu--dropdown.menu-active .menu-item:nth-child(6) {
	animation-delay: 0.35s;
}
.elementor-nav-menu--dropdown.menu-active .menu-item:nth-child(7) {
	animation-delay: 0.4s;
}
.elementor-nav-menu--dropdown.menu-active .menu-item:nth-child(8) {
	animation-delay: 0.45s;
}
            
@keyframes slideInMenuItem {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
            
.elementor-nav-menu--dropdown .menu-item a {
	padding: 18px 0 !important;
	display: block !important;
	color: #000000 !important;
	font-size: 18px !important;
	font-weight: 500 !important;
	transition: all 0.3s ease !important;
}
            
.elementor-nav-menu--dropdown .menu-item a:hover {
	color: #8E3238 !important;
	padding-left: 10px !important;
}
            
.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9997;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease;
	backdrop-filter: blur(2px);
}
            
.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}
            
.elementor-menu-toggle {
	z-index: 9999 !important;
	position: relative !important;
}
            
body.menu-open {
	overflow: hidden !important;
}
            
.elementor-location-header {
	z-index: 9999 !important;
}

.elementor-nav-menu--dropdown.force-hold {
	right: 0 !important;
	transition: right 0s !important;
}

.elementor-nav-menu--dropdown .elementor-item.elementor-item-active, .elementor-nav-menu--dropdown .elementor-item.highlighted, .elementor-nav-menu--dropdown .elementor-item:focus, .elementor-nav-menu--dropdown .elementor-item:hover, .elementor-sub-item.elementor-item-active, .elementor-sub-item.highlighted, .elementor-sub-item:focus, .elementor-sub-item:hover{
	background: none;
}

/* =============== Main Navbar Style 2 =============== */
.main-navbar.nostyle{
    background: #fff;
	transition: background-color 0.25s;
}

.main-navbar.nostyle.nav-scrolled {
	background-color: #fff !important;
	background-image: none;
	box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.main-navbar.nostyle .elementor-item:after{
	background-color: #8E3238 !important;
}

.main-navbar.nostyle a:hover{
	color: #8E3238 !important;
}

.main-navbar.nostyle a{
	color: #000 !important;
}

.main-navbar.nostyle .elementor-item.elementor-item-active {
	color: #8E3238 !important;
}

.main-navbar.nostyle li.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-572{
	margin-left: 160px;
}

/* =============== Home =============== */ 

.player-controls-content{
	visibility: none;
}

.ytp-gradient-top{
	display: none;
}

.home-carousel .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
	max-width: fit-content; 
    bottom: 40px;
    text-align: right;
    position: absolute;
    max-height: fit-content;
    left: 70%;
}

.home-carousel img.swiper-slide-image{
	height: 500px;
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 0px 20px 20px 0px !important;
	display: block;
}

.home-carousel .swiper-pagination-bullet {
  	position: relative;
  	width: 8px;
  	height: 8px;
  	background: #fff;
  	opacity: 0.5;
}

.home-carousel .swiper-pagination-bullet-active::after {
  	content: "";
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	width: 30px;
  	height: 30px;
  	border: 1px solid #fff;
  	border-radius: 50%;
  	transform: translate(-50%, -50%);
}

.home-carousel .swiper-pagination-bullet-active {
  	opacity: 1;
}

.home-carousel .swiper-slide:hover img{
    transform: scale(1.1);
}

.home-carousel .swiper-slide img{
    transition: 0.3s linear all;
}

.home-carousel figure.swiper-slide-inner{
	overflow: hidden;
	border-radius: 0px 20px 20px 0px;
}

.home-carousel .swiper {
  overflow: hidden;
}

.home-carousel .swiper-slide.swiper-slide-active{
	margin-right: 1px;
}

.home-carousel .swiper-slide {
  overflow: hidden;
  margin-right: 0px;
}

.home-content-image .cursor-discover {
	overflow: hidden;
	position: relative;
}

.home-content-image .cursor-discover img {
	height: 550px;
	width: 100%;
	object-fit: cover;
	transition: transform 0.5s linear;
}
/* 
.home-content-image div:nth-child(2) a:nth-child(1) img{
	object-fit: cover;
	width: 100%;
} */

.home-content-image .cursor-discover:nth-child(1) img {
	object-position: bottom center;
}

.home-content-image .cursor-discover::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.25);
	z-index: 2;
	pointer-events: none;
}

.home-content-image .cursor-discover:hover img {
	transform: scale(1.1);
}

.home-content-image .elementor-widget-heading{
	z-index: 3;
}

.discover-more:hover .elementor-icon-box-content h5{
	color: #8E3238 !important;
	text-decoration: underline;
}

.discover-more:hover .elementor-icon-box-wrapper svg {
	transform: rotate(90deg);
	fill: #8E3238
}

.discover-more .elementor-icon-box-wrapper svg {
	transform: rotate(30deg);
	transition: 0.1s linear all;
}

.wcu-box:hover .elementor-icon-box-wrapper .elementor-icon-box-icon a svg
{
	transform: rotate(90deg);
	color: #8E3238;
}

.wcu-box:hover .elementor-icon-box-wrapper .elementor-icon-box-title{
	color: #8E3238;
	text-decoration: underline;
}

.wcu-box .elementor-icon-box-wrapper .elementor-icon-box-icon a svg{
	transition: 0.1s linear all;
	transform: rotate(30deg);
}

.home-discover-section .home-discover-section-content .elementor-icon-box-wrapper svg {
	transform: rotate(30deg);
	transition: 0.1s linear all;
}

.home-discover-section .home-discover-section-content:hover .elementor-icon-box-wrapper svg {
	transform: rotate(90deg);
	color: #8E3238;
}

.home-discover-section-content:hover .elementor-icon-box-wrapper .elementor-icon-box-content span {
	text-decoration: underline;
	color: #8E3238;
}

.home-discover-section-content .elementor-widget-image {
    overflow: hidden;
    border-radius: 8px;
}

.home-discover-section-content .elementor-widget-image img {
    transition: transform 0.5s ease;
    display: block;
    width: 100%;
    height: auto;
}

.home-discover-section-content:hover .elementor-widget-image img {
    transform: scale(1.1);
}

.home-discover-section-content .elementor-widget-image:hover img {
    transform: scale(1.1);
}

.home-discover-section-content {
    transition: all 0.3s ease;
}

.text-editor-custom svg {
	width: 46px !important;
	height: 28px !important;
}

.main-video-player {
	position: relative;
	overflow: hidden;
}

.main-video-player video {
	will-change: transform;
}

.main-video-player .elementor-widget-text-editor,
.main-video-player .elementor-widget-heading {
	will-change: transform, opacity;
	transition: opacity 0.2s;
}

.home-whatsup a.cursor-discover::after{
	content: "";
  	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / 8%);
	z-index: 2;
	pointer-events: none;
}

.home-whatsup div.e-con-full.e-flex.e-con.e-child{
	z-index: 10;
}

.home-post-grid article {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 353px !important;
  max-height: 353px !important;
  overflow: hidden;
}

.home-post-grid a {
  margin-bottom: 0 !important;
}

.home-post-grid .elementor-posts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px !important;
}

.home-post-grid .elementor-post:nth-child(1) {
  grid-column: span 3;
}

.home-post-grid .elementor-post:nth-child(2) {
  grid-column: span 2;
}

.home-post-grid .elementor-post:nth-child(3) {
  grid-column: span 2;
}

.home-post-grid .elementor-post:nth-child(4) {
  grid-column: span 3;
}

/* Overlay */
/* .home-post-grid .elementor-post::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
} */

.home-post-grid .elementor-post__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}

.home-post-grid .elementor-post__text {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: auto;
  top: auto;
  width: 60%;
  z-index: 2;
  display: block;
  padding: 0;
}

.home-post-grid .elementor-post__thumbnail__link, .home-post-grid .elementor-post__thumbnail{
	max-height: 100% !important;
}



/* ================ About Us =============== */
div#e-n-tab-content-1343513161{
	padding-bottom: 0px;
}

.tab-change .e-n-tabs-content {
	position: relative;
	min-height: 150px;
}

.tab-change .e-n-tabs-content > div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
}

.tab-change .e-n-tabs-content > div.e-active {
	position: relative;
	opacity: 1;
	visibility: visible;
}

/* ================ Discover More Mouse =============== */
.mouse-circle {
	position: fixed;
	left: 0;
	top: 0;
	width: 40px;
	height: 40px;
	border: 2px solid #fff;
	border-radius: 50%;
	pointer-events: none;
	transform: translate(-50%, -50%);
	z-index: 999;
	opacity: 0;
	transition: opacity 0.2s;
}

.mouse-circle::after {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	background: var(--dot-color, #fff);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.circle-text {
	position: absolute;
	left: 55px;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	font-size: 16px;
	opacity: 0;
	white-space: nowrap;
	transition: opacity 0.3s;
}

.mouse-circle.show-text .circle-text {
	opacity: 1;
}

/* =============== Projects =============== */
.projects-carousel .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
	max-width: fit-content; 
    bottom: 70px;
    text-align: right;
    position: absolute;
    max-height: fit-content;
    left: 79%;
}

.projects-carousel img.swiper-slide-image{
	height: 600px;
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	cursor: pointer;
}

.projects-carousel .swiper-pagination-bullet {
  	position: relative;
  	width: 8px;
  	height: 8px;
  	background: #fff;
  	opacity: 0.5;
}

.projects-carousel .swiper-pagination-bullet-active::after {
  	content: "";
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	width: 30px;
  	height: 30px;
  	border: 1px solid #fff;
  	border-radius: 50%;
  	transform: translate(-50%, -50%);
}

.projects-carousel .swiper-pagination-bullet-active {
  	opacity: 1;
}

.projects-carousel .swiper-slide:hover img{
    transform: scale(1.1);
}

.projects-carousel .swiper-slide img{
    transition: 0.3s linear all;
}

.projects-carousel figure.swiper-slide-inner{
	overflow: hidden;
}

.projects-carousel .swiper-pagination {
	pointer-events: none;
}

.projects-carousel .swiper-pagination-bullet {
	pointer-events: auto;
}

/* Projects detail */
.product-detail-projects img {
    object-fit: cover;
    height: 266px;
    aspect-ratio: 1 / 1;
}

.elementor-thumbnails-swiper .elementor-carousel-image{
	aspect-ratio: 3/2 !important;
	background-size: cover !important;
}

/*  Service */
.service-carousel .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
	max-width: fit-content; 
    bottom: 35px;
    text-align: right;
    position: absolute;
    max-height: fit-content;
    right: auto;
}

.service-carousel img.swiper-slide-image {
	height: 420px;
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 20px;
}

.service-carousel .swiper-pagination-bullet {
  	position: relative;
  	width: 8px;
  	height: 8px;
  	background: #fff;
  	opacity: 0.5;
}
.service-carousel .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
	display: flex;
	gap: 6px;
	align-items: center;
	justify-content: flex-end;
	bottom: 35px;
	right: 20px;
	left: auto;
	width: auto;
	max-width: none;
	position: absolute;
}

.service-carousel .swiper-pagination-bullet {
	position: relative;
	width: 8px;
	height: 8px;
	background: #fff;
	opacity: 0.5;
}

.service-carousel .swiper-pagination-bullet-active {
	opacity: 1;
}

.service-carousel .swiper-pagination-bullet-active::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 30px;
	border: 1px solid #fff;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.service-carousel .swiper-pagination-bullet-active::after {
  	content: "";
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	width: 30px;
  	height: 30px;
  	border: 1px solid #fff;
  	border-radius: 50%;
  	transform: translate(-50%, -50%);
}

.service-carousel .swiper-pagination-bullet-active {
  	opacity: 1;
}

/* final projects */
.final-projects-carousel .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
	max-width: fit-content; 
    bottom: 35px;
    text-align: right;
    position: absolute;
    max-height: fit-content;
    right: auto;
}

.final-projects-carousel img.swiper-slide-image{
	height: 600px;
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 20px;
}

.final-projects-carousel .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
	display: flex;
	gap: 6px;
	align-items: center;
	justify-content: flex-end;
	bottom: 70px;
	right: 20px;
	left: auto;
	width: auto;
	max-width: none;
	position: absolute;
}

.final-projects-carousel .swiper-pagination-bullet {
	position: relative;
	width: 8px;
	height: 8px;
	background: #fff;
	opacity: 0.5;
}

.final-projects-carousel .swiper-pagination-bullet-active {
	opacity: 1;
}

.final-projects-carousel .swiper-pagination-bullet-active::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 30px;
	border: 1px solid #fff;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.final-projects-carousel .swiper-pagination-bullet-active::after {
  	content: "";
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	width: 30px;
  	height: 30px;
  	border: 1px solid #fff;
  	border-radius: 50%;
  	transform: translate(-50%, -50%);
}

.final-projects-carousel .swiper-pagination-bullet-active {
  	opacity: 1;
}


/* service tab */
.service-tab .e-n-tabs-heading{
	border-bottom: 1px solid #000;
	margin-bottom: 40px;
	padding: 10px 0px 10px 0px;
}

/* detail Project form */
.project-form-carousel .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    max-width: fit-content;
    bottom: 75px;
    text-align: right;
    position: absolute;
    max-height: fit-content;
    left: 89%;
}

.project-form-carousel img.swiper-slide-image{
	height: 380px !important;
	width: 100% !important;
	aspect-ratio: 1/1 !important;
	object-fit: cover !important;
}

.elementor-element.elementor-element-2ff1d47.e-con-full.e-flex.e-con.e-child{
	height: 380px;
}

.project-form-carousel .swiper-pagination-bullet {
  	position: relative;
  	width: 8px;
  	height: 8px;
  	background: #fff;
  	opacity: 0.5;
}

.project-form-carousel .swiper-pagination-bullet-active::after {
  	content: "";
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	width: 30px;
  	height: 30px;
  	border: 1px solid #fff;
  	border-radius: 50%;
  	transform: translate(-50%, -50%);
}

.custom-form-style .e-form__buttons{
	display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
}

.custom-form-style .e-form__buttons button{
	max-width: 49%;
}

.project-form-carousel .swiper-pagination-bullet-active {
  	opacity: 1;
}

/* Hospitality project gallery */
.cursor-discover.hospitality-gallery {
  	position: relative;
}

/* hospitality gallery img size */
.cursor-discover.hospitality-gallery.img1 img{
	height:	;
	width: ;
}

.cursor-discover.hospitality-gallery.img2 img{
	height: ;
	width: ;
}

.cursor-discover.hospitality-gallery.img3 img{
	height: ;
	width: ;
}

.cursor-discover.hospitality-gallery.img4 img{
	height: ;
	width: ;
}

/* end hospitality gallery img size */

.cursor-discover.hospitality-gallery img {
  	display: block;
  	width: 100%;
  	height: 100%;
	object-fit: cover;
 	position: relative;
  	z-index: 1;
}

.cursor-discover.hospitality-gallery::after {
  	content: "";
  	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  	background: rgba(0,0,0,0.35); /* adjust darkness */
  	z-index: 2;
  	pointer-events: none;
}

.cursor-discover.hospitality-gallery .elementor-widget-heading {
  	z-index: 3;
}

/* project detail carousel */
.project-detail-carousel .swiper-slide .elementor-carousel-image {
  position: relative;
}

.project-detail-carousel .swiper-slide:not(.swiper-slide-active) .elementor-carousel-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 2;
  pointer-events: none;
}

.project-detail-carousel .swiper-slide .elementor-carousel-image {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.project-detail-carousel .elementor-carousel-image.swiper-lazy.swiper-lazy-loaded
{
	background-color: #f6f6f6;
}

.project-detail-carousel .elementor-carousel-image{
	background-size: contain;
}

.project-detail-carousel .elementor-swiper-button {
  width: 48px;
  height: 48px;
  border: 2px solid #000;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-detail-carousel .elementor-swiper-button svg {
  width: 20px;
  height: 20px;
  fill: #000 !important;
}

.project-detail-carousel .elementor-swiper-button:hover {
  background: rgba(255,255,255,0.2);
  border-color: #000;
}

.project-detail-carousel .elementor-swiper-button {
  z-index: 20;
}

/*================ Contact Us ================*/
.contact-address ul.elementor-icon-list-items a:first-child{
	display: flex !important;
	align-items: start !important;
}

.contact-address .elementor-icon-list-items a:first-child .elementor-icon-list-icon {
  margin-top: 5px;
}

/* =============== Materials =============== */
.materials-group-images img{
	height: 277px;
	width: 100%;
}

.materials-detail-container {
	position: relative;
	overflow: hidden;
}

.materials-detail-container .materials-detail-content {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transform: translateY(20px);
/* 	transition: max-height 0.7s linear, opacity 0.7s linear, transform 0.7s linear; */
	transition: 0.7s linear all;
}

.materials-detail-container:hover .materials-detail-content {
	max-height: 500px;
	opacity: 1;
	transform: translateY(0);
}

.materials-detail-container img {
	transition: transform 0.4s linear;
	width: 100%;
	height: 607px;
}

.materials-detail-container.rotate img{
	transition: transform 0.4s linear;
	transform: scalex(-1) !important;
	width: 100%;
	height: 607px;
}

.materials-detail-container:hover img {
/* 	transform: scale(-1.1); */
}

.materials-detail-container::after {
	content: "";
	position: absolute;
	inset: 0;
	background: #F0ECE5;
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.materials-detail-container:hover::after {
	opacity: 0.9;
}

.materials-detail-container:hover .materials-detail-container-text {
	z-index: 10;
}

.materials-detail-container.is-active .materials-detail-content{
	max-height: 500px;
	opacity: 1;
	transform: translateY(0);
}

.materials-detail-container.is-active::after{
	opacity: 0.9;
}

.materials-detail-container.is-active img{
/* 	transform: scale(-1.05); */
}

.materials-detail-container.is-closed .materials-detail-content{
	max-height: 0;
	opacity: 0;
	transform: translateY(20px);
	pointer-events: none;
}

.materials-detail-container.is-closed::after{
	opacity: 0;
}

.materials-detail-container.is-closed img{
	transform: scale(1);
}

.materials-detail-container.is-closed{
	z-index: 1;
}

.materials-carousel-wood a {
	position: relative;
	display: block;
}

.materials-carousel-wood a::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.35);
	pointer-events: none;
}

.materials-carousel-wood .elementor-swiper-button {
  	width: 48px !important;
  	height: 48px !important;
  	border: 2px solid #fff !important;
  	border-radius: 50% !important;
  	background: transparent !important;
  	display: flex !important;
  	align-items: center !important;
  	justify-content: center !important;
}

.materials-carousel-wood .elementor-swiper-button svg {
  	width: 20px !important;
  	height: 20px !important;
  	fill: #fff !important;
}

.materials-carousel-wood .elementor-swiper-button:hover {
  	background: rgba(255,255,255,0.2) !important;
  	border-color: #fff !important;
}

.materials-carousel-wood .elementor-swiper-button {
  	z-index: 20 !important;
}

.materials-product-carousel img{
	height: 222px !important;
	width: 100% !important;
	object-fit: cover !important;
}

.materials-carousel-wood a.is-active h3 {
	text-decoration: underline;
}

.materials-carousel-wood a {
	overflow: hidden;
}

.materials-carousel-wood a img {
	transition: transform 0.4s ease;
}

.materials-carousel-wood a::after {
	transition: background 0.3s ease;
}

.materials-carousel-wood a h3 {
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.materials-carousel-wood a:hover img {
	transform: scale(1.08);
}

.materials-carousel-wood a:hover::after {
	background: rgba(0,0,0,0.55);
}

.materials-carousel-wood a:hover h3 {
	transform: translateY(-6px);
}

.materials-carousel-wood a:hover {
	cursor: pointer;
}


/* ================ sustainability ================ */
.sustainability-tab .e-n-tabs-heading{
	border-bottom: 1px solid #000;
	padding-bottom: 10px;
}

.sustainability-tab img{
	height: 320px;
	width: 100%;
}

.sustainability-tab .e-n-tabs-content{
	padding-top: 40px;
}

/* ======================= News ============================ */
.news-list-content .elementor-post__card {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.news-list-content .elementor-post__text {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.news-list-content .elementor-post__title {
	min-height: 56px;
}

.news-list-content .elementor-post__excerpt {
	margin-top: auto;
}


