* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

/* :root {
  --maincolor:red;
  --secondcolor:rgba(0, 0, 0, 0.2);
  --background-color:white;
  --color:white;
} */

.color_ {
  color: var(--maincolor);
}

.btn-check:focus + .btn, .btn:focus {
  box-shadow: none;
}

body {
  background-color: var(--background-color);
}

.maincolor_ {
  background-color: var(--maincolor);
  color: var(--color);
}

.secondcolor_ {
  background-color: var(--secondcolor);
  color: var(--color);
}

.btn_white {
  color: white;
  background-color: transparent;
  border-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.btn_white:hover {
  background-color: var(--maincolor);
  color: var(--color);
  border: var(--maincolor);
}

.img_crop {
  overflow: hidden;
}
.img_crop img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  overflow: hidden;
}

.full_scroll .carousel-item {
  height: 600px;
  width: 100%;
  overflow: hidden;
}
.full_scroll .carousel-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

section {
  margin-bottom: 25px;
}

.category_one {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.category_one_box {
  margin: 20px 10px;
}
.category_one_box a {
  background: var(--maincolor);
  color: var(--color);
  padding: 10px 15px;
  border-radius: 2px;
  text-decoration: none;
  text-transform: capitalize;
}

.home_category_slider .owl-carousel .item .cat_img,
.home_category_slider_two .item .cat_img {
  width: 108px;
  height: 108px;
  border-radius: 12px;
  margin: 0 auto;
  overflow: hidden;
}

.home_category_slider .owl-carousel .item img,
.home_category_slider_two .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home_category_slider .owl-carousel .owl-nav .owl-next {
  position: absolute;
  right: -2%;
  top: 30%;
  transform: translate(50%, -50%);
  font-size: 50px;
}

.home_category_slider .owl-carousel .owl-nav .owl-prev {
  position: absolute;
  left: -4%;
  top: 30%;
  transform: translate(50%, -50%);
  font-size: 50px;
}

.home_category_slider .owl-carousel .item p,
.home_category_slider_two .item p {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  margin-top: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.category_two_p {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  margin-top: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translate(-50%);
  color: var(--color);
  background: var(--maincolor);
  width: 91%;
  padding: 5px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.category_two {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-upper-class {
  background-color: var(--secondcolor);
  text-align: center;
  justify-content: center;
  padding: 15px;
}
.footer-upper-class .footer-upper-box {
  padding: 15px;
}
.footer-upper-class .footer-upper-box i {
  padding: 10px 19px;
  border-radius: 50%;
  background: white;
  margin-bottom: 10px;
  font-size: 25px;
  color: var(--maincolor);
}
.footer-upper-class .footer-upper-box p {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--maincolor);
}

.border_rightt {
  border-right: 1px solid var(--maincolor);
}

.font_bold {
  font-weight: 600;
  color: var(--maincolor);
}

.card-span {
  transition: all 0.4s ease;
  border: 0;
}

.imgclass_web {
  height: 75px;
  width: 170px;
  overflow: hidden;
  cursor: pointer;
  margin-left: 10px;
}
.imgclass_web img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.pro_one_img {
  height: 400px;
  width: 100%;
  overflow: hidden;
  background-color: white;
}
.pro_one_img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.bg-200 {
  background-color: var(--background-color);
}

.text_dot {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  color: #403e3e;
}

.tital h1 {
  text-align: center;
  color: #403e3e;
  text-transform: uppercase;
  font-size: 26px;
  letter-spacing: 1px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 16px 0;
  grid-gap: 22px;
}

.tital h1:after, .tital h1:before {
  content: " ";
  display: block;
  border-bottom: 2px solid #ccc;
  /* background-color:#f8f8f8;  */
}

.btn-lg {
  padding: 0.5rem 3rem;
  font-size: 1rem;
  border-radius: 0;
}

.bg-primary {
  background-color: var(--maincolor) !important;
  color: var(--color) !important;
}

.bg-primary:hover, .bg-primary:focus {
  background-color: white !important;
  color: var(--maincolor) !important;
  border: 1px solid var(--maincolor);
  outline: none !important;
  box-shadow: none !important;
}

.button_upload {
  position: absolute;
  top: 0%;
  right: 0%;
  z-index: 1010;
  cursor: pointer;
}

.has_button {
  background: var(--maincolor);
  padding: 2px 8px;
  border-radius: 5px;
  color: var(--color);
  font-size: 17px;
  text-decoration: none;
}
.has_button:hover {
  color: var(--color);
}

.hash_link {
  position: absolute;
  top: 3%;
  right: 15%;
  z-index: 1010;
}

.card_two {
  border: 1px solid #e7e7e7;
  padding: 20px;
  background: white;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  margin-bottom: 25px;
}

.card_two:hover {
  box-shadow: 0 0 35px #e7e7e7;
}

.card_two_img {
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  /* height: 310px; */
  height: 296px;
  width: 100%;
  overflow: hidden;
  background-color: #eee8e8;
}
.card_two_img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.bg-300 {
  background-color: white;
  border-bottom-left-radius: 40px;
}

.fc-bold {
  font-weight: 700;
  text-align: center;
}

.fc_www {
  font-size: 22px;
  color: var(--maincolor);
}

.flexx {
  display: flex;
  justify-content: center;
  align-items: center;
}

.whats {
  position: absolute;
  top: 35px;
  right: 30px;
  background-color: var(--maincolor);
  padding: 10px 13px;
  border-radius: 50%;
}
.whats i {
  color: var(--color);
  font-size: 20px;
}

.bg-primary-two {
  background-color: var(--maincolor) !important;
  color: var(--color) !important;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.bg-primary-two:hover, .bg-primary-two:focus {
  background-color: white !important;
  color: var(--maincolor) !important;
  border: 1px solid var(--maincolor);
  outline: none !important;
  box-shadow: none !important;
}

.card_three {
  border: 1px solid #e7e7e7;
  padding: 20px;
  background: white;
  border-radius: 20px;
  margin-bottom: 25px;
}

.card_two:hover {
  box-shadow: 0 0 35px #e7e7e7;
}

.card_three_img {
  border-radius: 20px;
  height: 230px;
  width: 100%;
  overflow: hidden;
  background-color: #eee8e8;
}
.card_three_img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.whats_three {
  position: absolute;
  top: 25px;
  right: 25px;
  background-color: var(--maincolor);
  padding: 10px 13px;
  border-radius: 50%;
}
.whats_three i {
  color: var(--color);
  font-size: 20px;
}

.bg-primary-three {
  background-color: var(--maincolor) !important;
  color: var(--color) !important;
  border-radius: 20px;
}

.bg-primary-three:hover, .bg-primary-two:focus {
  background-color: white !important;
  color: var(--maincolor) !important;
  border: 1px solid var(--maincolor);
  outline: none !important;
  box-shadow: none !important;
}

.card_four {
  border: 1px solid #e7e7e7;
  background: white;
  margin-bottom: 25px;
}

.card_four:hover {
  box-shadow: 0 0 35px #e7e7e7;
}

.card_four_img {
  height: 265px;
  width: 100%;
  overflow: hidden;
  background-color: #eee8e8;
}
.card_four_img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.whats_four {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--maincolor);
  padding: 10px 13px;
  border-radius: 50%;
}
.whats_four i {
  color: var(--color);
  font-size: 20px;
}

.bg-primary-four {
  background-color: var(--maincolor) !important;
  color: var(--color) !important;
}

.bg-primary-four:hover, .bg-primary-two:focus {
  background-color: white !important;
  color: var(--maincolor) !important;
  border: 1px solid var(--maincolor);
  outline: none !important;
  box-shadow: none !important;
}

.card-span:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.4);
}

.flickity-page-dots {
  bottom: 8px;
}

.card_five {
  border: 1px solid #e7e7e7;
  padding: 10px;
  background: white;
  border-radius: 5px;
  margin-bottom: 25px;
}

.card_four:hover {
  box-shadow: 0 0 35px #e7e7e7;
}

.card_five_img {
  border-radius: 5px;
  height: 250px;
  width: 100%;
  overflow: hidden;
  background-color: #eee8e8;
}
.card_five_img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.whats_five {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--maincolor);
  padding: 10px 13px;
  border-radius: 50%;
}
.whats_five i {
  color: var(--color);
  font-size: 20px;
}

.bg-primary-five {
  background-color: var(--maincolor) !important;
  color: var(--color) !important;
  border-radius: 5px;
}

.bg-primary-five:hover, .bg-primary-five:focus {
  background-color: white !important;
  color: var(--maincolor) !important;
  border: 1px solid var(--maincolor);
  outline: none !important;
  box-shadow: none !important;
}

.insta_img {
  height: 260px;
  width: 100%;
  overflow: hidden;
}
.insta_img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  margin-top: -15px;
}

.prev-arrow {
  left: -40px;
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 15px solid #113463;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.next-arrow {
  right: -40px;
  width: 0;
  height: 0;
  border-right: 0 solid transparent;
  border-left: 15px solid #113463;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

@media (max-width: 550px) {
  .full_scroll .carousel-item {
    height: 200px;
    width: 100%;
    overflow: hidden;
  }
  .home_category_slider .owl-carousel .item .cat_img {
    width: 77px;
    height: 80px;
  }
  .home_category_slider .owl-carousel .owl-nav .owl-next,
.home_category_slider .owl-carousel .owl-nav .owl-prev {
    display: none;
  }
  .border_rightt {
    border-right: 0px solid var(--maincolor);
  }
  .card_two_img {
    height: 200px;
  }
  .card_three {
    padding: 10px;
  }
  .card_three_img {
    height: 150px;
  }
  .whats_three {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  .card_four_img {
    height: 380px;
  }
  .card_five_img {
    height: 175px;
  }
  .fc_www {
    font-size: 18px;
  }
  .btn-lg {
    padding: 0.5rem 1rem;
  }
  .mobile_padding {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
}
.all_product_side {
  position: -webkit-sticky;
  position: sticky;
  top: 4%;
}

.all_product_cat_brows ul {
  height: 150px;
  overflow-y: scroll;
}
.all_product_cat_brows ul a {
  text-decoration: none;
  list-style: none;
  margin: 10px 0px;
}
.all_product_cat_brows ul li {
  text-decoration: none;
  list-style: none;
  margin: 5px 0px;
}

.mobile_filter {
  display: none;
  position: fixed;
  top: auto !important;
  z-index: 99;
  bottom: 0 !important;
  width: 100%;
  left: 0;
  right: 0;
  padding: 10px;
  background-color: #fff;
}
.mobile_filter a {
  text-decoration: none;
  color: black;
}
.mobile_filter .button_filter .dfa {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.mobile_filter .button_filter .new_filter {
  border: none !important;
}
.mobile_filter .button_filter .new_filter:hover, .mobile_filter .button_filter .new_filter:focus {
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}
.mobile_filter .offcanvas-start {
  width: 280px !important;
}

.all_product_side .accordion-button,
.all_product_sidee .accordion-button {
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .mobile_filter {
    display: inline-block;
  }
  .display_none_550 {
    display: none;
  }
  .tex {
    text-align: center;
  }
}
.range-slider {
  width: 100%;
  text-align: center;
  position: relative;
}
.range-slider .rangeValues {
  display: block;
}

input[type=range] {
  -webkit-appearance: none;
  border: 1px solid white;
  position: absolute;
  left: 0;
  right: 0;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  background: #ddd;
  border: none;
  border-radius: 3px;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--maincolor);
  margin-top: -4px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #ccc;
}

input[type=range]::-moz-range-track {
  height: 5px;
  background: #ddd;
  border: none;
  border-radius: 3px;
}

input[type=range]::-moz-range-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--maincolor);
}

/*hide the outline behind the border*/
input[type=range]:-moz-focusring {
  outline: 1px solid white;
  outline-offset: -1px;
}

input[type=range]::-ms-track {
  height: 5px;
  /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
  background: transparent;
  /*leave room for the larger thumb to overflow with a transparent border */
  border-color: transparent;
  border-width: 6px 0;
  /*remove default tick marks*/
  color: transparent;
  z-index: -4;
}

input[type=range]::-ms-fill-lower {
  background: #777;
  border-radius: 10px;
}

input[type=range]::-ms-fill-upper {
  background: #ddd;
  border-radius: 10px;
}

input[type=range]::-ms-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--maincolor);
}

input[type=range]:focus::-ms-fill-lower {
  background: #888;
}

input[type=range]:focus::-ms-fill-upper {
  background: #ccc;
}

.size_smallbox ul {
  padding-left: 0px !important;
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.size_smallbox ul li {
  text-decoration: none;
  list-style: none;
  border: 1px solid #ccc;
  padding: 5px 10px;
  /* box-shadow: 0 0 0 1px black; */
  border-radius: 5px;
}
.size_smallbox ul li label {
  font-weight: 400;
}

.size_smallbox ul li.active {
  background-color: var(--maincolor);
  color: var(--color);
  border: 1px solid var(--maincolor);
  box-shadow: 0 0 0 1px var(--maincolor);
}/*# sourceMappingURL=style.css.map */
