@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url(font-awesome.min.css);

* {
    margin: 0;
    padding: 0
}
a{
    text-decoration: none;
}
a:hover,
a:focus{
    text-decoration: none;
}
body {
    font-family: "Open Sans", sans-serif;
    overflow: hidden;
}

:root {
    --cream: #F9F9F6;
    --text: #000;
    --muted: #666666;
    --black: #000000;
    --green: #6DBD45;
    --darkgray: #212529;
    /* screenshot green */
    --shadow: 0 6px 20px rgba(0, 0, 0, .08);
    --radius-lg: 20px;
    --radius-xl: 32px;
    --light-font-weight: 300;
    --regular-font-weight: 400;
    --medium-font-weight: 500;
    --semibold-font-weight: 600;
    --bold-font-weight: 700;
    --font-family: "Open Sans", sans-serif;
    --line-height: 30px;
}
h1, h2, h3, h4, h5, h6{
    font-family: var(--font-family);
}
p{
    font-family: var(--font-family);
    color: var(--text);
    font-size: 14px;
}
a{
    font-family: var(--font-family);
}
h4{
    font-size: 1.4rem;
}
.w-100{
    width: 100%;
}
img {
    max-width: 100%;
}
.relative{
    position: relative;
}
.r-0{
    right: 0px;
}
.l-0{
    left: 0px;
}
.mx-auto{
    margin-left: 0;
    margin-right: 0;
}
.mb-0{
    margin-bottom: 0px;
}
.mb-10{
    margin-bottom: 10px;
}
.mb-15{
    margin-bottom: 15px;
}
.mb-20{
    margin-bottom: 20px;
}
.mb-25{
    margin-bottom: 25px;
}
.l-inherit{
    left: inherit !important;
}
.r-inherit{
    right: inherit !important;
}
.line-height{
    line-height: var(--line-height);
}
.gradient-btn{
    transition: all linear 0.3s;
    position: relative;
    overflow: hidden;
    background: #212529;
    border: 0px;
}
.gradient-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #8bc53e, #121212);
	transition: left 0.4s ease;
	z-index: 0;
}
.gradient-btn:hover::before {
	left: 0;
}
.gradient-btn span {
	position: relative;
	z-index: 1;
}
.btn:focus{
    box-shadow: none;
}
.btn:hover{
    background-color: #212529;
}
.btn:active{
    background: linear-gradient(90deg, #8bc53e, #121212) !important;
    border-color: #000;
}
.btn:focus-visible{
    outline: 0px;
    border: 0px;
}
.inputnumberbox-arrowhide input::-webkit-outer-spin-button,
.inputnumberbox-arrowhide input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.btn-primary:disabled:hover::before{
    display: none;
}#007bff
.btn-primary:disabled:hover{
    background-color: #007bff;
}
/* Firefox */
.inputnumberbox-arrowhide input[type=number] {
    -moz-appearance: textfield;
}

/* ==== Loader Container ==== */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader .circle {
  width: 180px;
  height: 180px;
  border: 10px solid #e0e0e0;
  border-top: 10px solid #4CAF50;
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
  position: absolute;
}

@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

#loader .loader-box {
  position: relative;
  z-index: 10;
  text-align: center;
  width: calc(200px);
  height: calc(200px);
}

#loader .logo-percentage {
	position: absolute;
	top: 47%;
	left: 45%;
	transform: translate(-50%, -50%);
	text-align: center;
}
#loader .logo-percentage img {
  width: 85px;
  height: auto;
}

#loader .percentage {
  font-size: 14px;
  font-weight: bold;
  color: #333;
    margin-top: 5px;
}
/* ==== End Loader Container ==== */

/* ==== Scroll Top to Button ==== */
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #8bc53e;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  display: none;
  z-index: 999;
  border: 1px solid #FFF;
}
#scrollTopBtn:hover {
  background: #588221;
}
/* ==== End Scroll Top to Button ==== */

/* ==== Navigation ==== */
#mainMenu {
    z-index: 1000;
    transition: all 0.3s ease;

}
.nav-mainsection{
    position: relative;
}
.navbar {
    padding: 10px 0;
    background: #fff;
    gap: 40px;
}

.logo-section {
    width: calc(110px);
    left: 0;
    top: 0;
}

.logo-section img {
    width: calc(100%);
    height: calc(100%);
}

.logo-section .navbar-brand {
    padding: 0px;
}

.navbar .nav-link {
    color: #212529 !important;
    font-weight: 400;
    padding: calc(8px) calc(15px) calc(16px);
}

.navbar .navbar-collapse {
    gap: 40px;
}

.navbar .navbar-collapse ul {
    gap: 20px;
}

.navbar .navbar-collapse ul li a {
    text-transform: capitalize;
    transition: all linear 0.6s;
    border: 1px solid transparent;
    position: relative;
}
.navbar .navbar-collapse ul li a::before{
    content: "";
    width: 0;
    height: 4px;
    background-color: #8bc53e;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: width ease 0.3s;
}

.navbar .navbar-collapse ul li a:hover::before,
.navbar .navbar-collapse ul li.active a::before{
    width: 50%;
    left: 0;
    right: 0;
    margin: auto;
}
.navbar .navbar-collapse ul li a:hover,
.navbar .navbar-collapse ul li a.active-menu{
    color: #8bc53e !important;
}

.get-touch-btn {
    font-size: 15px;
    background: #212529;
    transition: all linear 0.3s;
    color: #f6f7f2;
    border-radius: 25px;
    padding: 12px calc(22px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: fit-content;
    order: 4;
}

.get-touch-btn span {
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

.get-touch-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #8bc53e, #121212);
    transition: left 0.4s ease;
    z-index: 0;
}

.get-touch-btn:hover::before {
    left: 0;
}
/* ==== End Navigation ==== */

/* ==== Sticky menu style ==== */
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.sticky .logo-section {
	width: calc(70px);
    position: relative;
}
.sticky .get-touch-btn {
    font-size: 12px;
    padding: 10px calc(18px);
}
.sticky .navbar .navbar-collapse ul li a{
    font-size: 14px;
}
.sticky .navbar{
    padding: 5px calc(0px);
}
.sticky .container-fluid{
    background-color: #fff;
}
/* ===== End Navigation ==== */

/* ===== Banner / Hero ===== */
.slider-wrapper {
    /*max-width: 1100px;
    margin: auto;*/
    width: 100%;
    margin: 0px;
}

.main-slider .slide {
    display: flex;
    align-items: center;
    background-color: transparent;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 20px;
    padding: 0;
    box-sizing: border-box;
}

.banner-section .slide-image {
    width: calc(680px);
}

.main-slider .slide-image img {
    width: 100%;
    height: auto;
}

.main-slider .slide-content {
    flex: 1;
    padding: 20px;
}

.main-slider .slick-slide {
    opacity: 0.5;
    transform: scale(0.8);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.main-slider .slick-center {
    opacity: 1;
    transform: scale(1);
}

.main-slider .slick-slide:not(.slick-center) .slide-content h2,
.main-slider .slick-slide:not(.slick-center) .slide-content p,
.main-slider .slick-slide:not(.slick-center) .slide-content a {
    display: none;
    /* preview slides hide content */
}

.main-slider .slick-center .slide-content {
    display: block;
    /* active slide shows content */
}

.main-slider .slick-center .slide-content h2 {
    font-size: 3.5rem;
    color: #212529;
}

.main-slider .slick-center .slide-content h2 .thin {
    font-weight: var(--light-font-weight);
    ;
    font-style: normal;
}

.main-slider .slick-center .slide-content h2 .bold {
    font-weight: var(--bold-font-weight);
    color: #8bc53e;
}

.main-slider .slick-center .slide-content h2 .bold:nth-of-type(2n+1) {
    color: #212529;
}
.main-slider .slick-current .slide-heading span:nth-child(4n){
    color:var(--text);
}

.main-slider .slick-center .slide-content p {
    color: var(--text);
    font-size: 18px;
    line-height: 30px;
    font-weight: var(--light-font-weight);
}

.main-slider .slick-center .slide-content .shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px calc(16px);
    background-color: #121212;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: var(--medium-font-weight);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.slide-heading,
.slide-text,
.slide-btn {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-in-out;
}

.slide-image {
    opacity: 0;
    transform: translateX(50px) scale(1.05);
    transition: all 1s ease-in-out;
}

/* Animate state */
.slide-heading.animate {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.slide-text.animate {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}

.slide-btn.animate {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.6s;
}

.slide-image.animate {
    opacity: 1;
    transform: translateX(0) scale(1);
    transition-delay: 0.8s;
}

.shop-btn i {
    transition: transform 0.3s ease;
}

.shop-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #8bc53e, #121212);
    transition: left 0.4s ease;
    z-index: 0;
}

.shop-btn:hover::before {
    left: 0;
}

.shop-btn:hover i {
    transform: translateX(5px);
}

.shop-btn span,
.shop-btn i {
    position: relative;
    z-index: 1;
}

.main-slider .slide-heading,
.main-slider .slide-text,
.main-slider .slide-btn {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slick-active .slide-heading {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.slick-active .slide-text {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}

.slick-active .slide-btn {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.6s;
}

.slick-active .slide-btn {
    transform: none;
}

.slick-prev:before,
.slick-next:before {
    color: black;
    transition: color 0.4s ease;
}

.slick-prev,
.slick-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: var(--shadow);
    z-index: 3;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.slick-prev:before {
    content: "\f177";
    font: normal 18px/1 FontAwesome;
}

.slick-next:before {
    content: "\f178";
    font: normal 18px/1 FontAwesome;
}
.slick-prev:hover,
.slick-next:hover{
    background:#8bc53e;
    border: 1px solid #4e7519;
}
.slick-prev:hover::before,
.slick-next:hover::before{
    color: #fff;
}
.slick-prev {
    left: -55px
}

.slick-next {
    right: -55px
}
.slick-next:focus,
.slick-prev:focus{
    background-color: #fff;
}
.slick-next:focus::before,
.slick-prev:focus::before{
    color: #000;
}
.banner-section .slick-dots {
    bottom: 85px;
    padding-left: calc(20px);
    text-align: left;
}

.banner-section .slick-dots li {
    margin: 0 calc (1px) !important;
}

.banner-section .slick-dots li button::before {
    font-size: 47px;
}

.banner-section .slick-dots li.slick-active button::before {
    color: #8bc53e;
}
.banner-section .slick-list{
    padding: 0 !important;
}
.banner-section .slick-prev,
.banner-section .slick-next{
    display: none !important;
}
.slick-disabled:hover{
    background-color: #fff;
    border: 1px solid #ddd;
}
.slick-disabled:hover::before{
    color: #000;
}
/* ===== End Banner / Hero ===== */

/* ===== 100% & MANUFACTURING & EXCELENT ===== */
.threebox-section{
    margin-bottom: calc(50px);
    margin-top: calc(95px);
}
.main-childbox-section{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap:15px;
    text-align: center;
}
.child-sectionbox{
    padding: calc(40px) calc(15px) calc(40px) calc(15px);
    margin-bottom: calc(45px);
    transition: all 0.6s ease;
    background-color: #f2f1f1;
}
.child-sectionbox:hover{
    transform: scale(1.01);
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
}
.child-sectionbox .child-imagebox {
	width: calc(80px);
	height: calc(80px);
	background-color: #8bc53e;
	margin: auto;
	border-radius: 100%;
    margin-bottom: calc(20px);
    justify-content: center;
    align-items: center;
    position: relative;
    transition: background-color .4s ease;
    overflow: hidden;
    border: 1px solid transparent;
}
.child-imagebox .img-track {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    inset: 0;
    width: calc(60px);
    height: calc(100%);
    transition: transform .6s ease;
    will-change: transform;
}

.child-sectionbox .child-imagebox img{
    width: calc(100%);
    height: calc(100%);
    object-fit: contain;
}
.child-sectionbox:hover .child-imagebox {
  background: #fff;
    border: 1px solid #8bc53e
}
.child-sectionbox:hover .child-imagebox .img-track {
  transform: translateY(-100%);
}
.child-sectionbox h4 {
	font-weight: 600;
	margin-bottom: calc(15px);
	font-size: 17px;
	line-height: 23px;
}
.child-sectionbox p{
    margin-bottom: 0px;
}
/* ===== End 100% & MANUFACTURING & EXCELENT ===== */

/* ===== Our Journey ===== */
.section-head {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 18px
}

.section-overline {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--muted);
    font-weight: 600
}

.section-title {
    font-size: 34px;
    line-height: 1.18;
    font-weight: var(--light-font-weight);
    margin: 0;
    color: var(--darkgray);
}

.section-title .accent {
    color: var(--darkgray);
    font-weight: var(--bold-font-weight);
}

.journey-card {
    background: #fff;
    padding: 26px;
    padding-right: 0px;
    padding-top: calc(100% - 650px);
    padding-left: calc(100% - 600px);
    display: flex;
    flex-wrap: wrap;
}
.journey-card::before {
	content: "Journey";
	position: absolute;
	left: 18px;
	top: -140px;
	line-height: normal;
	font-family: "Open Sans", sans-serif;
	font-size: clamp(40px, 13.4vw, 187px);
	font-weight: var(--bold-font-weight);
	color: #f5f5f5;
} 
.small-image-box {
    width: calc(190px);
    padding: 10px calc(10px);
    background-color: #fff;
    position: absolute;
    right: -100px;
    bottom: 45px;
    z-index: 1;
    border-radius: 5px;
}

.small-image-box img {
    width: calc(100%);
    height: calc(100%);
    object-fit: cover;
}

.journey p {
    color: var(--text);
    line-height: 30px;
    margin-bottom: 18px;
}

.btn-solid-dark-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px calc(16px);
	background-color: #121212;
	color: #fff;
	text-decoration: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: var(--medium-font-weight);
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
    margin-top: 30px;
    border: 1px solid #000;
}
.btn-solid-dark-pill::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #8bc53e, #121212);
	transition: left 0.4s ease;
	z-index: 0;
}
.btn-solid-dark-pill i {
    transition: transform 0.3s ease;
}
.btn-solid-dark-pill span, .btn-solid-dark-pill i {
	position: relative;
	z-index: 1;
}
.btn-solid-dark-pill:hover{
    color: #fff;
}
.btn-solid-dark-pill:hover::before {
    left: 0;
}
.btn-solid-dark-pill:hover i {
    transform: translateX(5px);
}

/* ===== End Our Journey ===== */

/* ===== Our Products ===== */
.products{
    padding-top: calc(95px);
}
.products .container::before {
	content: "Products";
	position: absolute;
	right: 0px;
	top: -140px;
	line-height: normal;
	font-family: "Open Sans", sans-serif;
	font-size: clamp(40px, 13.4vw, 187px);
	font-weight: var(--bold-font-weight);
    color: #ededed;
}
.products .section-title {
    margin-bottom: 22px
}

.product-slider .item {
    background: #fff;
    border-radius: 0px;
    overflow: hidden;
    margin: 0px calc(8px);
    /*box-shadow: var(--shadow);*/
    transition: transform .18s ease, box-shadow .18s ease;
}

.product-slider .item:hover {
    transform: translateY(-2px);
    /*box-shadow: 0 10px 28px rgba(0, 0, 0, .12)*/
}
.product-imgbox{
    position: relative;
    overflow: hidden;
}
.product-caption {
    padding: 12px 14px;
    font-weight: 600;
    font-size: 14px;
    color: #2a2a2a;
    text-align: center;
    position: absolute;
    top: 0px;
    left: 0px;
    transform: translate(0px, -100%);
    opacity: 0;
    white-space: nowrap;
    background-color: rgba(0,0,0,0.3);
    /* Smooth animation */
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -5px 3px -5px #807e7e;
    height: 100%;
    width: 100%;
}
.product-caption .product-name{
    color: #fff;
    letter-spacing: 0.5px;
    font-weight: var( --semibold-font-weight);
    line-height: normal;
}
.product-imgbox img{
    width: calc(100%);
    height: calc(100%);
    object-fit: cover;
}
.product-shopbtn{
    font-size: 11px;
    background: #121212;
    color: #fff;
    border-radius: 6px;
    position: relative;
    padding: 7px calc(8px);
    cursor: pointer;
    line-height: normal;
    transition: all 0.4s ease;
    display: inline-block;
    margin-top: calc(10px);
}
.product-shopbtn:hover {
    background: linear-gradient(to right, rgba(140, 198, 63, 1) 0%, rgba(18, 18, 18, 1) 100%);
    color: #fff;
    
}
.product-imgbox:hover .product-caption {
    opacity: 1;
    transform: translate(0px, 0px);
}
/* product slider arrows reuse slick default styles from above; add spacing */
.products .slick-dots {
    bottom: -34px
}
.glightbox-clean .gslide-title{
    font-family: "Open Sans", sans-serif;
    text-align: center;
    margin-bottom: 0px;
    font-weight: 500;
}

/* ===== End Our Products ===== */

/*====== New Category Css For Home Page =======*/
.category {
	padding-top: calc(125px);
	padding-bottom: calc(35px);
}
.category .container::before {
	content: "Category";
	position: absolute;
	right: 0px;
	top: -140px;
	line-height: normal;
	font-family: "Open Sans", sans-serif;
	font-size: clamp(40px, 13.0vw, 187px);
	font-weight: var(--bold-font-weight);
	color: #ededed;
}
.list-of-category-section{
    display: flex;
    /*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
    flex-wrap: wrap;
    gap:15px;
    position: relative;
    margin-top: calc(25px);
}
.category-box{
    background-color: #dde2d7;
    padding: 30px calc(15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-row-gap: 20px;
    color: var(--darkgray) !important;
    opacity: 1;
    transition: all 0.4s ease;
    border: 1px solid #c8ccc1;
    border-radius: 4px;
    flex: 1;
    min-width: 250px;
}
.category-box .image-of-bag-icon{
    width: calc(65px);
    height: calc(65px);
    border-radius: 100%;
    background-color: #afbb8d;
    padding: 10px calc(10px);
    position: relative;
}
.category-box .image-of-bag-icon::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
	box-shadow: 0 0 0 4px #7b8461;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(.8);
	-moz-transition: -moz-transform 0.2s, opacity 0.2s;
	-moz-transform: scale(.8);
	-ms-transform: scale(.8);
	transition: transform 0.2s, opacity 0.2s;
	transform: scale(.8);
	opacity: 0; 
    left: -6px;
    top: -6px;
    padding: 38px calc(38px);
    border-radius: 100%;
}
.category-box:hover .image-of-bag-icon::after {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}
.category-box h5{
    margin-bottom: 0px;
    font-size: 1.20rem;
}
.view-all-btn{
    cursor: pointer;
    margin-top: calc(42px)
}
/*====== End New Category Css For Home Page =======*/

/* ===== Certified Section ===== */
.certified {
	padding-top: calc(95px);
}
.certified-logosection {
    display: flex;
    gap: 10px; /* optional - box gulo majhe kichu gap */
    justify-content: center; /* center horizontally */
    align-items: center; /* center vertically if needed */
}

.certified-logobox {
    width: 200px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.certified-logobox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    transition: filter 0.3s ease-in-out;
    margin: auto;
    position: relative;
    top: 50%;
    transform: translate(0,-50%);
}
.certified-logobox img:hover{
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
}
/* ===== End Certified Section ===== */

/* ===== Best Collection Section ===== */
.best-collection{
    padding-top: calc(95px);
}
.best-collection .container::before {
	content: "Collection";
	position: absolute;
	right: 0px;
	top: -130px;
	line-height: normal;
	font-family: "Open Sans", sans-serif;
	font-size: clamp(40px, 12.7vw, 170px);
	font-weight: var(--bold-font-weight);
	color: #f5f5f5;
}
.best-collection .main-section{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap:50px;
}
.bestcollection-imagebox{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:15px;
}

.bestcollection-imagebox .image-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bestcollection-textbox{  
    display: flex;
    align-items: center;
}
.bestcollection-textbox p{
    color: var(--text);
    line-height: 30px;
}
/* ===== End Best Collection Section ===== */

/* ===== Why Shop With Me Section ===== */
.why-shop{
    margin-top: calc(95px);
    background-color: #ebeee3;
    padding: calc(130px) calc(0px) calc(80px) calc(0px);
}
.why-shop .container::before {
	content: "With Us";
	position: absolute;
	left: 0px;
	top: -95px;
	line-height: normal;
	font-family: "Open Sans", sans-serif;
	font-size: clamp(40px, 8.5vw, 115px);
	font-weight: var(--bold-font-weight);
	color: #f5f5f5;
    z-index: 1;
}
.why-shop .main-section{
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* 2-column layout for desktop */
    gap: 100px;
    align-items: center;     
}
.whyshop-textbox{
    order: 1;
}
.why-shop .image-box{
    order: 2;
    position: relative;
}
.why-shop .image-box img{
    width: 100%;
    height: 100%;
    padding: 5px calc(5px);
    background-color: #fff;
    position: relative;
}
.why-shop .image-box::before {
	content: "";
	width: calc(60%);
	height: calc(80%);
	background-color: #dde2d7;
	position: absolute;
	left: -42px;
	top: -42px;
}
.why-shoping-listbox {
	width: calc(100%);
	margin-top: calc(40px - 20px);
	float: left;
}

.why-shoping-listbox ul.custom-counter {
  counter-reset: item; /* counter শুরু */
  list-style: none;    /* ব্রাউজারের ডিফল্ট বুলেট/নাম্বার বন্ধ */
  padding-left: 0;
  margin: 0;
}

.why-shoping-listbox ul.custom-counter li:not(:last-child){
    margin-bottom: 15px;
}
.why-shoping-listbox ul.custom-counter li .heading {
  counter-increment: item;
  margin-bottom: calc(10px);
  padding-left: 2.2rem; /* নাম্বারের জন্য জায়গা */
  position: relative;
}

.why-shoping-listbox ul.custom-counter li .heading::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: -4px;
  font-weight: var(--bold-font-weight);
    font-size: 22px;
    color: #588456;
}
.why-shoping-listbox ul.custom-counter .heading{
    font-weight: var(--bold-font-weight);
}
/* ===== End Why Shop With Me Section ===== */

/* ===== Footer ===== */
footer {
    width: 100%;
    float: left;
    padding: 50px calc(0px);
    margin-top: calc(100px - 5px);
    background-color: #2e2e2c;
}

.footer--section {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 90px;
    margin-bottom: calc(16px + 34px);
}

.company-footer-logo {
    width: calc(170px);
    height: calc(70px);
}

.company-footer-logo img {
    height: calc(100%);
}

.short-footer-about,
.footer-subscribe-section {
    width: 100%;
}

.short-footer-about {
    margin-top: calc(100px - 75px);
}

.short-footer-about p {
    margin-bottom: 0px;
    font-weight: 400;
    color: #b5b5b5;
    letter-spacing: 0.5px;
}

.footer--rightsection {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 15px;
}

.cmn-footerlist-box h5 {
    margin: 0px;
    color: #fff;
}

.cmn-footerlist-box .list-items {
    width: calc(100%);
    margin-top: calc(100px - 50px);
}

.cmn-footerlist-box .list-items ul {
    margin: 0px;
    padding: 0px;
}

.cmn-footerlist-box .list-items ul li {
    list-style: none;
}

.cmn-footerlist-box .list-items ul li a {
    display: block;
    padding: 7px 0;
    color: #b5b5b5;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: capitalize;
}
.cmn-footerlist-box .list-items ul li a span{
    margin-right: 8px;
    transition: all 0.3s ease;
}
.cmn-footerlist-box .list-items ul li a:hover {
    text-decoration: none;
    color: #e8e3e3;
}
.cmn-footerlist-box .list-items ul li a:hover span{
    margin-right: 10px;
    color: #8bc53e;
}
.footer-contactlist ul li a{
    display: flex !important;
    align-items: center;
    letter-spacing: 0.2px;
}
.footer-contactlist ul li a span{
    font-size: 18px;
    width: calc(36px);
    height: calc(36px);
    border-radius: 100%;
    background-color: red;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background-color: #646464;
}
.footer-contactlist ul li:first-child span{
    font-size: 20px;
}
.footer-contactlist ul li:nth-child(2) span{
    font-size: 15px;
}
.footer-contactlist ul li:last-child span{
    font-size: 15px;
}
.copyright-and-socialnetwork-section{
    width: 100%;
    padding: 8px calc(0px);
    background-color: #6a6a69;
}
.copyright {
	font-size: 12px;
	color: #ececec;
	letter-spacing: 0.7px;
}
.footer-contactlist ul li:first-child a{
    cursor: auto;
}
/* ===== End Footer ===== */

/* ===== Get In Touch Modal ===== */
.floating-label{
    position: relative;
}
.floating-label label {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.5px;
	margin-bottom: 6px;
	position: absolute;
	background-color: #FFF;
	left: 15px;
	top: -10px;
    padding-right: calc(12px);
}
.gradient-border {
	border: 4px solid;
	border-image-slice: 1;
	border-width: 1px;
	border-image-source: linear-gradient(to right, #8bc53e, #121212);
	padding: 12px 8px 10px 14px;
	border-radius: 5px;
	outline: none;
	transition: border-image-source 0.4s ease;
    font-size: 14px;
}
.gradient-border:focus {
  border-image-source: linear-gradient(to right, #43cea2, #185a9d);
    box-shadow: none;
}
.modal .close{
    color: red;
}
.image-with-formsection{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:35px;
}
.image-with-formsection .image-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-with-formsection .form-box{
    align-self: center;
    padding-right: 15px;
}
.image-with-formsection .form-box h5 {
	text-align: center;
	padding-bottom: 18px;
	font-weight: 600;
	color: var(--darkgray);
}
.getInTouchModal .close {
	position: absolute;
	right: 0;
	padding: 4px 8px;
	background-color: red;
	color: #fff;
	opacity: 9;
	text-shadow: none;
	border-bottom-left-radius: 6px;
}
.modal textarea{
    resize: none;
}
#touchmsg, #msg{
    margin-bottom: 0px;
    margin-top: calc(7px);
}
/* ===== End Get In Touch Modal ===== */

/* ===== Product Enquery Modal ===== */
.productimage-with-formsection{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:35px;
}
.product-image-with-heading{
    padding: 15px 0 15px 15px;
}
.product-image-with-heading h4{
    margin-bottom: 15px;
    font-weight: var(--bold-font-weight);
}
.productimage-with-formsection .image-box{
    height: calc(450px);
}
.productimage-with-formsection .image-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.productimage-with-formsection .form-box{
    align-self: center;
    padding-right: 15px;
}
.productimage-with-formsection .form-box h5 {
	text-align: center;
	padding-bottom: 18px;
	font-weight: 600;
	color: var(--darkgray);
}
.getQuoteModal .close{
	position: absolute;
	right: 0;
	padding: 4px 8px;
	background-color: red;
	color: #fff;
	opacity: 9;
	text-shadow: none;
	border-bottom-left-radius: 6px;
}
/* ===== End Product Enquery Modal ===== */

/* ===== Inner Banner Section ===== */
.inner-banner-section{
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.inner-banner-content{
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 1;
}
.inner-banner-content h1{
    font-weight: var(--light-font-weight);
}
.inner-banner-section::after{
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    position: absolute;
    left: 0;
    top: 0;
}
.inner-banner-section img{
    width: calc(100%);
    height: calc(100%);
}
.inner-banner-content h1{
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0px;
    position: relative;
    z-index: 1;
    color: #fff;
}
/* ===== End Inner Banner Section ===== */

/* ===== Product Page ===== */
.product-section {
  text-align: center;
  padding-top: calc(3.938rem);
}

.filter-buttons {
  margin-bottom: 45px;
}

.filter-btn {
  padding: 10px 20px;
  margin: 0px;
  border: none;
  background-color: transparent;
  color: #333;
  border-radius: 0px;
  cursor: pointer;
  transition: 0.3s;
  width: calc(95px);
  transition: all linear 0.3s;
  letter-spacing: 0.5px;
  position: relative;
    font-weight: var(--semibold-font-weight);
}

.filter-btn:hover,
.filter-btn.active,
.filter-btn:focus{
  color: #8bc53e;
    outline: 0px;
}

.filter-btn::after {
	content: "";
	width: 1px;
	height: 20px;
	background-color: #474646;
	position: absolute;
	right: -3px;
	top: 50%;
	transform: translate(0,-50%);
}
.filter-btn:last-child::after{
    display: none;
}

.product-section .product-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

.product-section .product-item {
  flex: 1 1 calc(25% - 20px);
  max-width: calc(25% - 20px);
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  /*display: none; /* initially hidden for load more */
}
.product-section .product-item .product-imgbox{
/*border: 1px solid #ddd;*/
}
.product-section .product-item img {
  width: 100%;
  height: fit-content;
  object-fit: cover;
}
#loadMore{
    cursor: pointer;
    padding: 10px calc(16px);
}

/* ===== End Product Page ===== */

/*====== New Category Css For Product Page =======*/
.left-right-mainbox{
    display: flex;
}
.left-right-mainbox .category-sidebar{
    width: calc(250px);
    padding-right: calc(100px - 90px);
}
.left-right-mainbox .product-mainbox{
    flex: 1;
}
.left-right-mainbox .category-sidebar ul{
    margin: 0;
    padding: 0;
    position: sticky;
    height: fit-content;
    top: 60px;
}
.left-right-mainbox .category-sidebar ul li{
    list-style: none;
}
.left-right-mainbox .category-sidebar ul li:not(:last-child){
    margin-bottom: calc(10px);
}
.left-right-mainbox .category-sidebar ul li a{
    display: flex;
    text-align: left;
    padding: 7px calc(5px);
    font-size: 16px;
    color: #6c6c6c;
    line-height: normal;
    gap:5px;
    border-radius: 8px;
    transition: all linear 0.5s;
}
.left-right-mainbox .category-sidebar ul li a .icon{
    color: #4a4949;
    margin-right: calc(5px);
    font-size: 18px;
}
.left-right-mainbox .category-sidebar ul li a:hover{
    background-color: #dde2d7;
    color: var(--darkgray);
}
.left-right-mainbox .category-sidebar ul li a:hover .icon{
    color: var(--darkgray);
}
.left-right-mainbox .category-sidebar ul li.active a{
    background-color: #dde2d7;
    color: var(--darkgray);    
}
.left-right-mainbox .category-sidebar ul li.active a .icon{
    color: var(--darkgray);  
}
.left-right-mainbox .product-gallery{
/*    height: 100%;*/
}
.left-right-mainbox .product-gallery .no-product-wrap{
    width: calc(100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.empty-icon {
  margin-bottom: 8px;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 0.6; }
}
.no-product{
    margin: 0;
}
.product-section .product-item{
    padding: calc(2px);
}
/*====== End New Category Css For Product Page =======*/

/* ===== Contact Page ===== */
.contact-section{
    padding-top: calc(3.938rem);
}
.contact-section .main-section{
    display: grid;
    grid-template-columns: 1.7fr 2fr;
    gap: 50px;
}
.contact-infosection,
.contact-mapsection{
    width: 100%;
}
.contact-infosection{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-shortinfo p{
    line-height: 30px;
}
.contact-section .cmn-footerlist-box{
    margin-top: 20px;
}
.contact-infosection .footer-contactlist ul li{
    margin-bottom: calc(25px);
}
.contact-infosection .footer-contactlist ul li:last-child{
    margin-bottom: calc(0px);
}
.contact-infosection .footer-contactlist ul li a{
    padding: 0px;
    color: var(--text);
    font-weight: var(--regular-font-weight);
    font-size: 15px;
}
.contact-infosection .footer-contactlist ul li a span{
    width: calc(45px);
    height: calc(45px);
    color: #fff;
    margin-right: calc(15px);
}
.contact-infosection .list-items ul li a:hover {
	text-decoration: none;
	color: #6c6b6b;
}
.contact-infosection .footer-contactlist ul li a:hover span{
    background-color: #8bc53e;
    color:#fff;
}
.contact-infosection .footer-contactlist ul li:last-child a,
.contact-infosection .footer-contactlist ul li:first-child a{
    cursor: auto;
}
.contact-infosection .footer-contactlist ul li:last-child a span,
.contact-infosection .footer-contactlist ul li:first-child a span{
    font-size: 32px;
}
.contact-infosection .footer-contactlist ul li:nth-child(2) a span{
    font-size: 20px;
}
.contact-mapsection{
    padding: calc(10px);
    background-color: #e7e7e7;
}
/* ===== End Contact Page ===== */

/* ===== About page Css ====== */
.about-section{
    padding-top: calc(3.938rem);
}
.about-section .section-head .section-title{
    margin-bottom: 22px;
}
.about-section p{
    line-height: 30px;
}
.about-ImageText-section{
    padding-top: calc(95px);
    position: relative;
}
.about-ImageText-section .content-section div p:last-child{
    margin-bottom: 0px;
}
.ourmission-section{
    flex-direction: row-reverse;
}
.ourmission-section .image-box img{
    object-fit: cover;
    object-position: 100% 50%;
}
.founder-name{
    font-style: italic;
    font-weight: var(--regular-font-weight);
}
.ourfounder-section .position{
    text-transform: uppercase;
    color: #777575;
    padding: 0px;
    background-color: transparent;
    margin-top: calc(100px - 92px);
    font-size: 72%;
    letter-spacing: 0.5px;
}
.thinkgreen-section{
    padding-top: calc(95px);
    padding-bottom: calc(0px);
}
.thinkgreen-section h5{
    margin: 0;
    font-weight: var(--semibold-font-weight);
    position: relative;
    padding-top: calc(15px);
    padding-bottom: calc(15px);
    text-align: center;
    line-height: normal;
    letter-spacing: 0.5px;
}
.thinkgreen-section h5::before{
    content: "";
    width: calc(100% - 70%);
    height: 1px;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    background-color: #000;
    position: absolute;
}
.thinkgreen-section h5::after{
    content: "";
    width: calc(100% - 70%);
    height: 1px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    background-color: #000;
    position: absolute;
}
.bussinesspolicy-section{
    padding-top: calc(95px);
}
.bussinesspolicy-listingpoints ul{
    margin: 0;
    padding: 0;
}
.bussinesspolicy-listingpoints ul li {
	list-style: none;
	display: flex;
	font-size: 14px;
	line-height: 30px;
	border: 1px solid #8bc53e;
	position: relative;
	border-radius: 4px;
	background-color: #f6f9f1;
}
.bussinesspolicy-listingpoints ul li:not(:last-child){
    margin-bottom: 15px;
}
.bussinesspolicy-listingpoints ul li span {
	display: flex;
	align-items: center;
	font-weight: 700;
	letter-spacing: 0.5px;
	font-size: 15px;
	margin-right: 32px;
	min-width: calc(120px);
	position: relative;
	padding-left: 25px;
}
.bussinesspolicy-listingpoints ul li span .fa {
	color: #fff;
	width: calc(25px);
	height: calc(25px);
	position: absolute;
	left: -12px;
	background-color: #8bc53e;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
    transition: all linear 0.3s;
}
.bussinesspolicy-listingpoints ul li:hover span .fa{
    background-color: #fff;
    color: #8bc53e;
    border: 1px solid #8bc53e;
}
/* ===== End About page Css ====== */

/* ===== Media Query Start Code ===== */

@media (max-width:575.98px) {
    .section-title{
        font-size: 30px;
        margin-bottom: 0px !important;
    }
    
/* ==== Navigation Media 575 ==== */
    .top-bar.sticky{
        position: relative;
    }
    .top-bar .logo-section{
        width: calc(90px);
    }
    .top-bar .navbar-toggler{
        background-color: #8bc53e;
        line-height: normal;
        font-size: 1.35rem;
        padding: 6px calc(9px);
    }
    .top-bar .navbar{
        gap:14px;
    }
    .navbar .nav-link {
        padding: calc(10px) calc(10px) calc(10px);
        line-height: normal;
    }
    .navbar .navbar-collapse ul li a::before,
    .navbar .navbar-collapse ul li a:hover::before,
    navbar .navbar-collapse ul li a.active-menu::before {
        display: none;
    }
    .navbar .navbar-collapse ul li a:hover{
        background-color: #f8f8f8;
    }
    .get-touch-btn{
        position: fixed;
        top: 19px;
        left: calc(100% - 190px);
        padding: 10px calc(20px);
        font-size: 11px;
    }
    .nav-mainsection .collapse{
        margin-top: 0px;
    }
    .top-bar.sticky .get-touch-btn{
        display: none;
    }
/* ==== End Navigation Media 575 ==== */
    
/* ==== Banner Media 575 ==== */
    .banner-section.pt-3{
        padding-top: 0px !important;
    }
    .banner-section .container-fluid{
        padding-left: 0px;
        padding-right: 0px;
    }
    .main-slider .slide{
        flex-direction: column-reverse;
    }
    .banner-section .slide-image{
        width: calc(100%);
    }
    .main-slider .slide-image img{
        height: calc(150px);
        object-fit: cover;
    }
    .main-slider .slick-center .slide-content h2{
        font-size: 32px;
    }
    .main-slider .slick-center .slide-content .shop-btn{
        margin-top: 10px !important;
    }
    .banner-section .slick-dots{
        padding-left: 0px;
        text-align: center;
        bottom: 30px;
        display: none !important;
    }
/* ==== End Banner Media 575 ==== */
    
/* ====  100% & MANUFACTURING & EXCELENT Media 575 ==== */
    .threebox-section{
        margin-top: calc(0px);
        margin-bottom: calc(50px);
    }
    .child-sectionbox{
        margin-bottom: calc(15px);
    }
    .main-childbox-section .child-sectionbox:last-child {
        margin-bottom: 0px;
    }
/* ====  100% & MANUFACTURING & EXCELENT Media 575 ==== */    
    
/* ====  OUR JOURNEY Media 575 ==== */
    .small-image-box{
        right: 0px;
        display: none;
    }
    .journey-card{
        padding-bottom: 0px;
        margin-top: calc(15px);
    }
    .journey-card .section-head{
        margin-bottom: 10px;
    }
    .journey-card::before{
        display: none;
    }
/* ====  End OUR JOURNEY Media 575 ==== */
    
/* ====  OUR PRODUCTS Media 575 ==== */
    .products{
        padding-top: calc(26px);
    }
    .products .section-head{
        margin-bottom: 26px;
    }    
    .products .section-head div,
    .products .section-head div h3{
        width: 100%;
    }
    .products .section-head div h3{
        margin-bottom: 26px;
    }
    .product-caption{
        opacity: 9;
        height: auto;
        bottom: 20px;
        transform: translate(0px, 0px);
        top: inherit;
        bottom: 0;
        background-color: #fff;
    }
    .product-caption div{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .product-caption .product-name{
        color: #000;
        font-size: 16px;
        width: calc(100% - 10%);
        padding-right: calc(4px);
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: left;
    }
    .product-caption .product-shopbtn{
        margin-top: 0px;
        font-size: 13px;
    }
    .product-imgbox:hover .product-caption{
        opacity: 9;
        transform: translate(0px, 0px);
    }   
/* ====  End OUR PRODUCTS Media 575 ==== */
    
/* New Category Css For Home Page Media 575 */    
 .list-of-category-section {
     display: block;
     margin-top: calc(8px);
 }
.category{
    padding-top: calc(36px);
    padding-bottom: calc(0px);
}
.category-box {
     margin: 0 5px;
     padding: 25px calc(10px);
     text-align: center;
     min-width: inherit;
}
 .category-box h5 {
     font-size: 13px;
 }
 .category-box .image-of-bag-icon {
     margin: auto;
     margin-bottom: calc(15px);
 }
.category .container::before{
    display: none;
}
.section-title {
     font-size: 30px;
     margin-bottom: 0px !important;
 } 
/* New Category Css For Home Page Media 575 */    

/* New Category Css For Product Page 575 */  
    .left-right-mainbox{
        display: block;
    }
    .left-right-mainbox .category-sidebar{
        width: calc(100%);
        padding-right: 0px;
        margin-bottom: calc(15px);
        position: sticky;
        top: 0;
        z-index: 1;
        background-color: #fff; 
        overflow-x:auto;
    }
    .left-right-mainbox .category-sidebar ul{
        display: grid;
        overflow-x: auto;
        grid-auto-flow: column;
        grid-auto-columns: max-content;
        position: unset;
        scroll-snap-type:x mandatory;
        scroll-behavior:smooth;
    }
    .left-right-mainbox .category-sidebar ul li{
      scroll-snap-align: center;
        margin-top: calc(6px);
        margin-bottom: calc(6px) !important;
    }
    .left-right-mainbox .category-list::-webkit-scrollbar{
    display:none;
    }    
    .left-right-mainbox .category-sidebar ul li:not(:last-child){
        margin-right: 5px;
    }
    .left-right-mainbox .category-sidebar ul li a{
        font-size: 13px;
        padding: 7px calc(11px);
        align-items: center;
        border: 1px solid #929989;
        background-color: #dde2d7;
    }
    .left-right-mainbox .category-sidebar ul li a:hover {
        background-color: #9daa8b;
    }    
    .left-right-mainbox .category-sidebar ul li.active a{
        border: 1px solid transparent;
        background-color: #7b8461;
        color: #fff;
    }
    .left-right-mainbox .category-sidebar ul li.active a .icon{
        color: #fff;
    }
/* End New Category Css For Product Page 575 */    
    
/* ==== BEST COLLECTION Media 575 ==== */
    .best-collection .section-head{
        margin-bottom: 10px;
    }     
    .best-collection{
        padding-top: calc(38px);
    }
    .best-collection .main-section{
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .best-collection .container::before{
        display: none;
    }    
/* ==== End BEST COLLECTION Media 575 ==== */
    
/* ==== WHY SHOP WITH US Media 575 ==== */
    .why-shop{
        padding: calc(100px) calc(0px) calc(50px) calc(0px);
        margin-top: calc(50px);
    }
    .why-shop .section-head{
        margin-bottom: 26px;
    }     
    .why-shop .image-box::before{
        left: -12px;
    }
    .why-shop .main-section{
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .whyshop-textbox{
        order: 2;
    }
    .why-shop .image-box{
        order: 1;
    }
    .why-shop .container::before{
        display: none;
    }
/* ==== End WHY SHOP WITH US Media 575 ==== */ 
    
/* ==== CERTIFIED SECTION Media 575 ==== */     
    .certified{
        padding-top: calc(50px);
    }
/* ==== End CERTIFIED SECTION Media 575 ==== */     
    
/* ==== Footer Media 575 ==== */
    footer{
        margin-top: calc(100px - 50px);
    }
    .footer--section, .footer--rightsection{
        grid-template-columns: 1fr;
    }
    .footer--section{
        gap:45px;
    }
    .footer--rightsection{
        gap:25px;
    }
    .cmn-footerlist-box .list-items{
        margin-top: calc(100px - 80px);
    }
    .copyright{
        text-align: center;
    }
/* ==== End Footer Media 575 ==== */
    
/* ==== Get a Quote Modal Media 575 ==== */   
    .productimage-with-formsection{
        grid-template-columns: 1fr;
    }
    .productimage-with-formsection .image-box{
        display: none;
    }
    .product-image-with-heading{
        padding-right: calc(30px);
    }
    .product-image-with-heading h4{
        margin-bottom: 0px;
        text-align: center;
        line-height: normal;
    }
    .productimage-with-formsection .form-box{
        padding: calc(0px) calc(15px) calc(15px) calc(15px);
    }
/* ==== End Get a Quote Modal Media 575 ==== */ 
    
/* ====  Get In Touch Modal Media 575 ==== */     
    .image-with-formsection{
        grid-template-columns: 1fr;
    }
    .image-with-formsection .image-box{
        display: none;
    }
    .image-with-formsection .form-box{
        padding: calc(15px);
    }
/* ====  End Get In Touch Modal Media 575 ==== */   
    
/* ====  Products Page Media 575 ==== */ 
    .inner-banner-section{
        height: calc(125px);
    } 
    .inner-banner-content h1{
        font-size: 30px;
    }
    .product-section{
        padding-top: calc(1.938rem);
    }
    .product-section .product-gallery{
        justify-content: center;
    }
    .product-gallery .product-item {
        flex: 1 1 calc(50% - 20px);
         max-width: calc(50% - 20px);
        border: 1px solid #ddd;
    }
    .product-gallery .product-item .product-imgbox{
        border: 0px;
    }    
    .product-item img{
        height: fit-content;
    }
    .product-gallery .product-caption{
        position: relative;
        box-shadow: none;
        border-top: 1px solid #ddd;
    }
    .product-gallery .product-caption div{
        flex-direction: column;
        gap: 8px;
    }
    .product-gallery .product-caption .product-name{
        width: calc(100%);
        padding-right: 0px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 13px;
        text-align: center;
    }
    .product-gallery .product-caption .product-shopbtn{
        font-size: 12px;
    }
    .filter-buttons{
        margin-bottom: 25px;
    }
    .filter-buttons .filter-btn{
        width: auto;
        padding: 10px calc(14px);
        font-size: 14px;
    }
    .products .container::before{
        display: none;
    }    
/* ====  End Products page Media 575 ==== */
    
/* ====  Contact Page Media 575 ==== */ 
    .contact-section{
        padding-top: calc(1.938rem);
    }
    .contact-section .main-section{
        grid-template-columns: 1fr;
    }
    .contact-section .cmn-footerlist-box{
        margin-top: 10px;
    }
/* ====  End Contact Page Media 575 ==== */ 
    
/* ====  About Page Media 575 ==== */ 
    .about-section{
        padding-top: calc(1.938rem);
    }
    .about-ImageText-section,
    .thinkgreen-section,
    .bussinesspolicy-section{
        padding-top: calc(50px);
    }
    .about-section .content-section{
        margin-top: calc(15px);
    }
    .bussinesspolicy-listingpoints ul li{
        padding: 10px calc(0px);
    }
    .about-section .content-section h4{
        font-size: 1.2rem;
    }
    .blockquote{
        font-size: 1.00rem;
    }
/* ====  End About Page Media 575 ==== */ 
}

@media (min-width:576px) and (max-width:767.98px) {
   .section-title{
        font-size: 30px;
        margin-bottom: 0px !important;
    }
    
/* ==== Navigation Media 576 ==== */
    .top-bar.sticky{
        position: relative;
    }
    .top-bar .logo-section{
        width: calc(90px);
    }
    .top-bar .navbar-toggler{
        background-color: #8bc53e;
        line-height: normal;
        font-size: 1.35rem;
        padding: 6px calc(9px);
    }
    .top-bar .navbar{
        gap:14px;
    }    
    .navbar .nav-link {
        padding: calc(10px) calc(10px) calc(10px);
        line-height: normal;
    }
    .navbar .navbar-collapse ul li a::before,
    .navbar .navbar-collapse ul li a:hover::before,
    navbar .navbar-collapse ul li a.active-menu::before {
        display: none;
    }
    .navbar .navbar-collapse ul li a:hover{
        background-color: #f8f8f8;
    }
    .get-touch-btn{
        position: fixed;
        top: 19px;
        left: calc(100% - 190px);
        padding: 10px calc(20px);
        font-size: 11px;
    }
    .nav-mainsection .collapse{
        margin-top: 0px;
        transition: margin-top 0.4s ease;
    }
    .top-bar.sticky .get-touch-btn{
        display: none;
    }
/* ==== End Navigation Media 576 ==== */
    
/* ==== Banner Media 576 ==== */
    .banner-section.pt-3{
        padding-top: 0px !important;
    }
    .banner-section .container-fluid{
        padding-left: 0px;
        padding-right: 0px;
    }
    .main-slider .slide{
        flex-direction: column-reverse;
    }
    .banner-section .slide-image{
        width: calc(100%);
    }
    .main-slider .slick-center .slide-content h2{
        font-size: 32px;
    }
    .main-slider .slick-center .slide-content .shop-btn{
        margin-top: 10px !important;
    }
    .banner-section .slick-dots{
        padding-left: 0px;
        text-align: center;
        bottom: 30px;
        display: none !important;
    }
/* ==== End Banner Media 576 ==== */
    
/* ====  100% & MANUFACTURING & EXCELENT Media 576 ==== */
    .threebox-section{
        margin-top: calc(0px);
        margin-bottom: calc(50px);
    }
    .child-sectionbox{
        margin-bottom: calc(15px);
    }
    .main-childbox-section .child-sectionbox:last-child {
        margin-bottom: 0px;
    }
/* ====  100% & MANUFACTURING & EXCELENT Media 576 ==== */    
    
/* ====  OUR JOURNEY Media 576 ==== */
    .small-image-box{
        right: 0px;
        display: none;
    }
    .journey-card{
        padding-bottom: 0px;
        margin-top: calc(12px);
    }
    .journey-card .section-head{
        margin-bottom: 10px;
    }
    .journey-card::before{
        display: none;
    }
/* ====  End OUR JOURNEY Media 576 ==== */
    
/* ====  OUR PRODUCTS Media 576 ==== */
    .products{
        padding-top: calc(26px);
    }
    .products .section-head{
        margin-bottom: 26px;
    }    
    .products .section-head div,
    .products .section-head div h3{
        width: 100%;
    }
    .products .section-head div h3{
        margin-bottom: 26px;
    }
    .product-caption{
        opacity: 9;
        height: auto;
        bottom: 20px;
        transform: translate(0px, 0px);
        top: inherit;
        bottom: 0;
        background-color: #fff;
    }
    .product-caption div{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .product-caption .product-name{
        color: #000;
        font-size: 14px;
        width: calc(100% - 10%);
        padding-right: calc(4px);
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: left;
    }
    .product-caption .product-shopbtn{
        margin-top: 0px;
        font-size: 13px;
    }
    .product-imgbox:hover .product-caption{
        opacity: 9;
        transform: translate(0px, 0px);
    }
    .products .container::before{
        display: none;
    }
/* ====  End OUR PRODUCTS Media 576 ==== */
    
/* New Category Css For Home Page Media 576 */    
 .list-of-category-section {
     display: block;
     margin-top: calc(8px);
 }
.category{
    padding-top: calc(36px);
    padding-bottom: calc(0px);
}
.category-box {
     margin: 0 5px;
     padding: 25px calc(10px);
     text-align: center;
     min-width: inherit;
}

 .category-box h5 {
     font-size: 13px;
 }

 .category-box .image-of-bag-icon {
     margin: auto;
     margin-bottom: calc(15px);
 }

    .category .container::before{
    display: none;
}
 .section-title {
     font-size: 30px;
     margin-bottom: 0px !important;
 }
    
/* New Category Css For Home Page Media 576 */    

/* New Category Css For Product Page 576 */
  
    .left-right-mainbox{
        display: block;
    }
    .left-right-mainbox .category-sidebar{
        width: calc(100%);
        padding-right: 0px;
        margin-bottom: calc(15px);
        position: sticky;
        top: 0;
        z-index: 1;
        background-color: #fff; 
        overflow-x:auto;
    }
    .left-right-mainbox .category-sidebar ul{
        display: grid;
        overflow-x: auto;
        grid-auto-flow: column;
        grid-auto-columns: max-content;
        position: unset;
        scroll-snap-type:x mandatory;
        scroll-behavior:smooth;
    }
    .left-right-mainbox .category-sidebar ul li{
      scroll-snap-align: center;
        margin-top: calc(6px);
        margin-bottom: calc(6px) !important;
    }
    .left-right-mainbox .category-list::-webkit-scrollbar{
    display:none;
    }    
    .left-right-mainbox .category-sidebar ul li:not(:last-child){
        margin-right: 5px;
    }
    .left-right-mainbox .category-sidebar ul li a{
        font-size: 13px;
        padding: 7px calc(11px);
        align-items: center;
        border: 1px solid #929989;
        background-color: #dde2d7;
    }
    .left-right-mainbox .category-sidebar ul li a:hover {
        background-color: #9daa8b;
    }    
    .left-right-mainbox .category-sidebar ul li.active a{
        border: 1px solid transparent;
        background-color: #7b8461;
        color: #fff;
    }
    .left-right-mainbox .category-sidebar ul li.active a .icon{
        color: #fff;
    }

/* End New Category Css For Product Page 576 */    
    
/* ==== BEST COLLECTION Media 576 ==== */
    .best-collection .section-head{
        margin-bottom: 10px;
    }     
    .best-collection{
        padding-top: calc(50px);
    }
    .best-collection .main-section{
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .best-collection .container::before{
        display: none;
    }
/* ==== End BEST COLLECTION Media 576 ==== */
    
/* ==== WHY SHOP WITH US Media 576 ==== */
    .why-shop{
        padding: calc(100px) calc(0px) calc(50px) calc(0px);
        margin-top: calc(50px);
    }
    .why-shop .section-head{
        margin-bottom: 26px;
    }     
    .why-shop .image-box::before{
        left: -12px;
    }
    .why-shop .main-section{
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .whyshop-textbox{
        order: 2;
    }
    .why-shop .image-box{
        order: 1;
    }
    .why-shop .container::before{
        display: none;
    }
/* ==== End WHY SHOP WITH US Media 576 ==== */ 
    
/* ==== CERTIFIED SECTION Media 576 ==== */     
    .certified{
        padding-top: calc(50px);
    }
/* ==== End CERTIFIED SECTION Media 576 ==== */  
    
/* ==== Footer Media 576 ==== */
    footer{
        margin-top: calc(100px - 50px);
    }
    .footer--section, .footer--rightsection{
        grid-template-columns: 1fr;
    }
    .footer--section{
        gap:45px;
    }
    .footer--rightsection{
        gap:25px;
    }
    .cmn-footerlist-box .list-items{
        margin-top: calc(100px - 80px);
    }
    .copyright{
        text-align: center;
    }
/* ==== End Footer Media 576 ==== */
    
/* ==== Get a Quote Modal Media 576 ==== */   
    .productimage-with-formsection{
        grid-template-columns: 1.4fr 1.5fr;
        gap:0px;
    }
    .productimage-with-formsection .image-box{
        height: fit-content;
    }
    .productimage-with-formsection .image-box img{
        object-fit: contain;
        object-position: center center;
    }
    .product-image-with-heading{
        padding-right: calc(15px);
    }
    .product-image-with-heading h4{
        text-align: center;
        line-height: normal;
        font-size: 1.2rem;
    }
    .productimage-with-formsection .form-box{
        padding: calc(15px) calc(15px) calc(15px) calc(15px);
    }
    .gradient-btn span{
        font-size: 14px;
    }
/* ==== End Get a Quote Modal Media 576 ==== */ 
    
/* ====  Get In Touch Modal Media 576 ==== */     
    .image-with-formsection{
        grid-template-columns: 1fr;
    }
    .image-with-formsection .image-box{
        display: none;
    }
    .image-with-formsection .form-box{
        padding: calc(15px);
    }
/* ====  End Get In Touch Modal Media 576 ==== */   
    
/* ====  Products Page Media 576 ==== */ 
    .inner-banner-section{
        height: fit-content;
    } 
    .inner-banner-content h1{
        font-size: 30px;
    }
    .product-section{
        padding-top: calc(1.938rem);
    }
    .product-section .product-gallery{
        justify-content: center;
    }
    .product-gallery .product-item {
        flex: 1 1 calc(50% - 20px);
         max-width: calc(50% - 20px);
        border: 1px solid #ddd;
    }
    .product-gallery .product-item .product-imgbox{
        border: 0px;
    }    
    .product-item img{
        height: fit-content;
    }
    .product-gallery .product-caption{
        position: relative;
        box-shadow: none;
        border-top: 1px solid #ddd;
    }
    .product-gallery .product-caption div{
        flex-direction: column;
        gap: 8px;
    }
    .product-gallery .product-caption .product-name{
        width: calc(100%);
        padding-right: 0px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 13px;
        text-align: center;
    }
    .product-gallery .product-caption .product-shopbtn{
        font-size: 12px;
    }
    .filter-buttons{
        margin-bottom: 25px;
    }
    .filter-buttons .filter-btn{
        width: auto;
        padding: 10px calc(14px);
        font-size: 14px;
    }
/* ====  End Products page Media 576 ==== */
    
/* ====  Contact Page Media 576 ==== */ 
    .contact-section{
        padding-top: calc(1.938rem);
    }
    .contact-section .main-section{
        grid-template-columns: 1fr;
    }
    .contact-section .cmn-footerlist-box{
        margin-top: 10px;
    }
/* ====  End Contact Page Media 576 ==== */
    
/* ====  About Page Media 576 ==== */ 
    .about-section{
        padding-top: calc(1.938rem);
    }
    .about-ImageText-section,
    .thinkgreen-section,
    .bussinesspolicy-section{
        padding-top: calc(50px);
    }
    .about-section .content-section{
        margin-top: calc(15px);
    }
    .bussinesspolicy-listingpoints ul li{
        padding: 10px calc(0px);
    }
    .about-section .content-section h4{
        font-size: 1.2rem;
    }
    .blockquote{
        font-size: 1.00rem;
    }
/* ====  End About Page Media 576 ==== */    
}

@media (min-width:768px) and (max-width:991.98px) {
   .section-title{
        font-size: 30px;
        margin-bottom: 0px !important;
    }
    
/* ==== Navigation Media 768 ==== */
    .top-bar.sticky{
        position: relative;
    }    
    .top-bar .logo-section{
        width: calc(75px);
    }
    .top-bar .navbar-toggler{
        background-color: #8bc53e;
        line-height: normal;
        font-size: 1.35rem;
        padding: 6px calc(9px);
    }
    .top-bar .navbar{
        gap:14px;
    }    
    .navbar .nav-link {
        padding: calc(10px) calc(10px) calc(10px);
        line-height: normal;
    }
    .navbar .navbar-collapse ul li a::before,
    .navbar .navbar-collapse ul li a:hover::before,
    navbar .navbar-collapse ul li a.active-menu::before {
        display: none;
    }
    .navbar .navbar-collapse ul li a:hover{
        background-color: #f8f8f8;
    }
    .get-touch-btn{
        position: absolute;
        top: 16px;
        left: calc(100% - 195px);
        padding: 10px calc(20px);
        font-size: 11px;
    }
    .nav-mainsection .collapse{
        margin-top: 0px;
        transition: margin-top 0.4s ease;
    }
    .top-bar.sticky .get-touch-btn{
        display: none;
    }    
/* ==== End Navigation Media 768 ==== */
    
/* ==== Hero Banner Media 768 ==== */
    .banner-section.pt-3{
        padding-top: 0px !important;
    }
    .banner-section .container-fluid{
        padding-left: 0px;
        padding-right: 0px;
    }
    .main-slider .slick-center .slide-content{
        flex: 2;
    }
    .banner-section .slide-image{
        width: calc(300px);
    }
    .main-slider .slide-content{
        padding-left: 15px;
    }
    .main-slider .slick-center .slide-content h2{
        font-size: 2.5rem;
        margin-bottom: 0px;
    }
    .main-slider .slick-center .slide-content .shop-btn{
        margin-top: 12px !important;
    }
    .banner-section .slick-dots{
        position: relative;
    }
/* ==== End Hero Banner Media 768 ==== */
    
/* ==== 100% & MANUFACTURING & EXCELENT Media 768 ==== */ 
    .threebox-section {
        margin-top: calc(30px);
        margin-bottom: calc(50px);
    }
    .child-imagebox .img-track{
        width: calc(42px);
    }
  .main-childbox-section {
    grid-template-columns: repeat(3, 1fr); 
  } 
    .child-sectionbox{
        margin-bottom: calc(0px);
    }
    .small-image-box{
        display: none;
    }
/* ==== 100% & MANUFACTURING & EXCELENT Media 768 ==== */
    
/* ====  OUR JOURNEY Media 768 ==== */
    .journey-card{
        padding-bottom: 0px;
    }
    .journey-card .section-head{
        margin-bottom: 0px;
    }
    .journey-card::before{
        display: none;
    }
/* ====  End OUR JOURNEY Media 768 ==== */
    
/* ====  OUR PRODUCTS Media 768 ==== */
    .products{
        padding-top: calc(50px);
    }
    .products .section-head{
        margin-bottom: 16px;
    }    
    .products .section-head div,
    .products .section-head div h3{
        width: 100%;
    }
    .products .section-head div h3{
        margin-bottom: 26px;
    }
    .product-caption{
        opacity: 9;
        height: auto;
        bottom: 20px;
        transform: translate(0px, 0px);
        top: inherit;
        bottom: 0;
        background-color: #fff;
    }
    .product-caption div{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .product-caption .product-name{
        color: #000;
        font-size: 16px;
        width: calc(100% - 10%);
        padding-right: calc(4px);
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .product-caption .product-shopbtn{
        margin-top: 0px;
        font-size: 13px;
    }
    .product-imgbox:hover .product-caption{
        opacity: 9;
        transform: translate(0px, 0px);
    }
    .products .container::before{
        display: none;
    }
    .products .product-caption .product-name{
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
/* ====  End OUR PRODUCTS Media 768 ==== */    
    
/* ==== BEST COLLECTION Media 768 ==== */
    .best-collection .section-head{
        margin-bottom: 0px;
    }     
    .best-collection{
        padding-top: calc(50px);
    }
    .best-collection .main-section{
        grid-template-columns: 1.5fr 2fr;
        gap: 25px;
    }
    .best-collection .container::before{
        display: none;
    }
/* ==== End BEST COLLECTION Media 768 ==== */
    
/* ==== WHY SHOP WITH US Media 768 ==== */
    .why-shop{
        padding: calc(50px) calc(0px) calc(50px) calc(0px);
        margin-top: calc(50px);
    }
    .why-shop .section-head{
        margin-bottom: 16px;
    }     
    .why-shop .image-box::before{
        left: -12px;
    }
    .why-shop .main-section{
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .whyshop-textbox{
        order: 1;
    }
    .why-shop .container::before{
        display: none;
    }
/* ==== End WHY SHOP WITH US Media 768 ==== */     

/* ==== We Are Certified Media 768 ==== */    
    .certified{
        padding-top: calc(50px);
    }
    .certified .section-head{
        margin-bottom: 0px;
    }
    .certified-logosection.mt-4{
        margin-top: 16px !important;
    }
/* ==== End We Are Certified Media 768 ==== */
    
/* ==== Get a Quote Modal Media 768 ==== */ 
    .product-image-with-heading{
        padding-top: 20px;
    }
    .productimage-with-formsection{
            gap: 20px;
    }
    .productimage-with-formsection .image-box{
        height: calc(300px);
    }
/* ==== Get a Quote Modal Media 768 ==== */
    
/* ====  Get In Touch Modal  Media 768 ==== */ 
    .image-with-formsection{
        gap: 20px;
    }
    .image-with-formsection .form-box{
        padding-top: calc(20px);
        padding-bottom: calc(20px);
    }
/* ====  End Get In Touch Modal  Media 768 ==== */     
    
/* ==== Footer Media 768 ==== */
    footer{
        margin-top: calc(100px - 50px);
    }
    .company-footer-logo{
        width: calc(60px);
        height: auto;
    }
    .short-footer-about p{
        font-size: 13px;
    }
    .footer--section{
        grid-template-columns: 255px 1fr;
    }
    .footer--section{
        gap:25px;
    }
    .footer--rightsection{
        gap:40px;
    }
    .cmn-footerlist-box .list-items{
        margin-top: calc(100px - 80px);
    }
    .cmn-footerlist-box h5{
        font-size: 1.18rem;
    }
    .cmn-footerlist-box .list-items ul li a:hover span {
        margin-right: 8px;
    }
    .footer--rightsection .cmn-footerlist-box .list-items ul li a{
        font-size: 13px;
    }
    .copyright{
        text-align: center;
    }
/* ==== End Footer Media 768 ==== */

/* ====  Products Page Media 768 ==== */ 
    .inner-banner-section{
        height: fit-content;
    } 
    .inner-banner-content h1{
        font-size: 30px;
    }
    .product-section{
        padding-top: calc(2.400rem);
    }
    .product-section .product-gallery{
        justify-content: center;
    }
    .product-gallery .product-item {
        flex: 1 1 calc(33.3% - 20px);
         max-width: calc(33.3% - 20px);
        border: 1px solid #ddd;
    }
    .product-gallery .product-item .product-imgbox{
        border: 0px;
    }
    .product-item img{
        height: fit-content;
    }
    .product-gallery .product-caption{
        position: relative;
        box-shadow: none;
        border-top: 1px solid #ddd;
    }
    .product-gallery .product-caption div{
        flex-direction: column;
        gap: 8px;
    }
    .product-gallery .product-caption .product-name{
        width: calc(100%);
        padding-right: 0px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 13px;
        text-align: center;
    }
    .product-gallery .product-caption .product-shopbtn{
        font-size: 12px;
    }
    .filter-buttons{
        margin-bottom: 25px;
    }
    .filter-buttons .filter-btn{
        width: auto;
        padding: 10px calc(14px);
        font-size: 14px;
    }
/* ====  End Products page Media 768 ==== */
    
/* ====  Contact Page Media 768 ==== */ 
    .contact-section{
        padding-top: calc(2.400rem);
    }
    .contact-section .main-section{
        grid-template-columns: 1fr;
    }
    .contact-infosection{
        align-items: flex-start;
    }
    .contact-section .cmn-footerlist-box{
        margin-top: 10px;
    }
    .contact-infosection .cmn-footerlist-box .list-items ul{
        display: flex;
        flex-wrap: wrap;
    }
    .contact-infosection .cmn-footerlist-box .list-items ul li:not(:last-child) {
      flex: 0 0 50%;
    }

    .contact-infosection .cmn-footerlist-box .list-items ul li:last-child {
      flex: 0 0 100%; 
    }
    .contact-infosection .footer-contactlist ul li{
        margin-bottom: calc(20px);
    }
/* ====  End Contact Page Media 768 ==== */
    
/* ====  About Page Media 576 ==== */ 
    .about-section{
        padding-top: calc(2.400rem);
    }
    .about-ImageText-section,
    .thinkgreen-section,
    .bussinesspolicy-section{
        padding-top: calc(50px);
    }
    .about-section .content-section{
        margin-top: calc(0px);
    }
    .bussinesspolicy-listingpoints ul li{
        padding: 10px calc(0px);
    }
    .about-section .content-section h4{
        font-size: 1.2rem;
    }
    .blockquote{
        font-size: 1.00rem;
    }
    .about-section .about-ImageText-section .image-box{
        height: fit-content !important;
    }
/* ====  End About Page Media 576 ==== */     
}

@media (min-width:992px) and (max-width:1199.98px) {
    .threebox-section{
        margin-top: calc(50px);
    }
   /* ==== Hero Banner Media 992 ==== */
    .banner-section.pt-3{
        padding-top: 0px !important;
    }
    .banner-section .container-fluid{
        padding-left: 0px;
        padding-right: 0px;
    }
    .main-slider .slick-center .slide-content{
        flex: 2;
    }
    .banner-section .slide-image{
        width: calc(350px);
    }
    .main-slider .slide-content{
        padding-left: 15px;
    }
    .main-slider .slick-center .slide-content h2{
        font-size: 2.5rem;
        margin-bottom: 0px;
    }
    .main-slider .slick-center .slide-content .shop-btn{
        margin-top: 12px !important;
    }
    .banner-section .slick-dots{
        position: relative;
    }
    /* ==== End Hero Banner Media 992 ==== */    
    
    /* ====  OUR JOURNEY Media 992 ==== */
    .journey-card::before {
        content: "Journey";
        left: 18px;
        top: -118px;
        line-height: normal;
        font-family: "Open Sans", sans-serif;
        font-size: clamp(40px, 9.0vw, 187px);
    }    
    .small-image-box{
        display: none;
    }
    /* ====  End OUR JOURNEY Media 992 ==== */
    
    /* ====  Our Products Media 992 ==== */
    .product-shopbtn{
        margin-top: calc(20px);
    }
    /* ====  End OUR Products Media 992 ==== */
}

/* ===== End Media Query Start Code ===== */