*{margin: 0; padding: 0;}
body{font-family: "Poppins", sans-serif;  box-sizing: border-box;}
figure{margin: 0;}
img{max-width: 100%;}
a{text-decoration: none; transition: all 0.2s ease-in-out; color: #000000;}
ul{padding: 0; margin: 0;}
li{padding: 0; list-style: none;}
p{margin: 0;}
h1,h2,h3,h4,h5,h6{
    font-family: "Cal Sans", sans-serif;
}
.btn{
    font-size: 15px;
    font-weight: 500;
    border-radius: 50px;
    padding: 5px 15px;
    background-color: #231F20;
    border: 1px solid transparent;
    color: #fff;
    min-width: 151px;
    min-height: 50px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition:  all 0.3s ease-in-out;

}
.btn:hover{
     color: #231F20;
     border-color: #231F20;
}
.btn::before{
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    background-color: #fff;
    width: 0;
    height: 100%;
    transition:  all 0.3s ease-in-out;
    z-index: -1;
}
.btn::after{
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    background-color: #fff;
    width: 0;
    height: 100%;
    transition:  all 0.3s ease-in-out;
    z-index: -1;
}
.btn:hover::before , .btn:hover::after{
    width: 51%;
}
.btn.btn-white{
    background-color: #EDEDED;
    color: #231F20;
    padding: 5px 23px;
    min-width: 174px;
}
.btn.btn-white::before , .btn.btn-white::after{
    background-color: #231F20;
}
.btn.btn-white:hover{
    color: #fff;
}

.btn.btn-outline{
    background-color: #fff;
    color: #231F20;
    border-color: #231F20;
    padding: 5px 23px;
    min-width: 174px;
}
.btn.btn-outline::before , .btn.btn-outline::after{
    background-color: #231F20;
}
.btn.btn-outline:hover{
    color: #fff;
}
.btn.btn-fill{
    min-width: 174px;
}
 header{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
    padding: 20px 0;
    transition: all 0.3s ease-in-out;
 }
 header.bg-dark{
    background-color: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(10px);
 }
 header .logo img{
    transition: all 0.3s ease-in-out;
 }
 header.bg-dark .logo img{
    max-width: 100px;
 }
 .navbar li:not(:last-child){
    margin-right: 30px;
 }
 .navbar li a{
    font-size: 17px;
    font-weight: 500;
    line-height: 26px;
    color: #EDEDED;
    transition: all 0.3s ease-in-out;
    position: relative;
    padding-bottom: 3px;
}
 .navbar li a:hover{
    color: #fff;
 }
 .navbar li a::after {
	content: "";
	width: 0;
	height: 2px;
	background: #fff;
	position: absolute;
	left: 50%;
    top: auto;
    bottom: 0;
	transition: all 0.3s ease 0s;
}
.navbar li a:hover:after {
	width: 100%;
	left: 0;
}
 .navbar li a.active{
    color: #fff;
 }
 .navbar li a.active::after{
    width: 100%;
	left: 0;
 }
 .header-right{
    width: 100%;
    padding-left: 72px;
}
 .header-right .btn-white{
    background-color: rgb(35, 31, 32,0.6);
    color: #ededed;
 }
 .header-right .btn-white img{
    margin-right: 9px;
 }
.main-banner-section .slick-dots{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 13px;
    left: 50%;
    transform: translateX(-50%);
    /* width: 100%; */
    background-color: rgb(35, 31, 32,0.50);
    border-radius: 20px;
    padding: 7px 8px;
}
.main-banner-section .slick-dots li:not(:last-child){
    margin-right: 5px;
}
.main-banner-section .slick-dots li button{
    font-size: 0 !important;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px  solid transparent;
    background-color: rgb(237, 237, 237,0.36);
    display: block;
    transition: all 0.3s ease-in-out;
}
.main-banner-section .slick-dots li.slick-active button{
    background-color: #fff;
    border-color: #fff;
}
.main-banner-section .item{
    min-height: 733px;
    padding-top: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
    background-position: center right !important;
    position: relative;
    z-index: 0;
    
}
.main-banner-section .item::before{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .20;
    background-color: #231F20;
    content: "";
    z-index: -1;
}
.main-banner-section .banner-content{
    max-width: 650px;
}
.main-banner-section .banner-content h1{
    font-size: 65px;
    line-height: 72px;
    color: #EDEDED;
    margin-bottom: 15px;
}
.main-banner-section .banner-content p{
    font-size: 17px;
    font-weight: 500;
    line-height: 26px;
    color: #EDEDED;
    margin-bottom: 37px;
    max-width: 580px;
}
.bg-light-grey{
    background-color: rgb(237, 237, 237,0.5) !important    ;
}
.bg-dark{
    background-color: #231F20 !important;
}
.bg-dark .heading :where(h2 , p){
    color: #fff;
}
.counter-section{
    background-color: #ededed;
    padding: 28px 0;
}
.static-counter{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px 0;
    justify-content: center;
    align-items: center;
}
.static-counter li{
    width: 20%;
    padding: 0 25px;
    text-align: center;
}
.static-counter li:not(:last-child){
    border-right: 1px solid rgb(35, 31, 32,0.2);
}
.static-counter li span{
    font-size: 40px;
    line-height: 45px;
    color: #231F20;
    font-family: "Cal Sans", sans-serif;

}
.static-counter li p{
    font-size: 16px;
    font-weight: 500;
    color: #231F20;
    margin-top: 9px;
    margin-bottom: 0;
}
.our-products-section{
    padding: 60px 0 57px;
    background: url(../images/cloths-bg.png) , #EDEDED;
}
.product-listing{
    margin: 35px -13px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.product-listing li{
    width: 25%;
    padding: 0 13px 27px;
    /* text-align: center; */
}
.product-listing li a{
    position: relative;
    z-index: 1;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.product-listing li a:hover{
    border-radius: 30px;
}
.product-listing li a::before{
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(35, 31, 32, 0) 0%, rgba(35, 31, 32, 0.9) 100%);
    content: "";
    z-index: 1;

}
.product-listing li a:hover::before{
    background: linear-gradient(180deg, rgba(35, 31, 32, 0) 0%, rgba(35, 31, 32, 0.9) 100%);
}
.product-listing li a span{
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-family: "Cal Sans", sans-serif;
    font-size: 30px;
    line-height: 36px;
    color: #EDEDED;
    z-index: 1;
}
.product-listing li a figure img{
    transition: all 0.3s ease-in-out;
}
.product-listing li a:hover figure img{
    transform: scale(1.05);
}
.heading h2{
    font-size: 40px;
    line-height: 45px;
    color: #231F20;
    font-family: "Cal Sans", sans-serif;
    margin-bottom: 15px;
    text-transform: capitalize;
}
.heading p{
    font-size: 16px;
    line-height: 26px;
    color: #231F20;
    margin-bottom: 0;
}
.heading span{
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    color: #231F20;
    padding-bottom: 7px;
    border-bottom: 2px solid #231F20;
    margin-bottom: 18px;
    display: block;
    width: fit-content;
}
.comman-data-box{
    padding: 60px 0;
    display: flex;
    flex-wrap: wrap;
}
.comman-data-box .left-box{
    width:calc(100% - 594px);
    padding-right: 80px;
}
.comman-data-box.flex-row-reverse .left-box{
    padding-left: 80px;
    padding-right: 0;

} 
.comman-data-box .left-box .btn{
    margin-top: 38px;
    font-weight: 600;
}
.comman-data-box .right-box{
    width:594px;
}
.comman-data-box .right-box figure{
    border-radius: 80px;
    overflow: hidden;
    
}
.comman-data-box .right-box figure img{
    width: 100%;
    transition: all 0.3s ease-in-out;
    transform: scale(1.04);
}
.comman-data-box .right-box:hover figure img{
    transform: scale(1);
}
.environment-inner-boxes{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}
.environment-inner-boxes>div{
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column;
}
.environment-inner-boxes>div figure{
    border-radius: 40px;
    overflow: hidden;
}
.environment-inner-boxes>div figure img{
    width: 100%;
    transition: all 0.3s ease-in-out;
    transform: scale(1.04);
}
.environment-inner-boxes>div figure:hover img{
    transform: scale(1);
}
.environment-inner-boxes>div .box-inner{
    background-color: #fff;
    padding: 28px 25px;
    border-radius: 40px;
}
.environment-inner-boxes>div .box-inner h3{
    font-size: 24px;
    line-height: 32px;
}
.environment-inner-boxes>div .box-inner p{
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
}
.achievement-section{
    padding: 50px 0;
}
.achievement-slider .items{
    padding: 0 10px;
}
.slick-dots{
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin:  10px auto 0;
    background-color: rgb(35, 31, 32,0.50);
    border-radius: 20px;
    padding: 7px 8px;
}
.slick-dots li:not(:last-child){
    margin-right: 5px;
}
.slick-dots li button{
    font-size: 0 !important;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px  solid transparent;
    background-color: rgb(237, 237, 237,0.36);
    display: block;
    transition: all 0.3s ease-in-out;
}
.slick-dots li.slick-active button{
    background-color: #fff;
    border-color: #fff;
}
footer{
    background-color: #231F20;
    overflow: hidden;
}
.footer-top{
    padding: 38px 0;
    margin-bottom: 29px;
    border-bottom: 1px solid rgb(237, 237, 237,0.2);
}
footer h3{
    font-size: 22px;
    color: #EDEDED;
    padding-bottom: 26px;
    margin-bottom: 25px;
    border-bottom: 2px solid #ededed;
    width: 100%;
}
footer h4{
    font-size: 18px;
    color: #EDEDED;
    padding-bottom: 9px;
}
footer p{
    font-size: 16px;
    font-weight: 400;
    color: #EDEDED;
    display: flex;
    align-items: center;
}
.footer-box{
    margin: 0 -30px;
}
.footer-box .box-inner{
    width: 25%;
    padding: 0 30px;
}
.footer-middle{
    padding: 30px 0;
}
.footer-middle .footer-box .box-inner:not(:first-child , :last-child){
    border-right: 1px solid rgb(237, 237, 237,0.2);
}
.footer-bottom{
    background-color: #000;
    padding: 19px 0;
}
.navbar.footer-nav li a{
    font-size: 16px;
}
p.copyright-text{
    font-size: 14px;
}

.enquiry-section li:not(:last-child){
    margin-bottom: 7px;
}
.enquiry-section li a{
    font-size: 16px;
    font-weight: 400;
    color: #EDEDED;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}
.enquiry-section li a:hover{
    color: #fff;
}
.enquiry-section li a img{
    margin-right: 10px;
    flex: 0 0 auto;
}
.who-we-are-section{
    padding: 50px 0;
    background-image: url(../images/warhouse-gallary.png);
    background-repeat: no-repeat;
    background-position: left;
    position: relative;
    z-index: 0;
    background-size: 46%;
}
.who-we-are-section::before{
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    width: 50%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
}
.who-we-are-section .inner-section{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: end;
}
.who-we-are-section .inner-section .left-wrap{
    width: calc(100% - 530px);
    display: flex;
    justify-content: end;
    padding-right: 95px;
}
.who-we-are-section .inner-section .left-wrap figure{
    border: 20px solid #fff;
    border-radius: 40px;
    overflow: hidden;
    margin-right: -40px;
}
.who-we-are-section .inner-section .left-wrap figure img{
    transition: all 0.3s ease-in-out;
    transform: scale(1.05);
}
.who-we-are-section .inner-section .left-wrap figure:hover img{
    transform: scale(1);
}
.who-we-are-section .inner-section .right-wrap{
    width: 530px;
}
.who-we-are-section .inner-section .right-wrap .btn{
    margin-top: 45px;
}
.points-table{
    margin-top: 20px;
}
.points-table li:not(:last-child){
    margin-bottom: 10px;
}
.points-table li{
    position: relative;
    z-index: 0;
    font-size: 16px;
    font-weight: 600;
    color: #231F20;
    padding-left: 32px;
}
.points-table li::before{
    position: absolute;
    left: 0;
    top: 3px;
    content: "";
    width: 22px;
    height: 22px;
    background-color: #129256;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/check_white_icon.svg);
    background-position: center;
    background-size: 11px;
    background-repeat: no-repeat;
}

.inner-banner-section{
    min-height: 496px;
    padding-top: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
    background-position: center right !important;
    position: relative;
    z-index: 0;
}
.inner-banner-section::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .40;
    background-color: #231F20;
    content: "";
    z-index: -1;
}

.inner-banner-section h1 {
    font-size: 65px;
    line-height: 72px;
    color: #EDEDED;
    margin-bottom: 15px;
}
.inner-banner-section p {
    font-size: 17px;
    font-weight: 500;
    line-height: 26px;
    color: #EDEDED;
    margin-bottom: 37px;
    max-width: 636px;
}
.rounded-6{
    border-radius: 80px !important;
}
.p-6{
    padding: 30px  !important;
}
.center-banner-section{
    position: relative;
    z-index: 0;
    min-height: 385px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/Intersect.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 60px 0;
}
.center-banner-section::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .45;
    background-color: #000000;
    content: "";
    z-index: -1;
}
.center-banner-section .heading :where(h2 , p){
    color: #fff;
}
.value-section{
    padding: 60px 0;
    margin: 100px 0 80px;
}
.value-section ul{
    display: flex;
    flex-wrap: wrap;
    margin: 45px -25px 0;
}
.value-section ul li{
    padding: 0 25px 50px;
    width: 33.33%;
}
.value-section ul li .inner-wrap{
    background-color: #fff;
    padding: 40px;
    border-radius: 40px;
    min-height: 223px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
}
.value-section ul li .inner-wrap:hover{
   border-color: rgb(35, 31, 32,0.2); 
    background-color: rgb(255, 255, 255,0.6);
    backdrop-filter: blur(12px);
}
.value-section ul li .inner-wrap figure{
    margin-bottom: 15px;
}
.value-section ul li .inner-wrap h3{
    font-size: 25px;
    line-height: 30px;
    color: #231F20;
    text-transform: capitalize;
    margin-bottom: 0;
}
.our-moto-section{
    display: grid;
    grid-template-columns: repeat(2 , 1fr);
    gap: 50px;
    margin: 80px 0;
}
.our-moto-section .inner-wrap{
    background-color: rgb(237, 237, 237,0.5);
    padding: 45px 29px;
    border-radius: 40px;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
}
.our-moto-section .inner-wrap:hover{
   border-color: rgb(35, 31, 32,0.4); 
    background-color: rgb(237, 237, 237,0.8);
}
.our-moto-section .inner-wrap figure{
    margin-bottom: 15px;
}
.our-moto-section .inner-wrap h3{
    font-size: 35px;
    line-height: 42px;
    color: #231F20;
    margin-bottom: 15px;
}
.our-moto-section .inner-wrap p{
    font-size: 16px;
    line-height: 26px;
    color: #231F20;
}
.bg-dark .static-counter li :where(span , p){
    color: #fff;
}
.bg-dark .static-counter li:not(:last-child){
    border-color: rgb(255, 255, 255,0.4);
}
.teams-section{
    margin: 80px 0;
}
.teams-section ul {
    display: grid;
    grid-template-columns: repeat(2 , 1fr);
    max-width: 1100px;
    margin: 45px auto 0;
    gap: 50px;
}
.teams-section ul li{
    background-color: #ededed;
    border:1px solid #DDDDDD;
    padding: 17px 15px;
    border-radius: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: start;
    transition: all 0.3s ease-in-out;
}
.teams-section ul li:hover{
   border-color: rgb(35, 31, 32,0.3); 
}
.teams-section ul li figure{
    width: 180px;
    height: 180px;
    border-radius: 40px;
    overflow: hidden;
    flex:  0 0 auto;
    margin-right: 20px;
    transition: all 0.3s ease-in-out;

}
.teams-section ul li figure img{
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;

}
.teams-section ul li:hover figure img{
    transform: scale(1);
}
.teams-section ul li h3{
    font-size: 37px ;
    line-height: 45px;
    color: #231F20;
    margin-bottom: 1px;
}
.teams-section ul li p{
    font-size: 18px;
    line-height: 25px;
    color: #000;
}
.awards-section{
    padding: 80px 0 40px;
}
.awards-slider{
    margin-top: 30px;
}
.awards-slider .slick-track{
    padding: 20px 0;
}
.awards-slider .items{
    padding:  0 14px;
}
.awards-slider .box-inner{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 40px;
    background-color: #fff;
    padding: 0 0 30px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border: 1px solid rgb(35, 31, 32,0.12);
}
.awards-slider .box-inner:hover{
   border-color: rgb(35, 31, 32,0.25); 
}

.awards-slider .box-inner figure{
    background-color: rgb(35, 31, 32,0.12);
    margin: 0 auto 20px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 228px;
    overflow: hidden;
}
.awards-slider .box-inner figure img{
    transition: all 0.3s ease-in-out;
}
.awards-slider .box-inner:hover figure img{
    transform: scale(1.05);
}
.awards-slider .box-inner h3{
    padding: 0 12px;
    margin: 0;
    text-align: center;
    font-size: 25px;
    line-height: 32px;
    color: #231F20;
}
.comman-slider .slick-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    font-size: 0 !important;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #000;
    border: 1px solid #000;
    transition: all 0.3s ease-in-out;
}
.comman-slider .slick-arrow:hover{
    background-color: #fff;
}
.comman-slider .slick-prev{
    left: -10px;
}
.comman-slider .slick-prev::before{
    background-image: url(../images/arrow-left.svg);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
    width: 22px;
    height: 22px;
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    transition: all 0.3s ease-in-out;
}
.comman-slider .slick-prev:hover::before{
    filter: invert(1) brightness(0);
}
.comman-slider .slick-next{
    right: -10px;
}
.comman-slider .slick-next::after{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
    width: 22px;
    height: 22px;
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url(../images/arrow-right.svg);
    transition: all 0.3s ease-in-out;
}
.comman-slider .slick-next:hover::after{
    filter: invert(1) brightness(0);
}
.products-footer-description {
    text-align: center;
}
.products-footer-description p{
    font-size: 16px;
    font-weight: 400;
    color: #231F20;
}
.garments-section{
    padding: 70px 0 56px;
}
.section-tabs .nav-tabs{
    justify-content: center;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 50px;
    background-color: #fff;
    width: fit-content;
    margin: 0 auto;
    padding: 7px 10px;
}
.section-tabs .nav-tabs .nav-item:not(:last-child){
    margin-right: 5px;
}
.section-tabs .nav-tabs .nav-item .nav-link{
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 18px;
    color: #231F20;
    min-height: 46px;
    font-family: "Cal Sans", sans-serif;
    transition: all 0.3s ease-in-out;
}
.section-tabs .nav-tabs .nav-item .nav-link.active{
    background-color: #231F20;
    color: #fff;
}
.product-list{
    display: flex;
    flex-wrap: wrap;
    margin: 31px -13px 0;
}
.product-list li{
    padding: 0 13px 26px;
    width: 33.33%;
}
.product-list li a{
    box-shadow: 0px 4px 4px 0px #00000040;
    display: block;
    border-radius: 20px;
    overflow: hidden;
}
.product-list li a figure{
    overflow: hidden;
}
.product-list li a figure img{
    width: 100%;
    transition: all 0.3s ease-in-out;
}
.product-list li a figure:hover img{
    transform: scale(1.03);
}
.product-list li a .content-box{
    padding: 20px 20px 32px;
}
.product-list li a .content-box h3{
    font-size: 25px;
    margin-bottom: 12px;
}
.product-list li a .content-box p{
    font-size: 16px;
    font-weight: 400;
    color: #231F20;
}
.our-value-section{
    margin-bottom: 80px;
}
.our-value-section ul {
    display: flex;
    flex-wrap: wrap;
    margin: 55px -19px 0;

}
.our-value-section ul li{
    width: 25%;
    padding: 0 19px;
    text-align: center;
    position: relative;
    z-index: 0;
}
.our-value-section ul li::before {
    position: absolute;
    left: 0;
    top: 55px;
    content: "";
    width: 49.4%;
    height: 1px;
    border: 1px  dashed rgba(0, 0, 0, 0.20);
    z-index: -1;
}   
.our-value-section ul li:nth-child(1):before{
    display: none;
}
.our-value-section ul li::after {
    position: absolute;
    left: 50%;
    top: 55px;
    content: "";
    width: 49.4%;
    height: 1px;
    border: 1px  dashed rgba(0, 0, 0, 0.20);
    z-index: -1;
} 
.our-value-section ul li:last-child:after{
    display: none;
}
.our-value-section ul li figure{
    width: 104px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 9px 2px #00000026;
    border-radius: 20px;
    margin: 0 auto 16px;
    position: relative;
    z-index: 0;
    background-color: #fff;
}   
.our-value-section ul li figure::before {
    position: absolute;
    right: -19px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/polygon-icon.svg);
    content: "";
    width: 20px;
    height: 20px;
    z-index: 1;
}   
.our-value-section ul li:last-child figure::before{
    display: none;
}
.our-value-section ul li h3{
    font-size: 25px;
    margin-bottom: 15px;
}
.our-value-section ul li p{
    font-size: 14px;
    color: #231F20;
}
.main-factory-section{
    margin: 90px 0 60px;
}
.production-lead-section{
    display: grid;
    grid-template-columns: repeat(2 , 1fr);
    gap: 52px;
    margin-top: 89px;
}
.production-lead-section .inner-box{
    border-radius: 40px;
    background-color: #fff;
    padding: 40px 8px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    text-align: center;
}
.production-lead-section .inner-box h3{
    font-size: 40px;
    color: #231F20;
    margin-bottom: 25px;
}
.production-lead-section .inner-box p{
    font-size: 16px;
    color: #231F20;
}
.production-lead-section .inner-box ul{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.production-lead-section .inner-box ul li:not(:last-child){
    border-right: 2px solid rgb(35, 31, 32,0.5);
    padding-right: 15px;
    margin-right: 15px;
}
.production-lead-section .inner-box ul li{
    font-size: 16px;
    line-height: 20px;
    color: #231F20;
    margin-bottom: 15px;
}
.process-section{
    padding: 27px 0 132px;
}
.process-slider{
    margin-top: 80px;
}
.process-slider .inner-wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.process-slider .items:nth-child(even) .inner-wrap{
    flex-direction: column-reverse;
} 
.process-slider .inner-wrap figure{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid #cfcfcf;
    display: flex;
    overflow: hidden;
}
.process-slider .inner-wrap figure img{
    object-fit: cover;
    height: 100%;
}
.process-slider .inner-wrap span{
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: block;
    background-color: #231F20;
    outline: medium double #231F20;
    margin:35px 0 18px;
}
.process-slider .items:nth-child(even) .inner-wrap span{
    margin:35px 0 25px;
}
.process-slider .inner-wrap h3{
    font-size: 20px;
    color: #231F20;
    margin-bottom: 8px;
    position: relative;
    width: 100%;
    text-align: center;
}
.process-slider .items:nth-child(even) .inner-wrap h3{
    margin: 8px 0 0;
}
.process-slider .inner-wrap h3::before{
    position: absolute;
    top: -28px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: rgb(217, 217, 217,0.5);
    content: "";
    z-index: -1;
}
.process-slider .items:nth-child(even) .inner-wrap h3::before{
    top: 64px;
}
.process-slider .inner-wrap p{
    font-size: 15px;
    color: #231F20;
    text-align: center;
    padding: 0 12px;
    display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.slick-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.compliances-section{
    padding: 80px 0 85px;
}
.compliances-section ul{
    display: grid;
    grid-template-columns: repeat(2 , 1fr);
    gap: 54px;
    margin-top: 30px;
}
.compliances-section ul li{
    border: 1px solid #DDDDDD;
    border-radius: 20px;
    background-color: #fff;
    padding: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    transition: all 0.3s ease-in-out;
}
.compliances-section ul li:hover{
    background-color: #f5f5f5;
}
.compliances-section ul li figure{
    width: 173px;
}
.compliances-section ul li >div{
    width: calc(100% - 173px);
    padding-left: 32px;
}
.compliances-section ul li h3{
    font-size: 24px;
    margin-bottom: 11px;
}
.compliances-section ul li p{
    font-size: 16px;
    line-height: 24px;
    color: #000;
}

.factory-overview{
    margin-bottom: 80px;
}
.factory-overview ul{
    display: grid;
    grid-template-columns: repeat(4 , 1fr);
    gap: 23px;
    margin-top: 45px;
}
.factory-overview ul li{
    padding: 24px;
    border-radius: 16px;
    background-color: rgb(237, 237, 237,0.5);
}
.factory-overview ul li figure{
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #231F20;
    margin-bottom: 16px;
}
.factory-overview ul li span{
    font-size: 12px;
    line-height: 18px;
    color: #64748B;
    margin-bottom: 5px;
}
.factory-overview ul li p{
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    color: #0F172A;
}
.factory-overview ul li p small{
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
    color: #64748B;
}
.contact-us-wrap{
    margin: 90px 0;
    display: flex;
    flex-wrap: wrap;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 20px;
    padding: 10px;
}
.contact-us-wrap .left-wrap{
    width: 486px;
    background-color: #232323;
    padding: 40px 40px 92px;
    border-radius: 10px;
}
.contact-us-wrap .left-wrap h3{
    font-size: 28px;
    color: #fff;
    margin-bottom: 6px;
}
.contact-us-wrap .left-wrap p{
    font-size: 18px;
    color: #C9C9C9;
    font-weight: 400;
}
.contact-us-wrap .left-wrap .enquiry-section{
    margin: 30px 0 49px;
}
.contact-us-wrap .left-wrap .enquiry-section li:not(:last-child) {
    margin-bottom: 30px;
}
.contact-us-wrap .left-wrap .enquiry-section li a{
    font-size: 16px;
    align-items: start;
}
.contact-us-wrap .left-wrap .enquiry-section li a img {
    margin-right: 25px;
}
.social-section{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.contact-us-wrap .right-wrap{
    width: calc(100% - 486px);
    padding-top: 40px;
    padding-left: 48px;
}
.form-group{
    margin-bottom: 45px;
}
.form-label{
    font-size: 13px;
    font-weight: 500;
    color: #000;
    padding-bottom: 3px;
    margin-bottom: 0;
    transition: all 0.3s ease-in-out;
}
.form-control{
    font-size: 14px;
    font-weight: 500;
    color: #000;
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
    padding: 0;
    padding-bottom: 10px;
}
.form-control:focus{
    box-shadow: none;
    border-color: #8D8D8D;
}
.form-group:has(.form-control:focus) .form-label{
    color: #8D8D8D;
}
.submit-btn.btn.btn-fill{
    min-width: 211px;
}
.google-map-section{
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 110px;
}
.google-map-section iframe{
    width: 100% !important;
}
.family-section{
    padding: 72px 0 100px;
}
.family-section .heading{
    margin-bottom: 60px;
}
.gallary-section{
    display: grid;
    grid-template-columns: repeat(3 , 1fr);
    gap: 42px;
}
.gallary-section figure{
    overflow: hidden;
    border-radius: 20px;
}
.gallary-section figure img{
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}
.gallary-section figure:hover img{
    transform: scale(1.1);
}
.schemes-section{
    padding: 60px 0;
}
.health-cover-points{
    max-width: 1010px;
    margin: 35px auto 0;
    display: flex;
    flex-wrap: wrap;
}
.health-cover-points li{
    width: 33.33%;
    padding-left: 45px;
    padding-right: 12px;
    padding-bottom: 25px;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: #231F20;
}
.health-cover-points li::before{
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../images/check-black-icon.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 30px;
    height: 30px;
    content: "";
}
.schemes-section .gallary-section{
    max-width: 1010px;
    margin: 20px auto 0;
    gap: 33px;
}
.sdg-section{
    padding: 60px 0;
}
.sustainability-section{
    margin: 100px 0 0;
}
.product-features-section{
    padding: 60px 0;
}
.product-features-slider{
    margin-top: 49px;
    max-width: 1049px;
    margin: 49px auto 0;
}
.feature-main-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 621px;
    flex-direction: column;
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}
.feature-main-box .inner-box {
    max-width: 148px;   
}
.feature-main-box .inner-box h3{
    font-size: 15px;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
    margin-bottom: 4px;

}
.feature-main-box .inner-box p{
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: #6D6E71;
}
.feature-main-box .top-section .inner-box{
    padding-left: 0;
    padding-bottom: 10px;
    border-left: none;
    border-bottom: 1px solid #696A6D;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}
.feature-main-box .top-section .inner-box::before {
    position: absolute;
    left: 50%;
    bottom: -42px;
    content: "";
    width: 2px;
    height: 42px;
    border-right: 1px solid #6D6E71;
    transform: translateX(-50%);
}
.feature-main-box .middle-section{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 150px;
}
.feature-main-box .bottom-section .inner-box{
    padding-left: 0;
    padding-top: 10px;
    border-left: none;
    border-top: 1px solid #696A6D;
    margin-top: 20px;
    text-align: center;
    position: relative;
}
.feature-main-box .bottom-section .inner-box::before {
    position: absolute;
    left: 50%;
    top: -42px;
    content: "";
    width: 2px;
    height: 42px;
    border-right: 1px solid #6D6E71;
    transform: translateX(-50%);
}
.feature-main-box .middle-section .inner-box:not(:last-child){
    margin-bottom: 70px;
}
.feature-main-box .middle-section .inner-box{
    padding-bottom: 10px;
    border-bottom: 1px solid #696A6D;
    position: relative;
}
.feature-main-box .middle-section .left-wrap .inner-box{
    text-align: right;
}
.feature-main-box .middle-section .inner-box::before {
    position: absolute;
    left: -86px;
    bottom: -28px;
    content: "";
    width: 72px;
    height: 72px;
    /* background-image: url(../images/tilt_icon.svg); */
    border-top: 1px solid #6D6E71;
    transform: rotate(145deg);
}
.feature-main-box .middle-section .left-wrap .inner-box::before{
    right: -86px;
    left: auto !important;
    transform: rotate(-145deg);
}
.feature-main-box .center-section{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    width: 430px;
    height: 430px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-main-box .center-section::before{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgb(35, 31, 32,0.05);
    border-radius: 50%;
    z-index: -1;

}
.feature-main-box .center-section::after{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
    width: 303px;
    height: 303px;
    content: "";
    background-image: url(../images/leaf-icon.svg);
    z-index: -1;
    background-repeat: no-repeat;
    background-size: 100%;
}
.value-section.bg-white ul li .inner-wrap{
    background-color: #f5f5f5;
} 
.product-features-slider .slick-slide{
    padding: 0 12px;
}
.feature-main-box .center-section{
    width: 450px;
    height: 450px;
}
.feature-main-box .center-section::after{
    width: 350px;
    height: 350px;
}
.feature-main-box .center-section figure{
    max-width: 250px;
}
.feature-main-box .top-section .inner-box::before{
    height: 65px;
    bottom: -65px;
}
.feature-main-box .bottom-section .inner-box::before{
    height: 65px;
    top: -65px;
}


@media(min-width:1311px){
    .container{
        max-width: 1311px;
        margin: 0 auto;
    }
}
@media(max-width:1399px){
    .who-we-are-section{
        background-size: 50%;
    }
    .value-section ul{
        margin: 0 -12px;
    }
    .value-section ul li{
        padding: 0 12px 40px;
    }
    .counter-section{
        overflow: hidden;
    }
    .product-listing{
        margin: 35px -12px 20px;
    }
    .product-listing li{
        padding: 0 12px 26px;
    }
    .product-list{
        margin: 31px -12px 0;
    }
    .product-list li{
        padding: 0 12px 26px;
    }
    .our-value-section ul{
        margin: 55px -12px 0;
    }
    .our-value-section ul li{
        padding: 0 12px;
    }
}
@media(max-width:1310px){
    .main-banner-section .item {
      min-height: 650px;
    }
    .static-counter{
        margin: 0 -15px 0;
    }
    .static-counter li{
        padding: 0 15px;
    }
    .static-counter li p{
        font-size: 15px;
    }
    .who-we-are-section{
        background-size: 55%;
    }
    .who-we-are-section::before {
        width: 60%;
    }
    .product-listing li a span{
        font-size: 26px;
    }
    .environment-inner-boxes > div .box-inner h3 {
        font-size: 18px;
        line-height: 26px;
    }
    .awards-slider .box-inner h3{
        font-size: 21px;
    }
}
@media(max-width:1199px){
    .main-banner-section .item {
	    min-height: 550px;
    }
    .main-banner-section .banner-content h1 {
        font-size: 55px;
        line-height: 62px;
    }
    .header-right {
        padding-left: 35px;
    }
    .navbar li:not(:last-child) {
	    margin-right: 20px;
    }

    header .logo img {
	    max-width: 90px;
    }
    header.bg-dark .logo img {
	    max-width: 85px;
    }
    .static-counter li span{
        font-size: 35px;
    }
    .heading h2{
        font-size: 33px;
        line-height: 40px;
    }
    .who-we-are-section .inner-section .right-wrap {
	    width: 450px;
    }
    .who-we-are-section {
        background-size: 64%;
        background-position: left center;
    }
    .navbar li a {
        font-size: 16px;
    }
    .product-listing li a span {
        font-size: 22px;
        line-height: 30px;
    }
    .comman-data-box .left-box {
        width: calc(100% - 500px);
        padding-right: 60px;
    }
    .comman-data-box.flex-row-reverse .left-box {
        padding-left: 60px;
        padding-right: 0;
    }
    .comman-data-box .right-box{
        width: 500px;
    }
    .environment-inner-boxes > div .box-inner{
        padding: 25px 20px;
    }
    .environment-inner-boxes > div .box-inner h3 {
        font-size: 16px;
        line-height: 24px;
    }
    .environment-inner-boxes > div .box-inner p{
        font-size: 14px;
    }
    footer p{
        font-size: 15px;
    }
    .enquiry-section li a{
        font-size: 15px;
    }
    .footer-box {
        margin: 0 -20px;
    }
    .footer-box .box-inner {
        padding: 0 20px;
    }
    .main-banner-section .item::before {
        opacity: 0.35;
    }
    .value-section ul li .inner-wrap figure {
        max-width: 60px;
    }
    .value-section ul li .inner-wrap h3{
        font-size: 23px;
    }
    .value-section ul li .inner-wrap{
        padding: 30px 20px;
        min-height: 200px;
    }
    .teams-section ul li figure{
        width: 130px;
        height: 130px;
    }
    .teams-section ul li h3{
        font-size: 29px;
        line-height: 35px;
    }
    .teams-section ul li p{
        font-size: 16px;
        line-height: 25px;
    }
    .awards-slider {
        margin-top: 20px;
    }    
    .awards-slider .box-inner h3 {
        font-size: 19px;
    }
    .our-moto-section{
        gap: 30px;
        margin: 50px 0;
    }
    .teams-section ul{
        gap: 20px;
    }
    .teams-section ul li figure {
        width: 110px;
        height: 110px;
        border-radius: 30px;
    }
    .awards-section {
        padding: 50px 0 40px;
    }
    .our-value-section ul li::before , .our-value-section ul li::after{
        top: 45px;
        width: 48.7%;
    }
    .our-value-section ul li figure{
        width: 84px;
        height: 90px;
    }
    .our-value-section ul li h3{
        font-size: 22px;
    }
    .product-list li a .content-box h3{
        font-size: 22px;
    }
    .product-list li a .content-box p{
        font-size: 14px;
    }
    .production-lead-section .inner-box h3{
        font-size: 29px;
        margin-bottom: 20px;
    }
    .production-lead-section .inner-box p{
        font-size: 15px;
    }
    .production-lead-section .inner-box ul li{
        font-size: 15px;
        line-height: 18px;
    }
    .production-lead-section{
        gap: 30px;
    }
    .process-slider .inner-wrap p{
        font-size: 14px;
    }
    .process-slider .items:nth-child(even) .inner-wrap h3::before {
        top: 68px;
    }
    .process-slider .items:nth-child(even) .inner-wrap span {
        margin: 39px 0 25px;
    }
    .compliances-section ul li{
        padding: 25px 17px;
    }
    .compliances-section ul li >div{
        padding-left: 25px;
    }
    .compliances-section ul li h3{
        font-size: 22px;
    }
    .compliances-section ul li p{
        font-size: 15px;
    }
    .factory-overview ul{
        gap: 15px;
    }
    .factory-overview ul li{
        padding: 24px 18px;
    }
    .factory-overview ul li p{
        font-size: 16px;
        line-height: 23px;
    }
    .compliances-section ul{
        gap: 30px;
    }
    .contact-us-wrap .left-wrap{
        width: 406px;
    }
    .contact-us-wrap .right-wrap{
        width: calc(100% - 406px);
        padding-left: 20px;
    }
}
@media(max-width:991px){
    .container{
        max-width: 100%;
    }
    .header-right{
        justify-content: end;
    }
    /* menu bar */

    .menu-bar {
        border: 0;
        display: block;
        background-color: transparent;
        width: 30px;
        height: 25px;
        position: relative;
        transition: all 0.3s ease-in-out;
        margin-left: 20px;
        flex: 0 0 auto;
    }
    .menu-bar span {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        border-radius: 50px;
        background-color: #EDEDED;
        transition: all 0.3s ease-in-out;
    }
    .menu-bar span:nth-of-type(2) {
        top: 10px;
    }
    .menu-bar span:nth-of-type(3) {
        top: 20px;
    }
    .menu-bar.open span:nth-of-type(1) {
        transform: rotate(45deg);
        top: 10px;
    }
    .menu-bar.open span:nth-of-type(2) {
        width: 0;
    }
    .menu-bar.open span:nth-of-type(3) {
        transform: rotate(-45deg);
        top: 10px;
    }
    header .navbar{
        position: absolute;
        top: 86px;
        left: 0;
        background-color: #fff;
        display: block;
        width: 100%;
        padding:  0;
        z-index: 999;
        height: 0;
        border-top: 1px solid transparent;
        transition: all 0.3s ease-in-out;
        overflow-y: auto;
        opacity: 0;
    }

    header .navbar>li {
        margin: 0 !important;
    }
    /* header .navbar>li:not(:last-child) {
        margin-bottom: 20px;
    } */
    header .navbar.show{
        height: calc(100vh - 85px);
        padding: 5px 0 20px;
        border-color: #ddd;
        transition: all 0.3s ease-in-out;
        opacity: 1;
    }
    header:has(.navbar.show) {
        background-color: rgba(0, 0, 0, 0.85) !important;
        backdrop-filter: blur(10px);
    }
    
    /* menu bar */
    .stop-scroll {
        overflow: hidden;
    }
    .static-counter {
        margin: 0 -12px 0;
    }
    .static-counter li {
        padding: 0 12px;
        width: 33.33%;
        margin-bottom: 20px;
    }
    
    .footer-box {
        margin: 0 -10px;
        flex-wrap: wrap;
    }
    .footer-box .box-inner{
        width: 50%;
    }
    .footer-box .box-inner {
        padding: 0 10px 30px;
    }
    .who-we-are-section{
        background-size: cover;
    }
    .who-we-are-section .inner-section .left-wrap figure {
        margin-right: 0;
        width: 100%;
    }
    .who-we-are-section .inner-section .left-wrap figure img{
        width: 100%;
    }
    .who-we-are-section::before{
        /* display: none; */
        width: 100%;
        height: 100%;
        opacity: 0.9;
        backdrop-filter: blur(20px 0);
    }
    .who-we-are-section .inner-section .left-wrap{
        width: 100%;
        padding: 0;
        justify-content: center;
    }
    .who-we-are-section .inner-section .right-wrap{
        width: 100%;
        padding-top: 25px;
    }
    .product-listing{
        margin: 35px -10px 20px;
    }
    .product-listing li{
        width: 33.33%;
        padding: 0 10px 23px;
    }
    .who-we-are-section{
        padding: 10px 0 50px;
    }
    .who-we-are-section .inner-section .right-wrap .btn {
        margin-top: 30px;
    }
    .comman-data-box .left-box {
        width: calc(100% - 390px);
        padding-right: 40px;
    }
    .comman-data-box.flex-row-reverse .left-box {
        padding-left: 40px;
        padding-right: 0;
    }
    .comman-data-box .right-box {
        width: 390px;
    }
    .heading h2 {
        font-size: 30px;
        line-height: 37px;
    }
    .footer-top{
        padding: 38px 0 10px;
        margin-bottom: 0;
    }
    footer h3{
        padding-bottom: 15px;
    }
    .footer-middle .footer-box .box-inner{
        border: none !important;
        border-bottom: 1px solid rgb(237, 237, 237, 0.1) !important;
    }
    .footer-middle .footer-box .box-inner{
        padding-bottom: 20px;
    }
    .footer-middle .footer-box .box-inner:nth-child(odd){
        border-right: 1px solid rgb(237, 237, 237, 0.1) !important;
    }
    .footer-middle .footer-box .box-inner:nth-last-of-type(1){
        border-bottom: none !important;
        padding-top: 20px;
    }
    .footer-middle .footer-box .box-inner:nth-last-of-type(2){
        border-bottom: none !important;
        padding-top: 20px;
    }
    .footer-nav {
        width: 100%;
        justify-content: center;
        padding: 0 0 8px;
    }
    .copyright-text{
        text-align: center;
        width: 100%;
        justify-content: center;
    }
    header .navbar li a{
        color: #231F20;
        display: block;
        padding: 13px 12px;
        border-bottom: 1px solid #ddd;
        width: 100%;
    }
    .main-banner-section .banner-content h1 {
        font-size: 47px;
        line-height: 55px;
    }
    .comman-data-box .right-box.min-height figure{
        min-height: 520px;
        display: flex;
    }
    .comman-data-box .right-box.min-height figure img{
        object-fit: cover;
    }
    .center-banner-section{
        min-height: 325px;
    }
    .value-section ul li .inner-wrap h3 {
        font-size: 21px;
    }
    .our-moto-section{
        gap: 15px;
    }
    .our-moto-section .inner-wrap h3{
        font-size: 30px;
    }
    .our-moto-section .inner-wrap{
        padding: 35px 15px;
    }
    .teams-section ul li h3 {
        font-size: 24px;
        line-height: 32px;
    }
    .teams-section ul li p {
        font-size: 15px;
        line-height: 22px;
    }
    .teams-section {
        margin: 50px 0;
    }
    .inner-banner-section h1 {
        font-size: 47px;
        line-height: 55px;
    }
    .inner-banner-section{
        min-height: 376px;
    }
    .navbar li a:hover{
        color: #000;
    }
    .navbar li a.active {
        color: #231F20;
    }
    .bg-dark .static-counter li{
        border: none;
    }
    .product-list {
        margin: 31px -6px 0;
    }
    .product-list li{
        padding: 0 6px 20px;
    }
    .product-list li a .content-box {
        padding: 20px 12px 22px;
    }
    .product-list li a .content-box h3 {
        font-size: 20px;
    }
    .our-value-section ul li figure img{
        width: 40px;
    }
    .our-value-section ul li h3 {
        font-size: 20px;
    }
    .our-value-section {
        margin-bottom: 50px;
    }
    .production-lead-section{
        grid-template-columns: repeat(1, 1fr);
    }
    .production-lead-section .inner-box{
        padding: 30px 15px;
    }
    .compliances-section ul li{
        flex-direction: column;
    }
    .compliances-section ul li >div{
        width: 100%;
        padding-top: 20px;
        padding-left: 0;
        text-align: center;
    }
    .factory-overview ul{
        grid-template-columns: repeat(2 , 1fr);
    }
    .contact-us-wrap .left-wrap{
        width: 100%;
        padding: 30px 20px 62px;
    }
    .contact-us-wrap .right-wrap{
        width: 100%;
        padding: 25px 0 0 ;
    }
    .contact-us-wrap {
        margin: 50px 0;
        padding: 10px 10px 30px;
    }
    .google-map-section {
        margin-bottom: 60px;
    }
    .gallary-section{
        gap: 15px;
    }
    .family-section .heading {
        margin-bottom: 30px;
    }
    .family-section {
        padding: 50px 0 60px;
    }
    .health-cover-points li {
        width: 50%;
    }
    .schemes-section .gallary-section{
        gap: 15px;
    }
    .sdg-section {
        padding: 40px 0;
    }
}
@media(max-width:767px){
    .product-listing li{
        width: 50%;
    }
    .product-listing li a span {
        font-size: 17px;
        line-height: 25px;
        left: 10px;
    }
    .comman-data-box .left-box {
        width: 100%;
        padding-right: 0;
        padding-left: 0 !important;
        padding-top: 30px;
        order: 2;
    }
    .comman-data-box .right-box {
        width: 100%;
    }
    .comman-data-box .right-box figure {
        border-radius: 50px;
    }
    .heading h2 {
        font-size: 27px;
        line-height: 37px;
    }
    .achievement-section {
        padding: 30px 0;
    }
    .footer-middle .footer-box .box-inner{
        width: 100%;
        border: none !important;
        border-bottom: 1px solid rgb(237, 237, 237, 0.1) !important;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .footer-middle .footer-box .box-inner:nth-child(odd) {
        border-right:none !important;
    }
    .footer-middle .footer-box .box-inner:nth-last-of-type(2) {
        border-bottom: 1px solid rgb(237, 237, 237, 0.1) !important;
        padding-top: 0 !important;
    }
    .footer-middle .footer-box .box-inner:nth-last-of-type(1) {
        padding-top: 0;
    }
    .footer-middle {
        padding: 30px 0 0px;
    }
    .footer-nav{
        display: none;
    }
    .footer-box {
        margin: 0 -7px;
    }
    .footer-box .box-inner {
        padding: 0 7px 20px;
    }
    footer p {
        font-size: 14px;
    }
    .enquiry-section li a {
        font-size: 14px;
    }
    footer h3{
        font-size: 19px;
        margin-bottom: 15px;
    }
    #YearName{
        display: contents;
    }
    .main-banner-section .banner-content h1 {
        font-size: 33px;
        line-height: 40px;
    }
    .main-banner-section .banner-content p{
        font-size: 16px;
        margin-bottom: 20px;
    }
    .main-banner-section .item {
        padding-top: 90px;
        min-height: 420px;
        padding-bottom: 40px;
    }
    .static-counter{
        justify-content: center;
    }
    .static-counter li{
        width: 50%;
    }
    .static-counter li span {
        font-size: 30px;
        
    }
    .static-counter li p {
        font-size: 14px;
        margin-top: 4px;
    }
    .counter-section{
        padding: 28px 0 0px;
    }
    .our-products-section{
        padding: 40px 0;
    }
    .comman-data-box {
        padding: 40px 0;
    }
    .main-banner-section .item::before {
        opacity: 0.50;
    }
    .header-right .btn-white {
        min-width: auto;
        font-size: 0;
        padding: 5px;
        border-radius: 50%;
        width: 40px;
        background-color: rgb(255, 255, 255,0.22);
        min-height: 40px;
        height: 40px;
    }
    .header-right .btn-white img{
        margin-right: 0;    
    }
    .heading span{
        font-size: 17px;
        margin-bottom: 14px;
    }
    .comman-data-box .right-box.min-height figure {
        min-height: auto;
    }
    .rounded-6 {
        border-radius: 40px !important;
    }
    .p-6 {
        padding: 16px 15px 26px !important;
    }
    .value-section ul li {
        width: 100%;
        padding-bottom:  20px;
    }
    .value-section {
        padding: 60px 0 40px;
    }
    .our-moto-section{
        grid-template-columns: repeat(1, 1fr);
    }
    .teams-section ul{
        grid-template-columns: repeat(1, 1fr);
    }
    .teams-section ul li figure {
        width: 90px;
        height: 90px;
        border-radius: 20px;
    }
    .our-value-section ul li::before, .our-value-section ul li::after{
        display: none;
    }
    .our-value-section ul{
        margin: 30px -6px 0;
    }
    .our-value-section ul li{
        width: 50%;
        padding: 0 6px 25px;
    }
    .our-value-section ul li figure::before{
        display: none;
    }
    .our-value-section {
        margin-bottom: 30px;
    }
    .our-value-section ul li h3 {
        font-size: 18px;
    }
    .product-list li{
        width: 100%;
    }
    .section-tabs .nav-tabs .nav-item{
        width: 100%;
        margin-right: 0 !important;
    }
    .section-tabs .nav-tabs .nav-item .nav-link{
        font-size: 15px;
        padding: 6px 10px;
        width: 100%;

    }
    .section-tabs .nav-tabs{
        border-radius: 20px;
    }
    .compliances-section ul{
        grid-template-columns: repeat(1 , 1fr);
    }
    .main-factory-section {
        margin: 50px 0 60px;
    }
    .production-lead-section{
        margin-top: 49px;
    }
    .process-slider {
        margin-top: 35px;
    }
    .process-section {
        padding: 27px 0 52px;
    }
    .factory-overview ul {
        gap: 9px;
    }
    .compliances-section {
        padding: 50px 0 55px;
    }
    .factory-overview {
        margin-bottom: 40px;
    }
    .contact-us-wrap .left-wrap{
        padding: 30px 13px 40px;
    }
    .contact-us-wrap .left-wrap h3{
        font-size: 24px;
    }
    .contact-us-wrap .left-wrap p{
        font-size: 16px;
    }
    .contact-us-wrap .left-wrap .enquiry-section li a img {
        margin-right: 12px;
    }
    .contact-us-wrap .left-wrap .enquiry-section li a{
        font-size: 15px;
    }
    .contact-us-wrap .left-wrap .enquiry-section {
        margin: 20px 0 29px;
    }
    .form-group {
        margin-bottom: 25px;
    }
    .submit-btn.btn.btn-fill {
        min-width: auto;
        width: 100%;
    }
    .inner-banner-section h1 {
        font-size: 35px;
        line-height: 45px;
    }
    .inner-banner-section p{
        font-size: 16px;
    }
    .gallary-section{
        grid-template-columns: repeat(1, 1fr);
    }
    .health-cover-points li {
        width: 100%;
        padding-left: 40px;
        font-size: 15px;
    }    
    .health-cover-points li::before{
        width: 25px;
        height: 25px;
    }
    .schemes-section {
        padding: 40px 0;
    }
    .feature-main-box .center-section{
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 320px;
        height: 320px;
        margin-bottom: 30px;
    }
    .feature-main-box .center-section::after {
        width: 250px;
        height: 250px;
    }
    .feature-main-box .center-section figure {
        max-width: 140px;
    }
    .feature-main-box .top-section{
        order: 2;
        width: 100%;
    }
    .feature-main-box .middle-section{
        order: 3;
        flex-wrap: wrap;
        width: 100%;
        margin-bottom: 0;
    }
    .feature-main-box .middle-section .left-wrap{
        width: 100%;
    }
    .feature-main-box .middle-section .right-wrap{
        width: 100%;
    }
    .feature-main-box .bottom-section{
        order: 4;
    }
    .feature-main-box .inner-box{
        max-width: 100%;
        text-align: center;
        width: 100%;
        margin-bottom: 15px !important;
    }
    .feature-main-box .middle-section .left-wrap .inner-box {
        text-align: center;
    }
    .feature-main-box .middle-section .inner-box::before{
        display: none !important;
    }
    .feature-main-box .top-section .inner-box::before{
        display: none !important;
    }
    .feature-main-box .middle-section .inner-box:not(:last-child) {
        margin-bottom: 0;
    }
    .feature-main-box .bottom-section .inner-box::before{
        display: none !important;
    }
    .feature-main-box .bottom-section .inner-box{
        margin-top: 0;
        border-top: none;
        padding: 0;
    }
    .product-features-section {
        padding: 40px 0;
    }
    .sustainability-section {
        margin: 50px 0 0;
    }
}

.product-features-slider .items:not(:last-child){
    margin-bottom: 40px;
}


.product-categories-section{
	padding: 50px 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 40px;
    position: relative;
    z-index: 0;
    
}
.product-categories-section .heading{
    margin-bottom: 40px;
}
.product-categories-section::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 40%;
    height: 40%;
    background-image: url(../images/girl-sktech.jpg);
    background-position: left bottom;
    background-repeat: no-repeat;
    opacity: 0.1;
    background-size: contain;
    z-index: -1;
}
.product-categories-section::after {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    width: 17%;
    height: 100%;
    background-image: url(../images/girl-dress.png);
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 0.25;
    background-size: contain;
    z-index: -1;
}
.categories-main-wrap{
    display: grid;
    grid-template-columns: repeat(2 , 1fr);
    gap: 20px;
}
.product-categories-listing {
    padding: 25px 20px;
    background-color: rgb(35 35 35 / 5%);
    border: 1px solid rgb(35 35 35 / 10%);
    border-radius: 10px;
    backdrop-filter: blur(3px);
}
.product-categories-listing h3{
    font-size: 22px;
    display: flex;
    align-items: center;
}
.product-categories-listing h3 img {
    max-width: 26px;
    margin-right: 7px;
}
.product-categories-listing ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}
.product-categories-listing ul li {
    font-size: 16px;
    /* margin-right: 22px; */
    /* padding-right: 22px; */
    /* border-right: 1px solid #bdbdbd; */
    line-height: 22px;
    width: 50%;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    
}
.product-categories-listing ul li::before{
    position: absolute;
    left: 0;
    top: 7px;
    content: "";
    background-color: #212529;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.product-categories-listing ul li:last-child{
    border: none;
    padding-right: 0;
    margin-right: 0;
}


@media(max-width:991px){
    .categories-main-wrap {
        grid-template-columns: repeat(1 , 1fr);
    }
    .product-categories-listing h3{
        font-size: 20px;
    }
    .product-categories-listing ul li{
        padding-right: 7px;
        font-size: 14px;
    }
}