:root {
  --black: #000;
  --white: #fff;
  --primary_color: #581698;
  --secondary_color: #f6f6f6;
  --bg_color: #f8f6f6;
  --font-family: Inter, sans-serif;
  --hover-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --hover-duration: 0.35s;
  --hover-lift: translateY(-4px);
  --shadow-hover: 0 12px 28px rgba(30, 30, 30, 0.08);
}

img {
  pointer-events: none;
}

ul {
  padding: 0 !important;
}

body {
  font-family: var(--font-family);
  overflow-x: hidden;
  font-size: 14px;
  line-height: 22px;
  color: #000;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

body::-webkit-scrollbar-button:start:decrement,
body::-webkit-scrollbar-button:end:increment {
  display: none;
}

body::-webkit-scrollbar-track-piece {
  background-color: #f4f4ec;
  -webkit-border-radius: 0px;
  border-left: 1px solid #ccc;
}

body::-webkit-scrollbar-thumb:vertical {
  -webkit-border-radius: 0px;
  background: var(--secondary_color);
}

::selection {
  color: var(--white);
  background: var(--primary_color);
}

a {
  text-decoration: none;
  color: #000 !important;
  font-family: var(--paragraph-font);
  text-decoration: none !important;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #000;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inria Serif", serif;
}

ul {
  padding: 0;
  margin: 0;
}

/*Header Section Begin*/

.custom-pad {
  padding: 0 100px !important;
}

header {
  padding: 30px 0;
  border-bottom: 1px solid #efefef;
  margin-bottom: 30px;
}

.logo__sec a {
  display: inline-block;
}

.logo__sec img {
  width: 70%;
}

.menu__sec ul li a {
  font-size: 20px;
  color: #8b8b8b;
  font-weight: 400;
}

.menu__sec ul li {
  display: inline-block;
  padding: 0 23px;
}

header .row {
  align-items: center;
}

.menu__sec {
  text-align: center;
}

.menu__sec ul li a {
  font-size: 20px;
  color: #8b8b8b;
  font-weight: 400;
}

.menu__sec ul li {
  display: inline-block;
  padding: 0 29px;
}

header .row {
  align-items: center;
}

.menu__sec {
  text-align: center;
}

.head__icon__tp ul li {
  display: inline-block;
  padding: 0 10px 0 0;
  position: relative;
  vertical-align: top;
}

.head__icon__tp ul li a {
  font-size: 20px;
  color: var(--primary_color) !important;
  background: #f8f8f8;
  padding: 20px 20px;
  border-radius: 5px;
  display: inline-block;
  position: relative;
}

.head__icon__tp {
  text-align: right;
}

.head__icon__tp ul li a:hover {
  background: #3aafde;
  color: #fff !important;
}

.head__icon__tp ul li a.icon-with-count .total-count {
  position: absolute;
  top: 6px;
  right: 6px;
  background: #3aafde;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  color: #fff;
  border-radius: 100%;
  font-size: 11px;
  font-weight: 600;
  padding: 0 4px;
}

.head__icon__tp ul li a.icon-with-count:hover .total-count {
  background: #fff;
  color: #3aafde;
}

/*Header Section End*/

/*Banner Section Begin*/

.banner__box__img img {
  width: 100%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
  border-radius: 10px;
  position: absolute;
}

.banner__box__img:hover .main__img {
  opacity: 0;
}

.hover__img {
  opacity: 0;
}

.banner__box__img {
  position: relative;
  /* overflow: hidden; */
  width: 100%;
  height: 490px;
  margin-bottom: 30px;
}

.banner__box__img:hover .hover__img img {
  opacity: 1;
}

.main__img {
  opacity: 1;
}

.banner__box__img:hover .hover__img {
  opacity: 1;
}

.btm__img__banner {
  width: 100%;
  height: 240px;
}

.banner___center__box {
  background: var(--bg_color);
  border-radius: 10px;
  padding: 70px 128px;
  height: 760px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.banner___center__box h1 {
  text-transform: uppercase;
  font-size: 48px;
  font-weight: 600;
}

.banner___center__box p {
  font-size: 18px;
  line-height: 32px;
}

.web__btn ul li a {
  background: var(--primary_color);
  padding: 22px 24px;
  display: inline-block;
  color: #fff !important;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 5px;
  border: 1px solid var(--primary_color);
}

.web__btn ul li {
  display: inline-block;
  padding: 0 10px 0 0;
}

.web__btn {
  padding-top: 20px;
}

.web__btn ul li a:hover {
  background: transparent;
  color: var(--primary_color) !important;
}

.web__btn ul li:nth-last-child(1) a {
  background: var(--white);
  color: var(--primary_color) !important;
  border-color: var(--white);
}

.web__btn ul li:nth-last-child(1) a:hover {
  border-color: var(--primary_color);
}

.right__banner1 {
  height: 300px;
}

.right__banner2 {
  height: 430px;
}

/*Banner Section End*/

/*Product Section Begin*/

.padding__100 {
  padding: 100px 0;
}

.product___img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
}

.product___img a {
  display: inline-block;
  width: 100%;
}

.product__box {
  background: var(--bg_color);
  padding: 20px;
  border-radius: 10px;
}

.product___img {
  padding-bottom: 20px;
}

.heading__pro h4 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
}

.heading__pro span {
  color: var(--primary_color);
  font-size: 19px;
}

.product__sec.best__sell__pro {
  background: var(--bg_color);
}

.center__heading {
  text-align: center;
  padding-bottom: 30px;
}

.center__heading h2 {
  font-size: 70px;
  text-transform: uppercase;
  font-weight: 600;
}

.best__sell__pro .product__box {
  background: var(--white);
}

.center__heading h2 span {
  color: var(--primary_color);
}

/*Product Section End*/

/*newsletter__sec Section*/

.newsletter__sec .container-fluid {
  background: url(../images/newsletter-bg-01.png);
  background-size: cover;
  padding: 100px 70px 130px;
  background-repeat: no-repeat;
  border-radius: 20px;
}

.newsletter__sec {
  margin: 0 110px;
}

.newsletter__text {
  text-align: center;
}

.newsletter__text h3 {
  font-size: 40px;
}

.newsletter__text h2 {
  color: var(--primary_color);
  font-size: 60px;
}

.newsletter__text p {
  font-size: 23px;
  width: 60%;
  margin: 0 auto 20px;
  line-height: 36px;
}

.newsletter__inout input {
  height: 65px;
  border-radius: 10px;
  padding: 0 20px;
}

.btn__input input {
  background: var(--primary_color);
  color: #fff;
  border: 1px solid var(--primary_color);
  padding: 0 40px;
  border-radius: 5px;
  font-size: 18px;
}

/*newsletter__sec End*/

.link__head h6 {
  text-transform: capitalize;
  font-family: var(--font-family);
  font-size: 25px;
  margin-bottom: 40px;
}

.links__footer ul li a {
  font-size: 21px;
  text-transform: capitalize;
  padding-bottom: 30px;
  display: inline-block;
  color: rgb(0 0 0 / 46%);
}

.footer__add ul li span {
  text-transform: capitalize;
  font-size: 19px;
  display: block;
  padding-bottom: 8px;
}

.footer__add ul li {
  padding-bottom: 20px;
}

.footer__add ul li p {
  margin-bottom: 0;
  font-size: 20px;
  color: rgb(0 0 0 / 46%);
}

.footer__add ul li a {
  font-size: 20px;
  color: rgb(0 0 0 / 46%);
}

.footer__social ul li span {
  background: var(--primary_color);
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 25px;
  margin-right: 20px;
  color: #fff;
  transition: 0.5s ease-in-out;
}

.footer__social ul li {
  padding-bottom: 25px;
  font-size: 20px;
  text-transform: capitalize;
}

.footer__social ul li a:hover span {
  background: #3aafde;
  transition: 0.5s ease-in-out;
}

.footer__social ul li a:hover {
  color: #3aafde;
}

.copy__right .container-fluid .row {
  border-top: 1px solid var(--bg_color);
  margin-top: 30px;
  padding-top: 30px;
}

.copy__right p {
  font-size: 17px;
}

.terms___links ul li {
  display: inline-block;
  padding: 0 20px 0 0;
}

.terms___links ul li a {
  font-size: 19px;
  text-transform: capitalize;
}

.terms___links {
  text-align: right;
}

/*Inner Banner Section Begin*/

.inner___banner {
  padding: 100px;
  text-align: center;
  background: linear-gradient(-2deg, #581698b8, #7fe9fd59);
  /* margin-bottom: 60px; */
}

.inner___banner__content h1 {
  font-size: 70px;
  font-weight: 600;
  text-transform: capitalize;
}

.inner___banner__content ul li {
  display: inline;
  padding: 0 6px 0 0;
  font-size: 18px;
}

.inner___banner__content ul li a {
  color: var(--primary_color);
}

.about__content__sec h2 {
  font-size: 60px;
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 10px;
}

.about__content__sec h2 span {
  color: var(--primary_color);
}

.about__content__sec p {
  font-size: 18px;
  line-height: 32px;
}

.about__content__sec p span {
  color: var(--primary_color);
  font-weight: 600;
}

.about__img__sec img {
  width: 100%;
}

.mission__img img {
  width: 100%;
}

.misson__content h2 {
  font-size: 62px;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 20px;
}

.misson__content h2 span {
  color: var(--primary_color);
}

.misson__content p {
  font-size: 19px;
  line-height: 32px;
}

/*Inner Banner Section End*/

/*blog Section Begin*/

.blog__sec .blog__box {
  background: var(--bg_color);
  padding: 20px;
  border-radius: 10px;
}

.blog___img img {
  width: 100%;
}

.blog___img a {
  display: inline-block;
  width: 100%;
}

.blog__box {
  background: var(--bg_color);
  padding: 20px;
  border-radius: 10px;
}

.blog___img {
  padding-bottom: 20px;
}

.heading__blog h4 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  color: #000;
}

.heading__blog span {
  color: var(--primary_color);
  font-size: 19px;
}

.blog__sec.best__sell__pro {
  background: var(--bg_color);
}

.center__heading {
  text-align: center;
  padding-bottom: 30px;
}

.center__heading h2 {
  font-size: 70px;
  text-transform: uppercase;
  font-weight: 600;
}

.best__sell__pro .blog__box {
  background: var(--white);
}

.center__heading h2 span {
  color: var(--primary_color);
}

.heading__blog .blog__content span {
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  background: #581698;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
}

.heading__blog a {
  color: var(--primary_color);
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
}

.heading__blog p {
  margin: 0;
  padding: 15px 0;
  color: black;
  font-size: 16px;
}

/* Blog Detail */
.blog__detail__box {
  background: var(--bg_color);
  padding: 30px;
  border-radius: 10px;
}

.blog__detail__img {
  margin-bottom: 28px;
}

.blog__detail__img img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.blog__detail__tag {
  display: inline-block;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  background: var(--primary_color);
  color: #fff;
  padding: 5px 12px;
  border-radius: 5px;
  margin-bottom: 18px;
}

.blog__detail__description {
  color: #333;
  font-size: 16px;
  line-height: 28px;
}

.blog__detail__description p {
  margin-bottom: 14px;
}

.blog__detail__description img {
  max-width: 100%;
  height: auto;
}

.blog__detail__back {
  display: inline-block;
  margin-top: 24px;
  color: var(--primary_color) !important;
  font-weight: 600;
  text-transform: uppercase;
}

/*blog Section End*/

/* Review rating stars */
.rating-select-group .br-theme-css-stars .br-widget {
  height: 32px;
  white-space: nowrap;
}

.rating-select-group .br-theme-css-stars .br-widget a {
  text-decoration: none;
  height: 28px;
  width: 28px;
  float: left;
  font-size: 28px;
  line-height: 28px;
  margin-right: 8px;
  cursor: pointer;
  pointer-events: auto;
}

.rating-select-group .br-theme-css-stars .br-widget a:after {
  content: "\2605";
  color: #d2d2d2;
}

.rating-select-group .br-theme-css-stars .br-widget a.br-active:after,
.rating-select-group .br-theme-css-stars .br-widget a.br-selected:after {
  color: orange;
}

.rating-select-group .br-theme-css-stars .br-widget .br-current-rating {
  display: none;
}

.rating-select-group select.ratng-bar {
  display: none;
}

footer {
  padding-top: 50px;
}

/* Shop Categories Sidebar */
.cmh-shop-sidebar .single-widget {
  margin-top: 0;
  background: #ffffff;
  border: 1px solid #ece6f3;
  border-radius: 14px;
  padding: 22px 18px;
  box-shadow: 0 10px 28px rgba(88, 22, 152, 0.06);
}

.cmh-shop-sidebar .single-widget .title {
  font-family: "Inria Serif", serif;
  font-size: 22px;
  font-weight: 600;
  color: #2a2a2a;
  text-transform: none;
  margin: 0 0 16px;
  padding: 0 6px 14px;
  border-bottom: none;
  position: relative;
}

.cmh-shop-sidebar .single-widget .title::after {
  content: "";
  position: absolute;
  left: 6px;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: 3px;
  background: var(--primary_color);
}

.cmh-category-scroll {
  max-height: 620px;
  overflow-y: auto;
  padding-right: 4px;
}

.cmh-category-scroll::-webkit-scrollbar {
  width: 5px;
}

.cmh-category-scroll::-webkit-scrollbar-thumb {
  background: #d7c6ea;
  border-radius: 10px;
}

.cmh-shop-sidebar .categor-list {
  margin: 0;
  padding: 0 !important;
  list-style: none;
}

.cmh-shop-sidebar .categor-list > li {
  position: relative;
  margin: 0 0 4px;
  padding: 0;
}

.cmh-shop-sidebar .categor-list > li > a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #444 !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  text-transform: capitalize;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.cmh-shop-sidebar .categor-list > li > a:hover {
  background: #f6f0fb;
  color: var(--primary_color) !important;
  padding-left: 16px;
}

.cmh-shop-sidebar .categor-list > li > a.active {
  background: var(--primary_color);
  color: #fff !important;
  font-weight: 600;
}

.cmh-shop-sidebar .categor-list > li > .fa-angle-right {
  position: absolute;
  right: 12px;
  top: 30px;
  z-index: 2;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
  background: #f0e8f8;
  color: var(--primary_color);
  font-size: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cmh-shop-sidebar .categor-list > li > .fa-angle-right[aria-expanded="true"],
.cmh-shop-sidebar .categor-list > li > .fa-angle-right:not(.collapsed) {
  transform: rotate(90deg);
  background: var(--primary_color);
  color: #fff;
}

.cmh-shop-sidebar .categor-list > li > .fa-angle-right + a {
  padding-right: 40px;
}

.cmh-shop-sidebar .categor-list .categor-list {
  margin: 4px 0 8px 10px;
  padding: 6px 0 6px 10px !important;
  border-left: 2px solid #e5d7f3;
}

.cmh-shop-sidebar .categor-list .categor-list li {
  margin: 0 0 2px;
}

.cmh-shop-sidebar .categor-list .categor-list li a {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #666 !important;
}

.cmh-shop-sidebar .categor-list .categor-list li a:hover,
.cmh-shop-sidebar .categor-list .categor-list li a.active {
  background: #f6f0fb;
  color: var(--primary_color) !important;
}

/* Shop Pagination */
.cmh-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin: 40px 0 10px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #ece6f3;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(88, 22, 152, 0.05);
}

.cmh-pagination__info {
  margin: 0;
  font-size: 14px;
  color: #777;
  line-height: 1.4;
}

.cmh-pagination__info strong {
  color: #333;
  font-weight: 600;
}

.cmh-pagination__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0 !important;
  list-style: none;
}

.cmh-pagination__item {
  display: inline-block;
  margin: 0 !important;
  padding: 0 !important;
}

.cmh-pagination__link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px !important;
  border: 1px solid #e8dff3;
  border-radius: 8px;
  background: #fff;
  color: #555 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.cmh-pagination__link:hover {
  border-color: var(--primary_color);
  color: var(--primary_color) !important;
  background: #f7f1fc;
}

.cmh-pagination__item.is-active .cmh-pagination__link {
  background: var(--primary_color);
  border-color: var(--primary_color);
  color: #fff !important;
  box-shadow: 0 6px 14px rgba(88, 22, 152, 0.25);
}

.cmh-pagination__item.is-disabled .cmh-pagination__link {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  background: #f7f7f7;
  color: #999 !important;
}

.cmh-pagination__link i {
  font-size: 14px;
}

.shop.single .product-des .product_options {
    float: left;
    margin-right: 15px;
    width: 100%;
}

.shop.single .product-des .product_options h6 {
    display: block;
    font-size: 19px;
}

.shop.single .product-des .product_options select {
    width: 100%;
    height: 50px;
    padding: 0 10px;
    font-size: 17px;
}

@media (max-width: 767px) {
  .cmh-pagination {
    justify-content: center;
    text-align: center;
    padding: 16px;
  }

  .cmh-pagination__info {
    width: 100%;
  }

  .cmh-pagination__list {
    justify-content: center;
  }

  .cmh-pagination__link {
    min-width: 36px;
    height: 36px;
    padding: 0 10px !important;
  }
}

/*Reponsive Begin*/

@media (max-width: 1700px) {

.banner___center__box{
    padding: 70px 38px;
    height: 600px;
}   

.banner__box__img{
    height: 380px;
}

.btm__img__banner {
    height: 190px;
}

.right__banner1 {
    height: 190px;
}

.banner___center__box h1 {
    font-size: 40px;
}

.newsletter__sec .container-fluid{
    padding: 50px 70px 130px !important;
}

.center__heading h2 {
    font-size: 50px;
}

.heading__pro h4{
    font-size: 18px;
}

.newsletter__text h3 {
    font-size: 30px;
}
    
.newsletter__text h2 {
    font-size: 45px;
}

.newsletter__text p {
    font-size: 20px;
    width: 70%;
    margin: 0 auto 20px;
    line-height: 30px;
}

.links__footer ul li a {
    font-size: 19px;
    padding-bottom: 20px;
}

footer {
    padding-top: 20px;
}

.logo__sec img {
    width: 60%;
}

.menu__sec ul li {
    display: inline-block;
    padding: 0 25px;
}

.menu__sec ul li a {
    font-size: 18px;
}

.about__content__sec h2 {
    font-size: 42px;
}

.about__content__sec p {
    font-size: 16px;
    line-height: 32px;
    font-weight: 400 !important;
}

.misson__content h2 {
    font-size: 45px;
}

.misson__content p {
    font-size: 17px;
    line-height: 32px;
}

.inner___banner__content h1 {
    font-size: 40px;
    font-weight: 600;
}

h1.product_title.entry-title {
    font-size: 30px;
}

.shopping-summery tbody .product-name a{
        font-size: 15px;
}

.terms___links ul li a {
    font-size: 17px;
}
    
}

@media (max-width: 1440px) {

.head__icon__tp ul li a{
    padding: 15px 15px;
}    

.banner___center__box h1 {
    font-size: 33px;
}

.banner___center__box p {
    font-size: 17px;
    line-height: 32px;
}

.banner___center__box{
    height: 520px;
}

.banner__box__img {
    height: 340px;
}

.btm__img__banner {
    height: 150px;
}

.right__banner2 {
    height: 270px !important;
}

.right__banner1 {
    height: 210px !important;
}

.web__btn ul li a{
    padding: 15px 20px;
    font-size: 15px;
}

.product___img img {
    width: 100%;
    height: 240px;
}

.heading__pro h4 {
    font-size: 16px;
}

.newsletter__text p {
    font-size: 19px;
}

.misson__content h2 {
    font-size: 36px;
    padding-bottom: 10px;
}

.misson__content p {
    font-size: 16px;
    line-height: 30px;
}

.copy__right p {
    font-size: 16px;
}

.footer__add ul li a {
    font-size: 18px;
}

.single-product .product-content h3 a{
    font-size: 16px;
}

.single-product .product-content .product-price span{
    font-size: 17px;
}

.shop.single .add-to-cart .btn{
    font-size: 16px;
}

}

@media (max-width: 1366px) {
 
.padding__100 {
    padding: 80px 0;
}

.link__head h6{
    font-size: 21px;
}
    
}

@media (max-width: 1200px) {
    
.custom-pad {
    padding: 0 40px !important;
}

.web__btn ul li a {
    padding: 15px 17px;
    font-size: 14px;
}

.newsletter__text p{
    width: 90%;
}

.newsletter__sec .container-fluid:after {
    background: rgb(255 255 255 / 42%);
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 99;
    border-radius: 20px;
}

.newsletter__sec .container-fluid {
    position: relative;
}

.newsletter__sec .container-fluid .row {
    position: relative;
    z-index: 999;
}

.misson__content h2 {
    font-size: 30px;
    padding-bottom: 10px;
}

.footer__add ul li p{
    font-size: 19px;
}

.about__content__sec h2 {
    font-size: 30px;
}

.product-img img.default-img{
    height: 240px;
}

.shop.single .product-des .short h4 {
    font-size: 19px;
}

.inner___banner__content h1 {
    font-size: 30px;
}

.shopping-cart .table td{
    padding: 15px;
}

td.image img {
    width: 100% !important;
    object-fit: cover;
    height: 90px !important;
}

.shopping-cart tbody .qty .input-group {
    max-width: 125px;
    display: inline-block;
    margin: 0 auto;
}

.shopping-cart .total-amount .right .button5 .btn{
    font-size: 16px;
}
    
}

@media (max-width: 1100px) {

.logo__sec img {
    width: 80%;
}

.menu__sec ul li.cmh-has-mega:hover .cmh-mega-menu, .menu__sec ul li.cmh-has-mega:focus-within .cmh-mega-menu{
    transform: translateX(-54%) translateY(10px);
}

.head__icon__tp ul li a {
    padding: 12px 13px;
    font-size: 17px;
}

.head__icon__tp ul li a.icon-with-count .total-count{
    top: -4px;
    right: -4px;
}

.banner___center__box h1 {
    font-size: 28px;
}

.banner__box__img {
    height: 300px;
}

.btm__img__banner {
    height: 140px;
}

.banner___center__box p {
    font-size: 16px;
    line-height: 30px;
}    

.web__btn ul li a {
    padding: 13px 12px;
    font-size: 13px;
}

.banner___center__box {
    height: 490px;
}

.right__banner2 {
    height: 250px !important;
}

.footer__social ul li a {
    font-size: 16px;
}

.footer__social ul li span{
    margin-right: 10px;
}

.newsletter__text h2 {
    font-size: 36px;
}

.about__content__sec h2 {
    font-size: 26px;
}


.about__content__sec p {
    font-size: 16px;
    line-height: 29px;
    font-weight: 300 !important;
}


    
    
}

@media (max-width: 1024px) {
    
.custom-pad {
    padding: 0 36px !important;
}

.banner___center__box {
    height: 490px;
    padding: 70px 25px;
}

.inner___banner {
    padding: 70px;
}

.product___img img {
    width: 100%;
    height: 200px;
}

.newsletter__inout .col-sm-7 {
    width: 88.333333%;
}

.newsletter__inout input {
    height: 60px;
}

.btn__input input{
    font-size: 16px;
    width: 100%;
    padding: 0;
}

    .container-fluid.custom-pad {
        padding: 0 46px !important;
    }
    
    .newsletter__sec .container-fluid.custom-pad {
        padding: 50px 70px 130px !important;
    }


   
}

@media (max-width: 992px) {}

@media (max-width: 768px) {}

@media (max-width: 576px) {
    
.banner__sec__main .col-sm-3 {
    max-width: 100%;
    flex: 100%;
    display: none;
}

.banner___center__box {
    height: auto;
    padding: 30px 25px;
}

.banner__sec__main .col-sm-6 {
    max-width: 100%;
    flex: 100%;
}

.product__box{
    margin-bottom: 20px;
}

.newsletter__sec .container-fluid.custom-pad {
    padding: 50px 20px 120px !important;
}

.newsletter__sec {
    margin: 0 20px;
}

.newsletter__text h2 {
    font-size: 30px;
}

    .newsletter__text p {
        width: 90%;
        font-size: 17px;
    }
    
    
    .newsletter__inout .col-sm-7 {
        width: 100%;
    }
    
    
    .newsletter__inout .col-sm-9 {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .newsletter__inout .col-sm-3 {
    width: 100%;
}

footer .col-sm-4 {
    max-width: 100%;
    flex: 100%;
}

footer .col-sm-5 {
    max-width: 70%;
    flex: 70%;
}

footer .col-sm-3 {
    max-width: 30%;
    flex: 30%;
}


.footer__social ul li span{
    width: 40px;
    height: 40px;
    font-size: 17px;
}

.link__head h6 {
    font-size: 18px;
}

.copy__right .col-sm-6 {
    max-width: 100%;
    flex: 100%;
    text-align: center;
}

.terms___links {
    text-align: center;
}
    
.about__sec .col-sm-6 {
    max-width: 100%;
    flex: 100%;
}

.about__sec {
    padding: 50px 0;
}

.our__mission__sec .col-sm-4 {
    flex: 100%;
    max-width: 100%;
}

.mission__img {
    padding-bottom: 30px;
}

.our__mission__sec.padding__100 {
    padding-top: 0;
}

div#sidebar-expander {
    display: none;
}

.inner___banner {
    padding: 70px 0;
}

.inner___banner__content h1 {
    font-size: 23px;
}

h1.product_title.entry-title {
    font-size: 19px;
}

.shop.single .add-to-cart .btn {
    height: 42px;
    padding: 8px 22px;
    margin-right: 5px;
    margin-top: -10px;
}

.shopping-cart .total-amount .left .coupon form input {
    width: 100%;
}

.shopping-cart .total-amount .left .coupon form .btn{
        width: 100%;
}

.shopping-cart .total-amount .right {
    padding: 20px 30px !important;
}


    
}

@media (max-width: 450px) {
    
.container-fluid.custom-pad {
    padding: 0 25px !important;
}

.banner___center__box h1 {
    font-size: 23px;
}

.center__heading h2 {
    font-size: 30px;
}

.padding__100 {
    padding: 40px 0;
}

.newsletter__text h2 {
    font-size: 25px;
}

footer .col-sm-5 {
    max-width: 100%;
    flex: 100%;
}

footer .col-sm-3 {
    max-width: 100%;
    flex: 100%;
}

.newsletter__sec .container-fluid:after{
    background: rgb(255 255 255 / 65%);
}

.link__head h6 {
    font-size: 18px;
    margin-bottom: 15px;
}

.shop.single .quantity .input-group {
    width: 100%;
}

.shop.single .quantity {
    display: inline-block;
    margin-right: 0;
    margin-bottom: 30px;
    width: 100%;
}

.shop.single .add-to-cart {
    display: inline-block;
    width: 100%;
}

.shop.single .add-to-cart .btn{
    width: 100%;
}

.shop.single .product-des{
        padding: 40px 10px;
}

.shop.single .product-des .short h4 {
    font-size: 17px;
}

.short .product-head a {
    width: 35px;
    height: 35px;
    font-size: 16px;
    top: -10px;
    right: 10px;
}

    
}

@media (max-width: 390px) {
    
.logo__sec img {
    width: 65%;
}

.banner___center__box p {
    font-size: 15px;
    line-height: 28px;
}

.web__btn ul li {
    display: block;
    padding: 0 10px 10px 0;
    text-align: center;
}

.web__btn ul li a {
    padding: 13px 12px;
    font-size: 13px;
    width: 100%;
}

.about__content__sec h2 {
    font-size: 21px;
}

.about__sec {
    padding: 50px 0 20px;
}

.links__footer ul li a {
    font-size: 17px;
    padding-bottom: 15px;
}

.avg-ratting h5 {
    font-size: 17px;
}
    
}

/*Reponsive End*/