/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
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
*/

/*
 * Global CSS
 * */

body{
	--white-color: var(--e-global-color-primary);
}

.br-desktop-none br{
    display: none;
}

figure{
    line-height: 0;
}

.elementor-widget-theme-post-excerpt p:last-child,
.elementor-widget-text-editor p:last-child{
    margin-bottom: 0;
}

.elementor-widget-button .elementor-button{
    transition: all 0.3s ease-in-out;
}

.elementor-widget-icon .elementor-icon-wrapper,
.elementor-widget-icon-box .elementor-icon-box-icon{
    line-height: 0;
}

.icon-height-size.elementor-widget-icon .elementor-icon-wrapper .elementor-icon svg{
    height: auto;
}

.elementor-widget-icon-box .elementor-icon-box-title,
.elementor-widget-image-box .elementor-image-box-title{
    margin-top: 0;
}

.icon-box-icon-center.elementor-widget-icon-box .elementor-icon-box-wrapper{
    align-items: center;
}

/* Button CSS */

.elementor-widget-button .elementor-button{
	position: relative;
	z-index: 1;
}

.elementor-widget-button .elementor-button:before{
	content: "";
	position: absolute;
	top: 0;
	left: auto;
	right: 0;
	bottom: 0;
	background: var(--white-color);
	width: 0%;
	height: 100%;
	transition: all 0.4s ease-in-out;
	z-index: -1; 
}

.btn-white.elementor-widget-button .elementor-button:before{
	background: var(--e-global-color-secondary);	
}

.elementor-widget-button .elementor-button:hover:before,
.elementor-widget-button .elementor-button:focus:before{
	right: auto;
	left: 0;
	width: 100%;
}

.elementor-widget-button .elementor-button .elementor-button-content-wrapper{
	align-items: center;
}

.elementor-widget-button .elementor-button .elementor-button-content-wrapper .elementor-button-icon{
	line-height: 0;
}

.elementor-widget-button .elementor-button .elementor-button-icon svg{
	width: 12px;
	height: 12px;
	transition: all 0.4s ease-in-out;		
}

.elementor-widget-button .elementor-button:hover .elementor-button-icon svg,
.elementor-widget-button .elementor-button:focus .elementor-button-icon svg{
	transform: rotate(45deg);
}

.elementor-widget-button .elementor-button .elementor-button-icon svg path{
	transition: all 0.3s ease-in-out;
}

.elementor-widget-button .elementor-button:hover .elementor-button-icon svg path{}

.dark-btn.elementor-widget-button .elementor-button:hover .elementor-button-icon svg path{}

.elementor-widget-button .elementor-button .elementor-button-content-wrapper .elementor-button-text{
	border-right: 1px solid var(--white-color);
	padding-right: 10px;
	transition: all 0.4s ease-in-out;
}

.btn-white.elementor-widget-button .elementor-button .elementor-button-content-wrapper .elementor-button-text{
	border-right: 1px solid var(--e-global-color-secondary);
}

.elementor-widget-button .elementor-button:hover .elementor-button-content-wrapper .elementor-button-text,
.elementor-widget-button .elementor-button:focus .elementor-button-content-wrapper .elementor-button-text{
	color: var(--e-global-color-secondary);
	border-right: 1px solid var(--e-global-color-secondary);
}

.btn-white.elementor-widget-button .elementor-button:hover .elementor-button-content-wrapper .elementor-button-text,
.btn-white.elementor-widget-button .elementor-button:focus .elementor-button-content-wrapper .elementor-button-text{
	color: var(--white-color);
	border-right: 1px solid var(--white-color);
}	

/* Icon & Images Box CSS */
.elementor-widget-icon-box .elementor-icon-box-description a,
.elementor-widget-image-box .elementor-image-box-description a{
    color: inherit;
    transition: all 0.3s ease-in-out;
}

/*  Tab Widget CSS */
.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title:hover,
.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title:focus{
    border-radius: var(--n-tabs-title-border-radius);
}

.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title{
    transition: all 0.3s ease-in-out;
}

.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title .e-n-tab-icon svg path{
    transition: all 0.3s;
}

/* Menu Border CSS */
.elementor-widget-nav-menu ul.elementor-nav-menu--dropdown a, 
.elementor-widget-nav-menu ul.elementor-nav-menu--dropdown a:focus, 
.elementor-widget-nav-menu ul.elementor-nav-menu--dropdown a:hover{
	border-inline-start: 0 !important;
}

/* Section Title CSS */

.section-title h3.elementor-heading-title {
    display: inline-block;
    position: relative;
    padding-left: 16px;
}

.section-title h3.elementor-heading-title::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    bottom: 0;
    transform: translateY(-50%);
    background: var(--e-global-color-secondary);
	border-radius: 50%;
	width: 6px;
	height: 6px;
}

.light-section-title.section-title h3.elementor-heading-title::before{
	background: currentcolor;		
}

/* Image Animation CSS */

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-block;
    visibility: hidden;
    overflow: hidden;
}

.elementor-editor-active .reveal{
	visibility: visible;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

@media only screen and (max-width: 991px) {
	
	.br-tablet-none br{
		display: none;
	}
}

@media only screen and (max-width: 767px) {
	
	.br-mobile-none br{
		display: none;
	}
}

/* 
 * Header CSS 
 * */

.mobile-menu{
	display: none !important;
}

.main-header.elementor-sticky{
	transition: all 0.3s ease-in-out
}

.main-header.elementor-sticky.elementor-sticky--effects{
	background: #00000099;
	backdrop-filter: blur(20px);
}

.header-logo img{
	transition: all 0.3s ease-in-out;
}

.main-header.elementor-sticky.elementor-sticky--effects .header-logo img{
	max-width: 180px;
}

.header-menu .elementor-nav-menu--main > .elementor-nav-menu > li > .elementor-nav-menu--dropdown, 
.header-menu .elementor-nav-menu__container.elementor-nav-menu--dropdown{
	transition: all 0.3s ease-in-out;
}

.main-header.elementor-sticky.elementor-sticky--effects .header-menu .elementor-nav-menu--main > .elementor-nav-menu > li > .elementor-nav-menu--dropdown, 
.main-header.elementor-sticky.elementor-sticky--effects .header-menu .elementor-nav-menu__container.elementor-nav-menu--dropdown{
	margin-top: 39px !important;
}


@media only screen and (max-width: 1024px) {
	
	.mobile-menu{
		display: block !important;
	}
	
	.main-header.elementor-sticky.elementor-sticky--effects .header-menu .elementor-nav-menu__container.elementor-nav-menu--dropdown{
		margin-top: 28px !important;
	}
}

@media only screen and (max-width: 767px) {
	
	.main-header.elementor-sticky.elementor-sticky--effects .header-logo img{
		max-width: 150px;
	}
	
	.main-header.elementor-sticky.elementor-sticky--effects .header-menu .elementor-nav-menu__container.elementor-nav-menu--dropdown{
		margin-top: 23px !important;
	}	
}

/*
 * 	Footer CSS
 * */

.footer-menu ul li{
	position: relative;
	padding-left: 16px;
}

.footer-menu ul li:before{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	right: auto;
	bottom: auto;
	background: var(--e-global-color-primary);
	border-radius: 50%;
	width: 6px;
	height: 6px;
	transform: translate(0, -50%);
}

@media only screen and (max-width: 1024px) {}
@media only screen and (max-width: 767px) {}

/*
 * 	Home Page CSS
 * */

.page-header > *{
	z-index: 1;
}

.page-header:after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("./images/section-bg-border.svg") no-repeat;
	background-size: 60%;
	background-position: top center;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.home-about-img img{
	aspect-ratio: 1 / 1.066;
	object-fit: cover;
}

.core-value-icon-box .elementor-widget-container{
	backdrop-filter: blur(30px);
}

.our-commitment-img img{
	aspect-ratio: 1 / 0.878;
	object-fit: cover;
}

.our-story-video-btn .elementor-icon-wrapper a{
	position: relative;
	z-index: 1;
}

.our-story-video-btn .elementor-icon-wrapper a:before{
	content: '';
	position: absolute;
	top: -35%;
	left: -33%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--e-global-color-primary);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.our-story-video-btn .elementor-icon-wrapper a:after{
	content: '';
	position: absolute;
	top: -35%;
	left: -33%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--e-global-color-primary);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.partners-logo-slider .elementor-image-carousel-wrapper .swiper-slide{
	padding-right: 30px;
	border-right: 1px solid rgb(from var(--e-global-color-primary) r g b / 10%);
}

.sizes-surface-img img{
	aspect-ratio: 1 / 0.817;
	object-fit: cover;
}

.surface-list ul{
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.surface-list ul li{
	padding: 6px 18px !important;
	background: var(--e-global-color-secondary);
	border: 1px solid var(--white-color);
}

@media only screen and (max-width: 1024px) {
	
	.partners-logo-slider .elementor-image-carousel-wrapper .swiper-slide{
		padding-right: 20px;	
	}
}
@media only screen and (max-width: 767px) {
	
	.core-value-box .core-value-icon-box:nth-child(odd) .elementor-widget-container{
		background-color: rgb(from var(--white-color) r g b / 10%) !important;
	}
	
	.core-value-box .core-value-icon-box:nth-child(even) .elementor-widget-container{
		background-color: transparent !important;
	}
	
	.our-commitment-img img{
		aspect-ratio: 1 / 1.05;	
	}
	
	.partners-logo-slider .elementor-image-carousel-wrapper .swiper-slide{
		padding-right: 0;
		border-right: none;
	}
	
	
	.surface-list ul li{
		padding: 6px 10px !important;	
	}
}


/*
 * 	About us page CSS
 * */

.about-us-content-wrap:before{
	content: "";
	display: block;
	top: 0px;
	left: 10px;
	background: var(--e-global-color-0358f24);
	width: calc(100% - 20px);
	height: 2px;
}

.about-us-content:before{
	content: "";
	display: none;
    top: -50px;
    left: 30px;
    background-color: var(--e-global-color-secondary);
	width: calc(100% - 60px);
    height: 2px;
	border-radius: 2px;
    transition: all 0.4s ease-in-out;
}

.about-us-content:hover:before{
	display: block;
}

.about-us-content .elementor-widget-image img{
	aspect-ratio: 1 / 0.84;
    object-fit: cover;
}

.about-us-content-full-img,
.about-us-content-full-img img{
	height: 100%;
}


.our-value-icon-box{
	height: var(--container-widget-width);
	z-index: 0;
	border-radius: 50%;
}

.our-value-icon-box:hover{
	z-index: 1;
}

.our-value-icon-box:not(:first-child){
	margin-left: -80px;
}

.our-value-icon-box .elementor-widget-container{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out;
}

.our-value-icon-box:hover .elementor-widget-container{
	background: var(--white-color);
}

.our-value-icon-box .elementor-icon-box-wrapper{
	transform: translateY(25%);
	transition: all 0.3s ease-in-out;
}

.our-value-icon-box:hover .elementor-icon-box-wrapper{
	transform: translateY(0%);
}

.our-value-icon-box:hover .elementor-icon-box-icon .elementor-icon,
.our-value-icon-box:hover .elementor-icon-box-content .elementor-icon-box-title{
	color: var(--e-global-color-secondary);
}

.our-value-icon-box .elementor-icon-box-content .elementor-icon-box-title{
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
	word-break: break-all;
}

.our-value-icon-box .elementor-icon-box-content .elementor-icon-box-description{
	position: relative;
	transform: translateY(100%);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
	display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.our-value-icon-box:hover .elementor-icon-box-content .elementor-icon-box-description{
	transform: translateY(0%);
	opacity: 1;
	visibility: visible;
}

.manufacturing-img img{
	aspect-ratio: 1 / 0.51;
	object-fit: cover;
}

.about-vision-mission-img img{
	aspect-ratio: 1 / 1.62;
    object-fit: cover;
}

.about-mission-accordion .e-n-accordion-item{
	border-top: 1px solid var(--e-global-color-0358f24);
}

.about-mission-accordion .e-n-accordion-item:last-child{
	border-bottom: 1px solid var(--e-global-color-0358f24);
}

.about-mission-accordion .e-n-accordion-item-title-icon{
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--e-global-color-secondary);
	height: 30px;
	width: 30px;
}

@media only screen and (max-width: 1320px) {
	
	.our-value-icon-box:not(:first-child){
		margin-left: -87px;
	}
	
}

@media only screen and (max-width: 1024px) {
	
	.about-us-content:hover:before{
		display: none;
	}

	.about-us-content .elementor-widget-image img{
		aspect-ratio: 1 / 0.55;
	}
	
	.our-value-icon-box:not(:first-child){
		margin-left: 0px;
	}
	
	.our-value-icon-box:nth-child(even){
		margin-left: -50px;
	}
	
	.manufacturing-img img{
		aspect-ratio: 1 / 0.58;
	}
	
	.about-vision-mission-img img{
		aspect-ratio: 1 / 1.45;
	}
}

@media only screen and (max-width: 767px) {

	.about-us-content .elementor-widget-image img{
		aspect-ratio: 1 / 0.75;
	}
	
	.our-value-icon-box:not(:first-child){
		margin-top: -50px;
	}
	
	.our-value-icon-box:nth-child(even){
		margin-left: 0px;
	}
	
	.manufacturing-img img{
		aspect-ratio: 1 / 0.75;
	}
	
	.about-vision-mission-img img{
		aspect-ratio: 1 / 1.2;
	}

	.about-mission-accordion .e-n-accordion-item-title-icon{
		height: 25px;
		width: 25px;
	}
}

/*
 * 	800x2400mm-full-body-countertop-tiles
 * */

.countertop-section-icon-box .elementor-icon-box-wrapper .elementor-icon{
	position: absolute;
}

.countertop-section-icon-box .elementor-icon-box-wrapper .elementor-icon-box-content .elementor-icon-box-title{
	padding-left: 35px;
}

/*
 * 	Technology Page CSS
 * */

.advance-technology-img-box:before{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	right: auto;
	bottom: auto;
	border: 1px solid rgb(from var(--e-global-color-secondary) r g b / 10%);
	width: 440px;
	height: 440px;
	transform: translate(-50%, -50%);
	z-index: -1;
}

.advanced-technology-img img{
	aspect-ratio: 1 / 0.845;
	object-fit: cover;
}

.precision-driven-quality-img img{
	aspect-ratio: 1 / 0.842;
	object-fit: cover;
}

.partners-logo-slider-2.partners-logo-slider .elementor-image-carousel-wrapper .swiper-slide{
	border-right: 1px solid rgb(from var(--e-global-color-secondary) r g b / 10%);
}

@media only screen and (max-width: 1024px){}
@media only screen and (max-width: 767px){
	
	.advance-technology-img-box:before{
		display: none;
	}
	
	.advanced-technology-img img{
		aspect-ratio: 1 / 1.05;	
	}
	
	.precision-driven-quality-img img{
		aspect-ratio: 1 / 1.05;	
	}
	
	.partners-logo-slider-2.partners-logo-slider .elementor-image-carousel-wrapper .swiper-slide{
		border-right: none;	
	}
}

/* Infrastructure Contact Form */

.contact-form .elementor-field-group .elementor-field-textual::placeholder{
	opacity: 1;
}

.contact-form .elementor-field-group .elementor-field-textual {
	padding: 17px 20px;
}

.contact-form .elementor-field-group .elementor-field-textual:focus,
.contact-form .elementor-field-group .elementor-button {
	outline: none;
	box-shadow: none;
}

.contact-form .e-form__buttons{
	margin-top: 15px;
}

.contact-form .elementor-field-group .elementor-button {
	padding: 11px;
}

.contact-form .elementor-button .elementor-button-icon svg {
    width: 12px;
    height: 12px;
    transition: all 0.3s ease-in-out;
}

.contact-form .elementor-button:hover .elementor-button-icon svg {
	transform: rotate(45deg);
}

.contact-form .elementor-button .elementor-button-text{
	padding-right: 10px;
	border-right: 1px solid var(--white-color);
	transition: all 0.4s ease-in-out;
}

.contact-form .elementor-button:hover .elementor-button-text{
	border-right: 1px solid var(--e-global-color-secondary);
}

@media only screen and (max-width: 767px) {
	.contact-form .elementor-field-group .elementor-field-textual {
		padding: 10px 15px;
	}
	
	.contact-form .e-form__buttons{
		margin-top: 0;	
	}
}



/* Max MegaMenu Css */


.header-menu .mega-menu-wrap > ul > li > ul{
	margin-top: 37px !important;
/* 	box-shadow: 0px 0px 10px 5px rgb(from var(--e-global-color-primary) r g b / 10%); */
}


@media only screen and (max-width: 1024px) {
	
	.header-menu #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-custom-icon:before{
		display: none;
	}

	.header-menu #mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-menu-item.mobile-menu{
		display: block !important;
	}

	.header-menu #mega-menu-wrap-menu-1 .mega-menu-toggle,
	.header-menu .mega-menu-wrap .mega-menu-toggle{
		align-items: center;
		justify-content: center;
		width: 38px;
		height: 32px;
	}

	.header-menu .mega-menu-wrap .mega-menu-toggle .mega-toggle-block:only-child{
		margin-left: 8px !important;
	}

	.header-menu .mega-menu-wrap .mega-menu-toggle .mega-toggle-animated-box .mega-toggle-animated-inner,
	.header-menu .mega-menu-wrap .mega-menu-toggle .mega-toggle-animated-box .mega-toggle-animated-inner:before,
	.header-menu .mega-menu-wrap .mega-menu-toggle .mega-toggle-animated-box .mega-toggle-animated-inner:after{
		width: 30px !important;
	}

	.header-menu .mega-menu-wrap .mega-menu-toggle .mega-toggle-animated-box .mega-toggle-animated-inner:before{
		left: 7px;
	}

	.header-menu .mega-menu-wrap .mega-menu-toggle.mega-menu-open .mega-toggle-block:only-child{
		margin-left: 14px !important;
	}

	.header-menu ul.mega-menu{
		margin-top: 30px !important;
		max-height: calc(100vh - 200px) !important;
		overflow: auto !important;
/* 		filter: drop-shadow(0px 10px 5px rgb(from var(--e-global-color-text) r g b / 10%)); */
	}

	.header-menu .mega-menu-wrap > ul > li > ul{
		margin-top: 0 !important;
		box-shadow: none;
		filter: none;
	}	

	.header-menu #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item ul > li{
		border-bottom: none !important;
	}

	.header-menu #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item>a.mega-menu-link{
		display: flex;
		padding: 0 20px;
	}

	.header-menu #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item> ul li a.mega-menu-link{
		padding: 0 30px !important;
	}
	
}



/* Table Press Css */
.packing-details-table table {
	border-collapse: collapse;
	margin: 0;
}

.packing-details-table table thead tr {
	background-color: #FFF;
}

.packing-details-table table thead tr th {
	color: var(--e-global-color-secondary);
	font-family: var(--e-global-typography-secondary-font-family), Sans-serif;
    font-size: 12px;
    font-weight: var(--e-global-typography-secondary-font-weight);
	line-height: 1.3em;
	text-align: center;
	padding: 10px 12px;
	background-color: inherit;
}

.packing-details-table table thead tr th {
	border-top: 1px solid #e0e0e0 !important;
	border-left: 1px solid #e0e0e0;
	width: 70px !important;
}

.packing-details-table table thead tr th:last-child {
	border-right: 1px solid #e0e0e0;
}

.packing-details-table table tbody tr {
	background-color: #FFF;
}

.packing-details-table table tbody>tr:nth-child(odd)>td {
	background-color: inherit;
}

.packing-details-table table tbody>tr:nth-child(even):hover>td {
	background-color: inherit;
}

.packing-details-table table tbody tr td {
	color: var(--e-global-color-text);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4em;
	text-align: center;
	border-color: #e0e0e0;
}

.packing-details-table table tbody tr:last-child td {
	border-bottom: 1px solid #e0e0e0;
}

.packing-details-table table tbody tr td {
	border-left: 1px solid #e0e0e0;
}

.packing-details-table table tbody tr td:last-child {
	border-right: 1px solid #e0e0e0;
}


@media only screen and (max-width: 991px) {
	.packing-details-table table {
		display: block;
		overflow-x: scroll;
	}

	.packing-details-table table thead tr th {
		min-width: 130px;
	}
}



@media only screen and (max-width: 767px) {
	
	.packing-details-table table thead tr th {
		font-size: 10px;
		min-width: 110px;
	}
}

/*  */

.contact-us-circle{
	animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}

.catalogues-item .elementor-cta__image{
	line-height: 0;
}

.catalogues-item .elementor-cta__image img{
	aspect-ratio: 1 / 0.66;
	object-fit: cover;
}

/* @media only screen and (max-width: 767px) {
	.catalogues-item .elementor-cta__image img{
		aspect-ratio: 1 / 0.65;
		object-fit: cover;
	}
}
 */