/* Font */

@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Montserrat:wght@300;400;500&display=swap');


/* Commen Code */ 

:root{
    --primary-black-color: #000000;
    --primary-white-color: #FAFAFA;
    --secondary-black-color: #212121;
    --secondary-white-color: #FFFFFF;
    --marcellus: 'Marcellus', serif;
    --montserrat: 'Montserrat', sans-serif;
}

*{
    margin: 0;
    padding: 0;
}

body{
    background-color: var(--primary-black-color);
    overflow-x: hidden;
}

a{
    text-decoration: none;
    cursor: pointer;
    color: var(--primary-white-color);
    font-family: var(--montserrat);
}

ul li{
    list-style: none;
}

/* Reusable Code */

.container{
   /* border: 1px solid var(--primary-white-color);*/
    margin: 0 80px;
}

.flex{
    display: flex;
}

.Icon{
    color: var(--primary-white-color);
    font-size: 22px;
    margin-right: 15px;
    cursor: pointer;
    transition: all .5s;
}

.Icon:hover{
    font-size: 24px;
}

.Primary-Btn{
    padding: 10px 25px;
    background-color: var(--primary-black-color);
    color: var(--primary-white-color);
    font-weight: 500;
    font-size: 20px;
    border: 1px solid var(--primary-white-color);
    transition: .5s;
}

.Primary-Btn:hover{
    background-color: var(--primary-white-color);
    color: var(--secondary-black-color);
    border: 1px solid var(--secondary-black-color);
}

/* Header Start */

/*.Language-Wrapper{
    height: 40px;
    border-bottom: 1px solid var(--primary-white-color);
}
.Navbar-Main-Wrapper{
    height: 100px;
    width: auto;
    padding: 0 80px;
    justify-content: space-between;
    border-bottom: 0.5px solid var(--primary-white-color);
    background: transparent;
}

.Navbar-Main-Wrapper .Logo-Wrapper img{
    width: 180px;
    height: auto;
    position: relative;
    top: 25px;
}

.Navbar-Main-Wrapper .Links-Wrapper{
    position: relative;
    top: 38px;
    height: auto;
}

.Navbar-Main-Wrapper .Links-Wrapper ul{
    gap: 25px;
    position: relative;
}

.Navbar-Main-Wrapper .Links-Wrapper ul li a{
    font-size: 20px;
    font-weight: 500;
    transition: 0.3s;
}

.Navbar-Main-Wrapper .Links-Wrapper ul li a:hover{
    font-size: 23px;
}

.Mobile-Navbar-Btn{
    position: relative;
    top: 33px;
    background-color: transparent;
    display: none;
    z-index: 999;
    
}

.Mobile-Nav-Icon{
    font-size: 30px;
}

.Btn-Close{
    display: none;
}*/

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 4rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(0, 0%, 0%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --h1-font-size: 1.5rem;
  --normal-font-size: 3rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
 .container_2 {
  max-width: 1250px;
  margin-inline: 1.5rem;
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--black-color);
  z-index: var(--z-fixed);
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo img {
  width: 200px;
}

.nav__close, 
.nav__toggle {
  display: flex;
  color: var(--white-color);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {
  .nav__menu {
    position: fixed;
    left: -100%;
    top: 0;
    background-color: var(--black-color);
    width: 100%;
    height: 100%;
    padding: 6rem 3.5rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: left .4s;
  }

  .nav__item {
    transform: translateX(-150px);
    visibility: hidden;
    transition: transform .4s ease-out, visibility .4s;
  }

  .nav__item:nth-child(1) {
    transition-delay: .1s;
  }
  .nav__item:nth-child(2) {
    transition-delay: .2s;
  }
  .nav__item:nth-child(3) {
    transition-delay: .3s;
  }
  .nav__item:nth-child(4) {
    transition-delay: .4s;
  }
  .nav__item:nth-child(5) {
    transition-delay: .5s;
  }
  .nav__item:nth-child(6) {
    transition-delay: .6s;
  }
}

.nav__list, 
.nav__social {
  display: flex;
}

.nav__list {
  flex-direction: column;
  row-gap: 3rem;
}

.nav__link {
  position: relative;
  color: var(--white-color);
  font-size: var(--h1-font-size);
  font-weight: var(--font-medium);
  display: inline-flex;
  align-items: center;
  transition: opacity .4s;
}

.nav__link i {
  font-size: 2rem;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}

.nav__link span {
  position: relative;
  transition: margin .4s;
  font-family: var(--montserrat);
}

.nav__link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: var(--white-color);
  transition: width .4s ease-out;
}

/* Animation link on hover */
.nav__link:hover span {
  margin-left: 2.5rem;
}

.nav__link:hover i {
  opacity: 1;
  visibility: visible;
}

.nav__link:hover span::after {
  width: 100%;
}

/* Sibling fade animation */
.nav__list:has(.nav__link:hover) .nav__link:not(:hover) {
  opacity: .4;
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

/* Show menu */
.show-menu {
  left: 0;
}

/* Animation link when displaying menu */
.show-menu .nav__item {
  visibility: visible;
  transform: translateX(0);
}

/*=============== BREAKPOINTS ===============*/
/* For large devices */
@media screen and (min-width: 1150px) {
  .container_2 {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
  }

  .nav__toggle, 
  .nav__close {
    display: none;
  }

  .nav__link {
    font-size: var(--normal-font-size);
  }

  .nav__link i {
    font-size: 1.5rem;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 3.5rem;
  }

  .nav__menu {
    display: flex;
    align-items: center;
    column-gap: 3.5rem;
  }
}

/* Header End*/

/* Hero Section Start */

.Hero-Wrapper{
    width: 100%;
    height: 720px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7) ), url("/IMG/Hero.png");
    background-position: center;
    background-size: cover;
    justify-content: end;
}

.Hero-Wrapper .Content{
    width: 500px;
    margin-right: 0;
    position: absolute;
    right: 100px;
    top: 270px;
}

.Hero-Wrapper .Content h3{
    color: var(--primary-white-color);
    font-family: var(--montserrat);
    font-weight: 400;
    font-size: 24px;
    width: auto;
}

.Hero-Wrapper .Content h3 span{
    color: var(--primary-white-color);
}

.Hero-Wrapper .Content h1{
    font-family: var(--marcellus);
    font-size: 55px;
    color: var(--primary-white-color);
    font-weight: 500;
    margin: 20px 0;
    width: auto;
}

.Hero-Wrapper .Content #Second-H3{
    font-size: 20px;
    margin-bottom: 40px;
}

.Hero-Wrapper .Content #Second-H3 span{
    font-weight: 600;
    opacity: 80%;
}

/*.Hero-Wrapper .Right-Div{
    width: 55%;
    overflow: hidden;
}

.Hero-Wrapper .Right-Div .Slider .item img{
    position: relative;
    width: 100%;
    height: 100%;
    filter: gray; /* IE5+ 
     -webkit-filter: grayscale(1); 
     -webkit-transition: all .8s ease-in-out;
}*/

/* Hero Section End */

/* About Section Start */

.About-Wrapper{
    /*border: 1px solid var(--primary-white-color);*/
    height: 650px;
    margin-top: 50px;
}

.About-Wrapper .Left-Div{
    width: 50%;
    padding: 0px;
    text-align: center;
    margin: auto;
}

.About-Wrapper .Left-Div img{
    width: 500px;
}

.About-Wrapper .Right-Div{
    /*border: 1px solid var(--primary-white-color);*/
    width: 50%;
}

.About-Wrapper .Right-Div .Content{
    margin-top: 100px;
}

.About-Wrapper .Right-Div .Content h4{
    color: var(--primary-white-color);
    font-family: var(--montserrat);
    font-weight: 500;
    margin-bottom: 25px;
}

.About-Wrapper .Right-Div .Content h1{
    color: var(--primary-white-color);
    font-family: var(--marcellus);
    font-weight: 600;
    width: 420px;
    line-height: 40px;
}

.About-Wrapper .Right-Div .Content p{
    color: var(--primary-white-color);
    font-family: var(--montserrat);
    margin-top: 25px;
    width: 600px;
    letter-spacing: 1px;
    line-height: 22px;
    opacity: 80%;
}

.About-Wrapper .Right-Div .Content .specification-div{
    margin-top: 25px;
    margin-bottom: 40px
}

.About-Wrapper .Right-Div .Content .specification-div ul li i{
    padding-right: 10px;
}

.About-Wrapper .Right-Div .Content .specification-div ul li{
    color: var(--primary-white-color);
    font-family: var(--marcellus);
    margin-bottom: 15px;
    padding-top: -1px;
    opacity: 90%;
}

/* About Section End */

/* Products Section Start */

.Product-Wrapper{
    border: 1px solid var(--primary-white-color);
    height: auto;
    margin-bottom: 50px;
}

.Product-Wrapper h4{
     color: var(--primary-white-color);
    font-family: var(--montserrat);
    font-weight: 400;
    margin-bottom: 25px;
    margin-top: 25px;
    text-align: center;
    font-size: 25px;
    padding-top: 50px;
}

.Product-Wrapper .Product-Card-Main-Div{
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    padding: 50px 0;
    margin-bottom: 50px;
}

.Product-Wrapper .Product-Card{
    width: 550px;
    height: 350px;
    transition: .8s ease-out;
    padding: 0 0 0 10px;
    overflow: hidden;
}

.Product-Wrapper .Product-Card h1{
    font-family: var(--marcellus);
    color: var(--primary-white-color);
    font-size: 100px;
    text-align: left;
    padding: 20x 00 0 0;
    font-weight: 500;
    transition: .8s ease-out;
    margin-bottom: 22px;
}

.Product-Wrapper .Product-Card a{
    position: relative;
    margin-left: 5px;
}

/* Products Section End */

/* Features Section Start */

.Features-Wrapper{
    margin-top: 100px;
    height: auto;
}

.Features-Wrapper .Product-Content h4{
    color: var(--primary-white-color);
    font-family: var(--montserrat);
    font-weight: 400;
    margin-bottom: 25px;
    margin-top: 25px;
    text-align: center;
    font-size: 25px;
}

.Features-Wrapper .Product-Content h1{
    color: var(--primary-white-color);
    font-family: var(--marcellus);
    font-weight: 600;
    margin-bottom: 25px;
    margin-top: 25px;
    text-align: center;
}

.Features-Wrapper .Features-Card-Wrapper{
    justify-content: space-around;
    margin: 50px 0 50px 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: 75px;
}

.Features-Wrapper .Features-Card-Wrapper .Features-Card{
    height: 400px;
    width: 300px;
    justify-items: center;
    text-align: center;
    position: relative;
    flex-wrap: wrap;
}

.Features-Wrapper .Features-Card-Wrapper .Features-Card img{
    height: 80px;
    width: 80px;
    border-radius: 100%;
    margin: 20px 0 0 0;
}

.Features-Wrapper .Features-Card-Wrapper .Features-Card h4{
    color: var(--primary-white-color);
    font-family: var(--montserrat);
    font-weight: 600;
    margin-bottom: 25px;
    margin-top: 35px;
    text-align: center;
    font-size: 20px;
}

.Features-Wrapper .Features-Card-Wrapper .Features-Card p{
    color: var(--primary-white-color);
    font-family: var(--montserrat);
    margin-top: 20px;
    width: 275px;
    letter-spacing: 1px;
    line-height: 30px;
    opacity: 80%;
    text-align: center;
    font-size: 16px;
}

/* Features Section Start */

/* CTA Section Start */

.CTA-Wrapper{
    border: 1px solid var(--secondary-white-color);
    height: 300px;
    margin-bottom: 50px;
}

.CTA-Wrapper .CTA-Left{
    width: 70%;
    padding-left: 80px;
}

.CTA-Wrapper .CTA-Left h1{
    color: var(--primary-white-color);
    font-family: var(--marcellus);
    font-weight: 500;
    margin-bottom: 25px;
    margin-top: 50px;
    font-size: 30px;
}

.CTA-Wrapper .CTA-Left p{
    color: var(--primary-white-color);
    font-family: var(--montserrat);
    margin-top: 20px;
    letter-spacing: 1px;
    line-height: 30px;
    opacity: 80%;
    font-size: 18px;
    width: 68%;
    margin-bottom: 50px;
}

.CTA-Wrapper .CTA-Left .Primary-Btn{
    margin-top: 150px;
}

.CTA-Wrapper .CTA-Right{
    width: 30%;
    text-align: center;
    align-content: center;
}

.CTA-Right img{
    text-align: center;
}

/* CTA Section End */

/* Footer Section Start */

.Footer-Wrapper{
    height: 420px;
    background-image: url("../IMG/Footer-back.png");
    background-position: center;
    border-top: 1px solid var(--secondary-white-color);
}

.Footer-Wrapper .Footer-Div-Wrapper{
   height: auto;
   margin-bottom: 50px;
}

.Footer-Wrapper .Footer-Div-Wrapper .Sub-Footer-1{
    width: 30%;
    padding-left: 120px;
    padding-top: 110px;
}

.Footer-Wrapper .Footer-Div-Wrapper .Sub-Footer-1 ul li{
    color: var(--primary-white-color);
    font-family: var(--marcellus);
    font-size: 20px;
    font-weight: 500;
    text-align: left;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.Footer-Wrapper .Footer-Div-Wrapper .Sub-Footer-2{
    width: 40%;
}

.Footer-Wrapper .Footer-Div-Wrapper .Sub-Footer-2 img{
    width: 300px;
    position: relative;
    top: 40%;
    left: 23%;
}

.Footer-Wrapper .Footer-Div-Wrapper .Sub-Footer-3{
    width: 30%;
    padding-right: 120px;
    padding-top: 110px;
}

.Footer-Wrapper .Footer-Div-Wrapper .Sub-Footer-3 ul li{
    color: var(--primary-white-color);
    font-family: var(--marcellus);
    font-size: 20px;
    font-weight: 500;
    text-align: right;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.Footer-Wrapper .Sub-Footer-Wrapper{
    border-top: 1px solid var(--secondary-white-color);
    padding: 0 80px;
}

.Footer-Wrapper .Sub-Footer-Wrapper .Copyrite-Div{
    width: 70%;
    height: 80px;
    margin-top: 10px;
}

.Footer-Wrapper .Sub-Footer-Wrapper .Copyrite-Div h3{
    color: var(--primary-white-color);
    font-family: var(--montserrat);
    font-weight: 500;
    font-size: 16px;
    padding: 30px 0 30px 0;
    letter-spacing: 1px;
}

.Footer-Wrapper .Sub-Footer-Wrapper .Media-Div{
    width: 30%;
    padding-top: 30px;
    justify-content: right;
    gap: 15px;
}

.Footer-Wrapper .Sub-Footer-Wrapper .Media-Div a i{
    font-size: 30px;
}

/* Footer Section End */

/* Home Page End */



/* About Page Start */

/* About Page Heading Section Start */

.Page-Heading-Wrapper{
    height: 300px;
    width: 100%;
}

.Page-Heading-Wrapper h1{
    color: var(--primary-white-color);
    font-family: var(--marcellus);
    font-size: 80px;
    text-align: center;
    padding-top: 150px;
}

/* About Page Heading Section End */

/* About Section Start */

.About2-Wrapper{
    width: 100%;
    height: 650px;
}

.About2-Wrapper .About2-Left-Div{
    width: 50%;
    padding: 100px;
}

.About2-Wrapper .About2-Left-Div img{
    position: relative;
    width: 100%;
    height: 100%;
}

.About2-Wrapper .About2-Right-Div{
    width: 50%;
    padding: 100px;
}

.About2-Wrapper .About2-Right-Div h2{
    color: var(--primary-white-color);
    font-family: var(--marcellus);
    font-size: 30px;
    padding-top: 20px;
    padding-bottom: 40px;
}

.About2-Wrapper .About2-Right-Div p{
    color: var(--primary-white-color);
    font-family: var(--montserrat);
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 1px;
    padding-bottom: 35px;
    opacity: 80%;
}

/* About Section End */

/* Key-Fetures Section Start */

.Key-Fetures-Wrapper{
    height: auto;
    padding: 0 80px;
    justify-content: center;
    margin-bottom: 70px;
    flex-wrap: wrap;
    gap: 50px;
}

.Key-Fetures-Wrapper .Kf-Card{
    width: 400px;
    justify-items: center;
    text-align: center;
}

.Key-Fetures-Wrapper .Kf-Card img{
    height: 80px;
    width: 80px;
    border-radius: 100%;
    margin: 20px 0 0 0;
}

.Key-Fetures-Wrapper .Kf-Card h4{
    color: var(--primary-white-color);
    font-family: var(--montserrat);
    font-weight: 600;
    margin-bottom: 25px;
    margin-top: 35px;
    text-align: center;
    font-size: 20px;
}

.Key-Fetures-Wrapper .Kf-Card p{
    color: var(--primary-white-color);
    font-family: var(--montserrat);
    margin-top: 20px;
    width: 350px;
    letter-spacing: 1px;
    line-height: 30px;
    opacity: 80%;
    text-align: center;
    font-size: 16px;
}

/* Key-Fetures Section End */

/* About Page End */


/* Products Page Start */

.Product-Page-Wrapper{
    margin-top: 50px;
}

/* Products Page End */


/* Qaulity Page Start */

/* Quality Card Section Strat */

.Quality-Wrapper{
    margin-top: 100px;
}

.MII-Wrapper .About2-Right-Div h1{
    color: var(--primary-white-color);
    font-family: var(--marcellus);
    font-size: 40px;
    padding-top: 20px;
    font-weight: 500;
}

/* Quality Card Section End */

/* Quality Page End */


/* Let's Connect Page Strat */

.Lets-Connect-Wrapper{
    height: auto;
    margin-top: 50px;
    padding: 0 100px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 100px;
    margin-top: 50px;
}

.Lets-Connect-Wrapper .Inquiry-Form-Div form .Input-Div{
    flex-direction: column;
    padding: 25px 0;
}

.Lets-Connect-Wrapper .Inquiry-Form-Div form .Input-Div p{
    color: var(--primary-white-color);
    font-family: var(--montserrat);
    width: 420px;
    letter-spacing: 1px;
    line-height: 30px;
    opacity: 80%;
    font-size: 18px;
    padding-bottom: 5px;
}

.Lets-Connect-Wrapper .Inquiry-Form-Div form .Input-Div input{
    background-color: transparent;
    border: 1px solid var(--primary-black-color);
    border-bottom: 1px solid var(--secondary-white-color);
    padding: 10px 0;
    color: var(--primary-white-color);
    font-family: var(--montserrat);
    font-size: 18px;
    opacity: 80%;
}

.Lets-Connect-Wrapper .Inquiry-Form-Div form .Input-Div input:focus {
    border: none;
    outline: none;
    border-bottom: 1px solid var(--secondary-white-color);
}

.Lets-Connect-Wrapper .Inquiry-Form-Div .Input-Div textarea{
    background-color: transparent;
    border: 1px solid var(--primary-black-color);
    border-bottom: 1px solid var(--secondary-white-color);
    padding: 10px 0;
    color: var(--primary-white-color);
    font-family: var(--montserrat);
    font-size: 18px;
    opacity: 80%;
    width: 100%;
    margin-bottom: 50px;
}

.Lets-Connect-Wrapper .Inquiry-Form-Div form .Input-Div textarea:focus {
    border: none;
    outline: none;
    border-bottom: 1px solid var(--secondary-white-color);
}

/* Let's Connect Page End */


/* Contact Page Start */

/* Contact Section Start */

.Contact-Wrapper{
    height: 500px;
    margin-top: 50px;
    justify-content: space-around;
}

.Contact-Wrapper .Contact-Card{
    width: 425px;
    text-align: center;
    justify-items: center;
}

.Contact-Wrapper .Contact-Card img{
    height: 80px;
    width: 80px;
    border-radius: 100%;
    margin: 20px 0 0 0;   
}

.Contact-Wrapper .Contact-Card h4{
    color: var(--primary-white-color);
    font-family: var(--montserrat);
    font-weight: 600;
    margin-bottom: 25px;
    margin-top: 35px;
    text-align: center;
    font-size: 20px;
}

.Contact-Wrapper .Contact-Card p{
    color: var(--primary-white-color);
    font-family: var(--montserrat);
    margin-top: 20px;
    width: 350px;
    letter-spacing: 1px;
    line-height: 30px;
    opacity: 80%;
    text-align: center;
    font-size: 16px;
}

/* Contact Section End */

/* Contact Page End */


/* Sub Products Page Start */

/* Sub Products Section Start */

.Sub-Product-Wrapper{
    border: 1px solid var(--primary-white-color);
    height: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 50px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
}

.Sub-Product-Wrapper .Sub-Product-Card{
    /*border: 1px solid var(--primary-white-color);*/
    background-position: center;
    background-size: cover;
    width: 400px;
    height: 250px;
    filter: gray; /* IE5+ */
      -webkit-filter: grayscale(1); /* Webkit Nightlies & Chrome Canary */
      -webkit-transition: all .8s ease-in-out; 
}

.Sub-Product-Wrapper .Sub-Product-Card:hover{
    filter: none;
      -webkit-filter: grayscale(0);
      -webkit-transform: scale(1.01);
}

.Sub-Product-Wrapper .Sub-Product-Card h3{
    color: var(--primary-black-color);
    font-family: var(--marcellus);
    font-size: 25px;
    letter-spacing: 1px;
    padding :210px 0 0 10px;
}

/* Sub Products Section End */

/* Sub Products Page End */


/* Sub Collection Page Start */

/* Sub Collection Section Strat */

.Sub-Collection-Wrapper{
    border: 1px solid var(--primary-white-color);
    height: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 50px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.Sub-Collection-Wrapper .Sub-Product-Card{
    border: 1px solid var(--primary-white-color);
    height: auto;
    width: 250px;
    background-position: center;
    background-size: cover;
}

.Sub-Collection-Wrapper .Sub-Product-Card img{
    width: 100%;
    height: 250px;
}

.Sub-Collection-Wrapper .Sub-Product-Card h3{
    color: var(--primary-white-color);
    font-family: var(--marcellus);
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0 10px 0;
    line-height: 30px;
    text-align: center;
}

.Sub-Collection-Wrapper .Sub-Product-Card h2{
    color: var(--primary-black-color);
    font-family: var(--marcellus);
    font-size: 20px;
    font-weight: 500;
    padding: 10px 0;
}

/* Sub Collection Section End */

/* Sub Collection Page End */