/******** Google Fonts ********/

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/******** Color Schemes ********/

:root {
  --c-primary-dark: #000000;
  --c-white: #ffffff;
  --c-blue: #EC6A3C;
  --c-black-text: #000000;
  --c-primary-text: #000000;
  --ff-primary: "Roboto", sans-serif;
}


/******** CSS Resets ********/
* {
  padding: 0;
  margin: 0 auto;
}

ul {
  margin: 0;
  padding: 0;
}

.common-padd {
  padding-top: 60px;
  padding-bottom: 60px;
}

li {
  list-style: none;
}

a:focus,
a:hover {
  outline: none;
}

a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

p {
  margin: 0;
  padding: 0;
  font-size: 15px !important;
  color: var(--c-black-text);
  line-height: 26px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}

body {
  font-family: var(--ff-primary);
  font-size: 14px;
  color: var(--c-black-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Serif", serif;
  margin-bottom: 0;
}

/******** Utility Classes ********/
/*
.container {
  width: 100%;
  max-width: 1360px;
}
*/

.custom-pad {
  padding: 50px 0;
}

.custom-pad-no-btm {
  padding: 50px 0 0;
}

.custom-pad-no-top {
  padding: 0 0 50px;
}

.custom-button {
  font-size: 16px;
  color: var(--c-white);
  background: var(--c-blue);
  border-radius: 5px;
  padding: 10px 28px;
  display: inline-block;
}

.custom-button:hover {
  color: var(--c-white);
  background: var(--c-primary-dark);
}

/*=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+toggle-nav-css-start=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+*/
.navbar-default .navbar-toggler .icon-bar {
  background-color: #fff;
}

.navbar-toggler .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}

.navbar-default .navbar-toggler .icon-bar {
  background-color: #fff;
}

.navbar-default .navbar-toggler {
  border-color: #5f4b8b;
  background: #5f4b8b;
  outline: none;
}

.navbar-toggler {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

.navbar-toggler .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}

.navbar-toggler .icon-bar+.icon-bar {
  margin-top: 4px;
}

.navbar-toggler .icon-bar+.icon-bar {
  margin-top: 4px;
}

.navbar-header {
  display: none;
}

/*-----------------onhover effect--------------*/
.navbar {
  padding: 0;
  line-height: 3rem;

  .dropdown-menu {
    line-height: initial;
  }
}

.dropdown {
  .dropdown-menu {
    display: none;
  }
}

.dropdown,
.dropend {
  &:hover {
    &>.dropdown-menu {
      display: block;
    }
  }
}

.dropdown {
  &:hover {
    &>.dropdown-menu {
      margin-top: -.5rem;
    }
  }
}

.dropend {
  &:hover {
    &>.dropdown-menu {
      position: absolute;
      top: -.5rem;
      left: 100%;
      margin-left: 0;
    }
  }
}

.online_Ease_main {
  padding: 0;
  position: relative;
  width: 100%;
  float: left;
}

.online_Ease_left {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0;
}

.online_Ease_left img {
  width: 100%;
  float: left;
  object-fit: cover;
  height: 100%;
  object-position: 50% 0%;
}

.custom-header {
  font-size: 40px;
  font-weight: 500;
  color: #EC6A3C;
  line-height: 160%;
}

.custom-header span {
  font-weight: 700;
}

.clr {
  clear: both;
}

.custom-pad{padding:60px 0;}
/*.custom-btn{
	background:var(--c-blue);
	border-radius:30px;
	padding:14px 60px 14px 45px;
	color:#fff;
	position: relative;
  display: inline-block;
}
.custom-btn i{
	color:#fff;
	font-size:20px;
	margin-right:5px;
	position:absolute;
	right:10px;
	top:9px;
}
.custom-btn:hover{
	color:#000;
}*/
.custom-btn{
	background:#fff;
	border-radius:30px;
	padding:14px 60px 14px 45px;
	color:#ec6a3c;
	position: relative;
  display: inline-block;
	border:1px solid #ec6a3c;
}
.custom-btn i{
	color:#ec6a3c;
	font-size:20px;
	margin-right:5px;
	position:absolute;
	right:10px;
	top:9px;
}
.custom-btn:hover{
	color:#fff;
	background:var(--c-blue);
}
.custom-btn:hover i{
	color:#fff;}

@keyframes smooth-jerk {
  0% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  50% { transform: translateX(3px); }
  75% { transform: translateX(-3px); }
  100% { transform: translateX(0); }
}

.jerk-button {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.2s ease;
  position: relative;
}

@keyframes smooth-jerk-vertical {
  0% { transform: translateY(0); }
  25% { transform: translateY(-3px); }
  50% { transform: translateY(3px); }
  75% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

.jerk-button:hover {
  animation: smooth-jerk-vertical 0.5s infinite;
}
.wpcf7-submit{animation: smooth-jerk-vertical 0.7s infinite;}
.play-video-btn{animation: smooth-jerk-vertical 0.7s infinite;}
#v-pills-tab .nav-link:hover i.bi-arrow-right-short{animation: smooth-jerk 0.7s infinite;}

/*=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+toggle-nav-css-end=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+*/
.mobile-only{display:none !important;}
.desktop-only{display:block;}
.site-header{
  background:#fff;
  padding:10px 0;
  transition:all 0.3s;
}
body.home .site-header{
	position: fixed;
  width: 100%;
  z-index: 999;
  padding: 10px 0;
  background:none;
}

.site-logo {
  width:70px;
  display: block;
}

.site-logo img {
  width: 100%;
  height: auto;
}
.site-header.sticky{
	background: #ffffff !important;
background: linear-gradient(0deg, rgba(255, 255, 255, 0.72) 0%, rgba(253, 241, 237, 0.74) 100%) !important;
position:fixed;
top:0;
width:100%;
z-index:9999;
padding:6px 0;
}
#navbarSupportedContent ul.menu li{transition:all 0.3s;
	
}
.site-header.sticky #navbarSupportedContent ul.menu li{
	line-height:36px;
}
.site-header.sticky .site-logo {
    width: 50px;
    display: block;
}

#navbarSupportedContent .primary {
  margin-right: 0;
}

#navbarSupportedContent ul.menu {
  display: flex;
  gap: 29px;
}

#navbarSupportedContent ul.menu li a {
  color: var(--c-black-text);
  font-size: 14px;
  line-height: 30px;
  font-weight:400;
  padding-bottom: 10px;
  position:relative;}

#navbarSupportedContent ul.menu li a:hover {
  color: var(--c-blue);
  font-weight: 400;
  
}

#navbarSupportedContent ul.menu li.active a {
  color: var(--c-black-text);
  font-weight: 700;
  
}
#navbarSupportedContent ul.menu li.active a:after{
	position:absolute;
	height:3px;
	background:#000;
	width:30%;
	left:35%;
	bottom:0;
	content:'';
	top: 100%;
}
/*#navbarSupportedContent ul li.last-btn{
	background:var(--c-blue);
	border-radius:30px;
	
	margin-left:20px;
	padding:0 30px;
}
#navbarSupportedContent ul li.last-btn a{
	color:#fff;
}
#navbarSupportedContent ul li.last-btn a:hover{
	color:#000 !important;
}*/
#navbarSupportedContent ul li.last-btn{
	background:#fff;
	border-radius:30px;
	border:1px solid #ec6a3c;
	margin-left:20px;
	padding:0 30px;
	cursor:pointer;
}
#navbarSupportedContent ul li.last-btn a{
	color:#ec6a3c;
}
#navbarSupportedContent ul li.last-btn a:hover{
	color:#fff !important;
}
#navbarSupportedContent ul li.last-btn:hover a{
	color:#fff !important;
}
#navbarSupportedContent ul li.last-btn:hover{
	background:#ec6a3c;
}
#navbarSupportedContent ul li.last-btn:hover a{
	color:#fff;
}
#navbarSupportedContent ul.menu li ul.sub-menu {
  position: absolute;
  width: 250px;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: .5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: .25rem;
}
#navbarSupportedContent ul.menu li{position:relative;}
#navbarSupportedContent ul.menu li.menu-item-has-children:before{/*position:absolute; content:'▼'; right:-15px; top: 2px;  font-size: 10px;*/}
#navbarSupportedContent ul.menu li:hover .sub-menu {
  display: block;
}

ul.sub-menu li a {
  padding: 6px 15px;
  color: var(--c-black-text);
  display: block;
  font-size: 14px;
}

ul.sub-menu li a:hover {
  color: var(--c-blue);
  font-weight: 700;
}

.menu-item-has-children a::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .4em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
  position: relative;
  top: 3px;
}

.menu-item-has-children:hover a::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: 0;
  border-right: .3em solid transparent;
  border-bottom: .4em solid;
  border-left: .3em solid transparent;
  position: relative;
  top: 1px;
}

.menu-item-has-children:hover li a:after {
  display: none;
}


.banner {
  padding: 19vw 0;
  position: relative;
  height: calc(100vh - 0px);
  display: flex;
  align-items: first baseline;
  width: 100wh;
}
.banner img {
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100vh - 0px);
  width: 100%;
  object-fit: cover;
  width: 100wh;
  object-position:bottom;
}

.banner-content {
  position: relative;
}

.about-content {
  padding: 50px 0 35px;
}

.content-holder {
  text-align: left;
}

.content-holder h2 {
  font-size:50px;
  font-weight:600;
  color: var(--c-black-text);
  margin-bottom:30px;
}
.content-holder h2 span{
  font-weight:300; display:block;
}
.content-holder .custom-button{
	background:#fff;
	color: var(--c-black-text);
	border-radius:25px;
}
.content-holder .custom-button:hover{
	background:#EC6A3C;
}
.content-holder .banner-brand-logo{width:200px;margin:0}
.content-holder .banner-brand-logo img{width:100%; height:auto;position:relative;}

#homepage-banner .owl-dots {
  text-align: center;
  margin: 0px auto 0px;
  position: relative;
  z-index: 999;
  gap:5px;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  left: 48%;
  display: flex;
}

#homepage-banner .owl-dots button {
  width: 13px;
  height: 13px;
  opacity: 0.7;
  background: #fff !important;
  border-radius: 50%;
  margin-top: 2px;
}

#homepage-banner .owl-dots button.active {
  width: 17px;
  height: 17px;
  opacity: 1;
  margin-top: 0;
}

.site-head{
	text-align:center;
	margin-bottom:20px;

}
.site-head h2{
	font-size:48px;
	font-weight:300;
}
.site-head h2 span{
	font-weight:600;
}
.gray-bg{
	background:url(../images/gray-bg.webp) 0 0 no-repeat;background-size: cover;
}
.brand-tab{
	padding:50px 0 0;
}
.brand-tab .nav-link {
	background:#fff;
	border-radius:7px;
	margin-bottom:8px;
	padding:30px 45px 30px 25px ;
	display:flex;
	align-items:center;
	position:relative;
}
.nav-pills .nav-link.active{
	background:#fff;
	border-radius:7px 7px  0 0;
	
}
.nav-pills .nav-link.active:after{
	background:#EC6A3C;
	height:5px;
	content:'';
	left:0;
	bottom:0;
	position:absolute;
	border-radius:10px;
	width:100%;
}
.brand-tab .company-logo{
	width:100px;
	text-align:center;
	margin:0 25px 0 0;
}
.brand-tab .company-logo img{
	margin:0;
	height:50px;
	width:auto;
	margin:0 auto;
}
.brand-tab .nav-link p{
	min-height:60px;
	border-left:1px solid #ccc;
	padding:5px 10px 5px 25px;
	color:#00000070;
	font-weight:300;
	text-align:left;
}
.nav-pills .nav-link i{ 
	width:40px; 
	height:40px; 
	display:block; 
	border-radius:50%;
	background:#CCCCCC; 
	color:#fff;
	position: absolute;  
	right:15px; 
	 bottom:15px;
	 font-size: 29px;
}
.nav-pills .nav-link.active i{
	background:#EC6A3C; 
	color:#fff;
	}
	
.front-brand-slider .item{
	position:relative;
}
.front-brand-slider .item .brand-content{
	position:absolute;
	z-index:9;
	left:20px;
	top:30px;
}
.front-brand-slider .item .brand-content{
	width:70%;
}
.front-brand-slider .item .brand-content h2{
	font-weight:300;
	font-size:40px;
	margin-bottom:9px;
}
.front-brand-slider .item .brand-content p{
	font-weight:300;
	font-size:15px;
}
.front-brand-slider .company-logo-body{
	position:absolute;
	bottom:15px;
	left:20px;
	z-index:9;
	width:150px;
}
.front-brand-slider .company-logo-body img{
	position:relative !important;
	height:auto !important;
}
.front-brand-slider  .item-details-link{
	position:absolute;
	right:20px;
	bottom:20px;
	width:44px;
	height:44px;
	display:block;
	background:#fff;
	border-radius:50px;
	font-size:28px;
	color:#000;
	text-align:center;
	padding-top:3px;
}
.front-brand-slider  .item-details-link:hover{
	background:#EC6A3C;
}
.front-brand-slider .banner-slide {
  padding: 8vw 0;
  position: relative;
  height: calc(64vh - 0px);
  display: flex;
  align-items: first baseline;
  width: 100% !important;
	display: block;
	min-width:400px;
}
.front-brand-slider .banner-slide img {
  position: absolute;
  top: 0;
  left: 0;
  height:100%;
  width: 100%;
  object-fit: cover;
  border-radius:8px;
}

.brand-tab #v-pills-tab{
	height: calc(71vh - 0px);
	overflow-y:scroll;
	display: block;
	padding-right:20px;
}
.owl-nav button{
	display:inline-block; 
	width:50px; 
	height:50px; 
	border-radius:50%;
	border:1px solid #000 !important;
	text-align:center;
	font-size:45px !important;
	margin:15px 6px;
	}
	.owl-nav button span{
		display:block;
		height: 30px;
  line-height: 22px;
	}
	.owl-nav button:hover{
		color:#EC6A3C;
		border:1px solid #EC6A3C !important;
	}
	.brand-tab .custom-btn{float: right;
  margin-top: -65px;z-index: 9;}
.video-sec .button-icon{
	position: absolute;
    left: 0;
    background: transparent;
    border: 0;
    width: 64px;
    height: 64px;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    margin: 0 auto;
	
}
.video-sec .vdo-poster{width:100%; height:auto;}
.front-product-slider-holder .woocommerce ul.products li.product{
	width:48%;
	margin:0 1%;
}
body.page-id-242 .front-products .left-head {
  display:none;
}
.front-products .left-head{
	margin-bottom:35px;
}
.left-head .explore-btn{
	text-align:right;
}
.item-category a{
	display:block;
	position:relative;
}
.item-category a .category-caption{
	position: absolute;
  z-index: 9;
  left: 20px;
  top: 30px;
}
.item-category a h2{
	font-weight: 300;
  font-size: 40px;
  position: absolute;
  z-index: 9;
  left: 20px;
  top: 30px;
  color:#000;
}
.item-category a p {
  font-weight: 300;
  font-size: 15px;
  position: absolute;
  z-index: 9;
  left: 20px;
  top:80px;
}
.item-category a img.category-logo {
  position: absolute;
  bottom: 20px;
  left: 20px;
  height:auto;
  width:140px;
  object-fit: cover;
  border-radius: 8px;
  z-index:8;
}
.item-category a img.cat-thum{
	border-radius:12px;
}
.item-category .car-arrow{
	position: absolute;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  display: block;
  background: #fff;
  border-radius: 50px;
  font-size: 28px;
  color: #000;
  text-align: center;
  padding-top: 3px;
}
.acrete-image{
	margin-bottom:60px;
}
.contact_image img{
	width:100%;
}
/*--------------------Footer-------------------*/
.footer-logo{width:80px;margin: 0;}
.footer-logo img{width:100%;}
.footer-link h4{
	font-weight:500;
	font-size:16px;
	 font-family: "Roboto", sans-serif;
	 padding-bottom:12px;
}
.footer-link a{
	display:block;
	font-size:16px;
	font-weight:300;
	color:#000;
	margin-bottom:8px;
}
.footer-link a:hover{
	color:#EC6A3C;
	font-weight:600;
}
.footer-info h4{
	font-weight:500;
	font-size:16px;
	 font-family: "Roboto", sans-serif;
	 padding-bottom:12px;
}
.info-box{
	display:flex;
	justify-content:left;
	margin-bottom:8px;
}
.info-box i{
	margin-right: 6px;
  display: block;
  margin-left: 0;
  font-size: 20px;
	
}
.info-box p a{
	color:#000;
}
.info-box p a:hover{
	color:#EC6A3C;
}
.footer-top{position:relative;}
.top-footer{
	border-bottom:1px solid #ccc;
	position:relative;
	padding:70px 0 50px;
}
.footer-thum{
	width:25%;
	position:absolute;
	right:10px;
	bottom:0;
	}
	.footer-thum img{
		width:100%;
		height:auto;
	}
	.footer-btm{
		padding:20px 0;
	}
	.footer-btm .copyright-txt p{
		font-size:15px;
		color:#000;
	}
	.footer-btm .copyright-txt p span{
		display:inline-block;
		border-right:1px solid #ccc;
		padding:10px 20px 5px 0;
		margin-right: 15px;
	}
	.footer-btm .copyright-txt a{
		font-size:15px;
		color:#000;
	}
	.footer-btm .copyright-txt a:hover{
	color:#EC6A3C;
}
	.footer-btm .social-link{
		justify-content:right;
		display: flex;
  gap: 10px;
	}
	.footer-btm .social-link a{
		margin:0;
		transition: transform .2s;
	}
	.footer-btm .social-link a img{
		transition: transform .2s;
	}
	.footer-btm .social-link a img:hover{
		transform: scale(1.1);
	}
	
/*-------------------about us------------------------*/

.hero_sec {
    background-color: #000;
    padding: 80px 0px;
}
.hero_sec h1{
    color: #fff;
}
.comm_padd {
	padding: 60px 0px;
}
.h3 {
	font-size: 50px;
	font-weight: 200;
}
.h3 span{
	font-weight: 500;
}
.about_luxury_sec .h3{
	text-align: center;
	margin-bottom: 64px;
}
.about_image{
	max-width: 600px;
	margin: 0 auto;
}

.about_txt_left{
	padding-top: 59px;
}
.about_main p{
	font-weight:300;
	color: #404040;
}
.about_txt_right {
	height: 100%;
    display: flex;
    flex-direction: column-reverse;
	padding-bottom: 59px;
}
.about_main .row{
	align-items: center;
	margin-bottom: 100px;
}
.about_main h3{
	margin-bottom: 24px;
}
.vision_image {
	max-width: 519px;
}
.vision_txt {
	max-width: 411px;
}
.about_main .row-reverse {
    flex-direction: row-reverse;
	margin-bottom: 0px;
}
.about_main .row-reverse .vision_image {
	margin: 0;
    margin-left: auto;
}
.whychose_sec .h3{
	margin-bottom: 64px;
}
.whychose_image{
	border: 25px solid rgb(236 107 60 / 5%);
    width: 200px;
    height: 200px;
	border-radius: 100px;
	margin-bottom: 24px;
}
.whychose_image span{
	    display: flex;
    width: 151px;
    height: 151px;
    background-color: rgba(236, 107, 60, 0.15);
    align-items: center;
    justify-content: center;
	border-radius: 100px;
}
.whychose_image img{
	width: 95px;
}
.whychose_txt {
	text-align: center;
	    padding: 0px 30px;
}
.whychose_txt h4 {
	margin-bottom: 24px;
	font-size: 24px;
	font-weight: 500;
}
.whychose_box p{
	font-weight:300;
	color: #404040;
}
.acrete-image img{
	max-width: 1027px;
	margin: 0 auto;
	border-radius: 16px;
}
.contact_form {
	max-width: 598px;
	margin-left: auto;
}
.contact_form label{
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 15px;
	text-align: left;
	font-family: "Noto Serif", serif;
}
.contact_form input{
	border: 0;
	border-bottom: 1px solid #828282;
	font-weight: 300;
	color: #828282;
	width: 100%;
	border-radius: 0;
	
}
.contact_form textarea{
	border: 0;
	border-bottom: 1px solid #828282;
	font-weight: 300;
	color: #828282;
	width: 100%;
	border-radius: 0;
	height:90px;
}
.contact_form div.halfs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact_form .form-group {
	width: 100%;
	margin-bottom: 30px;
}
/*.contact_form input[type=submit] {
    background: #EC6A3C;
    padding: 15px 20px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    display: block;
    text-decoration: none;
    border: 0;
    width: 100%;
}*/
.contact_form input[type=submit] {
    background: #fff;
    padding: 15px 20px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    color: #EC6A3C;
    display: block;
    text-decoration: none;
    border: 0;
    width: 100%;
	border:1px solid #EC6A3C;
	transition:all 0.3s;
}
.contact_form input[type=submit]:hover {
    background: #EC6A3C;
    padding: 15px 20px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    display: block;
    text-decoration: none;
    border: 0;
    width: 100%;
	border:1px solid #EC6A3C;
}
/*----------Brand------------------*/
.brand_image img{transition: transform .2s;}
.brand_image a:hover img{transform: scale(1.05);}
/*----------------category page------------------*/
.inner-banner{padding:0; margin-bottom:0px;}
.inner-banner img{width:100%; height:auto;}
.category-holder{display:grid; grid-template-columns:auto auto; gap:15px;}
.categorylist-holder{background: #ffffff;
background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(253, 241, 237, 1) 100%);}
.breadcrumb{margin-bottom:32px;}
.breadcrumb a{margin:0; color:#000;}
.cat-ex-btn{font-size:15px; background:#EC6A3C; padding:7px 20px; color:#fff; margin:-70px 0 0 auto;float: right;  font-weight: 300;}
.cat-ex-btn:hover{color:#000;}
/*------------------------product listing---------------------------------*/
.woocommerce nav.woocommerce-pagination ul{border:0;}
.woocommerce nav.woocommerce-pagination ul li a{color:#EC6A3C;}
.woocommerce nav.woocommerce-pagination ul li{border:1px solid #EC6A3C; border-radius:50%; margin:0 4px;width: 35px;  height: 35px;padding-top: 4px;}
.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current{background:none; color:#000;font-weight:bold;}
.hero{display: flex;  align-items: center;  justify-content:left;}
.hero h1{color:#fff;}
	.woocommerce.columns-3 ul.products{display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;}
  .woocommerce ul.products::before{display:none;}
.woocommerce.columns-3 ul.products li.product{padding:15px; background:#fff; border-radius:12px;width:100%; margin:0;}
.woocommerce ul.products li.product a img {margin:0 auto 10px;  width:100%; object-fit: cover;height:100%;}
.woocommerce ul.products li h2.woocommerce-loop-product__title{font-size:22px !important; font-weight:600; color:#EC6A3C; overflow: hidden; /*height:42px;*/ padding:0 !important;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
           line-clamp: 2; 
   -webkit-box-orient: vertical; margin-bottom:0px !important;}
   .woocommerce ul.products li .product-short-description{color:#000;overflow: hidden; height:44px;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
           line-clamp: 2; 
   -webkit-box-orient: vertical;margin: 0 !important;}
   .woocommerce ul.products li .product_type_simple{background:none; color:#000; font-size:15px; font-weight:700;padding: 0;  margin: 0 0 20px !important;}
   .view-product-button{background:none !important; color:#000 !important; font-size:15px !important; font-weight:700 !important;padding: 0 !important;  margin: 0 0 20px !important;}
   .woocommerce ul.products li .product_type_simple:hover{color:#EC6A3C;}
   .text-box .term-description{ display:none;}
   .woocommerce-result-count, .woocommerce-ordering{display:none;}
   .productlist-holder{background: #ffffff;
background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(253, 241, 237, 1) 100%);}
.custom-header h2{line-height:160%;}
.woocommerce ul.products li.product .price{display:none;}
li.type-product .swatch-align-left{display:block;}
/*---------------------Product details---------------------------*/
.variations tr{display:block;}
.variations .value{float:left; margin-top:10px;}
.value .swatch-item-wrapper .swatch:before{display:none;opacity: 0;}
.value .swatch-item-wrapper .swatch{width: 135px !important;  padding: 20px 0 !important;  margin: 0 15px 0 0 !important;}
.value .swatch-item-wrapper .swatch .text{color: #fff !important;text-indent: 0;}
.woocommerce div.product .cart.variations_form .tawcvs-swatches .swatch.swatch-color.selected::after{left:15% !important;}
.woocommerce div.product form.cart .variations label{font-family:Noto Serif; font-size:20px; font-weight:400;}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price{display:none; opacity:0;}
.woocommerce-variation-price, .woocommerce div.product p.price, .woocommerce div.product span.price {    display: none !important;}
.woocommerce div.product form.cart .button{display:none !important;}
.woocommerce div.product form.cart div.quantity{display:none !important;}
.product_meta{display:none !important;}
body.single-product .custom-header{display:none !important;}
.single-product .owl-nav button{width: 30px;  height: 30px;font-size: 30px !important;}
.single-product .owl-nav{text-align:center;}
.woocommerce div.product div.images .woocommerce-product-gallery__image a {  background: #fff;  margin-bottom: 30px;}
.single-product .product-thumbnails .item {  background: #fff;  padding: 15px;}
.reset_variations{font-size: 14px;  background: #EC6A3C;  padding:6px 15px;  color: #fff;display: inline-block !important;  font-weight: 300;}
#productAccordion h2 .accordion-button{padding-left:0; padding-right:0; background:none; color:#000; font-size:20px; font-weight:400;}
#productAccordion .accordion-body{padding-left:0; padding-right:0;padding-top: 0;}
#productAccordion .accordion-body p{ font-weight:300;}
#productAccordion .accordion-item{background:none; border:0;border-bottom: 1px solid #ccc; border-radius:0;}
.accordion-button:not(.collapsed){box-shadow:0 0 0;}
.accordion-button:focus {  z-index: 3;  border-color: #fff;  outline: 0;  box-shadow: 0 0 0;  border:0;}
.woocommerce div.product .product_title{padding-bottom:15px; font-weight:300;}
.woocommerce-product-details__short-description{font-weight:300; border-bottom:1px solid #ccc; margin-bottom:30px; padding-bottom:25px;}
.variations_form{border-bottom:1px solid #ccc;}
.details-bottom-bg{clear:both;background: #ffffff;  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(253, 241, 237, 1) 100%);}
  .details-bottom{clear:both;padding:60px 0;}  
.details-top{clear:both; padding:60px 0 20px;}
body.single-product .details-product-hide{display:none;}
.details-bottom .woocommerce-tabs{display:none; }
.details-bottom h2{font-weight: 300; margin-bottom:40px;}
ul.products li.product{padding:15px; background:#fff; border-radius:12px;width:100%; margin:0;}
ul.products li.product a img {margin:0 auto 10px;  width: 300px;object-fit: cover;height:300px;}
ul.products li h2.woocommerce-loop-product__title{font-size:22px !important; font-weight:600; color:#EC6A3C; overflow: hidden; height:55px;
   display: -webkit-box;
   -webkit-line-clamp: 1; /* number of lines to show */
           line-clamp: 1; 
   -webkit-box-orient: vertical; margin-bottom:0px !important;}
ul.products li .product-short-description{color:#000;overflow: hidden; height:55px;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
           line-clamp: 2; 
   -webkit-box-orient: vertical;margin: 0 !important;}
   .details-bottom ul.products li.product{padding: 15px 20px !important;margin: 0 15px 10px !important;}     
   .related-products-carousel li.product{padding:15px; background:#fff; border-radius:12px;width:100%; margin:0;}
.related-products-carousel li.product a img {margin:0 auto 10px;  width: 300px;object-fit: cover;height:300px;}
.related-products-carousel li h2.woocommerce-loop-product__title{font-size:22px !important; font-weight:600; color:#EC6A3C; overflow: hidden; height:55px;
   display: -webkit-box;
   -webkit-line-clamp: 1; /* number of lines to show */
           line-clamp: 1; 
   -webkit-box-orient: vertical; margin-bottom:0px !important;}
.related-products-carousel li .product-short-description{color:#000;overflow: hidden; height:55px;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
           line-clamp: 2; 
   -webkit-box-orient: vertical;margin: 0 !important;}
   .details-bottom .related-products-carousel li .price{display:none;}
   .single-product .related-products-carousel .owl-nav{display:block;}
   .single-product .related-products-carousel .owl-nav button {  width: 50px;  height: 50px;  font-size:40px !important;}   
   body.single-product .text-box.container{max-width: 100%;  padding: 0;}
   .woocommerce-product-gallery__trigger{display:none;}
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper{position: relative;}
.swiper-wrapper .swiper-slide{background:#fff; margin-bottom:22px;}
.swiper-wrapper{ margin-bottom:22px;}
.swiper-wrapper .rtwpvg-thumbnail-image{opacity:1 !important; margin: 0 25px;}
.rtwpvg-images.rtwpvg-has-product-thumbnail .rtwpvg-wrapper .rtwpvg-thumbnail-wrapper .rtwpvg-thumbnail-slider:not(.swiper-initialized).rtwpvg-thumbnail-columns-5 .swiper-wrapper{gap: 30px;}
#productAccordion .accordion-item .accordion-body ul{margin-left:20px;}
#productAccordion .accordion-item .accordion-body ul li{list-style-type: square;  margin-bottom: 15px;}
.woocommerce div.product .cart.variations_form .tawcvs-swatches .swatch-item-wrapper, .woocommerce:not(.archive) li.product .cart.variations_form .tawcvs-swatches .swatch-item-wrapper, .woocommerce.single-product .cart.variations_form .tawcvs-swatches .swatch-item-wrapper, .wc-product-table-wrapper .cart.variations_form .tawcvs-swatches .swatch-item-wrapper, .woocommerce.archive .cart.variations_form .tawcvs-swatches .swatch-item-wrapper{margin-right:0 !important;}
/*-----------------video--------------------*/
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
}
.vdo-poster {
    display: block;
}
.button-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
}
.custom-pause-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 3;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    display: none;
}
video {
    width: 100%;
    height: auto;
    display: block;
}
/*-------------------gallery---------------------*/
 .fancybox__slide {padding: 34px 70px 0 !important;}
#tab-3 .gallery-grid {  display: grid;  grid-template-columns: 1fr 1fr 1fr;}
#tab-3 .gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

/* Add in your custom CSS file or Customizer > Additional CSS */
.woocommerce-product-gallery__image {
    overflow: hidden;
}

.woocommerce-product-gallery__image img {
    transition: transform 0.4s ease;
}

.woocommerce-product-gallery__image:hover img {
    transform: scale(1.5); /* Adjust zoom level */
    cursor: zoom-in;
}

.woocommerce-product-gallery img {
  touch-action: none;
  user-select: none;
  pointer-events: auto;
}
.gallery-tabs button{font-family: "Noto Serif", serif;}
/*-------------------------*/
.product-image-wrapper {
	position: relative;
}

.product-image-wrapper img.secondary-image {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.3s ease;
	width:100% !important;
	height:100% !important;
	object-fit:cover;
}

.product-image-wrapper:hover img.secondary-image {
	opacity: 1;
	
}

.product-image-wrapper:hover img.wp-post-image {
	opacity: 0;
}
/*------------Why partner--------------------*/
.why-poits-ico img{width:100%; height:auto; object-fit:contain; border-radius:6px;}
.why-poits-box{margin-top:45px;}
.why-partner-thumb{position:sticky; top:30px;}
.why-poits-box h4{font-size:16px; margin-bottom:12px;}
.why-poits-box h4 strong{font-weight:400;}
























@media (max-width: 1199px) {
	.container { max-width:100%; }
	.whychose_image {
		border: 20px solid rgb(236 107 60 / 5%);
		width: 170px;
		height: 170px;
	}
	.whychose_image span {
		width: 130px;
		height: 130px;
	}
	.whychose_txt {
		padding: 0px 10px;
	}
}
@media (max-width: 767px) {
	.whychose_box, .contact_image { 
		margin-bottom: 20px;
	}
	.comm_padd {
		padding:25px 0px;
	}
	.about_txt_left {
		padding-top: 0;
	}
	.about_luxury_sec .h3, .whychose_sec .h3 {
		margin-bottom: 30px;
	}
	.about_image {
		margin: 20px 0px;
		max-width: 100%;
	}
	.about_txt_right {
		padding-bottom: 0;
	}
	.vision_image , .about_main .row-reverse .vision_image{
		max-width: 100%; margin-bottom: 20px;
	}
	.about_main .row {
		margin-bottom: 40px;
	}
	.h3 {
    font-size: 34px;
	}
	.about_main .row-reverse {
		margin-bottom: 0;
	}
	.mobile-only{display:block !important;}
}
@media (max-width: 479px) {
.contact_form div.halfs {
    display: block;
}
.contact_form label {
    margin-bottom: 10px;
}
.video-sec .button-icon {
    width: 45px;
    height: 45px;
}
.whychose_image {
        border: 20px solid rgb(236 107 60 / 5%);
        width: 140px;
        height: 140px;
    }
.whychose_image span {
        width: 100px;
        height: 100px;
    }
.whychose_image img {
    width: 58px;
}
.whychose_txt h4 {
    margin-bottom: 15px;
    font-size: 22px;
}
	
	/* Animations - Effective if user has no preferance for reduced motion */

@media (prefers-reduced-motion: no-preference) {
    .animate-this.up {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease-in-out;
    }

    .animate-this.up.animated {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.8s ease-in-out;
    }

    .animate-this.swipe {
        opacity: 0;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .animate-this.swipe.animated {
        opacity: 1;
        animation: text-slice-animation 1.2s ease-in-out forwards;
    }

    @keyframes text-slice-animation {
        0% {
            clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        }

        100% {
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }
    }

    .animate-this.spin {
        transform: rotate(0deg);
        transition: transform 1s ease-in-out;
    }

    .animate-this.spin.animated {
        transform: rotate(90deg);
        transition: transform 1s ease-in-out;
    }
	
	.animate-this.rtl {
        opacity: 0;
        transform: translateX(50px);
    }
  
    .animate-this.animated.rtl {
        animation: fade-in-right 0.8s ease-in-out forwards;
    }
  
      .animate-this.lft {
          opacity: 0;
          transform: translateX(-20px);
      }
    
      .animate-this.animated.lft {
          animation: fade-in-left 0.8s ease-in-out forwards;
      }
    @keyframes fade-in {
        to {
            opacity: 1;
            transform: translateY(0px);
        }
    }
  
    @keyframes fade-in-right {
        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }
    @keyframes fade-in-left {
          to {
              opacity: 1;
              transform: translateX(0px);
          }
      }
}
}

.rtwpvg-thumbnail-slider .swiper-wrapper {
    display: flex;
    align-items: center;
	
}
.rtwpvg-thumbnail-slider .rtwpvg-thumbnail-image {
    width:110px !important;
    flex-shrink: 0;
	margin: 0 5px !important;
}
/* Active thumbnail border highlight */
.rtwpvg-thumbnail-slider .swiper-slide-thumb-active {
    border: 2px solid #EC6A3C;  /* blue border */
    border-radius: 6px;
    box-shadow: 0 0 6px rgba(34, 113, 177, 0.5);
}

/* Optional: hover effect */
.rtwpvg-thumbnail-slider .swiper-slide:hover {
    cursor: pointer;
    opacity: 0.8;
}

.rtwpvg-thumbnail-slider .swiper-wrapper{margin-bottom:0;}