@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

html {
  font-size: 16px;
  overflow-x: clip;
}

body {
  position: relative;
  /* font-family: "Poppins", sans-serif; */
  /* font-family: "Roboto", sans-serif; */
  font-family: "Lato", sans-serif;
  background: #fff;
  overflow-x: clip;
}

/*.container {
    max-width: 1170px;
}*/

:root {
  --white: #ffffff;
  --black: #000;
  --gary-color: #727272;
  --lightgary-color: #b2b9bd;
  --primary: #6f9331;
  --secondary: #225760;
}

p {
  font-weight: 400;
  color: var(--black);
  font-size: 1.125rem;
  line-height: 30px;
}

h1,
h2,
h3 {
  font-family: "Alexandria", sans-serif;
  color: #000;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

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

figure {
  margin: 0;
}

section {
  padding: 5rem 0;
  position: relative;
}

/* sraachbar start */

#search {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translate(0px, -100%) scale(0, 0);
  -moz-transform: translate(0px, -100%) scale(0, 0);
  -o-transform: translate(0px, -100%) scale(0, 0);
  -ms-transform: translate(0px, -100%) scale(0, 0);
  transform: translate(0px, -100%) scale(0, 0);
  opacity: 0;
  z-index: 10000;
}

#search.open {
  -webkit-transform: translate(0px, 0px) scale(1, 1);
  -moz-transform: translate(0px, 0px) scale(1, 1);
  -o-transform: translate(0px, 0px) scale(1, 1);
  -ms-transform: translate(0px, 0px) scale(1, 1);
  transform: translate(0px, 0px) scale(1, 1);
  opacity: 1;
}

#search input[type="search"] {
  position: absolute;
  top: 50%;
  width: 100%;
  color: #fff !important;
  background: rgba(0, 0, 0, 0);
  font-size: 55px;
  line-height: 65px;
  text-align: center;
  border: 0px;
  margin: 0px auto;
  margin-top: -51px;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-family: arial;
}

#search .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 61px;
  margin-left: -45px;
  background-color: limegreen;
  border: black;
}

#search .close {
  position: fixed;
  top: 15px;
  right: 15px;
  color: #fff;
  opacity: 1;
  padding: 10px 17px;
  font-size: 27px;
}

#search input[type="search"]::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}

#search input[type="search"]::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
  opacity: 1;
}

#search input[type="search"]:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}

#search input[type="search"]:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
  opacity: 1;
}

.srch-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}

.srch-btn .themeBtn {
  padding: 15px 120px;
  font-size: 20px;
}

/* sraachbar end */

/* loader */
.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.preLoader.black {
  background-color: var(--black);
  z-index: 11113;
}

.preLoader.black img {
  width: 15%;
}

.preLoader.white {
  z-index: 11112;
  background-color: var(--primary);
}

/* loader */

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* btn css */

.themeBtn {
  background: var(--secondary);
  font-size: 17px;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 0;
  line-height: normal;
  font-family: "Alexandria", sans-serif;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

.themeBtn:hover,
.new-arrivals__wrap:hover .new-arrivals__content .themeBtn:hover {
  background: var(--primary);
  color: var(--white);
}

/* btn css */

/* mouse animation css  */

.bounce-element {
  animation: bounce 0.9s infinite alternate;
  -webkit-animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-15px);
  }
}

@-webkit-keyframes bounce {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-15px);
  }
}

.mouse {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 11;
  text-align: center;
}

/* mouse animation css  */

/* navigation css */

header {
    position: relative;
    z-index: 99;
    padding: 0 3.5rem;
}

.navbar-nav {
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  color: var(--black);
  text-transform: uppercase;
  font-weight: 400;
  padding: 0 0;
  display: inline-block;
  font-family: "Alexandria", sans-serif;
}

.navbar-nav .nav-item .nav-link:hover {
  color: var(--primary);
}

.navbar-brand img {
  width: 111px;
}

.homeSlider .slide-inner video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-inline {
  gap: 1rem;
}

.form-inline a.search {
  width: 40px;
  height: 40px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.form-inline a.search:hover {
  background: var(--primary);
}

.form-inline a.cart {
  background: var(--black);
  width: 102px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  position: relative;
  color: var(--white);
}

.form-inline a.cart .cart {
  position: relative;
}

.form-inline a.cart .cart span {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  font-weight: 400;
  font-size: 9px;
  line-height: 15px;
  border-radius: 50%;
  position: absolute;
  top: -3px;
  right: -10px;
}

/* navigation css */

/* slider css */

.mainSlider {
  height: 80vh;
  position: relative;
  z-index: 1;
  padding: 0;
}

.homeSlider.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.homeSlider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.slideContent {
  text-align: center;
  margin: 0 2rem;
}

.form-inline a.cart .cart+span {
  font-size: 1rem;
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
}

.slideContent h2 {
  color: var(--white);
  font-weight: 400;
  margin: 0 0 0.7rem;
}

.slideContent h3 {
  font-size: 75px;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 1.8rem;
}

.slideContent p {
  font-size: 1.25rem;
  color: var(--white);
  font-family: "Roboto", sans-serif;
  line-height: 25px;
  margin: 0 0 2rem;
}

.homeSlider.swiper-container .swiper-button-prev {
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  left: 2%;
}

.homeSlider.swiper-container .swiper-button-prev:after,
.homeSlider.swiper-container .swiper-button-next:after {
  font-size: 13px;
  color: var(--white);
  font-weight: bold;
}

.homeSlider.swiper-container .swiper-button-next {
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  right: 2%;
}

/* slider css */

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

.about-content h2 {
  margin: 1.2rem 0 0.4rem;
  font-size: 25px;
  color: #302b26;
  font-weight: 400;
}

.about-content h3 {
  font-size: 3.125rem;
  color: #302b26;
  margin: 0 0 0.7rem;
}

.about-content p {
  margin: 0 0 1.5rem;
}

.cuts-card figure {
  position: relative;
  overflow: hidden;
  /* z-index: 1; */
}

.cuts-card figure img {
  height: 450px;
  object-fit: cover;
}

.cuts-card figure .overlay {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transform: translateY(60px);
  z-index: 1;
}

.cuts-card figure:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.cuts-card figure .overlay h2 {
  color: #ece9dc;
  font-size: 25px;
  font-weight: 600;
  margin: 0 0 3rem;
}


.cuts-card figure img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.cuts-card:hover figure img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.cuts-card:hover figure .overlay {
  transform: translateY(-40px);
}

.cuts-main {
  padding-bottom: 0;
}

.section-heading {
  font-size: 3.125rem;
  color: #302b26;
  font-weight: 400;
}

.section-heading strong {
  font-weight: 600;
}

.feature-card figure {
  position: relative;
  overflow: hidden;
}

.feature-card figure:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.feature-card figure .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}

.feature-card figure .overlay h2 a {
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
}

.feature-card:hover figure:before {
  opacity: 1;
}

.feature-card figure .overlay h2 {
  margin: 0 0 3px;
}

.feature-card figure .overlay .d-flex {
  align-items: center;
  gap: 10px;
  margin: 0 0 6px;
}

.feature-card figure .overlay .d-flex a {
  color: #fff9;
  font-size: 15.2px;
  font-weight: 400;
}

.feature-card figure .overlay .price {
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  display: inline-block;
  margin: 0 0 0.6rem;
}

.feature-card figure .overlay .themeBtn.borderBtn {
  font-size: 13px;
  font-family: "Lato", sans-serif;
  padding: 8px 14px;
}

.srch-list {
  position: absolute;
  right: 0;
  top: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.8rem;
  transform: translateX(30px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.srch-list li a {
  font-size: 1.1rem;
  color: var(--white);
}

.feature-card figure:hover .srch-list {
  transform: translateX(-20px);
}

.feature-card figure:hover .overlay {
  opacity: 1;
}

.feature-card {
  margin-bottom: 1.5rem;
}

/* new-arrivals */
.new-arrivals__wrap {
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.new-arrivals__wrap::before,
.testimonial-section::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0, 0, 0.44, 1.18);
  z-index: 1;
}

.new-arrivals__wrap:hover::before {
  background: rgba(0, 0, 0, 0.6);
}

.new-arrivals .col-lg-2 .new-arrivals__content {
  max-width: 220px;
}

.new-arrivals__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.new-arrivals__content h4 {
  color: #ece9dc;
  font-family: "Alexandria", Sans-serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.3;
}

.new-arrivals__content .themeBtn {
  border-width: 2px;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 14px;
  border-style: solid;
  margin-top: 1rem;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateY(15px);
}

.new-arrivals__wrap:hover .new-arrivals__content .themeBtn {
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(0);
}

.new-arrivals__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0, 0, 0.44, 1.18);
}

.new-arrivals__wrap:hover .new-arrivals__img img {
  transform: scale(1.09);
}

.new-arrivals .col-lg-5 .new-arrivals__content {
  align-items: center;
}

.new-arrivals .col-lg-5 .new-arrivals__content h4 {
  font-size: 40px;
  font-weight: 600;
}

.new-arrivals__text-wrap {
  background: #101010;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 5em;
}

.new-arrivals__text h4 {
  color: #ece9dc;
  font-size: 36px;
  font-family: "Alexandria", Sans-serif;
  font-weight: 500;
  margin-bottom: 0;
}

.new-arrivals__text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
}

/* exceptional-quality */
.exceptional-quality {
  background: url("../images/exceptional-quality-bg.jpg") no-repeat center / cover fixed;
  height: 445px;
}

.exceptional-quality::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--black);
  opacity: 0.7;
}

.exceptional-quality__title h3 {
  color: #ece9dc;
  font-family: "Alexandria", Sans-serif;
  font-size: 50px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 60px;
}

.exceptional-quality__title p {
  color: #ffffff;
  font-family: "Lato", Sans-serif;
  font-size: 18px;
  line-height: 30px;
}

.exceptional-quality .row:nth-of-type(2) {
  margin-top: 3rem;
}

.exceptional-quality__card {
  position: relative;
  display: block;
  background: var(--white);
  padding: 2rem;
}

.exceptional-quality__btn {
  width: 100px;
  height: 100px;
  aspect-ratio: 1;
  border: min(0.04em, 2px) solid var(--white);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  color: var(--white);
}

/* we-offer */
.we-offer {
  padding-top: 10rem;
}

/* testimonial-section */
.testimonial-section {
  background: url("../images/testimonial-bg.jpg") no-repeat center / cover fixed;
  height: 600px;
}

.testimonial-section::before {
  background: rgba(0, 0, 0, 0.85);
}

.testimonial-section .container {
  position: relative;
  z-index: 1;
}

.testimonial-section .section-heading {
  color: #ece9dc;
}

.testimonialCard__img img {
  width: 100px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  display: block;
}

.testimonialCard__text p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
}

.testimonialCard__text h5 {
  margin-top: 15px;
  color: var(--white);
  font-weight: 600;
}

.offerSlider .swiper-pagination {
  bottom: 0;
}

.offerSlider {
  padding-bottom: 40px;
}

.offerSlider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: transparent;
  border: 2px solid #bbb;
}

.offerSlider .swiper-pagination-bullet-active {
  background: #333;
  border-color: #333;
}

.we-offer .swiper-button-prev {
  left: -3rem;
}

.we-offer .swiper-button-prev:after {
  color: #a5a5a5;
  font-size: 1.4rem;
  font-weight: 600;
}

.offerSlider .feature-card {
  margin-bottom: 0;
}

.we-offer .swiper-button-next {
  right: -3rem;
}

.we-offer .swiper-button-next:after {
  color: #a5a5a5;
  font-size: 1.4rem;
  font-weight: 600;
}

.testimonialSlider .swiper-button-prev {
  left: 15%;
}

.testimonialSlider .swiper-button-prev:after {
  font-size: 1.4rem;
  color: var(--white);
}

.testimonialSlider .swiper-button-next {
  right: 15%;
}

.testimonialSlider .swiper-button-next:after {
  font-size: 1.4rem;
  color: var(--white);
}

.testimonialSlider {
  padding-bottom: 40px;
}

.testimonialSlider .swiper-pagination {
  bottom: 0;
}

.testimonialSlider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: transparent;
  border: 2px solid #bbb;
}

.testimonialSlider .swiper-pagination .swiper-pagination-bullet-active {
  background: #bbb;
}

footer {
  background: #302b26;
  padding: 9rem 0 0;
}

.insta-main {
  padding-bottom: 0;
  margin-bottom: -5rem;
}

.footer-quick h2 {
  font-size: 23px;
  color: var(--white);
  font-weight: 400;
  margin: 0 0 1.5rem;
}

.footer-quick p {
  font-size: 1rem;
  color: var(--white);
  line-height: 26px;
  margin: 0 0 1.5rem;
}

.footer-quick ul.footer-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-quick ul.footer-social li a {
  width: 36px;
  height: 36px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.2rem;
}

.footer-quick ul li a {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-quick ul li+li {
  margin: 10px 0 0;
}

.cal-footer a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
}

.cal-footer a i {
  width: 16px;
}

.cal-footer a span {
  white-space: nowrap;
  font-weight: 500;
}

.cal-footer a+a {
  margin-top: 0.7rem;
}

p.copyright {
  margin: 4rem 0 0;
  text-align: center;
  background: var(--primary);
  padding: 1.41rem 0;
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
}

.footer-quick ul.footer-social li+li {
  margin: 0;
}

.instaSlider {
  margin: 0 -7rem;
}

.footer-quick ul li a:hover {
  color: var(--primary);
}

.footer-quick ul.footer-social li a:hover {
  background: var(--black);
  color: var(--white);
}

.cal-footer a:hover span {
  color: var(--primary);
}

/* inner pages css start */

.inner-banner {
  background-color: #225760;
  padding: 5.2rem 0;
}

.inner-banner h2 {
  text-align: center;
  margin: 0;
  color: #ffffff;
  font-size: 2.8125rem;
}

.about-main.abtpg-chose {
  background-color: #eeeeee;
  margin-bottom: 5rem;
}

.product-banner {
  padding: 0;
}

.product-banner .overlay {
  position: absolute;
  inset: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-size: 28px; */
  /* color: var(--white); */
}

.product-banner .overlay h2 {
  font-size: 4.875rem;
  color: var(--white);
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.product-banner .overlay h2 i {
  font-size: 24px;
}

.product-banner img {
  height: 520px;
  object-fit: cover;
}

.beef-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 20px;
  align-items: center;
  padding: 0 1rem;
}

.beef-list li a span {
  width: fit-content;
  display: block;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
  position: relative;
}

.beef-list li a {
  font-weight: 400;
  color: #fff9;
  font-size: 14px;
  margin-top: 5px;
}

.beef-list li a span::before {
  content: "";
  width: 0;
  height: 2px;
  background: #6f9331;
  position: absolute;
  top: 17px;
  transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.beef-list li a:hover span::before {
  width: 100%;
}

.filter-price{
  border-bottom: 1px solid #a5a5a570;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.filter-price h2{
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sale-select{
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}

.custom-checkbox {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
  border: 1px solid #767676;
  border-radius: 2px;
  background-color: white;
  margin-right: 8px;
  position: relative;
  cursor: pointer;
}

.custom-checkbox:hover {
  border-color: #6aa84f !important;
  transition: 0.3s ease-in-out;
}

.sale-select label{
  margin: 0;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  color: #767676;
  font-weight: 400;
  cursor: pointer;
}

.rated-head h5{
  font-family: "Alexandria", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.product-cntnt{
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #a5a5a570;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.product-cntnt img{
  width: 65px;
  height: 65px;
}

.product-cntnt3{
  display: flex;
  gap: 20px;
}

.product-cntnt3 img{
  width: 65px;
  height: 65px;
}

.prod-info h6{
  font-family: "Alexandria", sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  text-transform: capitalize;
}

.prod-info p{
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #6f9331;
  margin: 0;
  line-height: 1.5;
}

.breadcumb ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcumb ul li a {
  color: #8e8e8e;
  font-size: 1rem;
  font-weight: 400;
}

.breadcumb ul li .clr {
  color: #8e8e8e;
}

.breadcumb ul li span {
  color: #333333;
  font-size: 1rem;
  font-weight: 600;
}

.pagination {
  justify-content: flex-end;
}

.pagination ul {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.pagination ul li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pagination ul li label {
  color: #2d2a2a;
  margin: 0;
  font-weight: 600;
}

.pagination ul li a {
  color: #8e8e8e;
  font-weight: 500;
}

.pagination ul li span {
  color: #8e8e8e;
}

.pagination ul li a.active {
  color: var(--black);
}

.pagination ul li a svg {
  fill: #8e8e8e;
}

.pagination ul li a svg.active {
  fill: var(--black);
}

.pagination ul li select {
  color: #2d2a2a;
  font-weight: 600;
  width: 200px;
  border: 0;
  border-bottom: 1px solid #8e8e8e;
  padding-bottom: 5px;
}

.mostCard.propgBox {
  position: relative;
  margin-bottom: 0rem;
}

.proBox {
  position: relative;
}

.mostCard.propgBox .proBox {
  /* background-color: #fff; */
  /* box-shadow: 0 0 10px rgb(0 0 0 / 15%); */
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding: 0.7rem 0.7rem;
}

.mostCard.propgBox .proBox figure {
  overflow: hidden;
}

.proBox figure {
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}

.mostCard.propgBox .proBox figure img {
  width: 100%;
}

.mostCard.propgBox .proBox figure ul {
  /* transform: inherit; */
  position: absolute;
  border-top: 1px solid #ccc;
  width: 100%;
  border-bottom: 1px solid #ccc;
  transition: transform 0.3s ease;
  transform: translateY(0%) translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  padding: 0;
  padding: 11px 10px;
  /* min-height: 47px; */
  bottom: 0;
  opacity: 1;
  background: var(--white);
  transform: translateY(40px);
  text-align: right;
}

.proContent {
  text-align: center;
  padding: 1rem 0 0;
}

.proContent h2 {
  font-size: 1rem;
  color: #333333;
  margin: 0;
  font-weight: 600;
}

.proContent h3 {
  font-size: 15.2px;
  color: #a5a5a5;
  margin: 0.8rem 0 8px;
  font-weight: 300;
}

.proContent span {
  font-size: 1rem;
  color: #6f9331;
  font-weight: 600;
}

.proHide ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.proHide ul li a {
  color: #000;
  font-size: 1.2rem;
}

.mostCard.propgBox .proBox .themeBtn {
  transform: translateY(0px);
  position: static;
  color: var(--white);
  padding: 0.7em 1.26em;
  background: #8a5037;
  font-size: 12px;
}

.proHide {
  position: absolute;
  top: calc(100% - 5px);
  right: 0;
  left: 0;
  visibility: hidden;
  padding: 10px 20px 20px 20px;
  opacity: 0;
  background-color: #fff;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.mostCard.propgBox:hover .proHide {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease, visibility 0s ease;
  box-shadow: 2px 10px 9px rgb(0 0 0 / 15%);
}

.mostCard.propgBox:hover .proBox figure ul {
  transform: translateY(0px);
}

.mostCard.propgBox:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.mostCard.propgBox .proBox figure ul li a {
  color: #333;
}

.bredcum-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 1.5rem;
  padding-bottom: 0.7rem;
}

.product-main .mostCard.propgBox {
  margin-bottom: 0.5rem;
}

.product-main {
  padding: 3rem 0;
}

.contact {
  position: relative;
}

.line {
  content: "";
  background: #a5a5a560;
  width: 1px;
  height: 576px;
  position: absolute;
  left: 50%;
  top: 4rem;
}

.faq-section #accordion .card {
  margin: 0;
  border: none;
}

.faq-section {
  padding: 15px 50px 15px 0;
}

.faq-head h2 {
  font-size: 14px;
  color: #a5a5a5;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 300;
}

.faq-head h3 {
  font-size: 22px;
  display: block;
  color: var(--black);
  margin-bottom: 0;
  text-transform: uppercase;
}

.faq-section #accordion {
  margin-top: 2rem;
}

.faq-section #accordion::before {
  content: "";
  display: block;
  border-top: 2px solid #a5a5a570;
}

.faq-section #accordion .card {
  border-bottom: 1px solid #a5a5a570;
  border-radius: 0;
}

.faq-section #accordion .card .btn:hover {
  color: #6f9331 !important;
  transition: 0.3s ease-in-out;
}

.faq-section #accordion .card .btn-link {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 1.25rem 0;
  color: var(--black);
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  color: #6f9331;
}

.faq-section #accordion .card .btn-link.collapsed {
  color: var(--black);
}

.faq-section #accordion .card .btn-link i {
  margin-left: auto;
  color: var(--black);
  font-size: 1rem;
}

.faq-section #accordion .card .btn-link i::before {
  content: "\f106";
  color: #a5a5a5;
  font-weight: 300;
}

.faq-section #accordion .card .btn-link.collapsed i::before {
  content: "\f107";
}

.faq-section #accordion .card+.card {
  margin-top: 0;
}

.faq-section #accordion .card .card-body {
  padding: 0 0 1.25rem;
  font-size: 1.125rem;
}

.faq-section #accordion .card .card-body p {
  color: var(--black);
  font-size: 1rem;
  margin: -.75rem 0 0;
  line-height: 2;
}

.contact-section {
  padding: 15px 0 15px 50px;
}

.contact-form {
  margin-top: 24px;
}

.contact-form label {
  margin-bottom: 5px;
  font-weight: 400;
}

.contact-form input {
  width: 100%;
  margin-bottom: 20px;
  height: 2.5rem;
  border: 2px solid #0000001a;
  padding-left: 15px;
  outline: none;
  font-size: 14px;
}

.contact-form textarea {
  width: 100%;
  border: 2px solid #0000001a;
  outline: none;
  padding: 15px;
  font-size: 14px;
}

.contact-form button {
  margin-top: 15px;
  padding: 15px 25px;
  font-size: 13px;
  background: #f3f3f3;
  font-weight: 400;
  color: var(--black);
  font-family: "Lato", sans-serif;
  border: none;
}

.contact-form button:hover {
  background: #72727250;
  color: #000;
}

.map-loc {
  padding: 1rem;
}

.map-loc iframe {
  width: 100%;
  height: 465px;
  border: none;
}

/*PRoduct Details*/

.Proreview h2 {
  text-align: left;
  margin: 1rem 0 0;
  font-size: 3rem;
  font-weight: bold;
}

.Proreview ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 2rem;
  color: #F7C00C;
  margin-bottom: 1rem;
}

.Proreview ul li span {
  color: #000;
  font-weight: 600;
  padding-right: 1rem;
}

.Proreview p {
  font-size: 1.75rem;
  color: #000;
}

.Proreview h5 {
  font-size: 2.1875rem;
}

.star {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.star li span::before {
  content: "";
  position: absolute;
  background: #F2F2F2;
  width: 80%;
  height: 25px;
  top: 7px;
  left: 8rem;
  border-radius: 10px;
}

ul.star li {
  margin: 0;
  color: #000;
  font-size: 1.875rem;
}

.star li span::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--theme-color);
  top: 7px;
  left: 8rem;
  height: 25px;
  width: 70%;
  border-radius: 10px 0 0 10px;
}

.star2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.star2 li span::before {
  content: "";
  position: absolute;
  background: #F2F2F2;
  width: 80%;
  height: 25px;
  top: 7px;
  left: 8rem;
  border-radius: 10px;
}

.star2 li {
  margin: 0;
  color: #000;
  font-size: 1.875rem;
}

.star2 li span::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--theme-color);
  top: 7px;
  left: 8rem;
  height: 25px;
  width: 10%;
  border-radius: 10px 0 0 10px;
}

.star3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.star3 li span::before {
  content: "";
  position: absolute;
  background: #F2F2F2;
  width: 80%;
  height: 25px;
  top: 7px;
  left: 8rem;
  border-radius: 10px;
}

ul.star3 li {
  margin: 0;
  color: #000;
  font-size: 1.875rem;
}

.startProduct ul {
  margin: 1.4rem 0;
}

.reviewSec {
  /* background: #fff; */
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid #D2D2D2;
}

.Proreview {
  padding-bottom: 1rem;
}

.reviewImg {
  display: flex;
  align-items: center;
  margin: 3rem 0;
}

.reviewImg figure img {
  height: 300px;
  border-radius: 50%;
}

.content-wraper h3 {
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 600;
  text-transform: capitalize;
}

.content-wraper {
  margin-left: 2rem;
}

.content-wraper h4 {
  margin: 0.9rem 0;
  font-size: 1rem;
  color: #726f6f;
  font-weight: 600;
}

.content-wraper span {
  margin-left: 10px;
  font-size: 0.95rem;
  color: var(--primary-color);
  font-weight: 600;
}

.content-wraper p {
  font-size: 1rem;
}

.Proreview .row+.row {
  margin: 5rem 0;
}

.reviewSec textarea {
  width: 100%;
  height: 160px;
  padding: 1rem;
  background: #F8F8F8;
  border-color: #EBEBEB;
}

.wishlistPro {
  background: #f8f6f6;
  padding-top: 0;
}

.productSlider-for,
.productSlider-nav {
  overflow: hidden;
}

.productNav {
  background: #F3F3F3;
  padding: 1.5rem;
  /* border-radius: 15px; */
  border: 1px solid #D2D2D2;
}

.productNav figure {
  /* background: #FBFBFB; */
  /* border-radius: 10px; */
  /* padding: 1rem; */
  margin: 0.7rem 0;
  /* border: 1px solid #F3F3F3; */
}

ul.stckst li {
  font-size: 1.25rem;
  color: var(--primary-color);
  font-weight: 600;
}

.productNav figure:hover {
  /* border: 1px solid var(--theme-color); */
}

.rating-box {
  display: flex;
  align-items: center;
}

.rating-box .rating-container {
  direction: rtl !important;
}

.rating-box .rating-container label {
  display: inline-block;
  margin: 0;
  color: #d4d4d4;
  cursor: pointer;
  font-size: 2.2rem;
  transition: color 0.2s linear;
}

.rating-box .rating-container input {
  display: none;
}

.rating-box .rating-container label:hover,
.rating-box .rating-container label:hover~label,
.rating-box .rating-container input:checked~label {
  color: gold;
}

.rating-box span {
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: 500;
  padding-left: 0.5rem;
}

.prodtl-txt p {
  font-size: 1.125rem;
  color: #7e7e7e;
}

.quantitySec h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.quantitySec .number {
  padding: 0.3rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.quantitySec .number .minus {
  padding: 0.5rem;
  cursor: pointer;
}

.quantitySec .number .plus {
  padding: 0.5rem;
  cursor: pointer;
}

.quantitySec .number input {
  width: 70px;
}

.number {
  background: #F7F6FB;
  padding: 1rem 0;
  border: 1px solid #CCCCCC;
  border-radius: 7px;
  width: 100%;
  color: #282828;
}

.number input {
  background: #F7F6FB;
  border: none;
  height: 2rem;
  width: 50px;
  text-align: center;
}

.number .minus {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.number .plus {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.productNav figure img {
  width: 100%;
}

.btnn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.colorBox option {
  background: var(--color);
}

.mySwiper2 img {
  width: 100%;
  margin-bottom: 1rem;
}


/*===========================================CheckOut 1 css start=====================================*/

.check-out-section {
  padding: 100px 0px;
  border-top: 1px solid #ebebeb;
}

.chkot-pag {
  padding: 4rem 0px;
}

.card-row {
  border-radius: 5px;
  padding-top: 20px;
  padding-bottom: 20px;
  align-items: center;
  margin-bottom: 35px;
  box-shadow: -6px 4px 19px -3px #9e9c9c;
  padding-left: 40px;
  padding-right: 40px;
}

.card-row img {
  width: 100%;
  object-fit: cover;
}

.fields-row .form-control {
  height: 54px;
  padding-left: 14px;
}

.check-out-form {
  text-align: center;
}

.check-out-form .primary-heading {
  margin-bottom: 40px;
  font-size: 55px;
  font-weight: bold;
  color: #323232;
}

.check-out-form .primary-heading span {
  color: #fd4242;
}

.check-out-form p {
  line-height: 16px;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 500;
  color: #2d2e37;
}

.check-out-form .checkout-subheading a {
  color: var(--primary-color);
  font-weight: 600;
}

.check-out-form .form-control {
  min-height: 60px;
  margin-bottom: 20px;
  box-shadow: 7px 6px 15px 0px #d2d2d2;
  border: 1px solid #ebebeb;
}

.check-out-form form,
.check-out-form .order-summery {
  padding: 20px 0px;
}

.check-out-form form {
  margin-top: 0;
  text-align: left;
}

.check-out-section input[type="checkbox"] {
  display: none;
}

.check-out-section input[type="checkbox"]+label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  /* font: 14px/20px 'Open Sans', Arial, sans-serif; */
  color: #ddd;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.check-out-section input[type="checkbox"]+label:last-child {
  margin-bottom: 0;
}

.check-out-section input[type="checkbox"]+label:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
  opacity: .6;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
}

.check-out-section input[type="checkbox"]:checked+label:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.check-out-form form .checkbox label {
  color: #323232;
  font-weight: 500;
  text-transform: capitalize;
}

.check-out-form form .checkbox {
  margin-bottom: 20px;
}

.check-out-form form label {
  font-size: 14px;
  text-transform: uppercase;
}

.order-summery {
  text-align: left;
}

.bb-1 {
  border-bottom: 1px solid #f8f8f8;
  padding: 10px 0px;
  margin-bottom: 10px;
}

.order-summery input.form-control {
  margin-bottom: 10px;
  box-shadow: none;
}

.order-summery .d-btn {
  padding: 14px 88px;
}

.order-summery .row span {
  font-size: 18px;
  font-weight: 500;
  color: #2d2e37;
}

.check-out-form form label {
  color: #2d2e37;
  font-weight: 500;
}


/*===========================================CheckOut 1 css End=====================================*/


/*===========================================CheckOut 2 css start=====================================*/

.shipping-billing-col ul li:nth-child(2) {
  flex: 0 0 85%;
}

.card-row .red {
  color: #e22a29;
}

.card-row h4,
.card-row h6 {
  text-align: left;
  /* font-family: 'Poppins', sans-serif; */
  font-size: 18px;
}

.card-row .red {
  font-size: 24px;
  color: #000000;
  margin: 0;
}

.shop-details .btn.btn-number {
  padding: 0pc;
  border: 1px solid #ced4da;
  border-radius: 0px;
  width: 33px;
  height: 25px;
  display: inline-block;
  line-height: 15px;
}

.shop-details .btn.btn-number svg {
  color: #989898;
}

.svg-inline--fa.fa-w-10 {
  width: .625em;
}

span.input-group-btn {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  top: -15px;
  left: -4px;
  color: #989898;
}

.check-out-form .shop-details .form-control {
  min-height: 50px;
  box-shadow: none;
  margin-bottom: 0px;
  color: black;
  position: relative;
  top: -2px;
}

.shop-details input {
  background-color: transparent;
  width: 50px;
  height: 38px !important;
  border-radius: 0px;
  padding: 0px;
  text-align: center;
  color: #ffffff;
  display: inline-block;
}

svg.svg-inline--fa.fa-trash-alt {
  height: 30px;
  fill: black;
}

svg.svg-inline--fa.fa-trash-alt path {
  fill: black;
}

.shipping-billing-col ul {
  list-style: none;
  padding-left: 0px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #565656;
  padding-bottom: 22px;
  padding-top: 22px;
  margin-bottom: 0px;
}

.mt-60 {
  margin-top: 60px!important;
}

.shipping-billing-col {
  text-align: left;
}

.mt-50 {
  margin-top: 50px!important;
}

.shipping-billing-col ul li svg {
  color: var(--primary-color);
  font-size: 18px;
  height: 1em;
}

.shipping-billing-col ul li p {
  margin-bottom: 0px;
  color: #5e5e5e;
  font-size: 16px;
  line-height: 26px;
}

.shipping-billing-col ul li a {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
}


/*===========================================CheckOut 2 css End=====================================*/


/*===========================================CheckOut 3 css statr=====================================*/

.check-out-form.check-out-3 .tabs-row {
  box-shadow: 7px 6px 15px 0px #d2d2d2;
  text-align: left;
}

.tabs-row {
  padding: 40px 30px;
  margin-top: 50px;
}

.check-out-form.check-out-3 .tabs-row .form-control {
  box-shadow: none;
}

.fields-row .form-control {
  height: 54px;
  padding-left: 14px;
}

.check-out-form.check-out-3 input[type="checkbox"]+label:before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
}

.check-out-form.check-out-3 input[type="checkbox"]:checked+label:before {
  width: 20px;
}

.check-out-form.check-out-3 input[type="checkbox"]+label {
  padding-left: 55px;
}

.check-out-form.check-out-3 .checkbox {
  margin-top: 15px;
}

.mt-25 {
  margin-top: 25px!important;
}

.check-out-form.check-out-3 .checkbox h5 {
  font-size: 18px;
  margin-bottom: 0px;
  text-transform: uppercase;
  color: black
}

.check-out-form.check-out-3 .checkbox label {
  color: black;
  text-transform: lowercase;
}

.check-out-form label {
  text-transform: uppercase;
}

.shipping-billing-col ul li p a {
  color: #8f8f8f;
  text-transform: capitalize;
}

.numberone {
  margin: 0;
  display: flex;
}

.numberone .minus {
  /* float: left; */
}

.check-out-section .numberone .minus,
.plus {
  width: 40px;
  height: 40px;
  background: #ebebeb;
  border-radius: 0;
  padding: 0px 0px;
  /* border: 1px solid #e1e1e1; */
  display: flex;
  vertical-align: middle;
  text-align: center;
  color: #7a7a7a;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.numberone span {
  cursor: pointer;
}

.numberone input {
  height: 45px;
  border-radius: 0;
  border: 0;
  width: 45px;
  text-align: center;
  color: #808080;
  outline: none;
}

.card-row .price {
  font-size: 18px;
  color: var(--primary-color);
}

.d-btn {
  border-radius: 5px;
  background-color: var(--primary-color);
  font-size: 20px;
  color: #ffffff;
  display: inline-block;
  padding: 16px 88px;
  text-transform: uppercase;
  transition: all 0.5s ease;
}

.d-btn:hover {
  background-color: var(--theme-color);
  color: var(--black);
}

.chkot-pag .primary-heading {
  margin-bottom: 20px;
}

.chkot-pag .check-out-form form {
  padding: 30px 0px;
}

.shoptab .nav-tabs {
  justify-content: center;
  border: 0;
  margin-bottom: 2rem;
  gap: 4rem;
}

.shoptab .nav-tabs .nav-link {
  all: unset;
  cursor: pointer;
  font-size: 2rem;
  color: var(--black);
  font-weight: bold;
  font-family: 'Freight Big Pro';
  border-bottom: 3px solid transparent;
}

.shoptab .nav-tabs .nav-link.active {
  border-bottom: 3px solid #000;
}



/* Spinner loader styles */
.loader {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%; 
  transform: translate(-50%, -50%);
  z-index: 9999;
}

/* Animation to make the spinner spin */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}





/*===========================================CheckOut 3 css End=====================================*/

/* inner pages css end */
