body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  transition: background-color 0.5s;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

*:focus {
  outline: 0;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #cccccc;
}

::-webkit-scrollbar-thumb {
  background: #505050;
  border-radius: 5px;
}

body {
  background: #ffffff;
  color: #424242;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 16px;
  font-style: normal;
  line-height: 1.6rem;
  visibility: visible;
  -webkit-transition: opacity 0.24s ease-in-out;
  -moz-transition: opacity 0.24s ease-in-out;
  transition: opacity 0.24s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #3D3D3D;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  line-height: 120%;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.375rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 0.5rem;
}

small {
  font-size: 0.833rem;
}

table,
pre,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
}

.img-fluid {
  width: 100%;
}

a,
a:hover,
button,
button:hover,
input[type="submit"],
input[type="submit"]:hover {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

a:focus {
  text-decoration: none;
}

button,
input,
select,
select option,
textarea,
input:focus,
button:focus,
select:focus,
textarea:focus {
  outline: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.active-text,
.active-link,
.active-link:focus {
  color: #1577FA;
  font-weight: 400;
  display: inline-block;
}

.active-link:hover {
  text-decoration: none;
  color: #1577FA;
}

a,
dt {
  color: #2F4858;
  outline: none;
  text-decoration: none;
}

a:focus,
a:hover,
dt:hover,
dt:focus {
  color: #2F4858;
  text-decoration: none;
}

.btn {
  outline: none;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: none;
  box-shadow: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btn:active,
.btn.active {
  outline: none;
  box-shadow: none;
}

/******** custom-btn ********/

.custom-btn {
  position: relative;
  display: inline-block;
  background: #CD7C4B;
  border: none;
  color: #fff;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  padding: 12px 36px;
  cursor: pointer;
  text-transform: capitalize;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.custom-btn:hover,
.custom-btn:focus {
  background: #310B06;
  color: #fff;
}

.custom-btn span {
  margin-right: 6px;
}

.custom-btn__outline {
  background: transparent;
  border: 1px solid #CD7C4B;
  color: #CD7C4B;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  padding: 12px 36px;

}

.custom-btn__outline:hover {
  background: #CD7C4B;
  border: 1px solid #CD7C4B;
  color: #fff;
}

.btn-read {
  display: inline-block;
  position: relative;
  color: #CD7C4B;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  text-decoration: none;
  text-transform: capitalize;
}

.btn-read:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #CD7C4B;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.btn-read:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.btn-read:hover,
.btn-read:focus {
  background-color: none;
  border: none;
  box-shadow: none;
  outline: none;
  color: #CD7C4B;
}

.form-group {
  position: relative;
}

input,
textarea,
select,
button {
  outline: none;
  font-size: 0.875rem;
}

input.form-control,
.form-select,
textarea.form-control,
select.form-control,
.form-select {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #939393;
  height: 45px;
  font-size: 0.875rem !important;
}

input.form-control:focus,
textarea.form-control:focus,
select.form-control:focus,
.form-select:focus,
input:focus,
textarea:focus,
select:focus {
  border: 1px solid rgb(122, 122, 122);
  outline: none;
  box-shadow: none;
  border-color: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -moz-webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-webkit-appearance: textfield;
}

textarea.form-control {
  height: 100px;
}

.form-control.ndate-picker {
  background-color: #ffffff;
}

.form-label {
  margin-bottom: 0.2rem;
}

label {
  display: inline-block;
  font-weight: 400;
  font-size: 0.833rem;
  margin-bottom: 0;
}

.title-widget {
  position: relative;
  z-index: 1;
}

.title-widget h1,
.title-widget h2,
.title-widget h3,
.title-widget h4,
.title-widget h5,
.title-widget h6 {
  position: relative;
  color: #311E18;
  font-size: 30px;
  display: block;
  font-weight: 700;
  font-style: normal;
  line-height: 40px;
  text-transform: capitalize;
  -webkit-animation: animatedIntro 1.5s;
  -ms-animation: animatedIntro 1.5s;
  -o-animation: animatedIntro 1.5s;
  animation: animatedIntro 1.5s;
}

.title-widget span,
.title-widget span,
.title-widget span,
.title-widget span,
.title-widget span,
.title-widget span {
  color: #757575;
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
}

.position-relative {
  position: relative !important;
  z-index: 1;
}

.py-100 {
  padding: 100px 0;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.py-80 {
  padding: 80px 0;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.py-60 {
  padding: 60px 0;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.py-50 {
  padding: 50px 0;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.py-30 {
  padding: 30px 0;
}

.pt-30 {
  padding-top: 30px;
}

.pb-30 {
  padding-bottom: 30px;
}

.py-20 {
  padding: 20px 0;
}

.pt-20 {
  padding-top: 20px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.p-0 {
  padding: 0 !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-10 {
  margin-bottom: 10px;
}

hr {
  background-color: rgba(232, 232, 232);
  opacity: 1;
}

.line {
  width: 100%;
  height: 1px;
  margin-top: 10px;
  border-bottom: 1px solid rgb(232, 232, 232);
}

.site-bg {
  background-color: #310B06;
}

.site-light {
  background-color: #F8F8F8;
}

.section-content {
  position: relative;
  padding: 50px 0 50px 0;
}

main.section-all {
  min-height: 700px;
}

.container-fluid {
  padding: 0 90px;
}

.b-radius__8 {
  border-radius: 8px;
}

.b_radius__4 {
  border-radius: 4px;
}

/******** header ********/

header {
  position: relative;
}

.top__header {}

.sticky {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: stickyTransition;
  animation-name: stickyTransition;
}

.search {
  width: 100%;
  position: relative;
  display: flex;
}

.searchInput {
  width: 100%;
  border-radius: 4px;
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
}

.searchInput input {
  background: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #505050;
  outline: none;
  line-height: 40px;
  font-size: 14px;
  height: 42px;
  width: 100%;
  outline: none;
  padding: 20px 40px 20px 20px;
}

.searchInput input::placeholder {
  color: #505050;
  opacity: 1;
}

.searchInput input::-ms-input-placeholder {
  color: #505050;
}

.searchInput input::-webkit-input-placeholder {
  color: #505050;
}

.searchInput input::-moz-placeholder {
  color: #505050;
}

.searchInput .icon_s {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  color: #505050;
  cursor: pointer;
}

.tp_rit {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.top__login {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-left: 30px;
}

.log__icon {
  position: relative;
}

.log__icon span {
  color: #7F4532;
  font-size: 1.5rem;
  margin-right: 10px;
}

.login__info {
  position: relative;
}

.login {
  color: #7F4532;
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
  text-transform: capitalize;
}

.account {
  color: #7F4532;
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: normal;
}

.cart_icon {
  position: relative;
  display: inline-flex;
}

.amt_box {
  position: absolute;
  top: -10px;
  right: 6px;
  width: 22px;
  height: 22px;
  background-color: #7F4532;
  border: 2px solid #fff;
  border-radius: 100%;
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  line-height: 16px;
  z-index: 1;
}

.carttag {
  float: right;
  z-index: 99;
}

.cartinfos {
  display: flex;
  align-items: center;
  margin-top: 14px;
  margin-left: 20px;
  display: none;
}

.sticky .cartinfos {
  display: block;
}

.carts span {
  font-size: 20px
}

.amt_box_1 {
  position: absolute;
  top: 3px;
  right: -3px;
  width: 18px;
  height: 18px;
  background-color: #196BFE;
  border-radius: 100%;
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  line-height: 16px;
  z-index: 1;
}

.product__section {
  position: relative;
  background: url(../assets/images/product.png);
}

.box__card {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.img__box {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  text-align: center;
}

.cart__icon {
  background-color: #92572E;
  border-radius: 100%;
  position: absolute;
  right: 20px;
  top: 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0 5px;
  text-align: center;
}

.p__holder {
  padding: 0 20px;
}

.cardholder {
  padding: 20px 0;
}

.cardholder span {
  color: #505050;
  font-weight: 500;
  font-size: 16px;
}

.pricetag {
  color: #92572E;
  font-size: 16px;
  font-weight: 500;
}

.pricetag strike {
  color: #5B5B5B;
  font-size: 13px;
  font-weight: 500;
}

.img__270 img {
  object-fit: cover;
  height: 270px;
  width: 100 !important;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.cartbox {
  background-color: #fff;
  border: 1px solid #92572E;
  border-radius: 100%;
  color: #92572E;
  font-size: 22px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  padding: 0 5px;
  text-align: center;
}

.cartbox span {
  color: #92572E;
  font-size: 22px;
  text-align: center;
}


.box__card:hover .img__box img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

.welcome__section {
  position: relative;
  padding: 50px 0 0 0;
}

.title__infos h2 {
  color: #fff;
  font-weight: 700;
  font-size: 30px;
}

.title__infos h2 span {
  color: #CD7C4B;
  font-weight: 700;
  font-size: 30px;
}

.discrption_infos p {
  color: #fff;
  font-size: 14px;
  line-height: 24px;
}

.imgwrapper {
  position: relative;

  overflow: hidden;
}

.box__card-1 {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.border_1 {
  border: 1px solid #BFBFBF;
}

.ribbon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
}

.ribbon span {
  position: absolute;
  display: block;
  width: 220px;
  padding: 4px 0;
  background-color: #CD7C4B;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
}

/* top left*/

.ribbon-top-left {
  top: -4px;
  left: -4px;
}

.ribbon-top-left::before,
.ribbon-top-left::after {
  border-top-color: transparent;
  border-left-color: transparent;
}

.ribbon-top-left::before {
  top: 0;
  right: 0;
}

.ribbon-top-left::after {
  bottom: 0;
  left: 0;
}

.ribbon-top-left span {
  right: 6px;
  top: 14px;
  transform: rotate(-45deg);
}


.testimonails__section {
  position: relative;
  background: url(../assets/products/testimonials.png);
  padding: 50px 0 120px 0;
}

.testi_wrap {
  background-color: rgb(146, 87, 46, 0.7);
  padding: 30px;
}

.t_img {
  float: left;
  margin-right: 15px;
}

.t_img img {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  border: 3px solid #fff;
  overflow: hidden;
}

.client__info {
  margin-left: 90px;
  padding-top: 20px;
}

.client__info small {
  color: #fff;
}

.test-client p {
  color: #fff;
  font-size: 15px;
  line-height: 26px;
}

.rating ul li {
  color: #FF6200;
  list-style: inherit;
  display: inline-block;
  font-size: 14px;
  margin-right: 0px;
  padding: 0 !important;
}

.rating ul li i {
  color: #FF6200;
}

.company__section {
  position: relative;
  margin-top: -60px;
  z-index: 1;
}

.company__wraper {
  position: relative;
  background-color: #fff;
  padding: 40px;
}

.accordion-item {
  background-color: #fff;
  border: none;
  border-radius: none;
}

.accordion-item:last-of-type {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #7e7e7e;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #311E18;
  font-size: 1rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #311E18;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #311E18;
  border: 1px solid #7e7e7e;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: #311E18;
}

.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}

.accordion button[aria-expanded='true']+.accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 1em 0;
}

.video__wrapper {
  position: relative;
}

.video-background-holder {
  position: relative;
  background-color: black;
  height: calc(60vh - 72px);
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

.video-background-holder video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.about__section {
  position: relative;
}

.card__info {
  text-align: center;
  padding: 0 15px;
}

.caards {
  border: 1px solid #92572E;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin: 0 auto;
}

.caards span {
  color: #92572E;
  font-size: 24px;
  text-align: center;
}


.infos__card h6 {
  font-size: 15px;
}

.infos__card p {
  font-size: 13px;
  line-height: 20px;
}

/**footer***/

footer {
  position: relative;
}

.footer__tittle {
  color: #311E18;
  font-size: 15px;
  font-weight: 500;
  line-height: 120%;
  text-transform: capitalize;
}

.cont_icons {
  float: left;
  color: #483C34;
  font-size: 18px;
  margin-right: 10px;
}

.cont_icons span i {
  font-size: 18px;
}

.contact-info address {
  margin-left: 26px;
  color: #483C34;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

.contact-info address strong {
  color: #483C34;
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.contact-info address span {
  display: block;
}

.contact-info address span a {
  color: #483C34;
}

.contact-info p {
  color: #483C34;
  font-size: 14px;
  font-weight: 500;
}

.listing {
  padding-left: 0;
}

.listing li {
  position: relative;
  color: #483C34;
  display: block;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 4px;
}

.listing li a {
  color: #483C34;
}

.listing li a:hover {
  color: #92572E;
}

.subscribe__text {
  color: #483C34;
  font-size: 14px;
  text-transform: uppercase;
}

.subscribe-from {
  position: relative;
}

.search__wrap {
  position: relative;
}

.input-box {
  position: relative;
  height: 40px;
  width: 100%;
  background: #fff;
  border: 1px solid #cecece;
}

.input-box .button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.input-box input {
  height: 100%;
  width: 100%;
  border: none;
  background-color: transparent;
  color: #1e1e1e;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 40px;
  padding: 0 50px 0 10px;
}

.input-box .button {
  background-color: transparent;
  right: 10px;
  font-size: 16px;
  color: #92572E;
  border: none;
  cursor: pointer;
}

.input-box .button:active {
  transform: translateY(-50%) scale(0.98);
}

/*.social-icons {*/
/*  float: right;*/
/*}*/

.social-icons ul {
  padding-left: 0;
}

.social-icons ul li {
  display: inline-block;
  font-size: 14px;
  text-align: center;
  margin-right: 4px;
}

.social-icons ul li a {
  background-color: #92572E;
  border-radius: 100%;
  display: block;
  color: #fff;
  width: 24px;
  height: 24px;
  line-height: 24px;
  padding: 0 2px;
  text-align: center;
}

.copy-right p {
  color: #848484;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  text-transform: capitalize;
}

.copy-right p a {
  color: #848484;
}

.copy-right p a:hover {
  color: #92572E;
  text-decoration: underline;
}

.payment {
  padding-left: 0;
}

.payment li {
  background-color: #ffffff;
  border-radius: 4px;
  display: inline-block;
  display: inline-block;
  list-style: none;
  padding: 2px 6px;
  margin-bottom: 5px;
}

.payment li img {
  display: inline-block;
}

.social__info {
  float: right;
}

.footer__bottom {
  background-color: #fff;
}

.pb-20 {
  padding-bottom: 20px;
}

/******** all page css *******/

.site_page-title-inner {
  position: relative;
}

.page-titleShape {
  position: relative;
  padding: 100px 0 100px 0;
}

.page-titleShape::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.9)
  );
  background-repeat: no-repeat !important;
  z-index: 1;
}

.page-title {
  position: relative;
  z-index: 2;
}

.page-title ul li {
  font-size: 14px;
  font-weight: 400;
  color: #fdb813;
  text-transform: capitalize;
  padding: 10px 0;
}

.page-title ul li a {
  color: #fff;
}

.page-title ul li + li::before {
  content: "\f054";
  font-family: "Font Awesome\ 5 Free";
  font-weight: 900;
  font-size: 10px;
  display: inline-block;
  margin: 0 5px 0 8px;
}

.page-title h3 {
  color: #fff;
  font-size: 30px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
}

.list-item {
  padding-left: 0;
}

.list-item li {
  position: relative;
  color: #606060;
  font-size: 0.875rem;
  font-weight: 400;
  list-style-type: none;
  list-style-position: inside;
  margin: 5px 0;
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.btn_1 {
	border: 1px solid #CD7C4B;
	height: 30px;
	width: 30px;
	border-radius: 2px;
	background: none;
	cursor: pointer;
}

.btn-icon {
	width: 15px;
	height: 15px;
	stroke: #CD7C4B;
}

.btn_1:hover {
	background-color: #CD7C4B;
}

.btn_1:hover .btn-icon {
	stroke: #fff;
}

.page-link:link,
.page-link:visited {
	text-decoration: none;
	color: #310B06;
	font-size: 15px;
	height: 30px;
	width: 30px;
	border-radius: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-link:hover,
.page-link:active,
.page-link.page-link--current {
	background-color: #CD7C4B;
	color: #fff;
}


.product__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.sort-box {
	display: flex;
	align-items: center;
}

.sort_items {
	display: flex;
	align-items: center;
	margin-right: 20px;
}

.sort_items span {
  font-size: 14px;
}

.small_screen {
  display: none;
}

.mbscreen {
  display: none;
}


.sort-box {
	display: flex;
	align-items: center;
}

.sort_items {
	display: flex;
	align-items: center;
	margin-right: 20px;
}

.h_break {
  height: 8px;
  background-color: #CD7C4B;
  width: 100%;
}

.mbl__screen {
  display: none;
}

.my-slider {
  padding: 0 50px;
}

/********responsive css*********/
@media (max-width: 1440px) {
  .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 1366px) {
  .nav-header {
    margin-right: 10px;
  }

  .signwrap {
    padding-bottom: 30px;
  }
}

@media (max-width: 1280px) {
  .container {
    max-width: calc(100% - 20px);
    padding: 0 20px;
  }

  .container-fluid {
    padding: 0 20px;
  }

  .section-content {
    padding: 40px 0;
  }
}

@media (max-width: 1080px) {

  .title-widget h1,
  .title-widget h2,
  .title-widget h3,
  .title-widget h4,
  .title-widget h5,
  .title-widget h6 {
    position: relative;
    font-size: 24px;
    line-height: 32px;
  }

}

@media (max-width: 992px) {
  .pt-100 {
    padding-top: 40px;
  }

  .pb-100 {
    padding-bottom: 40px;
  }

  .py-80 {
    padding: 40px 0;
  }

  .pb-80 {
    padding-bottom: 30px;
  }

  .py-60 {
    padding: 30px 0;
  }

  .pb-60 {
    padding-bottom: 30px;
  }

  .mt-30 {
    margin-top: 20px;
  }

  .mb-30 {
    margin-bottom: 20px;
  }

  .mt-50 {
    margin-top: 30px;
  }

  .menu__navbar {
    border-top:none;
  }

  .section-content {
    padding: 30px 0;
  }

  .mbl__screen {
    display: block;
  }

  .userlogin span {
    font-size: 22px;
  }

  .login__info {
    display: none;
  }

  .tp_rit {
    margin-right: 0;
  }

  .top__login {
    margin-top: 30px;
    margin-left: 10px;
  }

  .log__icon span {
    margin-right: 10px;
  }

  nav .mobile-menu-trigger {
    margin-left: 0;
    margin-top: -32px;
    margin-right: 70px;
  }

  .searchInput {
    width: 100%;
    border-radius: 4px;
    position: relative;
    margin-top: 0px;
    margin-bottom: 10px;
  }

  .sticky .cartinfos {
    display: none;
  }

  .logo__widget img {
    width: 85px;
  }

  .login__info {
    display: none;
  }

}

@media (max-width: 768px) {
  .container {
    max-width: calc(100% - 15px);
    padding: 0 15px;
  }

  .pt-40 {
    padding-top: 30px;
  }

  .pb-40 {
    padding-bottom: 30px;
  }

  .custom-btn {
    font-size: 0.875rem;
    padding: 0.5em 1.4em;
  }


  .welcome__wrap {
    margin-bottom: 20px;
  }

}

@media (max-width: 576px) {
  h1 {
    font-size: 1.5rem;
  }

  .mt-30 {
    margin-top: 20px;
  }

  .cardholder h5 {
    font-size: 15px;
  }

  .company__wraper {
    padding: 20px;
  }

  .card__info {
    padding: 0px;
  }
  .infos__card h6 {
    font-size: 12px;
  }

}

@media (max-width: 480px) {

  .title-widget h1,
  .title-widget h2,
  .title-widget h3,
  .title-widget h4,
  .title-widget h5,
  .title-widget h6 {
    font-size: 20px;
  }

}