*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: "Poppins", sans-serif;
}
:root{
    --light:#fff;
    --dark:#000;
    --red:#a12a2c;
    --brown:#31262e;
    --text-color:#5e5e5e;
    --blue:#0d6efd;
}
a{
    text-decoration: none;
}
.btn:focus{
    box-shadow: none;
}

p{
    color: var(--text-color);
    line-height: 30px;
}
.btn-primary:focus{
    box-shadow: none;
}

.btn-yellow{
    color: var(--light);
    text-transform: uppercase;
    border-radius: 0;
    box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.08);
    perspective: 300px;
    z-index: 1;
    position: relative;
    transition: all 0.3s ease 0s;
    font-weight: 400;
  }
  .btn-yellow:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform-origin: left center 0;
    transition: all 0.3s ease 0s;
  }
  .btn-yellow:hover:before{
    transform: rotateY(103deg);
  }
  .btn-yellow{ border: 2px solid var(--red); }
  .btn-yellow:hover{ color: var(--red); }
  .btn-yellow:before{ background: var(--red); }

h1 {
    font-size: 60px;
    font-weight: 600;
    color: var(--light);
    position: relative;

}
h1::after {
    content: "";
    position: absolute;
    bottom: -4px;
    right: 46%;
    height: 4px;
    width: 100px;
    background-color: var(--red);
}
h2{
    font-size: 46px;
    color: var(--dark);
    margin-bottom: 40px;
    font-weight: 500;
    text-align:center;
}
h5{
    font-size: 24px;
    color: var(--red);
    margin-bottom: 40px;
    font-weight: 500
}

  /* whatups btn================== */

  .floating_btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    z-index: 1000;
  }
  
  @keyframes pulsing {
    to {
      box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
  }
  
  .contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size:30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
  }

  

    
  /* scroll-top button================ */
  .backToTopBtn {
    position: fixed;
    bottom: 60px;
    right: 40px;
    z-index: 1;
    height: 50px;
    width: 50px;
    font-size: 20px;
    border: none;
    color: var(--red);
    border-radius: 100%;
    transition: 0.5s;
    cursor: pointer;
    background-color: transparent;
}
    .backToTopBtn:not(:hover) {
      border: 2PX solid var(--red);
    }
    .backToTopBtn:hover {
      background: var(--red);
      color: #CCC;
    }
    .backToTopBtn.active {
      visibility: visible;
      opacity: 1;
      pointer-events: auto;
    }
    .backToTopBtn:not(.active) {
      visibility: hidden;
      opacity: 0;
      pointer-events: none;
    }


/* header=============== */
.navigation {
    height: 110px;
    background:var(--light);
    box-shadow: 0px 3px 5px 0px #0000007a;
}
.navigation .brand {
    position: absolute;
    padding-left: 0px;
    float: left;
    line-height: 55px;
    text-transform: uppercase;
    font-size: 40px;
    top: 5px;
}
.navigation .brand a, .navigation .brand a:visited {
    color: #ffffff;
    text-decoration: none;
}
.navigation .brand a img{
    width: 170px;
    margin-top: 5px;
}
.navigation .nav-container {
    margin: 0 auto;
}
nav {
    float: right;
    margin-top: 32px;
}
.navigation nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.navigation nav ul li {
    float: left;
    position: relative;
}
.navigation nav ul li a, .navigation nav ul li a:visited {
    display: block;
    padding: 8px 20px;
    color: var(--brown);
    background: var(--light) ;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
}
.navigation nav ul li a, .navigation nav ul li a.btn-yellow{
   color: var(--light);
}
.navigation nav ul li a{
    background: transparent;
    color: var(--brown);
}
.navigation nav ul li a:hover, .navigation nav ul li a:visited:hover {
    color: var(--red);
}
.navigation .navbar-dropdown li a{
    background: var(--light);
}
.navigation nav ul li a:not(:only-child):after, .navigation nav ul li a:visited:not(:only-child):after {
    padding-left: 4px;
    content: ' \f0d7';
    font-family: 'FontAwesome';
}
.navigation nav ul li ul li {
    min-width: 190px;
}
.navigation nav ul li ul li a {
    padding: 15px;
    line-height: 20px;
}
.navigation .navbar-dropdown {
    position: absolute;
    display: none;
    z-index: 1;
    background: #fff;
    box-shadow: 0 0 35px 0 rgba(0,0,0,0.25);
}
/* Mobile navigation */
.navigation .nav-mobile {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    height: 55px;
    width: 70px;
}

.navigation #navbar-toggle {
    position: absolute;
    left: 18px;
    top: 8px;
    cursor: pointer;
    padding: 10px 35px 16px 0px;
}
.navigation #navbar-toggle span, .navigation #navbar-toggle span:before, .navigation #navbar-toggle span:after {
    cursor: pointer;
    border-radius: 1px;
    height: 3px;
    width: 30px;
    background: var(--red);
    position: absolute;
    display: block;
    content: '';
    transition: all 300ms ease-in-out;
}
.navigation #navbar-toggle span:before {
    top: -10px;
}
.navigation #navbar-toggle span:after {
    bottom: -10px;
}
.navigation #navbar-toggle.active span {
    background-color: transparent;
}
.navigation #navbar-toggle.active span:before, .navigation #navbar-toggle.active span:after {
    top: 0;
}
.navigation #navbar-toggle.active span:before {
    transform: rotate(45deg);
}
.navigation #navbar-toggle.active span:after {
    transform: rotate(-45deg);
}

  /* topheader================ */
  .topheader {
    padding: 10px 0px;
    background: var(--red);
}
  .topheader .inner-text{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .topheader .inner-text ul{
    display: flex;
    align-items: center;
    padding-left: 0;
    margin-bottom: 0;
  }
  .topheader .inner-text ul li{
    list-style: none;
    margin: 0px 10px;
  }
  .topheader .inner-text ul li a i{
    color: #fff;
    font-size: 18px;
    transition: all .5s linear;
  }
  .topheader .inner-text ul li a i:hover{
    color: #181a1f;
  }
  .topheader .inner-text .right-text a{
    color: #fff;
    font-size: 18px;
    margin-left: 15px;
    transition: all .5s linear;
  }
  .topheader .inner-text .right-text a span {
    margin-left: 5px;
    font-size: 16px;
    font-weight: 300;
}
  .topheader .inner-text .right-text a:hover{
    color: var(--light);
    opacity: .6;
  }

   .search-section{
     display: none;
     padding: 20px 0px;
   }
   .search-box-show{
    display: block;
  }

  .search-section .search-btn {
    border-bottom: 1px solid var(--red);
  }
  .search-section .search-btn input {
    width: 100%;
    padding: 20px;
    
    border-left: 0px;
    border-right: 0px;
    border-top: 0px;
    color: var(--brown);
    font-weight: 500;
}
.search-section .search-btn input:focus{
    outline: none;
    box-shadow: none;
}
.search-section .search-btn{
    position: relative;
}
.search-section .search-btn i {
    position: absolute;
    right: 0;
    top: 20px;
    font-size: 24px;
    color: var(--brown);
    cursor: pointer;
}
.search-section .search-btn input::placeholder{
    color: #5b5b5b;
}

 /* footer======================= */
 footer {
    padding: 80px 0px;
    background-color: #120b10;
}
 footer .inner-text .left-content img{
    width: 170px;
    margin-bottom: 20px;
 }
 footer .inner-text .left-content h5{
    color: var(--red);
    margin-bottom: 30px;
 }
 footer .inner-text .left-content .location{
    display: flex;
    margin-bottom: 25px;
    transition: all .5s ease;
    cursor: pointer;
 }
 footer .inner-text .left-content .location :is(a, p):hover{
    color: var(--red);
 }
 footer .inner-text .left-content .location a{
    display: flex;
    margin-bottom: 20px;
    transition: all .5s ease;
    cursor: pointer;
 }

 footer .inner-text .left-content .location i {
    margin-right: 15px;
    font-size: 20px;
    transition: all .5s ease;
    color: #fff;
    margin-top: 4px;
}
 footer .inner-text .left-content .location p{
    color: #fff;
    margin-bottom: 0;
    font-size: 16px;
    transition: all .5s ease;
    font-weight: 300;
 }
 footer .inner-text .left-content .location a{
    color: #fff;
    font-size: 16px;
    transition: all .5s ease;
    word-break: break-all;
    font-weight: 300;
    margin: 0;
 }
 footer .inner-text .left-content .location:last-child{
    margin-bottom: 0;
 }
 footer .inner-text .middle-content h5{
    color: var(--red);
    margin-bottom: 20px;
 }
 footer .inner-text .middle-content  ul{
    margin-bottom: 0px;
    padding-left: 0;
 }
 footer .inner-text .middle-content  ul li{
    list-style: none;
    margin-top: 20px;
 }
 footer .inner-text .middle-content  ul li a{
    color: #fff;
    transition: all .5s ease;
    font-weight: 300;
 }
 footer .inner-text .middle-content  ul li a:hover{
    color: var(--red);
    opacity: .9;
 }
 footer .inner-text .right-content h5{
    color: var(--red);
    margin-bottom: 20px;
 }
 footer .inner-text .right-content form .form-group{
    margin-top: 20px;
 }
 footer .inner-text .right-content form  button.btn-yellow{
    padding: 8px 25px;
    color: var(--light);
 }
 footer .inner-text .right-content form .form-group :is(input, textarea){
    background: transparent;
    color: #fff;
    padding: 10px;
    border-radius: 0;
    border-color: var(--text-color);
 }
 footer .inner-text .right-content form .form-group :is(input, textarea):focus{
    box-shadow: none;
    border-color: var(--brown);
    opacity: .9;
 }
 footer .inner-text .right-content form .form-group :is(input, textarea)::placeholder{
    color: var(--text-color);
 }
 /* subfooter================== */
 .subfooter{
    padding: 10px 0px;
    background-color:#10090e;
}
.subfooter .inner-text{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.subfooter .inner-text ul{
    display: flex;
    align-items: center;
    padding-left: 0;
    margin-bottom: 0;
}

.subfooter .inner-text ul li{
    margin: 0px 10px;
    list-style: none;
}
.subfooter .inner-text ul li a{
    color: var(--red);
    font-size: 20px;
    transition: all .5s linear;
}
.subfooter .inner-text ul li a:hover{
    color: #fff;
}
.subfooter .inner-text p{
    margin-bottom: 0px;
    color: var(--light);
}
.subfooter .inner-text p a{
    color: var(--red);
}

/* banner-section================= */
.banner .owl-carousel .item {
    background-image: url(../images/banner1.png);
    padding: 250px 0px;
    text-align: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.banner .owl-carousel .item::before {
    content: "";
    position: absolute;
    background-color: #000000a6;
    height: 100%;
    width: 100%;
    z-index: 0;
    top: 0;
    left: 0;
}
.banner .owl-carousel .item2 {
    background-image: url(../images/banner2.png);
}
.banner .owl-carousel .item3 {
    background-image: url(../images/banner3.png);
}
.banner .owl-carousel .item h1{
    color: var(--light);
    margin-bottom: 30px;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
}
.banner .owl-carousel .item p{
    color: var(--light);
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.banner .owl-carousel .item a.btn-yellow{
    color: var(--light);
}

.banner .owl-carousel .owl-dots {
    text-align: center;
    position: absolute;
    bottom: 33px;
    left: 50%;
    transform: translateX(-50%);
  }
  .banner .owl-carousel .owl-dots .owl-dot{
     height: 15px;
     width: 15px;
     border-radius: 50%;
     background-color: var(--light);
     margin: 0px 5px;
  }
  .banner .owl-carousel .owl-dots .owl-dot.active{
   background-color: var(--red);
  }

  .banner .owl-carousel  .owl-nav .owl-prev.disabled{
    opacity: .3;
  }
  .banner .owl-carousel  .owl-nav .owl-next.disabled{
    opacity: .3;
  }
 


  .banner .owl-carousel .owl-nav .owl-prev::after{
    position: absolute;
    content: "\f053";
    left: 20px;
    bottom: 50%;
    font-size: 26px;
    font-family: fontawesome;
    color: var(--red);
  }
  .banner .owl-carousel .owl-nav .owl-next::after{
    position: absolute;
    content: "\f054";
    right: 20px;
    bottom: 50%;
    font-size: 26px;
    font-family: fontawesome;
    color: var(--red);
  }
  .banner .owl-carousel .owl-nav .owl-prev span{
    display: none;
  }
  .banner .owl-carousel .owl-nav .owl-next span{
    display: none;
  }

  /* category-section=====================*/
  .category-section {
    padding: 50px 0px;
    text-align: center;
}
.category-section a img{
    max-width: 100%;
    transition: all .5s ease;
}
.category-section a img:hover{
    filter: grayscale(1);
}
.sub-headings {
    color: var(--red);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.18em;
    line-height: 27px;
    text-align: center;
    margin-bottom: 5px;
}
.sub-headings img{
    max-width: 100%;
}

.know-section{
    padding: 60px 0px;
}
.know-section .inner-text ul{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:30px;
    padding: 0;
}
.know-section .inner-text ul li{
    background-color: #F4ECE6;
    text-align: center;
    padding: 0px 20px 20px;
    border-radius: 20px;
    list-style: none;
}
.know-section .inner-text ul li img{
    margin-bottom: 20px;
}
.know-section .inner-text ul li h5{
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 22px;
}
.know-section .inner-text ul li p{
    color: var(--text-color);
    margin-bottom: 0px;
    font-weight: 300;
}
.know-section .inner-text ul li:nth-child(2){
    background-color: #EFE6F4;
}
.know-section .inner-text ul li:last-child{
    background-color: #E6F1F4;
}
.read_more {
    border: 1px solid var(--red);
    float: none;
    text-align: center;
    margin: 40px auto 20px;
    width: 192px;
}
.read_more a {
    color: var(--red);
    display: block;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 22px;
    padding: 15px 0px;
    text-transform: uppercase;
    transition: all .5s linear;
}
.read_more a:hover{
    background-color: var(--red);
    color: var(--light);
}

.read_more a:hover img {
    filter: brightness(100);
}
.read_more a img {
    margin: 0 7px 0 0;
    transition: all .5s linear;
}

/* product gallery=============== */

.product-gallery{
    padding: 60px 0px;
}
.product-gallery .inner-text .owl-carousel .item{
    text-align: center;
    
}
.product-gallery .inner-text .owl-carousel .item img {
  margin-bottom: 10px;
  transition: all .5s ease-in-out;
  border: 12px solid rgba(233, 233, 233, 0.8);
  height: 160px;
  object-fit: cover;
}
.product-gallery .inner-text .owl-carousel .item h6{
    font-size: 18px;
    color: var(--brown);
    transition: all .5s ease;
    text-transform: capitalize;
}
.product-gallery .inner-text .owl-carousel .item a{
    color: var(--red);
}
.product-gallery .inner-text .owl-carousel .item:hover img{
    border-color: var(--red);
}
.product-gallery .inner-text .owl-carousel .item:hover h6{
    color: var(--red);
}

/* recently-viewed============== */
.recently-viewed{
    padding: 60px 0px;
}
.recently-viewed .inner-text ul{
    padding-left: 0;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.recently-viewed .inner-text ul li{
    list-style: none;
}
.recently-viewed .inner-text ul li a img {
  margin-bottom: 10px;
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.recently-viewed .inner-text ul li a .content-section{
    text-align: center;
}

.recently-viewed .inner-text ul li a .content-section label span  {
    color: var(--dark);
    font-weight: 500;
    text-transform: capitalize;
}
.recently-viewed .inner-text ul li a .content-section .prod-price span {
    color: var(--red);
    display: block;
    font-size: 0.875rem;
    width: 100%;
}
.recently-viewed .inner-text ul li a .content-section .prod-moq span {
    color: var(--text-color);
    display: inline-block;
    font-size: 0.8rem;
}
.recently-viewed .inner-text ul li a .content-section p{
    color: var(--blue);
    font-size: 16px;
    padding: 5px 15px;
    border-radius: 50px;
    width: 150px;
    margin: 10px auto 0;
    transition: all .5s ease-in-out;
}
.recently-viewed .inner-text ul li a:hover .content-section p{
    background-color: var(--red);
    color: var(--light);
}

/* popular products============== */
.popular-products{
    padding: 60px 0px;
}
.popular-products .inner-text ul{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:30px;
    padding-left: 0;
    margin-bottom: 0px;
}
.popular-products .inner-text ul li{
    list-style: none;
}
.popular-products .inner-text ul li a img.img{
    width: 100%;
    margin-bottom: 10px;
    border: 12px solid rgba(233, 233, 233, 0.8);
    transition: all .5s ease-in-out;
    height: 250px;
    object-fit: contain;
}
.popular-products .inner-text ul li a h6{
    font-size: 20px;
    color: var(--brown);
    transition: all .5s ease;
    text-transform: capitalize;
}
.popular-products .inner-text ul li a  span {
    color: var(--red);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    text-transform: capitalize;
}
.popular-products .inner-text ul li a  span img{
    width: auto;
    margin-bottom: 0;
    border: 0;
}
.popular-products .inner-text ul li:hover a img{
    border-color: var(--red);
    overflow: hidden;
}
.location-map{
    padding: 40px 0px;
}

/* "about-section=================== */
.about-section{
    padding: 50px 0px;
}
.about-section .inner-text .left-content img{
    max-width: 100%;
}
.about-section .inner-text .right-content .sub-headings{
    text-align: left;
}
.about-section .inner-text .right-content h2{
    text-align: left;
    margin-bottom: 20px;
}
.about-section .inner-text .right-content a{
    color: var(--red);
}
/* company-profile=================== */
.company-profile{
    padding: 50px 0px;
}
.company-profile .inner-text p{
    text-align: center;
}
.company-profile .inner-text img{
   max-width: 100%;
   margin: 0px auto;
   display: block;
}

/* Contact Us Page ================ */
.contact-us-page{
    background-image: url(../images/home-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
    width: 100%;
    padding-bottom: 100px;
  }
  .contact-us-page .inner-text  h4{
    color:  var(--light) ;
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-top: 100px;
    text-transform: capitalize;
  }
  .contact-us-page .inner-text  h2{
     margin-bottom: 50px;
     text-align: center;
  }
  .contact-us-page .inner-text .left-content .form-main {
    border-radius: 30px;
    background: #171B22;
    padding: 40px;
  }
  .contact-us-page .inner-text .left-content .form-main .form-main-sub {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .contact-us-page .inner-text .left-content .form-main .form-main-sub .input-main-form {
    width: 100%;
  }
  .contact-us-page .inner-text .left-content .form-main .form-main-sub .input-main-form .name {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--red);
    padding-bottom: 5px;
    margin-bottom: 0px;
  }
  .contact-us-page .inner-text .left-content .form-main .form-main-sub .input-main-form  input {
    border-radius: 10px;
    background:#0F141C;
    border: none;
    width: 100%;
    height: 56px;
    padding: 16px 20px;
    color: var(--light);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
  }
  .contact-us-page .inner-text .left-content .form-main .input-main-form{
    width: 100%;
  }
  .contact-us-page .inner-text .left-content .form-main .input-main-form .name{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--red);
    padding-bottom: 5px;
  }
  
  .contact-us-page .inner-text .left-content .form-main .input-main-form textarea {
    width: 100%;
    border-radius: 10px;
    background:  #0F141C;
    height: 115px;
    border: none;
    resize: none;
    padding: 16px 20px;
    color:  var(--light);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
  }
  .contact-us-page .inner-text .left-content .form-main .form-submit-btn-main {
    margin-top: 20px;
  }
  .contact-us-page .inner-text .left-content .form-main .form-submit-btn-main .btn-yellow:hover .expo-arrow2{
    fill: var(--red) !important;
  }
  
  .contact-us-page .inner-text .right-content  .get-touch-box-main {
    border-radius: 30px;
    background:  #171B22;
    padding: 40px;
    height: 540px;
  }
  .contact-us-page .inner-text .right-content  .get-touch-box-main h3 {
    color:  var(--light);
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    padding-bottom: 30px;
  }
  .contact-us-page .inner-text .right-content  .get-touch-box-main p{
    margin-bottom: 20px;
  }
  .contact-us-page .inner-text .right-content  .get-touch-box-main .contact-footer{
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .contact-us-page .inner-text .right-content .get-touch-box-main .contact-footer img {
    margin-bottom: 0px;
    margin-right: 20px;
    width: 35px;
}
  .contact-us-page .inner-text .right-content  .get-touch-box-main .contact-footer a{
    color:var(--light);
    font-weight: 300;
    font-size: 18px;
    transition: all .5s ease;
    cursor: pointer;
    word-break: break-all;
  }
  .contact-us-page .inner-text .right-content  .get-touch-box-main .contact-footer a:hover{
    color:var(--red);
  }
  .contact-us-page .responsive-map-container {
    margin-top: 50px;
    line-height: 0;
  }
  /* product-vedant============ */

  .product-vedant{
    padding: 50px 0px;
  }
  .product-vedant .inner-text ul{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-left: 0;
    margin-bottom: 0;
  }
  .product-vedant .inner-text ul li{
    list-style: none;
    border: 1px solid #31262e3b;
    padding: 15px;
  }
  .product-vedant .bread .breadcrumb .breadcrumb-item a{
    color: var(--red);
  }
  .product-vedant .inner-text ul li:hover a img{
    transform: scale(1.03);
  }
  .product-vedant .inner-text ul li a figure{
    height: 100%;
    width: 100%;
  }
  .product-vedant .inner-text ul li a img.img {
    width: 100%;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all .5s ease-in-out;
    height: 300px;
    object-fit: contain;
}
  .product-vedant .inner-text ul li a h5{
    margin-bottom: 15px;
    color: var(--dark);
    text-transform: capitalize;
  }
  .product-vedant .inner-text ul li a h6{
    color: var(--text-color);
    font-size: 18px;
  }
  .product-vedant .inner-text ul li a span{
    color: var(--text-color);
  }
  .product-vedant .inner-text ul li a span strong{
    color: var(--dark);
    font-weight: 500;
  }
  .product-vedant .inner-text ul li a span.inquiry{
    color: var(--red);
    margin-top: 10px;
    display: block;
    font-weight: 600;
  }
  .product-vedant .inner-text ul li a span.inquiry img{
    margin: 0;
  }