@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');




*{
    box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  font-family: "Lato", serif;
  font-weight: 400;
  position: relative;
}
h1, h2, h3, h4, h5, h6{ font-family: 'Poppins',sans-serif;margin:0;padding: 0;}

p{ font-family: "Lato", serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;}
img {
  max-width: 100%;
  border: none;
}
a {
  text-decoration: none;
  outline: none !important;
 
}
.sub-menu-toggle{ display:none;}

/*header CSS
--------------------------------------------------------------------------------------------------*/
.header_area {
    box-sizing: border-box;
    padding: 0px 0;
    position: relative;
    width: 100%;
    height: auto;
    z-index: 999;
    top: 0px;
    left: 0;
    background-color: #fafafa;
}
.header_top {
    background-color: #000;
    border-bottom: 1px solid rgb(255 255 255 / 21%);
}
.nav-top ul{
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.nav-top ul li {
    margin: 0px 14px;
}
.nav-top ul li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
}
.nav-top ul li a:hover{
  color: #c19a83;
}

.header_area .container{ position: relative;}
.header_area .logo {
    width: 170px;
    position: relative;
    z-index: 9;
    display: inline-block;
    margin: 5px 0;
}

.header_area .header_right .double-border-button {
    padding: 15px 22px 7px;
    font-size: 14px;
    margin-top: -3px!important;
}
.nav-menu {
    margin: 0;
    padding-bottom: 0;
    padding-left: 0;
    float: left;
}
.header_area .navigation {
    position: relative;
    right: auto;
    background-color: transparent;
    width: auto;
    display: inline-block;
    height: auto;
}
.header_area .submenu-indicator {
    margin-left: 0;
    margin-top: 6px;
    position: relative;
}
.header_area .submenu-indicator:after {
    content: "\f078";
  position: relative;
  color: #000;
  font-size: 9px;
  font-family: FontAwesome;
  top: -2px;
  left: 0px;
}
.header_area .nav-menu > li > a {
    height: auto;
    padding: 16px 5px;
    margin: 0 4px;
    display: inline-block;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 0.2;
    color: #000;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: capitalize;
    position: relative;
}

.header_area .nav-menu > li > a:before {
    content: "";
    width: 0%;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    transition: width 0.3s;
    background-color: #bc9127;
}

.header_area .nav-menu > li > a:hover:after{
    width: 90%;
}
/*
.header_area .nav-menu > li > a:after {
    content: "";
    width: 0%;
    position: absolute;
    right: 0;
    height: 1px;
    transition: width 0.3s;
    background-color: #bc9127;
    bottom: -3px;
}
    */
.header_area .nav-menu > li > a:hover:before{
    width: 90%;
}

.header_area .nav-menu > li:hover > a, .header_area .nav-menu > li.active > a {
    color: #bc9127;
}
.header_area .nav-menu > li:hover > a span{ color:#15aef1 ; }
.header_area .nav-menu > li > .nav-dropdown {
    border-top: none;
}
.header_area .nav-dropdown > li > a {
    background-color: transparent;
}
.header_area .nav-dropdown {
    min-width: 200px;
    background: #fff;
}
.header_area .nav-dropdown > li > a {
    color: #000;
    padding: 10px 10px;
    border-bottom: 1px solid rgb(0 0 0 / 21%);
    text-transform: capitalize;
    font-size: 16px;
}
.header_area .nav-dropdown > li:last-child a{
    border: none;
}
.header_area .nav-menu > li > a span {
    color: #000;
    font-size: 14px;
    vertical-align: top;
    display: inline-block;
}
.nav-dropdown > li > a:hover, .nav-dropdown > li > a:focus {
    color: #bc9127;
}

.search {
	display: flex;
	justify-content: center;
	width: 55%;
	margin: 20px auto 25px;
	position: relative;
	flex: 1;
}
.dgwt-wcas-search-input {
	background: #e6e6e6;
	box-shadow: 0 0 0 1px #eee;
	border: none;
	width: 100%;
	height: 44px;
	border-radius: 13px;
	padding: 5px 48px 6px 15px;
	font-size: 14px;
}
.search button {
	background: transparent;
	border: none;
	position: absolute;
	right: 11px;
	top: 9px;
	font-size: 16px;
	color: #686868;
}


@media screen and (min-width: 360px) {
.header_area.fix .navigation .btn {
    margin: 32px 0;
}
.header_area.fix {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background-color: #fff !important;
    border: none;
    z-index: 999;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    box-shadow: 1px 1px 7px hsl(0deg 0% 0% / 19%);
    padding: 0px 0;
}


.header_area.fix .logo{
    max-width: 260px;
}
.header_area.fix .nav-menu_inner {
    margin: 0;
}
.header_area.inner_header.fix .logo {
    padding: 18px 0;
}
.header_area.fix .nav-menu > li > a {
    padding: 13px 2px;
}
.header_area.fix .my_account{margin: 2px 0 0;}
}
.p-80{ padding: 80px 0px;}

/*---------banner area start----------*/
.bannerarea{position: relative;}
.bannerimg{height: 500px;position: relative;transition: all .5s ease-in-out;}
.bannerimg::after{ position: absolute; content: ""; width: 100%; height: 100%; background: #0000009e;left: 0px;
    top: 0px; transition: all .5s ease-in-out;}
.bannerimg img{width: 100%;height: 100%;object-fit: cover;transition: all .5s ease-in-out;}
.bannerarea h4 a {
    position: absolute;
    bottom: 20px;
    font-size: 36px;
    color: #fff;
    display: block;
    font-weight: 500;
    text-transform: uppercase;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    transition: all .5s ease-in-out;
}
.bannerarea:hover .bannerimg::after{ background: #000000b8;transition: all .5s ease-in-out;}
.bannerarea h4 a:hover{color: #bc9127;transition: all .5s ease-in-out;}







/*---------banner area stop----------*/


/*------looking_area start-----------*/
.p-100{ padding: 100px 0px;}

.collectiontext{padding-left: 50px;
    width: 85%;}
.collectiontext h6{font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #bc9127;
    padding-left: 80px;
    margin-bottom: 35px;
    font-weight: bold; position: relative;}
    .collectiontext h6::after{position: absolute;
        content: "";
        left: 0px;
        top: 7px;
        background: #bc9127;
        width: 70px;
        height: 1px;}
        
 .collectiontext h3{font-size: 2.5rem;
    font-family: 'Poppins',sans-serif;
    line-height: 1.3em;
    text-transform: capitalize;
    font-weight: 800;
    margin-bottom: 25px;}
.collectiontext p{color: #1a1a1a;
    line-height: 30px;
    font-size: 18px;}
.lookbook{color: #bc9127;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 35px;}
/*------looking_area stop-----------*/
    
/*------new start-----------*/
.featuredproducts_area{ background: #000;}
.featuredproducts_area h3{font-size: 60px;color: #fff; font-weight: bold; margin-bottom: 70px;}
.thumble{height: 220px;}
.thumble img{width: 100%;height: 100%;object-fit: cover;}
.featuredproducts_body h5{font-size: 14px;line-height: 21px;font-family: 'Poppins',sans-serif;color: #fff;
font-weight: bold;margin: 15px 0px;text-transform: uppercase;}
.featuredproducts_box{ margin-bottom: 30px;}
.readmore{background: #fff;padding: 8px 15px;display: inline-block;border-radius: 5px;font-size: 13px;
color: #000;margin-top: 5px;}
.readmore:hover{color: #000;}

/*------new stop-----------*/
.featured-area{ background: #fafafa;}
.featured-area h6{font-size: 12px;text-transform: uppercase;letter-spacing: 2px;color: #bc9127;padding-left: 80px;
margin-bottom: 35px;font-weight: bold; position: relative;}
.featured-area h6::after{position: absolute;content: "";left: 0px;top: 7px;background: #bc9127;width: 70px;height: 1px;}
 .featured-area h3{font-size: 40px;font-family: 'Poppins',sans-serif;line-height: 1.3em;text-transform: capitalize;
font-weight: 800;margin-bottom: 25px;}
.featuredarea{background: #fff;padding: 10px;position: relative;transition: all .3s ease-in-out }
.featuedimg{height: 300px;}
.featuedimg img{width: 100%;height: 100%; object-fit: cover;}
.featuredtext{padding: 10px 5px;}
.featuredtext h5{font-size: .85em;margin: 3px 0px 5px;display: block;line-height: 1.3;color: #4f4f4f;}
.featuredtext h4 a{font-size: 20px;color: #000;font-weight: 800;}
.featuredarea .btn{position: absolute;top: 25px;right: 25px;background: #fff;color: #000;width: 40px;
    height: 40px;border: none;border-radius: 0px;padding: 0px; opacity: 0;transition: all .3s ease-in-out }
    .featuredarea:hover .btn{ opacity: 1; transition: all .3s ease-in-out ;}

.customdesignstext{box-shadow: 40px 64px 80px -16px rgba(0, 0, 0, 0.4);padding: 56px 56px 56px 56px;
 width: 550px;position: relative;margin-left: 25px;z-index: 99;background: #fff;}
 .customdesignstext h4{font-size: 40px;font-family: 'Poppins',sans-serif;line-height: 1.3em;text-transform: capitalize;
    font-weight: 900;margin-bottom: 25px;}
 .customdesignstext p{font-size: 17px;color: #797979;line-height: 35px;}
 .customdesignstext .btn{color: #bc9127;font-size: 18px;}
.featuredtextin h5{font-size: 1rem;line-height: 1.2em;font-family: 'Poppins',sans-serif; text-transform: capitalize;
    color: #000;font-weight: 800;margin: 5px 0px 15px;}
    .featuredtextin h4{font-size: 14px;color: #6c6c6c;line-height: 28px;font-weight: 300;}
.wondericon{width: 75px;height: 75px;margin: 0 auto 15px;}
.wonderarea{ padding: 0px 25px;}
.newsletter-designs{ padding: 40px 0px;}
.newsletter-designs h6{font-size: 12px;text-transform: uppercase;letter-spacing: 2px;color: #bc9127;padding-left: 80px;
    margin-bottom: 35px;font-weight: bold; position: relative;}
.newsletter-designs h6::after{position: absolute;content: "";left: 0px;top: 7px;background: #bc9127;width: 70px;height: 1px;}
.newsletter-designs h3{font-size: 40px;font-family: 'Poppins',sans-serif;line-height: 1.3em;text-transform: capitalize;
    font-weight: 800;margin-bottom: 25px;}
.customdesignsinnerimg{width: 720px;}
.customdesignstextin .form-control{height: 45px;border-radius: 0px;border: 1px solid #000;margin-bottom: 25px;}
.customdesignstextin .submitbtn{background: transparent;border: none;text-transform: uppercase;letter-spacing: 1px;   font-weight: bold;}
    
.relative_product .featuedimg {
    height: 245px;
}
/*-----------footer area css start---------------*/
.footer_area {background-color: #1a1a1a;position: relative;z-index: 1;padding: 50px 0 0;overflow: hidden;}
.footer_area .logo{margin-bottom: 0px;max-width: 200px;}
.footer-wizget {
    margin-bottom: 30px;
}
.footer-wizget h3 {
    font-size: 22px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 25px;
}
.footer-wizget.pl-5 {
    padding-left: 40px;
}
.footer-wizget ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-wizget ul li a{
    color: #fff;
    margin-top: 6px;
    font-size: 17px;
    font-weight: 400;
    display: block;
}
.footer-wizget ul li a:hover{
    color: #fff;
}
.footer-wizget .form-group .form-control {
    width: 100%;
    height: 54px;
    border-radius: 0px;
    border: none;
    box-shadow: none;
    font-size: 18px;
}
.footer-wizget .form-group .submitbtn {
    border: none;
    background-color: #000000;
    text-transform: uppercase;
    margin-top: 10px;
    font-size: 17px;
    color: #fff;
    padding: 10px 20px;
}
.footer-wizget .form-group .submitbtn:hover{
    border: none;
    background-color:#c19a83;
}
.footer_area_bottom {
    padding: 30px 0;
  border-top: 1px solid hsla(0, 0%, 100%, 0.27);
  margin-top: 50px;
}
.footer_area_bottom p{
    color: #fff;
    margin-bottom: 0px;
    font-size: 18px;
}
.footer_area_bottom p a{
    color: #fff;
}
.footerlink a{
    color: #000;
    font-size: 20px;
    margin-right: 10px;
}
.footerlink a:hover{
     color: #c19a83;
}
.footer-wizget p, .footer-wizget p a {
    color: #fff;
    font-size: 18px;
    text-align: left;
}

.socialmedia ul{ padding: 0px; margin: 0px;}
.socialmedia ul li{ display: inline-block; margin-right: 15px;}
.socialmedia ul li a{ font-size: 25px;}

.modalloginfade .modal-content {
    background-color: #c4c1bc;
    border-radius: 0;
}
.modalloginfade .modal-dialog {
	max-width: 720px;
}
.modalloginfade .modal-body {
	padding: 0;
	align-items: center;
}
.modalloginfade .loginmodal {
	box-sizing: border-box;
	padding: 30px 50px;
	flex-shrink: 1;
	flex-basis: 100%;
}
.modalloginfade .loginmodal h2 {
	text-align: center;
	text-transform: uppercase;
	font-size: 20px;
	margin-bottom: 7px;
}
.modalloginfade .loginmodal p {
	text-align: center;
	/* text-transform: capitalize; */
	font-style: italic;
	font-weight: 300;
	font-size: 13px;
	color: #000;
}
.modalloginfade .loginmodal .loginlogo {
	max-width: 163px;
	margin: auto;
	margin-bottom: 10px;
}
.modalloginfade .loginmodal .form-label {
	font-size: 12px;
	margin-bottom: 4px;
}
.modalloginfade .form-group {
	margin-bottom: 10px;
}
.modalloginfade .loginmodal .form-control {
	background-color: #aea79d;
	border-color: #ffffffbd;
	box-shadow: none;
	box-shadow: 0px 1px 3px hsl(0deg 0% 0% / 42%);
	height: 36px;
	color: #000;
	font-size: 13px;
}
.modalloginfade button.btn-subscribe {
	background-color: #7b7263;
	color: #fff;
	border: 1px solid #ffffffcc;
	width: 100%;
	border-radius: 6px;
	text-transform: uppercase;
	margin-top: 10px;
	padding: 10px 15px;
	box-shadow: 0px 1px 3px hsl(0deg 0% 0% / 42%);
	letter-spacing: 1px;
	font-size: 13px;
}
.modalloginfade .loginthumble {
    display: flex;
}
.modalloginfade .loginthumble img{
   width: 100%;
   height: 100%;
   object-fit: cover;
}
#modallogin {
	bottom: 0 !important;
	height: auto !important;
	top: auto !important;
	margin-right: 0 !important;
}
#modallogin .modal-dialog {
	margin-right: 46px;
}
#modallogin .modal-header {
	padding: 0;
	position: relative;
	z-index: 9;
	height: 0;
}
#modallogin .btn-close {
	position: absolute;
	right: 12px;
	top: 12px;
	border: 1px solid #000;
}


/*09.01.2025*/

.subbanner {
    min-height: 200px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
}
.offcanvas.offcanvas-start {
    width: 290px;
}
.offcanvas-title {
    text-transform: uppercase;
}
.product-categories-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-left: 10px;
}
.product-categories-list ul li {
    display: block;
    margin-bottom: 10px;
}
.product-categories-list ul li a {
    display: inline-flex;
    gap: 5px;
    color: #000;
    font-size: 17px;
}
.product-categories-list ul li a span {
    color: #d18e67;
    font-size: 15px;
}
.mainarea .headarea{
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 15px;
    box-sizing: border-box;
    padding: 10px 10px;
}
.mainarea .headarea p{
    margin: 0;
}
.mainarea .headarea .filterbtn {
    background-color: #000;
    border: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    padding: 6px 17px;
    border-radius: 6px;
}

.breadcrumbin {
    background-color: #fbfbfb;
    padding: 15px 0px;
}
.breadcrumbin .breadcrumb{
    margin: 0;
}
.breadcrumbin .breadcrumb a {
    color: #595c5f;
    font-size: 15px;
}

.breadcrumbin .breadcrumb-item.active {
    color: #000;
    font-size: 15px;
}

.breadcrumbin .breadcrumb-item+.breadcrumb-item::before {
    color: #000;
}

.mainarea{
    padding: 70px 0;
}

.product_details_area{ padding:60px 0px 40px;}
.outer {
    margin: 0 auto;
    max-width: 560px;
}
#big .item {
    margin: 2px;
    color: #FFF;
    border-radius: 3px;
    text-align: center;
    height: 400px;
    display: flex;
    padding: 30px;
}
#big .item img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#thumbs .item {
    background: #C9C9C9;
    line-height: normal;
    padding: 0px;
    margin: 2px;
    color: #FFF;
    border-radius: 3px;
    text-align: center;
    cursor: pointer;
    height: 110px;
    border: 4px solid #C9C9C9;
    display: flex;
    overflow: hidden;
}
#thumbs .owl-item.active.current .item {
    border-color: #c19a83;
}
#thumbs .current .item { background:#FF5722; }
.owl-theme .owl-nav [class*='owl-'] { -webkit-transition: all .3s ease; transition: all .3s ease; }
.owl-theme .owl-nav [class*='owl-'].disabled:hover { background-color: #D6D6D6; }
#big.owl-theme {
    position: relative;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
}
#big.owl-theme .owl-next, #big.owl-theme .owl-prev {
    background: #c19a83;
    width: 38px;
    line-height: 38px;
    height: 38px;
    margin-top: -17px;
    position: absolute;
    text-align: center;
    top: 50%;
    font-size: 12px;
    border-radius: 50%;
}
#big.owl-theme .owl-prev { left: 10px; }
#big.owl-theme .owl-next { right: 10px; }
#thumbs.owl-theme .owl-next, #thumbs.owl-theme .owl-prev { background:#333; }

.product-details-textbox{
    padding-left: 15px;
}
.product-details-textbox h2 {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 15px;
    margin-bottom: 15px;
    font-size: 34px;
}
.product-details-textbox .specsheet_area {
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
     margin-bottom: 15px;
}
.product-details-textbox .specsheet_area h4 {
    margin-bottom: 10px;
    font-size: 18px;
}
.product-details-textbox .specsheet_area .btngroup{
    gap: 5px;
}
.product-details-textbox .specsheet_area .btngroup .btnpdf {
    background-color: #69727d;
    box-sizing: border-box;
    padding: 7px 13px;
    color: #ffffff;
    font-size: 14px;
    border-radius: 5px;
}
.product-details-textbox .specsheet_area .btngroup .btnpdf:hover{
    background-color: #000;
    color: #fff;
}
.product-details-textbox .category_link {
    margin-bottom: 15px;
} 
.product-details-textbox .category_link h6{
    font-size: 17px;
}
.product-details-textbox .category_link h6 a {
    color: #c19a83;
}
.product-details-textbox p{
    margin-bottom: 15px;
    font-size: 16px;
}
.product-details-textbox .ifarem_area iframe{
    width: 100%;
    height: 250px;
}
.Related_details_area{
    margin-top: 40px;
}
.Related_details_area h2{
    font-size: 44px;
    margin-bottom: 24px;
    text-transform: capitalize;
}




.product_area h1{font-size: 50px;font-weight: bold;margin-bottom: 55px;color: #000;}
.lookingimg{height: 500px;}
.lookingimg img{width: 100%;height: 100%;object-fit: cover;}
.productext {
    display: flex;
    margin: 15px 0px 20px;
    align-items: center;
    justify-content: space-between;
}
.productext h3 a{font-size: 17px;font-weight: bold;display: inline-block;margin-right: 30px;color: #000;}
.productext ul {
    padding: 0px;
    margin: 0px;
    display: flex;
}
.productext ul li{display: inline-block;list-style: none;width: 25px;border: 1px solid #ddd;height: 25px;vertical-align: top;margin-right: 14px;border-radius: 5px; overflow: hidden;}
.productext ul li img{width: 100%;height: 100%;object-fit: cover;}
.lookingimg1{width: 100%;height: 105px;margin-bottom: 10px;}
.lookingimg1 img{width: 100%;height: 100%;object-fit: cover;}
.collectionarea{ margin-bottom: 40px;}
.collectionarea h4 a{font-size: 14px;color: #000;}
.innerproduct{ padding: 20px 0px 0px 80px;}
.innerproduct ul{ padding: 0px;margin: 0px 0px 30px 0px;}
.innerproduct ul li{ display: inline-block;padding: 0px 5px;font-weight: bold;color: #000;border-right: 1px solid #9d9d9d;line-height: 15px;}
.innerproduct ul li:last-child{border-right: 0px solid #9d9d9d;}
.collectionarea h4 a {
    font-size: 14px;
    color: #000;
    line-height: 20px;
    display: inline-block;
}
.collectioninner{padding: 0px 0px 70px 0px;}
.collectionleft h4 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.collectionbox{background-color: #E5E5E5;padding: 2rem 4rem 2rem 4rem;}
.collectionbox ul{ padding: 0px; margin: 0px;}
.collectionbox ul li{list-style: none;font-weight: 800;font-size: 15px;text-transform: uppercase;margin-bottom: 15px;
display: flex;align-items: center;}
.collectionbox ul li span img{width: 25px;height: 25px;margin-right: 15px;}

.lookingimg10 {
    height: 249px;
}
.collectionarea10 .productext{ display: block;}
.inspirattion h6{font-size: 17px;margin-bottom: 35px;}
.collectionarea10 .productext h3 a {
    font-size: 16px;
    margin-right: 0px;
    margin-bottom: 10px;
    font-weight: 600;
}
.collectionarea10 .productext ul li {
    width: 39px;
    height: 39px;
    margin-right: 8px;
   
}


.innerbanner ul{ padding: 0px;margin: 0px 0px 30px 0px;}
.innerbanner ul li{ display: inline-block;padding: 0px 5px;font-weight: bold;color: #fff;border-right: 1px solid #fff;line-height: 15px;}
.innerbanner ul li:last-child{border-right: 0px solid #fff;}
.innerbanner ul li a{color: #fff; font-size: 15px;font-weight: bold;}
.innerbanner{ position: relative;background-position: center !important;background-repeat: no-repeat !important;
background-size: cover !important;padding: 130px 0px;}
.innerbanner::after{position: absolute;content: "";width: 100%;height: 100%;background-color: rgba(0,0,0,0.4);top: 0px;}
.innerbanner h1, .innerbanner h4{ color: #fff;}
.innerbanner .container{ position: relative; z-index: 99;}
.collectioninner{ padding: 50px 0px;}
.collectioninner .container {
    max-width: 1200px;
}



/*// 06.02.2025 BB //*/

.category_classic {
    width: 100%;
    margin: 50px auto 0;
    border-top: 1px solid #7a7a7a;
    border-bottom: 1px solid #7a7a7a;
    padding: 20px 10px 20px 25px;
}

.classic_item {
    width: 65px;
    height: 65px;
    margin-right: 5px;
    display: inline-block;
}

.category_classic .collection {
    width: 100%;
    border-top: 1px solid #dddddd;
    padding-top: 8px;
    margin-top: 20px;
}

.category_classic .collection h6 {
    font-size: 13px;
    color: #646464;
    font-weight: 400;
}

.category_classic .collection h6 a {
    color: #000;
    font-weight: 600;
    text-decoration: underline;
}

.table_sec {
    width: 100%;
    padding: 5% 0% 5% 0%;
    background-color: #fafafa;
}

.table_sec tbody, .table_sec td, .table_sec tfoot, .table_sec th, .table_sec thead, .table_sec tr {
    border: #bc9127;
    border-style: solid;
    border-width: 1px;
    vertical-align: middle;
    padding: 15px;
}

.table_sec td span {
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.table_sec td span img {
    width: 32px;
    height: 32px;
}

.table_sec td a {
    color: #000;
    text-transform: uppercase;
}

.table_sec td a:hover {
    color: #bc9127;
}

.imggallery {
    width: 100%;
    background-color: #fff;
    padding: 50px 0;
}

.imggallery .container {
    max-width: 1000px;
}

.imggallery h3 {
    color: #000000;
    font-size: 32px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 30px;
}

.imggallery_in {
    width: 100%;
}

.imggallery_pic {
    width: 100%;
}

.imggallery_pic img {
    width: 100%;
}

.planing_gallery {
    column-count: 1;
    --webkit-column-count: 1;
    --moz-column-count: 1;
    gap: 0;
    padding: 0;
}

.planing_gallery .galleryimg {
    margin-bottom: 1rem;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.relative_product {
    width: 100%;
    background-color: #fff;
    padding-bottom: 30px;
}

.relative_product .container {
    max-width: 1000px;
}

.relative_product h3 {
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    text-align: left;
    margin-bottom: 30px;
}

.relative_product .featuredarea {
    padding: 0px;
}

.relative_product .row>* {
    padding-right: 0;
    padding-left: 0;
}

.relative_product .featuredtext h4 a {
    font-weight: 400;
}

.featuredarea:hover .featuredtext {
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, .1);
    transition: 0.6s;
}

.relative_product .featuredtext {
    padding: 34px 10px 15px;
    position: relative;
}
.relative_product .featuredtext a{
	color:#6c6c6c;
}
.relative_product .featuredtext h4 a{
	color:#000;
	font-size:20px;
}
.relative_product .featuredarea .btn {
    display: none;
}

.quickview {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    padding: 4px 8px;
    text-align: center;
    transition: 0.6s;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    font-size: 14px;
}

.quickview:hover .quickview {
    background: #000;
    opacity: 1;
}

.featuredarea:hover .quickview {
    opacity: 1;
}

#quickview .modal-dialog {
    max-width: 65%;
}

#quickview .modal-body {
    padding: 0;
}

.modalleft {
    width: 100%;
}

.modalrihgt {
    width: 100%;
    padding: 25px;
}

.modalrihgt h2 {
    font-size: 42px;
    color: #000;
    font-weight: 500;
    margin-bottom: 15px;
}

.modalrihgt p {
    font-size: 16px;
    color: #6c6c6c;
    font-weight: 400;
    padding-bottom: 20px;
    border-bottom: 2px solid #cfcfcf;
}

.modalrihgt h6 {
    font-size: 13px;
    color: #646464;
    font-weight: 400;
}

.modalrihgt h6 a {
    color: #000;
    font-weight: 500;
}

#quickview .modal-header {
    padding: 0;
    border-bottom: none;
    height: 0;
}

#quickview .modal-header .btn-close {
    background-color: #fff;
    border-radius: 50%;
}

#quickview .btn-close {
    opacity: 1;
    background-size: 12px;
    padding: 5px;
    box-shadow: 0 0 4px #4c4c4c;
}

#quickview .modal-content {
    border-radius: 0;
}

.modal_slide .owl-nav {
    position: absolute;
    top: -130px;
    width: 100%;
    left: 0;
    right: 0;
    text-align: center;
}

.modal_slide .owl-nav button.owl-prev, .modal_slide .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    color: #3A4A32;
    font-size: 30px;
}

.modal_slide .owl-nav button.owl-prev span {
    position: relative;
    top: -7px;
}

.modal_slide .owl-nav button.owl-next span {
    position: relative;
    top: -7px;
}

.modal_slide .owl-nav button.owl-prev {
    left: -10px;
    position: relative;
}

.modal_slide .owl-nav button.owl-next {
    right: 0px;
    position: relative;
    margin-left: auto;
}

.modal_slide .owl-nav button.owl-prev:hover, .modal_slide .owl-nav button.owl-next:hover {
    background: #fff;
    color: #000;
    transition: all .3s ease-in-out;
}

.modal_slide .owl-nav button.owl-prev {
    left: -5px;
/*    position: absolute;*/
    ;
}

/*.blogpost_slide .owl-nav {
    position: absolute;
    display: block !important;
    right: 0px;
}*/

.modal_slide .owl-nav {
    position: absolute;
    top: 42%;
    display: inline-flex;
    right: 0;
    justify-content: start;
    align-items: center;
    padding: 0 15px;
}

.modal_slide .owl-nav button.owl-prev:hover, .modal_slide .owl-nav button.owl-next:hover {
    background: transparent;
    transition: all .3s ease-in-out;
}

.slide_panelimg {
    width: 100%;
    height: 520px;
    display: flex;
    overflow: hidden;
}

.contact_sec {
    width: 100%;
}

.h1, .entry-content h1 {
    font-size: 48px;
    font-size: 3rem;
    font-family: 'Poppins',sans-serif;
    line-height: 1.4em;
    text-transform: capitalize;
}

/*// contactus start */
.contactus {
    width: 100%;
    padding: 65px 0;
    background-color: #fafafa;
}

.contactus h1 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
    text-align: center;
}

.contactus p {
    font-size: 16px;
    color: #1a1a1a;
    text-align: center;
    width: 55%;
    margin: 0 auto;
}

.contact_in {
    width: 100%;
    margin-top: 80px;
}

.address_card {
    width: 100%;
}

.location {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: start;
    gap: 25px;
}

.location_icon {
    width: 55px;
    height: 55px;
    background-color: #EFEFEF;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-basis: 55px;
    flex-shrink: 0;
}

.location_icon i {
    color: #edb932;
    font-size: 26px;
}

.contactus h6 {
    font-size: 13px;
    color: #edb932;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contactus h4 {
    font-size: 24px;
    color: #6c6c6c;
    font-weight: 600;
    margin: 15px 0;
}

.location p {
    font-size: 16px;
    color: #1a1a1a;
    text-align: left;
    width: 100%;
}

.contat_card {
    width: 100%;
}

.location {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: start;
    gap: 15px;
}

.contactus h5 {
    font-size: 18px;
    color: #6c6c6c;
    font-weight: 600;
    margin-top: 10px;
}

.contat_card .location_icon {
    width: auto;
    height: auto;
    background-color: transparent;
    border-radius: 0;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-basis: 55px;
    flex-shrink: 0;
}

.contat_card .location_icon i {
    color: #edb932;
    font-size: 18px;
}

.contat_card .location_icon .fa-phone {
    transform: rotate(265deg);
}

.map_section {
    width: 100%;
    padding: 25px 0 100px;
    background-color: #fafafa;
}

.map iframe {
    width: 100%;
    height: 600px;
}

.messagebox {
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 64px 80px -24px rgba(0, 0, 0, 0.24);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 70px 64px 70px 64px;
    margin-top: -45px;
}

.messagebox h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
    text-align: center;
}

.formbox {
    width: 100%;
}

.messagebox label {
    width: 100%;
    font-size: 16px;
    color: #6c6c6c;
    font-weight: 600;
    margin-bottom: 5px;
}

.messagebox label span {
    color: red;
}

.field02, .textfield02 {
    width: 100%;
    border: 1px solid #000;
    font-family: "Poppins", serif;
    background-color: #fff;
    font-size: 15px;
    color: #000;
    padding: 12px 15px 12px 15px;
    height: 45px;
    font-weight: 400;
    margin-bottom: 20px;
    position: relative;
    transition: 0.6s;
}

.textfield02 {
    height: 120px;
    margin-bottom: 20px;
}

.submit02 {
    transition: 0.5s;
    font-size: 13px;
    font-weight: 600;
    margin-top: 25px;
    letter-spacing: 2px;
    transition: 0.6s;
    background-color: transparent;
    color: #000;
    border: none;
    text-transform: uppercase;
}

.messagebox img {
    width: 75%;
}

@media (min-width: 992px) {
    .map_section .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
        padding-right: 0;
    }

    .map_section .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
        padding-left: 0;
    }
}

.newsletter {
    width: 100%;
    padding: 50px 0 0;
    background-color: #fafafa;
}

.newsletter .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.newsletterpic {
    width: 100%;
    height: 380px;
    position: relative;
    display: flex;
    overflow: hidden;
}

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

/*@media (min-width: 992px) {
    .newsletter .col-lg-6 {
        flex: 0 0 auto;
        width: 58.33333333%;
        padding-right: 0;
    }
    .newsletter .col-lg-6 {
        flex: 0 0 auto;
        width: 41.66666667%;
        padding-left: 0;
    }
}*/

.newsletter_right {
    width: 100%;
    padding: 70px;
    background-color: #fff;
    margin-top: -50px;
}

.newsletter_right h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

.newsletter_right h6 {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 2px;
    position: relative;
    padding-left: 35px;
    color: #bc9127;
    display: inline-block;
    text-transform: uppercase;
}

.newsletter_right h6::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 25px;
    height: 1px;
    background-color: #bc9127;
}

.newsletter_right .field02 {
    width: 60%;
    border: 1px solid #000;
    background-color: #fff;
    font-size: 15px;
    color: #000;
    padding: 12px 15px 12px 15px;
    height: 45px;
    font-weight: 400;
    margin-bottom: 20px;
    position: relative;
    transition: 0.6s;
}

.newsletter_right img {
    width: 60%;
}


/*// news start */
.news {
    width: 100%;
    padding: 65px 0;
    background-color: #fafafa;
}

.news h1 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
    text-align: center;
}

.news_in {
    width: 100%;
    margin-top: 80px;
}

.news_left {
    width: 100%;
    position: relative;
}

.news_leftpic {
    width: 100%;
    height: 758px;
    display: flex;
    overflow: hidden;
    position: relative;
}

.news_leftpic::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(0,0,0,1) 100%);
    opacity: 0.3;
    z-index: 1;
}

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

.news_left_content {
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 30px;
    z-index: 22;
}

.btn01 {
    background-color: #818a91;
    padding: 2px 6px 2px 6px;
    border-radius: 2px 2px 2px 2px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    font-size: 13px;
}

.btn01:hover {
    color: #ffffff;
}

.btn02 {
    background-color: #edb932;
    padding: 7px 12px;
    border-radius: 5px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    font-size: 13px;
    text-decoration: none;
}

.btn02:hover {
    color: #fff;
}

.news_left_content h4 {
    font-size: 18px;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 600;
    margin: 10px 0 15px;
}

.news_right {
    width: 100%;
    position: relative;
    margin-bottom: 25px;
    background-color: #f6f6f6;
}

.post_row {
    width: 100%;
}

.post_row ul {
    padding: 0;
    margin: 0 0 15px 0;
    list-style: none;
}

.post_row ul li {
    display: inline-block;
    font-size: 12px;
    color: #adadad;
    margin-right: 5px;
}

.post_row ul li a {
    font-size: 12px;
    color: #adadad;
    margin-right: 5px;
    text-decoration: none;
}

.news_rightpic {
    height: 236px;
    position: relative;
    display: flex;
    overflow: hidden;
}

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

.content_box {
    width: 100%;
    padding: 20px 10px;
    height: 236px;
}

.news_right .news_left_content {
    width: auto;
    position: inherit;
    bottom: 0;
    padding: 0px;
    display: flex;
    align-items: start;
    flex-direction: column;
}

.news_right .news_left_content h4 {
    font-size: 18px;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    margin: 10px 0 15px;
}

.page-link {
    color: #3a3a3a;
    background-color: transparent;
    border: none;
}

.page-item:first-child .page-link {
    border-radius: 0;
  background-color: #ffdf17;
  color: #000;
}

.page-link:hover {
    color: #bc9127;
    background-color: var(--bs-pagination-hover-bg);
    border-color: var(--bs-pagination-hover-border-color);
}

.page-item:last-child .page-link {
    border-radius: 0;
}

/*// our_team start */
.our_team {
    width: 100%;
    padding: 65px 0;
    background-color: #fafafa;
}

.our_team h1 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
    text-align: center;
}

.our_teamin {
    width: 100%;
    margin-top: 80px;
}

.teampic {
    height: 640px;
    position: relative;
    display: flex;
    overflow: hidden;
}

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

.our_teamin_right {
    width: 100%;
    padding-left: 50px;
}

.our_teamin_right p {
    font-size: 16px;
}

.our_teamin_right h4 {
    font-size: 24px;
    color: #000;
    font-weight: 700;
}

.team_cardsec {
    width: 100%;
    padding: 50px 0 100px;
    background-color: #fafafa;
}

.team_cardsec_box {
    width: 100%;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    transition: 0.6s;
}

.team_cardsec_box:hover {
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.07);
}

.team_cardsec_box h4 {
    font-size: 22px;
    color: #000;
    font-weight: 700;
    margin-bottom: 10px;
}

.team_cardsec_box p {
    margin-bottom: 0;
}

.team_card_top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    margin-bottom: 15px;
}

.circlePic {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-basis: 72px;
    flex-shrink: 0;
}

/* // countersec start */

.countersec {
    width: 100%;
    background-color: #1a1a1a;
    opacity: 0.5;
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: end;
}

.counter_box {
    width: 100%;
    background-color: #fff;
    padding: 20px;
    position: relative;
    opacity: 1;
}

#counter {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#counter .item {
    width: 25%;
    padding: 15px 35px;
    margin: 10px;
    text-align: center;
    border-radius: 0;
}

#counter .item .count {
    color: #808285;
    margin-bottom: 5px;
    font-size: 48px;
    font-weight: 600;
    display: inline-block;
}

#counter .item h3, #counter .item3 h3  {
    color: #808285;
    text-transform: capitalize;
    font-size: 14px;
    position: relative;
}

#counter .item3 h3::after {
    content: "+";
    position: absolute;
    top: -60px;
    right: 0;
    font-size: 48px;
    color: #808285;
}

/*// aboutus start */
.aboutus {
    width: 100%;
}

.aboutus p {
    font-size: 16px;
    color: #1a1a1a;
    text-align: center;
    width: 65%;
    margin: 0 auto;
}

.aboutus_pic_area {
    width: 100%;
    background-color: #fff;
    padding: 0 0 80px;
}

.aboutus_pic_area_left {
    width: 100%;
    padding-right: 50px;
}

.aboutus_pic_area_right {
    width: 100%;
}

.aboutus_pic_area_leftpic {
    height: 550px;
    position: relative;
    display: flex;
    overflow: hidden;
}

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

.aboutus_pic_area_rightpic {
    height: 400px;
    position: relative;
    display: flex;
    overflow: hidden;
}

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

/*// aboutus_counterbg */
.aboutus_counterbg {
    width: 100%;
    min-height: 600px;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: end;
}

.aboutus_counterbg::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    opacity: 0.5;
}

/*// servicing */
.servicing {
    width: 100%;
    padding: 80px 0;
    background-color: #fafafa;
}

.servicing h3 {
    font-size: 32px;
    color: #1a1a1a;
    font-weight: 700;
    position: relative;
    margin-bottom: 40px;
}

.servicing h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 230px;
    height: 2px;
    background-color: #edb932;
}

.servicing p {
    font-size: 16px;
    color: #1a1a1a;
    margin-top: 25px;
}


.servicing ul {
    padding: 0;
    margin: 0;
    list-style-type: disc;
}

.servicing ul li {
    font-size: 16px;
    color: #1a1a1a;
    margin-top: 15px;
    width: 100%;
    margin-left: 45px;
}

.servicing_left {
    width: 100%;
    padding-right: 50px;
}

.servicing_right {
    width: 100%;
    padding-left: 50px;
}

/*// glasspopulated*/
.glasspopulated {
    width: 100%;
    background-color: #fafafa;
    padding-bottom: 80px;
}

.glasspopulated_card {
    width: 100%;
}

.glasspopulated h2 {
    font-size: 40px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 20px;
}

.glasspopulated_card {
    height: 500px;
    position: relative;
    display: flex;
    overflow: hidden;
    margin-bottom: 35px;
}

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

.glasspopulated_card a {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
    position: relative;
    color: #000;
    padding-left: 25px;
    display: inline-block;
    text-transform: uppercase;
}

.glasspopulated_card p {
    font-size: 16px;
    color: #1a1a1a;
    padding-right: 50px;
}

/*// news_detiles */
.news_detiles {
    width: 100%;
    padding: 80px 0;
    background-color: #fafafa;
}
.news_detiles_left {
    width: 100%;
    padding: 0 35px 80px;
    background-color: #fff;
}

.news_detiles_leftpic {
    height: auto;
    display: flex;
    position: relative;
    overflow: hidden;
}
.news_detiles_leftpic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_detiles_left h2 {
    font-size: 28px;
    color: #1a1a1a;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin: 25px 0 15px;
}
.news_detiles_left h6 {
    width: 100%;
    text-align: center;
    font-weight: 400;
    margin-bottom: 15px;
}

.news_detiles_left h6 a {
    font-size: 16px;
    color: #1a1a1a;
}

.news_detiles_left h6 a:hover {
    color: #bc9127;
}

.news_detiles_leftvdo {
    height: 450px;
    display: flex;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.news_detiles_leftvdo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_detiles_leftvdo .fa-circle-play {
    font-size: 72px;
    color: #edb932;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.about_author {
    width: 100%;
    border-top: 1px solid #dddddd;
    margin-top: 32px;
}

.about_author h3 {
    font-size: 32px;
    color: #000;
    font-weight: 700;
    padding: 25px 0 0 25px;
    margin-bottom: 35px;
}

.about_author a {
    font-size: 24px;
    color: #000;
    font-weight: 800;
    margin-left: 60px;
}

.prevnext {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
}

.prevnext a {
    font-size: 16px;
    color: #1a1a1a;
}

.news_detiles_right {
    width: 100%;
}

.search_box {
    width: 100%;
    background-color: #fff;
    padding: 20px;
}

.search_box .search {
    width: 100%;
    margin: 20px auto 25px;
    position: relative;
}

.search_box .dgwt-wcas-search-input {
    background: #fff;
    box-shadow: none;
    border: 1px solid #000;
    width: 100%;
    height: 45px;
    border-radius: 2px;
    padding: 6px 40px 6px 10px;
}

.search_box .search button {
    background: transparent;
    border: none;
    position: absolute;
    left: auto;
    right: 7px;
    top: 13px;
    font-size: 18px;
    color: #000;
    display: flex;
    align-items: end;
    justify-content: end;
}

.recent_news {
    width: 100%;
    background-color: #fff;
    padding: 20px;
    margin-top: 25px;
}
.recent_news h4 {
    font-size: 22px;
    color: #6c6c6c;
    font-weight: 500;
}
.recent_news a {
    font-size: 16px;
    color: #404040;
    font-weight: 500;
    margin-top: 10px;
    display: block;
}
.recent_news a:hover {
    color: #bc9127;
}
.add_gifbox {
    padding: 15px 0 0;
}



.subcategory-filter:checked {
    background-color: #dbbc00 !important;
    -webkit-appearance: none !important;
    width: 13px !important;
    height: 13px !important;
    border-radius: 50% !important;
}

.filter-item input[type="checkbox"] {
    margin-right: 8px;
    accent-color: #dbbc00;
}

.active > .page-link, .page-link.active {
  z-index: 3;
  color: #000;
  background-color: #ffde1b;
  border-color: #ffde19;
}


.headerright {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 70px;
}

.allproduct {
	width: 100% !important;
	display: block !important;
	text-align: right !important;
}
.allproduct .mega-menu-link {
	border: 1px solid #bc9127 !important;
	padding: 8px 15px !important;
	transition: 0.5s !important;
	position: relative !important;
	top: -8px !important;
	right: -42px !important;
	font-size: 12px !important;
}
.allproduct .mega-menu-link:hover{
	background-color:#bc9127 !important;
	color:#000000 !important;
}

.Productsmenu102 .mega-sub-menu .mega-menu-item{
	
}
.Productsmenu102 .mega-sub-menu .mega-menu-item a {
	width: 70% !important;
	border-bottom: 1px solid #999 !important;
	padding-bottom: 20px !important;
}










