/*!
 * Name : Distribuation Hub Ltd.
 * Version: 1.0.0
 * Author: SYP Solutions Ltd
 * Author URL: https://sypsolutions.com.bd/
 * Github: https://github.com/sajeebdebnath
 * Sajeeb Debnath 
 * Table of Contents:
    1. Home
        01. Header Section
        11. Footer Section
*/

/* ------------------------- Home Page Start --------------------- */

/* ------------------------- Header Section CSS Start --------------------- */
.main-nav .nav {
  position: relative;
}

.main-nav .nav .overlay {
  display: none;
}
.main-nav .nav:after {
  content: "";
  display: table;
  clear: both;
}

.main-nav .nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-nav .nav ul li {
  display: inline-block;
  list-style: none;
  margin-right: 35px;
  background: none;
  position: relative;
  padding-bottom: 30px;
}
.main-nav .nav ul li li {
  padding-bottom: 0;
}
.main-nav .nav ul li:first-child a > span {
  transform: translateY(4px);
  font-size: 20px;
  width: 20px;
  height: 20px;
}

.main-nav .nav ul li:last-child {
  margin-right: 0;
}
.main-nav .nav ul li:before {
  transition: var(--transition);
  content: "";
  background: var(--primaryBg);
  width: 120%;
  height: 5px;
  position: absolute;
  bottom: 11px;
  opacity: 0;
  visibility: hidden;
}

.main-nav .nav ul li:hover:before {
  visibility: visible;
  opacity: 1;
}
.main-nav .nav ul li .drop-down li:hover:before {
  display: none;
}

.main-nav .nav ul li:hover > a {
  color: var(--primaryBg);
}

.main-nav .nav ul li.drop-open.c-1:hover:after {
  color: var(--primaryBg);
}
.main-nav .nav li a {
  color: var(--textColor);
  display: block;
  transition: all 0.3s ease 0s;
  font-family: var(--fontFamily);
  text-transform: capitalize;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.main-nav .nav li a a {
  text-transform: capitalize;
}

.main-nav .nav li a:hover {
  color: var(--primaryBg);
}

.nav .responsive-menu a.active {
  color: var(--primaryBg);
}

.main-nav .nav .drop-menu-1 {
  left: 0;
}
.main-nav .nav .drop-menu-1 li {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 40px;
  background: white;
  text-align: left;
  margin: 0;
  height: auto;
  border-bottom: 1px solid rgb(255 255 255 / 15%);
  position: relative;
}
.main-nav .nav .drop-menu-1 li:hover {
  background-color: white;
}

.main-nav .nav .drop-menu-1 li:nth-last-child(1) {
  border-bottom: none;
}

.main-nav .nav .drop-down a:hover {
  color: var(--secondaryBg);
}

.main-nav .nav .drop-menu-1 a {
  display: block;
  padding: 4px 15px;
  color: var(--textColor);
  text-transform: capitalize;
  line-height: 19px;
}

.main-nav .nav .nav a:hover,
a:focus {
  color: var(--primaryBg);
  text-decoration: none;
}

.main-nav .nav ul ul {
  height: 0;
  visibility: hidden;
  overflow: hidden;
  position: absolute;
  opacity: 0;
  top: 70%;
  padding: 0;
  margin: 0;
  color: #111;
  z-index: -1;
  list-style: none;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 1px 1px rgb(0 0 0 / 15%);
  -moz-box-shadow: 0px 0px 1px 1px rgb(0 0 0 / 15%);
  box-shadow: 0px 0px 1px 1px rgb(0 0 0 / 15%);
  transition: 0.5s all;
}

.main-nav .nav ul li:hover > ul {
  overflow: visible;
  visibility: visible;
  opacity: 1;
  z-index: 99;
  top: 40px;
  height: auto;
}

.main-nav .nav ul ul li {
  width: 220px;
  float: none;
  display: list-item;
  position: relative;
}

.main-nav .nav .drop-menu-2 li {
  position: relative;
  background: white;
  border-bottom: 1px solid rgb(255 255 255 / 15%);
}
.main-nav .nav ul li.drop-open.has-child:after {
  content: "\e5cf";
  position: absolute;
  right: -20px;
  font-family: "Material Symbols Outlined";
  top: 0px;
  font-size: 20px;
  color: var(--textColor);
}
.main-nav .nav ul ul li.drop-open.has-child:after {
  display: none;
}
.main-nav .nav ul li:hover.drop-open.has-child:after,
.main-nav .nav ul li:hover > a {
  color: var(--primaryBg);
}
.drop-down.drop-menu-2 {
  left: 100%;
}
.main-nav .nav .drop-menu-2 {
  top: 0 !important;
  box-shadow: 0 5px 5px rgba(0,0,0,.1), 0 10px 15px rgba(0,0,0,.1), 1px 0px 15px rgba(0,0,0,.1);
  max-height: 300px;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}


.nav .drop-down li.drop-open > a:before {
  content: "\e409";
  font-family: "Material Symbols Outlined";
  float: right;
  font-size: 18px;
}
.nav .drop-down li:hover>a {
  background: var(--primaryBg);
  color: white !important;
}
/* Scroll Bar */
.responsive-menu ::-webkit-scrollbar {
  position: absolute;
  width: 0.5vw;
}
.responsive-menu ::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #151414;
}
.responsive-menu ::-webkit-scrollbar-thumb:hover {
  background-color: var(--secondaryBg);
}
.responsive-menu ::-webkit-scrollbar-track {
  background-color: gray;
}/* Scroll Bar */
.responsive-menu ::-webkit-scrollbar {
  position: absolute;
  width: 0.5vw;
}
.responsive-menu ::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: var(--primaryBg);
}
.responsive-menu ::-webkit-scrollbar-thumb:hover {
  background-color: black;
}
.responsive-menu ::-webkit-scrollbar-track {
  background-color: lightgrey;
}
header {
  background: white;
  padding: 16px 0;
  padding-bottom: 0;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.header-links-list {
  display: flex;
  gap: 28px;
  justify-content: right;
}

.header-links-list .link-item a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-bottom {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.header-links-list .link-item .icon > span {
  color: rgba(153, 153, 153, 1);
  transform: translateY(2px);
  font-size: 24px;
}

.header-links-list .link-item .text {
  font-size: 13px;
  line-height: 24px;
}
.header-searchBar .search-box-wrapper input {
  width: 540px;
  border: 1px solid #666666;
  border-radius: 40px !important;
  height: 40px;
  padding: 8px 16px;
  padding-right: 64px;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  outline: none;
}

.header-searchBar .search-box-wrapper {
  position: relative;
}

.header-searchBar .search-box-wrapper button {
  position: absolute;
  background: transparent;
  border: none;
  right: 15px;
  height: 100%;
  top: 50%;
  transform: translateY(-43%);
  color: #999999;
}
.search-icon-mobile {
  display: none;
}
.search-icon-mobile span {
  width: 30px;
  height: 30px;
  font-size: 26px;
  transform: translateY(2px);
}
.logo-for-mobile {
  display: none;
}

.search-box {
  position: absolute;
  top: 50px;
  left: 50%;
  width: 100%;
  background-color: #fff;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  transform: translateX(-50%);
  box-shadow: 0 5px 5px rgba(0,0,0,.2);
}

.seacrh-inner-box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.seacrh-inner-box input[type="search"] {
  width: 100%;
  border: 1px solid transparent;
  padding: 15px 30px 15px 50px;
  height: auto;
  box-shadow: none;
  font-size: 12px;
}

.seacrh-inner-box button {
  position: absolute;
  top: 53%;
  left: 15px;
  transform: translateY(-50%);
  border: 0;
  background-color: transparent;
}
.on-scroll header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  border-bottom: 1px solid #dddddd;
}
.on-scroll .header-top {
  display: none;
}
/* ------------------------- Header Section CSS End --------------------- */

/* ------------------------- Hero Section CSS Start --------------------- */
.hero-wrapper .hero-image {
  border-radius: 0px 70px 0px 70px;
  background-color: #fff;
}

.banner-slider .slider-dot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  padding: 10px 0;
  z-index: 9;
}

.banner-slider .slider-dot .dot {
  display: inline-block;
  width: 30px;
  height: 8px;
  background: white!important;
  margin: 0 5px;
  opacity: .5 !important;
  cursor: pointer;
}

.banner-slider {
  position: relative;
}

.banner-slider .slider-dot .dot.active {
  opacity: 1 !important;
}
.banner-img  img {
  border-radius: 8px;
}
/* ------------------------- Hero Section CSS End --------------------- */

/* ------------------------- Category Section CSS Start --------------------- */
.section-title h2 {
  font-weight: 500;
  font-size: 34px;
  line-height: 40px;
}

.section-title {
  margin-bottom: 40px;
}

.category-list-wrapper {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}

.category-list-wrapper .single-category-item {
  background: #ffffff;
  border-radius: 25px;
  text-align: center;
  padding: 30px 20px 20px;
}

.category-list-wrapper .single-category-item .icon {
  width: 80px;
  height: 80px;
  background: #f5f5f5;
  border-radius: 100px;
  text-align: center;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-list-wrapper .single-category-item a {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.category-list-wrapper .single-category-item .text h5 {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}
/* ------------------------- Category Section CSS End --------------------- */

/* ------------------------- Brand Section CSS Start --------------------- */
.brand-list-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.brand-list-wrapper .single-brand-item {
  background: #ffffff;
  border-radius: 25px;
  padding: 10px 20px 20px;
}

.single-brand-item .brand-img {
  text-align: center;
  border-bottom: 2px solid #db055217;
}

.brand-product-list ul li a {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  padding: 10px 0;
  display: block;
  border-bottom: 1px solid #f5f5f5;
  position: relative;
  transition: var(--transition);
}
.brand-product-list ul li a:after {
  content: "\e5cc";
  position: absolute;
  right: 5px;
  font-family: "Material Symbols Outlined";
  color: #000000;
  font-size: 18px;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}

.brand-product-list ul li:last-child a {
  border: none;
  padding-bottom: 0;
  font-weight: 400;
  color: var(--primaryBg);
}
.brand-product-list ul li:last-child a:after {
  display: none;
}
.brand-product-list ul li:hover a:after {
  color: var(--primaryBg);
}
/* ------------------------- Brand Section CSS End --------------------- */

/* ------------------------- Featured Product Section CSS Start --------------------- */
.feature-product-list-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.single-product-item {
  background: #ffffff;
  border-radius: 25px;
  padding: 20px;
  position: relative;
}
.single-product-item .marker {
  position: absolute;
  background: var(--primaryBg);
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  padding: 2px 10px;
  border-radius: 0px 20px 20px 0px;
  color: white;
  top: 18px;
  left: 0;
}
.single-product-item .product-img {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 12px;
  border-bottom: 2px solid #db055217;
}

.single-product-item .product-info .title {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  height: 60px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.showing-price {
  background: var(--primaryGrad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

.product-info .price-wrap {
  margin-top: 16px;
}

.price-wrap .member-price {
  background: #f5f5f5;
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 4px 8px;
  gap: 12px;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #666666;
}

.price-wrap .member-price > span {
  background: var(--primaryGrad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 20px;
  height: 20px;
  font-size: 20px;
}
/* ------------------------- Featured Product Section CSS End --------------------- */


/* ------------------------- Featured Brand Section CSS Start --------------------- */
.product-brand-wrapper{
  position: relative;
}
.product-brand-wrapper .brand-img {
  width: 170px;
  text-align: center;
}
.product-brand-wrapper .brand-img img{
  background: #fff;
  box-shadow: 0 1px 20px 4px #00000008;
  text-align: center;
  border-radius: 4px;
  width: initial !important;
}
.product-brand-wrapper .owl-nav button.disabled {
  display: initial !important;
}
.product-brand-wrapper .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: auto;
  left: -15px;
  background: var(--primaryGrad) !important;
  color: white !important;
  border-radius: 4px;
}
.product-brand-wrapper .owl-nav button > span {
  line-height: 35px;
}
.product-brand-wrapper .owl-nav button.owl-next {
  left: auto;
  right: -15px;
}
/* ------------------------- Featured Brand Section CSS End --------------------- */

/* ------------------------- About Section CSS Start --------------------- */
.about-section-wrapper {
  padding: 50px;
  background: #ffffff;
  border-radius: 0px 70px;
}

.about-images {
  text-align: center;
}

.about-text h5 {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: var(--primaryBg);
  margin-bottom: 16px;
}

.about-text .title {
  font-weight: 500;
  font-size: 34px;
  line-height: 44px;
  margin-bottom: 16px;
}

.about-text .title span {
  color: var(--primaryBg);
}

.about-text .description {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
}
.shipping-info {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid #dddddd6e;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.shipping-info .item {
  padding: 5px 16px;
  border-left: 1px solid #dddddd6e;
}

.shipping-info .item:first-child {
  padding-left: 0;
  border: 0;
}

.shipping-info .item:last-child {
  padding-right: 0;
}

.shipping-info .item .icon {
  width: 50px;
  height: 50px;
  background: var(--primaryGrad);
  border-radius: 50%;
  text-align: center;
  line-height: 65px;
  margin-bottom: 16px;
}

.shipping-info .item .icon > span {
  color: white;
  font-size: 26px;
}

.shipping-info .item .text h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 8px;
}

.shipping-info .item .text p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
/* ------------------------- About Section CSS End --------------------- */

/* ------------------------- News Section CSS Start --------------------- */
.news-item-wrapper {
  cursor: pointer;
}
.single-news-item {
  background: #ffffff;
  border-radius: 25px;
}

.single-news-item .news-img img {
  text-align: center;
  width: 100%;
  border-radius: 25px 25px 0px 0px;
}

.single-news-item .news-info {
  padding: 20px;
}

.single-news-item .news-info .category {
  font-weight: 600;
  font-size: 10px;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.single-news-item .news-info .category > a {
  color: #999999;
}

.single-news-item .news-info .title {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  height: 60px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  margin-bottom: 12px;
  -webkit-box-orient: vertical;
}

.single-news-item .news-info .read-more {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-decoration-line: underline;
  color: var(--primaryBg);
}
/* ------------------------- News Section CSS End --------------------- */

/* ------------------------- Footer Section CSS Start --------------------- */
footer {
  background: #111111;
  padding-top: 70px;
  padding-bottom: 30px;
}

.footer-title h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
  background: var(--primaryGrad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.footer-title {
  margin-bottom: 30px;
}
.footer-branch-list .single-branch-item h5 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-branch-list .single-branch-item p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #666666;
}

.footer-branch-list .single-branch-item h5 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-branch-list .single-branch-item p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #666666;
}

.footer-branch-list {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(1,1fr);
  margin-bottom: 35px;
}

.footer-links ul li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #666666;
  margin-bottom: 15px;
  display: inline-block;
  transition: var(--transition);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.footer-links ul li:hover a {
  color: var(--primaryBg);
}
.footer-social-links ul {
  display: flex;
  gap: 25px;
}
.footer-bottom-text {
  border-top: 1px solid #ffffff1c;
  margin-top: 60px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}

.footer-bottom-left p,
.footer-bottom-right p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #666666;
}

.footer-bottom-right p > a {
  color: rgba(248, 115, 59, 1);
}
/* ------------------------- Footer Section CSS End --------------------- */

/* ------------------------- Responsive CSS Start --------------------- */
/* Mobile Menu */
/** region mobile-menu responsive **/
@media (min-width: 1199px) {
  .main-nav .nav li:nth-child(3) .drop-menu-1 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
  }
}
@media (max-width: 1200px) {
  #nav-toggler {
    width: 22px;
    height: 15px;
    background: rgba(255, 255, 255, 0);
    margin-top: 14px;
  }

  #nav-toggler span:after,
  #nav-toggler span:before {
    content: "";
    position: absolute;
    left: 0;
    top: -7px;
  }

  #nav-toggler span:after {
    top: 7px;
  }

  #nav-toggler span {
    position: relative;
    display: block;
  }

  #nav-toggler span,
  #nav-toggler span:after,
  #nav-toggler span:before {
    width: 100%;
    height: 2px;
    background-color: black;
    transition: all 0.3s;
    backface-visibility: hidden;
    border-radius: 2px;
  }

  /* on activation */
  #nav-toggler.close span {
    background-color: transparent;
  }
  #nav-toggler.close span:before {
    transform: rotate(45deg) translate(6px, 5px);
  }
  #nav-toggler.close span:after {
    transform: rotate(-45deg) translate(5px, -4px);
  }
  .main-nav {
    position: absolute;
    left: 0;
    top: 2px;
  }

  .main-nav .nav.open .overlay {
    content: "";
    position: fixed;
    left: 0;
    top: 72px;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 999;
    display: block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }

  .main-nav .nav ul li {
    border-bottom: 1px solid #e8e8e8;
    margin: 0;
    height: auto;
    padding-bottom: initial;
  }

  .main-nav .nav .drop-menu-2 li {
    position: relative;
    left: 0;
    top: 0;
  }

  .main-nav .nav li a {
    margin-left: 20px;
    color: black;
    line-height: 40px;
    font-size: 11px;
  }

  .main-nav .nav .drop-menu-1 li a {
    margin-left: 25px;
    color: black;
  }
  .main-nav .nav li:nth-child(3) .drop-menu-1,.main-nav .nav li:nth-child(2) .drop-menu-1 {
    column-count: initial;
  }
  .main-nav .nav .drop-menu-2 li a {
    margin-left: 50px;
  }

  .main-nav .nav .toggle + a {
    display: none;
  }
  .main-nav .nav ul li:before {
    display: none;
  }
  .main-nav .nav {
    visibility: hidden;
  }
  .nav .drop-down li.drop-open > a:before {
    display: none;
  }

  .main-nav .nav .drop-menu-1 li {
    display: block;
    background-color: #f1f5f963;
    border-bottom: none;
    line-height: 40px;
    color: black;
    font-size: 12px;
    text-decoration: none;
    font-weight: 600;
    padding: 0;
  }
  .nav .drop-down li:hover>a{
    background: inherit;
    color: var(--secondaryBg) !important;
  }
  .main-nav .nav .drop-down a:hover {
    background: none;
    color: var(--secondaryBg) !important;
  }
  .main-nav .nav .drop-menu-2 li {
    display: block;
    line-height: 30px;
    color: black;
    font-size: 12px;
    text-decoration: none;
    border: none;
    font-weight: 600;
    padding: 0;
  }

  .main-nav .nav ul ul {
    box-shadow: none;
  }

  .main-nav .nav .drop-menu-2 li a.active {
    color: var(--primaryBg);
  }

  .main-nav .nav .drop-menu-2 li:hover {
    color: var(--primaryBg);
  }

  .main-nav .nav.open {
    visibility: visible;
  }

  .main-nav .nav .responsive-menu {
    width: 300px;
    position: fixed;
    left: -300px;
    top: 72px;
    height: calc(100vh - 72px);
    overflow: auto;
    background: white;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: 99999;
  }

  .main-nav .nav.open .responsive-menu {
    left: 0;
  }
  .main-nav .nav:before {
    display: none;
  }

  .main-nav .nav ul li {
    display: block;
    width: 100%;
  }

  .main-nav .nav ul li > ul {
    display: none !important;
  }

  .main-nav .nav ul li.open > ul {
    display: block !important;
    width: 300px;
  }

  .main-nav .nav .drop-menu-1 a {
    display: block;
  }

  .main-nav .nav li a:hover {
    background: none;
    color: var(--primaryBg);
  }

  .main-nav .nav ul ul {
    float: none;
    position: static;
    color: white;
  }

  /* Fisrt Tier Dropdown*/
  .main-nav .nav ul ul li {
    display: block;
    width: 100%;
  }
  .main-nav .nav ul ul ul li {
    position: static;
  }

  .main-nav .nav li.drop-open > a:after {
    content: "\e5cc";
    float: right;
    margin-right: 20px;
    font-size: 15px;
    font-family: "Material Symbols Outlined";
  }

  .main-nav .nav li.open > a:after {
    content: "\e5ce";
  }

  .drop-menu-1 li a:only-child:after {
    content: " ";
  }
  .main-nav .nav ul li.drop-open.has-child:after {
    display: none;
  }

  .responsive-menu > li:last-child {
    margin-bottom: 100px !important;
  }
  .header-links-list {
    display: none;
  }

  .header-logo {
    display: none;
  }
  header .container {
    position: relative;
  }
  .header-searchBar {
    position: absolute;
    width: 96%;
    left: 2%;
    top: 56px;
    z-index: 99;
    box-shadow: 0 5px 5px rgba(0,0,0,.2);
    visibility: hidden;
    opacity: 0;
  }
  .header-searchBar.search-active {
    visibility: visible;
    opacity: 1;
  }
  .header-searchBar .search-box-wrapper input {
    width: 100%;
    border: none;
    border-radius: 0 !important;
    height: 50px;
    padding-left: 45px;
    font-size: 13px;
  }
  .header-searchBar .search-box-wrapper button {
    right: auto;
    left: 10px;
  }
  .header-top {
    display: block;
    position: relative;
    text-align: center;
    margin: 0;
  }

  header {
    border-bottom: 1px solid #dddddd;
    padding: 10px 0;
  }
  .search-icon-mobile {
    display: block;
  }
  .search-box.search-active {
    top: 56px;
    opacity: 1;
    visibility: visible;
    z-index: 99999;
    left: 50%;
    transform: translateX(-50%);
  }
  .logo-for-mobile {
    display: flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .on-scroll .header-top {
    display: block;
  }
}
/**endregion**/

/* Tab Device */
@media only screen and (min-width: 775px) and (max-width: 1320px) {
  .category-list-wrapper {
    grid-template-columns: repeat(5, 1fr);
  }

  .section-padding {
    padding: 20px 0;
  }

  .category-list-wrapper .single-category-item a {
    gap: 15px;
  }

  .section-title {
    margin-bottom: 25px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .brand-list-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-product-list-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  .single-news-item {
    margin-bottom: 25px;
  }
  .hero-text h1 {
    font-size: 30px;
    line-height: initial;
    margin-bottom: 15px;
  }
}
@media (max-width: 991px){
  .m-mb-3 {
    margin-bottom: 15px;
  }
}
/* small mobile :320px. */
@media (max-width: 767px) {
  .section-title {
    text-align: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-direction: column;
    gap: 0px;
  }
  .section-title .title-link a {
    font-size: 12px;
    line-height: 24px;
  }

  .section-title h2 {
    font-size: 22px;
    line-height: 30px;
  }

  .category-list-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-list-wrapper .single-category-item {
    padding: 16px 16px 20px;
    border-radius: 15px;
  }

  .category-list-wrapper .single-category-item a {
    gap: 8px;
  }
  .category-list-wrapper .single-category-item .icon {
    width: 60px;
    height: 60px;
  }

  .category-list-wrapper .single-category-item .icon img {
    width: 32px;
    height: 32px;
  }

  .category-list-wrapper .single-category-item .text h5 {
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
  }
  .brand-list-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-product-list-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .btn {
    font-weight: 500;
    font-size: 12px;
    line-height: 40px;
    padding: 2px 12px 2px 16px;
  }

  .btn span {
    margin-left: 8px;
    font-size: 20px;
  }
  .hero-wrapper .hero-image {
    border-radius: 0px 20px 0px 20px;
  }
  .banner-slider .slider-dot {
    padding: 5px 0;
    bottom: -2px;
  }

  .banner-slider .slider-dot .dot {
    width: 20px;
    height: 6px;
  }
  .section-padding {
    padding: 16px 0;
  }
  .brand-list-wrapper .single-brand-item {
    padding: 8px 16px 16px;
    border-radius: 15px;
  }

  .single-brand-item .brand-img img {
    width: 80px;
    height: 80px;
    margin: auto;
  }

  .brand-product-list ul li a {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    padding: 7px 0;
  }

  .brand-product-list ul li a:after {
    font-size: 16px;
  }
  .single-product-item {
    border-radius: 15px;
  }

  .single-product-item .product-info .title {
    font-size: 12px;
    line-height: 16px;
    -webkit-line-clamp: 4;
    height: 60px;
  }
  .single-product-item .clearance-mark {
    padding: 0px 6px;
    font-size: 10px;
    line-height: 20px;
  }
  .about-section-wrapper {
    padding: 20px;
    border-radius: 0 40px;
  }

  .about-images {
    margin-bottom: 30px;
  }

  .about-text h5 {
    font-size: 10px;
    line-height: 20px;
  }

  .about-text .title {
    font-size: 22px;
    line-height: 30px;
  }

  .about-text .description {
    font-size: 12px;
    line-height: 18px;
  }

  .shipping-info {
    padding-top: 20px;
    margin-top: 20px;
    grid-template-columns: repeat(1, 1fr);
  }

  .shipping-info .item {
    border-left: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 4fr 1fr;
    padding: 18px 0;
    border-bottom: 1px solid #dddddd6e;
    gap: 24px;
  }

  .shipping-info .item .icon {
    order: 2;
  }

  .shipping-info .item:last-child {
    border: none;
    padding-bottom: 0;
  }

  .shipping-info .item:first-child {
    padding-top: 0;
    border-bottom: 1px solid #dddddd6e;
  }
  .shipping-info .item .text p {
    font-size: 12px;
    line-height: 16px;
    opacity: 0.8;
  }
  .news-item-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .single-news-item .news-img img {
    border-radius: 15px 0px 0px 15px;
    object-fit: cover;
    height: 100%;
  }

  .single-news-item {
    border-radius: 15px;
    margin-bottom: 10px;
  }

  .single-news-item .news-info .category {
    margin-bottom: 8px;
  }

  .single-news-item .news-info .title {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 8px;
    -webkit-line-clamp: 4;
  }

  .single-news-item .news-info .read-more {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
  }
  footer {
    padding: 20px 0;
  }

  .footer-title {
    margin-bottom: 16px;
  }

  .footer-title h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
  }

  .footer-branch-list .single-branch-item h5 {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 8px;
  }

  .footer-branch-list .single-branch-item p {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
  }

  .footer-branch-list {
    gap: 25px;
    margin-bottom: 24px;
    grid-template-columns: repeat(2,1fr);
  }
  .footer-social-links .footer-title,
  .quick-links .footer-title {
    border-bottom: 1px solid #ffffff1a;
    padding-bottom: 16px;
  }

  .footer-social-links {
    margin-bottom: 24px;
  }
  .footer-links ul li a {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 10px;
  }

  .footer-bottom-text {
    margin-top: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer-bottom-left p,
  .footer-bottom-right p {
    font-size: 12px;
    line-height: 16px;
  }
  .product-brand-wrapper .brand-img {
    width: 120px;
  }

  .product-brand-wrapper .brand-img img {
    width: 110px !important;
  }

  .product-brand-wrapper .owl-nav button {
    left: -8px;
  }

  .product-brand-wrapper .owl-nav button.owl-next {
    right: -8px;
  }

  .product-brand-wrapper .owl-nav button > span {
    line-height: 25px;
    transform: translateY(2px);
  }
}
/* ------------------------- Responsive CSS End --------------------- */

/* ------------------------- Home Page Start --------------------- */
