/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
  --white: #fff;
  --black: #000;
  --primary: #d71000;
  --secondary: #333333;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "Mulish", sans-serif;
}

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

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  margin: 0;
}

h1,
h2,
h4,
h5 {
  font-family: "Oswald", sans-serif;
  margin: 0;
  color: #000;
}

h3,
h6 {
  color: #000;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

.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;
}

/* 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 */

/* PRELOADER */

body.loading {
  overflow: hidden;
  height: 100vh;
}

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: start;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 11113;
}

.preLoader .counter {
  color: var(--white);
  font-size: 15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  position: absolute;
  bottom: 0rem;
  right: 5rem;
}

.preLoader .bar {
  height: 20%;
  width: 100vw;
  background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background: var(--primary) !important;
  color: var(--white);
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: fit-content;
  font-size: 0.9375rem;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Oswald";
  padding: 1rem 2.125rem;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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



/* !GLOBAL 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  */

/* NAV HEADER CSS */

header {
  margin: 0 auto;
  width: 100%;
  padding: 1rem 0 0 0;
  transition: 0.3s ease-in-out;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-nav {
  align-items: center;
}

.navbar-nav .nav-item .nav-link {
  font-size: 0.8375rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 500;
  padding: 22px 45px !important;
  display: inline-block;
  font-family: "Oswald", sans-serif;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* !NAV HEADER CSS */

/* MAIN HERO SLIDER CSS */

.main-slider {
  height: 800px;
  position: relative;
}

.mainSlider video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 98%;
  object-fit: cover;
}

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

.homeSlider.swiper-container .swiper-slide {
  overflow: hidden;
}

.homeSlider .swiper-pagination {
  bottom: 8rem;
  width: fit-content;
  left: 18rem;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
  width: 4.35rem;
  height: 4.35rem;
  font-size: 1rem;
  color: #fff;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.28);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.homeSlider .swiper-button-next {
  right: 1rem;
}

.homeSlider .swiper-button-prev {
  left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
  background: var(--white);
  color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  display: inline-block;
  margin: 0 0.5rem !important;
  opacity: 1;
  border: 1px solid var(--white);
  background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
  background: var(--white);
  position: relative;
}

.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;
}

.main-slider h1 {
  margin: 1.525rem 0 3.875rem;
  color: var(--white);
  font-size: 7.5rem;
  line-height: 1;
  font-weight: 700;
  text-transform: capitalize;
}

.main-slider p {
  color: var(--white);
  font-size: 1.125rem;
  width: 70%;
  margin: 0 auto 0;
}

/* !MAIN HERO SLIDER CSS */

/* Top Bar Css Start */

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

.top-icon i {
  font-size: 3.4375rem;
  color: #d71000;
  user-select: none;
}

.top-icon:hover i {
  animation: bounce 0.8s ease-in-out infinite;
}

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

  50% {
    transform: translateY(-25px);
  }

  100% {
    transform: translateY(0);
  }
}

.top-icon {
  display: flex;
  align-items: center;
  gap: 1.125rem;
}

.icon-conetnt h5 {
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: capitalize;
}

.top-icon span i {
  transform: rotate(-25deg);
}

.topbar {
  padding: 2.25rem 0 2.5rem;
}

.top-flex h2 {
  font-size: 3.125rem;
  font-weight: 700;
  text-transform: capitalize;
}

.navbar-expand-lg .navbar-collapse {
  background-color: #000;
  margin-bottom: -2.25rem;
  z-index: 1;
  padding: 0 1.25rem 0 0;
  border-radius: 5px;
  overflow: hidden;
}

.navbar-nav .nav-item::before {
  position: absolute;
  content: "";
  top: 0;
  height: 100%;
  left: 0%;
  background-color: var(--primary);
  width: 0%;
  transition: 0.6s ease;
  bottom: 0;
  right: 100%;
  z-index: 0;
}

.navbar-nav .nav-item:hover::before {
  width: 100%;
  right: 0;
  z-index: -1;
}
.navbar-nav button {
    border: unset;
    outline: unset;
}
.navbar-nav .nav-item {
  border-right: 1px solid #535557;
  position: relative;
  transition: 0.6s ease;
}

.navbar-nav .nav-item:hover {
  border-color: unset;
}

.themeBtn i {
  font-size: 1.29rem;
}

.navbar-nav .nav-item.active:hover::before {
  width: 100%;
}

.slideOne h4 {
  font-size: 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
}

.homeSlider .slide-inner::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.slideOne .themeBtn {
  margin: 2rem auto 0;
  text-transform: capitalize;
}

/* Top Bar Css End  */

/* Dinner Sec Css Start */

.mainHead {
  font-size: 3.126rem;
  font-weight: 700;
  color: var(--black);
}

.dinner-sec .mainHead {
  text-align: center;
  margin: 0 0 2.5rem 0;
  color: #535353;
}

.dinner-wrapp {
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
  border: 1px solid #a8a8a8;
  border-radius: 5px;
  text-align: center;
  padding: 3.125rem 1.875rem 1.875rem 1.875rem;
  height: 100%;
  transition: 0.4s ease;
}

.dinner-content h3 {
  font-size: 1.375rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #f4554c;
  margin: 1rem 0 0.625rem;
}

.dinner-content p {
  font-size: 0.875rem;
  line-height: 1.4;
  width: 66%;
  margin: 0 auto 0;
  font-family: "Roboto";
}

.dinner-sec .themeBtn {
  margin: 3rem auto 0;
  padding: 1.125rem 2.5rem;
  background-color: #f4554c;
}

figure.dinner-imag img {
  width: 388px;
  height: 256px;
  object-fit: cover;
}

.dinner-wrapp:hover {
  transform: scale(1.03);
}

.dinner-sec {
  padding: 6rem 0 7rem;
}

/* Dinner Sec Css End  */

/* About Sec Css Start */

.aboutside1 {
  position: absolute;
  left: -3rem;
  top: -2rem;
}

.about-imag img:first-child {
  border-radius: 270px 0 0 0;
}

.about-imag {
  position: relative;
}

.about-images {
  position: relative;
  z-index: 1;
}

.aboutside2 {
  position: absolute;
  right: -3rem;
  top: -17%;
  z-index: -1;
}

.about-content {
  padding: 0 0 0 11.25rem;
}

.about-overlay {
  background-color: var(--white);
  box-shadow: rgba(209, 210, 210, 0.5) 6px 9px 30px 0px,
    rgba(255, 255, 255, 0) -6px -1px 0px 0px;
  padding: 2.1875rem 2.1875rem 1.6875rem;
  position: absolute;
  right: -19%;
  bottom: -10%;
  width: 310px;
  transition: 0.6s ease;
}

.about-overlay h5 {
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #0e1317;
  padding: 0 0 0 1.25rem;
}

.about-overlay h5 span {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Mulish";
  margin: 0.525rem 0 0 0;
  color: #696969;
}

.about-overlay p {
  color: #696969;
  margin: 1.23rem 0 0.625rem;
  width: 90%;
}

.about-stars {
  display: flex;
  align-items: center;
  gap: 0.32rem;
}

.about-stars li a i {
  color: #d71000;
}

.subHead {
  position: relative;
  padding: 0 0 0 4.12rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #d71000;
  font-family: "Mulish";
  width: fit-content;
  line-height: 1;
}

.subHead::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 3.125rem;
  background-color: #d71000;
  top: unset;
  bottom: 4px;
  left: 0;
}

.subHead::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 1.875rem;
  background-color: var(--primary);
  left: 1rem;
  top: 5px;
}

.about-content p {
  color: #696969;
  margin: 2.1875rem 0 2.8125rem 0;
  line-height: 1.9;
  width: 89%;
}

.about-content .mainHead {
  margin: 1rem 0 0 0;
}

.about-overlay:hover {
  transform: translateY(-20px);
}

/* About Sec Css End  */

/* Current Sec Css Start  */

.current-imag img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.current-imag {
  margin: 0px 0 0px;
}

.current-wrapp {
  text-align: center;
}

.current-wrapp .mainHead {
  margin: 0 0 1.985rem 0;
  color: #535353;
}

.about-content .themeBtn {
  background-color: #f4554c;
  padding: 1rem 2.55rem 1rem 2.35rem;
}

.current-wrapp h4 {
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: capitalize;
  margin: 0.625rem 0 0.625rem;
}

.current-wrapp ul li a i {
  color: #f4554c;
}

.current-wrapp ul {
  display: flex;
  align-items: center;
  gap: 0.325rem;
  justify-content: center;
}

.current-wrapp .themeBtn {
  margin: 0.625rem auto 0;
  background-color: #f4554c;
  padding: 1rem 2.35rem;
}

/* Current Sec Css End  */

/* Support Sec Css Start */

.support-sec {
  background: url(../images/need1.webp) center/cover fixed;
  padding: 9.375rem 0 9.375rem 0;
  z-index: 1;
}

.support-sec::before {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(270deg, #00000000 0%, #97a65f 100%);
  z-index: -1;
}

.support-content .mainHead {
  width: 61%;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 2.5rem;
}

.support-content .themeBtn {
  background-color: #f4554c;
  border-radius: 50px;
  padding: 1rem 2.58rem;
}

/* Support Sec Css End  */

/* Footer Sec Css Start */

footer {
  background-color: #333333;
  padding: 5.5rem 0 5rem;
  position: relative;
}

footer h4 {
  font-size: 3.125rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #f15550;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

footer h4 span {
  color: var(--white);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin: 1.5rem 0 0 0;
}

.footer-social li a i {
  height: 2.8125rem;
  width: 2.8125rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  border: 1px solid #fff;
  font-size: 1.35rem;
  color: var(--white);
  transition: 0.6s ease;
}

footer h2 {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--white);
  font-family: "Roboto";
  margin-bottom: 1.35rem;
}

.footer-link li a {
  font-size: 1rem;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--white);
  font-family: "Roboto";
}

.footer-link li+li {
  margin: 0.325rem 0 0;
}

.footer-imag img {
  height: 4.25rem;
  width: fit-content;
}

.footer-imag {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.up-arrow i {
  height: 2.8125rem;
  width: 2.8125rem;
  display: grid;
  place-items: center;
  border-radius: 5px 0 0 5px;
  background-color: #d71000;
  color: var(--white);
}

.up-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  bottom: 78px;
}

.themeBtn::before {
  position: absolute;
  content: "";
  bottom: 0%;
  left: 0%;
  right: 0%;
  width: 100%;
  background-color: #0e1317;
  transition: 0.6s ease;
  height: 0%;
  z-index: -2;
}

.themeBtn:hover::before {
  bottom: 0%;
  height: 100%;
  width: 100%;
}

.themeBtn:hover {
  color: var(--white);
}

.form-inline .themeBtn::before {
  background-color: var(--white);
}

.form-inline .themeBtn:hover {
  color: #0e1317;
}

.footer-social li a:hover i {
  border-color: #f15550;
  background-color: #f15550;
}

.main-slider video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-link li a:hover {
  color: #f4554c;
}

@keyframes updown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-40px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Footer Sec Css End  */

/* Inner Pages Css Start */

.innerbanner {
  background: url(../images/inner.jpg) center/cover fixed;
  height: 450px;
  display: flex;
  align-items: center;
}

.innerbanner::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgba(0, 0, 0, 0.34);
}

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

.inner-content h2 {
  font-size: 5.3125rem;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 1.35rem 0;
}

.inner-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.inner-list li a {
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white);
  font-family: "Mulish";
  position: relative;
}

.inner-list li:last-child a::before {
  position: absolute;
  content: "";
  height: 0.3125rem;
  width: 0.3125rem;
  background-color: #fff;
  left: -1.5rem;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50px;
}

.aboutcontent {
  text-align: center;
}

.about-pages {
  padding: 9rem 0 1rem 0;
}

.aboutcontent .mainHead {
  color: #535353;
  margin: 0 0 2.257rem 0;
}

.aboutcontent p {
  color: var(--black);
  width: 89%;
  margin: 0 auto 0;
  line-height: 1.9;
  font-family: "Roboto";
}

.content-sec .mainHead {
  text-align: center;
  color: #535353;
  margin: 0 0 1.975rem 0;
}

.aboutflex {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: start;
  padding: 2.5rem 1.25rem 3rem 3.875rem;
  gap: 3.59rem;
  margin-bottom: 2rem;
}

.aboutflex figure {
  flex-shrink: 0;
}

.content-div h3 {
  font-size: 1.75rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #535353;
  margin: 0 0 1rem 0;
}

.content-div p {
  color: var(--black);
  line-height: 1.9;
  font-family: "Roboto";
  width: 94%;
}

.recipecontent {
  text-align: center;
}

.recipecontent p {
  color: #000000;
  font-family: Mulish, sans-serif;
  font-size: 1rem;
  line-height: 2;
  width: 79%;
  margin: 0 auto 0.9375rem;
}

.recipecontent .themeBtn {
  margin: 1.5625rem auto 0;
  font-size: 1.375rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  background-color: #000000;
  font-family: "Roboto";
  text-transform: capitalize;
}

.recipe-pages {
  padding: 8.125rem 0 8.125rem 0;
}

.aboutpartner {
  border-radius: 15px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  padding: 1.05rem 0 2.875rem;
  text-align: center;
}

.aboutpartner .mainHead {
  margin: 0 0 4.75rem 0;
  color: #535353;
}

.content-sec {
  padding: 6rem 0 0;
}

.about-partner {
  padding: 5rem 0 7rem;
}

.monthlyHead {
  text-align: center;
  margin: 0 0 3.575rem 0;
  color: #535353;
}

.monthly-content {
  padding: 0 0 0 0.625rem;
}

.monthly-content .mainHead {
  font-size: 2.625rem;
  width: 91%;
  margin: 1rem 0 1.25rem;
}

.monthly-content p {
  color: #696969;
  line-height: 1.9;
  width: 91%;
}

.monthly-imag img {
  border-radius: 10px;
}

.leading-sec .mainHead {
  text-align: center;
  margin: 0 0 2.25rem 0;
}

.leading-flex {
  display: flex;
  align-items: center;
  gap: 2.875rem;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5) inset;
  padding: 3rem 2.85rem 3rem 2.85rem;
  border-radius: 22px;
}

.leading-imag {
  flex-shrink: 0;
}

.leading-imag img {
  height: 270px;
  width: 100%;
  object-fit: cover;
  border-radius: 16px 0 0 16px;
}

.leading-flex+.leading-flex {
  margin: 3.75rem 0 0 0;
}

.leading-content h2 {
  font-size: 2rem;
  font-weight: 900;
  text-transform: capitalize;
  font-family: "Roboto";
}

.leading-content p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--black);
  margin: 1.25rem 0 1.25rem 0;
}

.leading-items li a {
  font-size: 1.375rem;
  font-weight: bold;
  text-transform: capitalize;
  font-family: "Roboto";
  color: #696969;
}

.leading-items {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.875rem 0 0 0;
  justify-content: center;
}

.leading-items li a:hover {
  color: var(--black);
}

.monthly-sec {
  padding: 9.25rem 0 2rem;
}

.leading-content .themeBtn {
  border-radius: 120px 0px 120px 50px;
  background-color: #f4554c;
  padding: 0.875rem 1.985rem;
}

.loginform .form-control {
  border: 2px solid #000;
  height: 50px;
  position: relative;
  box-shadow: unset;
  border-radius: unset;
  outline: unset;
  background-color: transparent;
}

.Logincontent {
  background-color: #f8f8f8;
  padding: 30px;
}

.loginform label {
  color: #818a91;
  font-size: 14px;
  font-weight: 500;
  font-family: "Roboto";
}

.loginform .toggle {
  position: absolute;
  right: 2rem;
  top: 55px;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  opacity: 0.6;
}

.loginform label span {
  color: #a00;
}

label.reminder span {
  color: #818a91;
  font-size: 15px;
  font-weight: 500;
  font-family: "Roboto";
  margin: 0;
}

.reminder {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 1rem 0;
}

.loginform button {
  background-color: #d71000;
  border: none;
  padding: 30px;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  font-family: "Oswald";
}

.loginform a {
  color: #d71000;
  font-size: 12px;
  font-weight: 400;
  font-family: "Roboto";
  line-height: 2;
}

.Login-pages {
  padding: 130px 0;
}

.loginform p {
  color: #818a91;
  font-size: 12px;
  font-family: "Roboto";
  line-height: 2;
}

.loginform p a {
  color: #5bc0de;
}

ul#tabs-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

ul#tabs-nav li {
  background: #000;
  transition: 0.5s ease;
}

ul#tabs-nav li a {
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
  font-family: "Oswald";
  padding: 35px 40px;
  display: block;
  text-transform: uppercase;
}

section.Login-pages .row+.row {
  padding: 2rem 0 0 0;
}

ul#tabs-nav li:hover,
ul#tabs-nav li.active {
  background: #d71000;
}

.qty-box {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  width: 4.375rem;
  border-radius: 5px;
  overflow: hidden;
  height: 3.125rem;
}

.qty-box input {
  width: 2.5rem;
  text-align: center;
  border: none;
  font-size: 1rem;
  outline: none;
}

.arrows {
  display: flex;
  flex-direction: column;
}

.arrows button {
  background: white;
  border: none;
  width: 25px;
  height: 1.125rem;
  cursor: pointer;
  color: red;
  font-size: 0.75rem;
}

.arrows button:hover {
  background: #f3f3f3;
}

.include-sec::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgb(9 12 15 / 95%);
  z-index: -1;
}

.include-sec {
  background: url(../images/includbg.jpg) center/cover fixed;
  z-index: 1;
}

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

.include-top .subHead {
  margin: 0 auto 1rem;
}

.include-top .subHead span {
  position: relative;
}

.include-top .subHead span::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 3.125rem;
  background-color: #d71000;
  top: unset;
  bottom: 4px;
  right: -4rem;
}

.include-top .subHead span::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 1.875rem;
  background-color: var(--primary);
  left: 1rem;
  top: 9px;
}

.include-top .mainHead {
  color: var(--white);
  font-size: 2.625rem;
  font-weight: 300;
}

.include-main {
  background-color: var(--white);
  padding: 1.4375rem 5.3125rem 3.3125rem 3.75rem;
  border-radius: 7px 0px 0px 7px;
}

.include-content h2 {
  font-size: 1.5rem;
  font-weight: 300;
  color: #0e1317;
  margin: 0 0 0.225rem 0;
}

.include-content p {
  color: #696969;
}

.include-content {
  border-bottom: 1px solid #ededed;
  padding: 1.875rem 0 1.75rem 0;
}

.includsub1 {
  position: absolute;
  left: 5rem;
  top: 0;
}

.includsub3 {
  position: absolute;
  right: 7rem;
  top: 0;
}

.includsub2 {
  position: absolute;
  right: 12%;
  top: 13%;
  z-index: -1;
}

.pricing-imag img {
  width: 100%;
}

.pricing-content h2 {
  font-size: 2rem;
  font-weight: 600;
  text-transform: capitalize;
  font-family: "Roboto";
}

.pricing-content p {
  line-height: 1.8;
  color: var(--black);
  margin: 1rem 0 1.25rem;
}

.pricing-content h5 {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--black);
  margin: 0 0 1.755rem 0;
  font-family: "Roboto";
}

.pricing-bottom {
  margin: 5rem 0 0 0;
}

.pricing-bottom p {
  color: var(--black);
  font-family: "Roboto";
  width: 88%;
}

.pricing-bottom p:nth-child(2) {
  margin: 0.75rem 0;
}

.updown {
  animation: updown 2s ease-in-out infinite;
}

.pricing-content .btn-group {
  align-items: center;
  gap: 1.32rem;
}

.pricing-content .btn-group a {
  background-color: #d71000;
  padding: 1rem 2.025rem;
  border-radius: 5px;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--white);
  font-family: "Oswald";
}

.pricing-imag a i {
  height: 2.25rem;
  width: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  background-color: var(--white);
  color: var(--black);
}

.pricing-imag {
  position: relative;
}

.pricing-imag a {
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.contact-main h3 {
  color: #d71000;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Mulish";
  line-height: 1.5;
}

.contact-main h2 {
  margin: 15px 0;
  width: 60%;
  color: #0e1317;
  font-size: 42px;
  font-family: "Oswald";
  font-weight: 300;
  line-height: 1;
}

.contact-main p {
  color: #696969;
  font-size: 1rem;
  font-family: "Mulish";
  width: 70%;
  line-height: 2;
  margin: 0;
}

.contact-main {
  position: relative;
}

.contact-main::before {
  position: absolute;
  content: "";
  background: #f4554c;
  height: 110%;
  width: 2px;
  right: 0;
}

.contact-main ul {
  margin: 2rem 0 0;
}

.contact-main ul li {
  border: 1px solid #e7e7e8;
  padding: 27px 0px 27px 40px;
  max-width: 340px;
  transition: 0.5s ease;
}

.contact-main ul li+li {
  margin: 2rem 0;
}

.contact-main ul li a {
  display: flex;
  align-items: center;
  gap: 58px;
  color: #d71000;
}

.contact-main ul li a i {
  font-size: 2rem;
}

.contact-main ul li a h5 {
  color: #d71000;
  font-size: 15px;
  font-weight: 700;
  display: block;
  text-transform: uppercase;
  font-family: "Mulish";
}

.contact-main ul li a h5 span {
  display: block;
  font-size: 24px;
  font-weight: 300;
  color: #000;
  margin-top: 11px;
  text-transform: none;
  font-family: "Oswald";
}

.contact-main ul li:hover {
  border: 1px solid #d71000;
}

.contentform .form-control {
  height: 75px;
  box-shadow: unset;
  border: 1px solid #e5e5e5;
  border-radius: unset;
  outline: unset;
  color: #0e1317;
  font-size: 1.25rem;
  font-weight: 600;
  font-family: "Mulish";
  padding: 3px 0 0 35px;
  transition: 0.5s ease;
}

.contentform .form-control::placeholder {
  color: #0e1317;
  font-size: 1.25rem;
  font-weight: 600;
  font-family: "Mulish";
}

.contentform textarea.form-control {
  height: 200px;
  padding: 13px 0 0 35px;
}

.contentform .form-control:hover {
  border: 1px solid #d71000;
}

.contentform button {
  border: none;
  background-color: #000;
  display: flex;
  align-items: center;
  padding: 0 75px;
  height: 55px;
  font-size: 15px;
  font-weight: 400;
  font-family: "Oswald";
  transition: 0.5s ease;
}

/* .contentform button:hover {
  background-color: #d71000;
} */
.contentform button::before {
  background-color: var(--primary);
}

/* Inner Pages Css End  */




/* product detail css start */


/*PRoduct Details*/

.Proreview h2 {
  text-align: left;
  margin: 0;
  font-size: 3.75rem;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}

.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: 500;
  padding-right: 1rem;
  font-size: 1.25rem;
}

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

.Proreview h5 {
  font-size: 1.375rem;
  color: #828282;
  font-weight: 400;
  margin: 0;
}

.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: 3.5rem 0;
}

.content-wraper h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 500;
  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: 21px;
  font-size: 12px;
  color: #A4A4A4;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.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: #FBFBFB;
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid #E8E8E8;
}

.productNav figure {
  background: #FFFFFF;
  /* border-radius: 10px; */
  padding: 0.91rem 0;
  margin: 0.7rem 0;
  border: 2px solid #DBDBDB;
  border-radius: 15px;
}

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

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

.rating-box {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.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(--theme-color);
  font-weight: 500;
  padding-left: 0.5rem;
}

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

.quantitySec h4 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.quantitySec .number {
  padding: 0;
  font-size: 1rem;
}

.quantitySec .number .minus {
  background: #F7F6FB;
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #CCCCCC;
  border-radius: 7px;
  padding: 0;
  cursor: pointer;
}

.quantitySec .number .plus {
  background: #F7F6FB;
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #CCCCCC;
  border-radius: 7px;
  padding: 0;
  cursor: pointer;
}

.quantitySec .number input {
  width: 60px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #282828;
}

.number {
  background: transparent;
  padding: 1rem 0;
  border: 0;
  border-radius: 7px;
  width: 100%;
  color: #282828;
  display: flex;
  align-items: center;
}

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

.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%;
  height: 77px;
  object-fit: contain;
}

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

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

.productSlider-for figure img {
  height: 459px;
}

.productSlider-for figure {
  margin: 0 0 1.2rem;
  border: 1px solid #DBDBDB;
  border-radius: 15px;
  padding: 3rem 0;
}

.productSlider-nav .swiper-slide.swiper-slide-next figure {
  border-color: #2C7B76;
}

.cardbutton .themeBtn {
  background: var(--theme-color);
}

.cardbutton {
  margin-top: 2rem;
}

.reviewImg figure {
  width: 135px;
  height: 135px;
  background: #E1E1E1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.reviewImg figure img {
  width: fit-content;
}

.star-review {
  display: flex;
  align-items: center;
  margin: 20px 0 15px;
  color: #F5AA27;
  gap: 5px;
}

.reviewImg+hr+h2.sectionHeading {
  font-size: 2.25rem;
  color: var(--black);
  margin: 2rem 0 1rem;
}

.reviewSec .themeBtn.mt-3 {
  background: var(--theme-color);
}

.product-heading {
  margin: 1.5rem 0;
  font-size: 3.4375rem;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}


/* product detail css end */


/* cart css start */

.cart-list ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #DCDCDC;
  border-radius: 15px;
  position: relative;
}

.cart-list ul li {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cart-list ul li figure {
  width: 222px;
  height: 214px;
  border: 1px solid #DCDCDC;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-list ul li figure img {
  width: fit-content;
}

.cart-list ul li h4 {
  color: var(--black);
  width: 180px;
  line-height: 2.3rem;
  margin: 0 0 0.8rem;
}

.cart-list ul li h5 {
  font-size: 1.5625rem;
  color: var(--theme-color);
  font-weight: 600;
  margin: 0;
}

.cart-list .quantitySec .number {
  background: #F7F6FB;
  border: 1px solid #CCCCCC;
}

.cart-list .quantitySec .number .minus {
  border: 0;
  background: transparent;
  border-radius: 0;
}

.cart-list .quantitySec .number .plus {
  border: 0;
  background: transparent;
  border-radius: 0;
}

.cart-list .quantitySec {
  padding-right: 4rem;
}

.cart-list .quantitySec h6 {
  font-size: 1.25rem;
  margin: 0 0 20px;
}

.cart-list div {
  position: relative;
}

.cart-list div button.close {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  background: var(--primary);
  opacity: 1;
  text-shadow: unset;
  color: var(--white);
  font-size: 15px;
  border-radius: 5px;
}

.cart-list div+div {
  margin-top: 1.5rem;
}

.cart-total {
  border-top: 1px solid #CCCCCC;
  margin-top: 1.5rem;
  padding-top: 2.5rem;
}

.cart-total h4 {
  font-size: 1.875rem;
  display: flex;
  align-items: flex-end;
  margin: 0 0 10px;
  gap: 15px;
}

.cart-total h4 small {
  font-size: 15px;
  color: #282828;
}

.cart-total p {
  font-size: 22px;
  color: #282828;
  font-weight: 500;
  font-style: italic;
  margin: 0 0 1.5rem;
  width: 62%;
  line-height: 2.25rem;
}

.cart-total .themeBtn {
  background: var(--primary);
}


/* cart css end */


/* checkout css start */

.check-out-form .primary-heading {
  margin-bottom: 40px;
  font-size: 3.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
}

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

.check-out-form p {
  font-size: 1.375rem;
  margin-bottom: 15px;
  font-weight: 500;
  color: #6B6B6B;
  font-family: "Jost", sans-serif;
}

.check-out-form .checkout-subheading a {
  color: #388980;
  font-weight: 600;
}

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

.check-out-form form label {
  font-size: 1rem;
  text-transform: capitalize;
  color: #0F0F0F;
  font-weight: 500;
}

.check-out-form .form-control {
  min-height: 60px;
  margin-bottom: 26px;
  /* box-shadow: 7px 6px 15px 0px #d2d2d2; */
  border: 1px solid #ebebeb;
  border-radius: 10px;
  background: #EEEEEE;
}

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

.check-out-section input[type="checkbox"]+label {
  display: block;
  position: relative;
  padding-left: 45px;
  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: 30px;
  height: 30px;
  border: 2px solid #2C7B76;
  position: absolute;
  left: 0;
  top: 0px;
  opacity: .6;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
  bottom: 0;
  margin: auto;
}

.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: #2D2E37;
  font-weight: 400;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  font-size: 1.25rem;
}

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

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

.chkot-pag .primary-heading {
  margin-bottom: 15px;
  text-align: left !important;
}

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

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

.order-summery input.form-control {
  margin-bottom: 10px;
  box-shadow: none;
  background: #EEEEEE;
  padding: 0 20px;
}

.d-btn {
  border-radius: 5px;
  background-color: #388980;
  font-size: 20px;
  color: #ffffff;
  display: inline-block;
  padding: 16px 88px;
  text-transform: uppercase;
  transition: 0.7s;
}

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

.order-summery .d-btn {
  padding: 14px 88px;
  background: var(--primary);
  font-size: 1rem;
  font-weight: 600;
}

.check-out-section.chkot-pag {
  border-top: 1px solid rgb(112 112 112 / 50%);
  padding-top: 3rem;
}

.check-out-section.chkot-pag hr {
  border-color: #707070;
  margin-top: 3rem;
}

.order-summery .themeBtn {
  background: var(--primary);
  font-size: 1rem;
  border: 0;
  font-weight: 600;
  text-align: center;
}

.order-summery .d-btn:hover {
  background: var(--theme-color);
  color: var(--white);
}

.order-summery .themeBtn:hover {
  background: var(--primary);
  color: var(--white);
}


/* checkout css end */


/* payment  */

.check-out-section.payment-page {
  border-top: 1px solid rgb(112 112 112 / 50%);
  padding: 6rem 0;
}

.check-out-section input[type="checkbox"]+label:last-child {
  padding-left: 50px;
}

.check-out-section.payment-page .form-group label {
  font-size: 1rem;
  color: #0F0F0F;
  text-transform: capitalize;
  font-weight: 500;
}

.check-out-section.payment-page .form-group .form-control {
  border-radius: 0;
}

.check-out-section.payment-page .checkOne h5 {
  font-size: 1.25rem;
  color: #2D2E37;
  text-transform: uppercase;
  margin: 0;
}

.check-out-section.payment-page .checkOne {
  font-size: 1.125rem;
  color: #2D2E37;
  font-weight: 400;
}

.check-out-section.payment-page .themeBtn.w-100 {
  font-size: 1rem;
  border: 0;
  margin-top: 2rem;
  background: var(--theme-color);
}

ul.payment-card {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin: 0 0 4rem;
}

ul.payment-card li input {
  width: 28px;
  height: 28px;
  margin: auto;
}

ul.payment-card li label {
  margin: 0;
}

ul.payment-card li {
  display: flex;
  align-items: center;
  gap: 20px;
}


/* payment  */



/* community page css start  */

.community-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid rgba(215, 16, 0, 0.2);
}

.section-title {
  color: var(--primary);
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.tagline {
  color: #444;
  font-size: 1.3rem;
  font-weight: 400;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.community-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--primary);
  transition: transform 0.3s, box-shadow 0.3s;
}

.community-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-title {
  color: var(--black);
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px dashed rgba(215, 16, 0, 0.3);
  display: flex;
  align-items: center;
}

.card-title i {
  margin-right: 10px;
  color: var(--primary);
}

.discussion-item,
.member-item,
.event-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #eee;
  transition: all 0.2s;
}

.discussion-item:hover,
.member-item:hover,
.event-item:hover {
  background-color: rgba(215, 16, 0, 0.05);
  border-color: var(--primary);
}

.discussion-title {
  color: var(--black);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.meta-info {
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.replies-count {
  background-color: rgba(215, 16, 0, 0.1);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.preview {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.member-name,
.event-name {
  color: var(--black);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.member-location,
.event-details {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.member-location i,
.event-details i {
  color: var(--primary);
  margin-right: 5px;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.tag {
  background-color: rgba(215, 16, 0, 0.1);
  color: var(--primary);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.tag:hover {
  background-color: var(--primary);
  color: #fff;
  cursor: pointer;
}

.forum-post {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  margin-top: 40px;
  border: 2px solid rgba(215, 16, 0, 0.2);
}

.post-title {
  color: var(--black);
  font-size: 1.8rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}

.post-meta {
  display: flex;
  justify-content: space-between;
  color: #666;
  margin-bottom: 25px;
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 10px;
}

.post-content {
  background-color: #fafafa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  line-height: 1.7;
}

.comments-section {
  margin-top: 25px;
}

.comment {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  border-left: 4px solid var(--primary);
}

.comment-author {
  color: var(--black);
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.comment-author i {
  margin-right: 8px;
  color: var(--primary);
}

.comment-moderator {
  background-color: rgba(215, 16, 0, 0.05);
  border-left-color: #000;
}

.comment-text {
  color: #444;
  line-height: 1.6;
}

.community-cta {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background: linear-gradient(135deg,
      rgba(215, 16, 0, 0.1) 0%,
      rgba(215, 16, 0, 0.25) 100%);
  border-radius: 10px;
}

.cta-title {
  color: var(--black);
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary);
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(215, 16, 0, 0.4);
}

.cta-button:hover {
  background-color: #a80c00;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(215, 16, 0, 0.6);
}

/* community css end  */

/* Terms & Condition Css Start */

/* Last Updated */
.last-updated {
  background-color: rgba(215, 16, 0, 0.08);
  color: var(--black);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 30px;
  border-left: 5px solid var(--primary);
}

.last-updated strong {
  font-weight: 700;
  color: var(--primary);
}

/* Main Content */
.terms-content {
  background-color: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.section-title {
  color: var(--black);
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(215, 16, 0, 0.3);
  display: flex;
  align-items: center;
}

.section-title i {
  margin-right: 15px;
  color: var(--primary);
}

.section-content {
  color: #444;
  font-size: 1.05rem;
}

.section-content p {
  margin-bottom: 15px;
}

.section-content ul,
.section-content ol {
  margin-left: 25px;
  margin-bottom: 20px;
}

.section-content li {
  margin-bottom: 10px;
}

/* Highlight Box */
.highlight {
  background-color: rgba(215, 16, 0, 0.06);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  margin: 20px 0;
}

.highlight-title {
  color: var(--black);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* Definition Box */
.definition {
  background-color: #fafafa;
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
  border: 1px solid #eee;
}

.definition-term {
  font-weight: 700;
  color: var(--primary);
}

/* Acceptance Box */
.acceptance-box {
  background: linear-gradient(135deg,
      rgba(215, 16, 0, 0.08) 0%,
      rgba(215, 16, 0, 0.2) 100%);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  margin: 40px 0;
  border: 2px solid rgba(215, 16, 0, 0.3);
}

.acceptance-title {
  color: var(--black);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

/* Checkbox */
.checkbox-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
}

/* .custom-checkbox {
  width: 24px;
  height: 24px;
  border: 2px solid var(--primary);
  border-radius: 4px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
} */

.custom-checkbox.checked {
  background-color: var(--primary);
}

.custom-checkbox.checked i {
  color: #fff;
  font-size: 0.9rem;
}

/* Continue Button */
.continue-button {
  background-color: var(--primary);
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(215, 16, 0, 0.4);
  display: inline-flex;
  align-items: center;
}

.continue-button:hover {
  background-color: #a80c00;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(215, 16, 0, 0.6);
}

.continue-button:disabled {
  background-color: #9e9e9e;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.continue-button i {
  margin-left: 10px;
}

/* Terms & Condition Css End  */



/* Privacy Policy Page Start  */
.last-updated {
  background-color: rgba(215, 16, 0, 0.08);
  color: var(--black);
  padding: 12px;
  text-align: center;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(215, 16, 0, 0.25);
}

.section {
  margin-bottom: 30px;
}

.section h2 {
  color: var(--black);
  font-size: 1.4rem;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(215, 16, 0, 0.2);
  display: flex;
  align-items: center;
}

.section h2 i {
  margin-right: 10px;
  color: var(--primary);
}

.section p {
  margin-bottom: 10px;
  color: #444;
}

.section ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.section li {
  margin-bottom: 8px;
  color: #444;
}

/* Highlight box */
.highlight {
  background-color: rgba(215, 16, 0, 0.06);
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
  border-left: 4px solid var(--primary);
}

/* Footer */
.footer {
  background-color: rgba(215, 16, 0, 0.05);
  padding: 25px 30px;
  text-align: center;
  border-top: 1px solid rgba(215, 16, 0, 0.25);
}

.contact-info {
  margin-top: 15px;
  color: #555;
}

.contact-info a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Back Button */
.back-btn {
  display: inline-block;
  background-color: var(--primary);
  color: #fff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 15px;
  transition: all 0.3s;
}

.back-btn:hover {
  background-color: #a80c00;
}

/* Privacy Policy Page End  */


/* Help & Center FAQ Pages Css Start  */
.help-sec .content {
  padding: 30px 0;
}

/* Quick Links */
.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.link-card {
  background: rgba(215, 16, 0, 0.06);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
  border: 2px solid rgba(215, 16, 0, 0.25);
  text-decoration: none;
  color: #333;
}

.link-card:hover {
  transform: translateY(-5px);
  background: rgba(215, 16, 0, 0.12);
}

.link-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.link-card h3 {
  color: var(--black);
  margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
  margin-top: 40px;
}

.faq-section h2 {
  color: var(--black);
  font-size: 1.8rem;
  margin-bottom: 25px;
  text-align: center;
}

/* FAQ Item */
.faq-item {
  margin-bottom: 15px;
  border: 1px solid rgba(215, 16, 0, 0.25);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  background: rgba(215, 16, 0, 0.06);
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--black);
}

.faq-question i {
  transition: transform 0.3s;
  color: var(--primary);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  background: #fff;
}

.faq-answer.active {
  padding: 20px;
  max-height: 500px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}


/* Help & Center FAQ Pages Css End  */

/* how it works start */

.modal-header {
    background-color: #000 !important;
    color: #fff !important;
    border-bottom: 3px solid #d71000 !important;
}

#howItWorksModal .modal-title {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#howItWorksModal .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

#howItWorksModal ol li strong {
    color: #d71000;
}

.btn-pans-up {
    background-color: #d71000 !important;
    border-color: #d71000 !important;
    color: #fff !important;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.btn-pans-up:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

#howItWorksModal .modal-footer {
    border-top: 1px solid #eee;
}

/* Custom Tabs Styling */
.recipe-tabs .nav-link {
  color: #adb5bd;
  font-weight: 600;
  border: none;
  background: transparent;
  margin: 0 15px;
  padding: 10px 0;
  position: relative;
  font-size: 22px;
}

.recipe-tabs .nav-link:hover {
  color: #6c757d;
}

.recipe-tabs .nav-link.active {
  color: #000;
  background-color: transparent;
  border-bottom: 2px solid #000;
  font-size: 22px;
  font-weight: 500;
}

/* Card Styling */
.recipe-card .img-wrapper {
  border-radius: 1.25rem;
}

.recipe-card .card-img-top {
  width: 100%;
  /* height: 250px; */
  /* object-fit: cover; */
  transition: transform 0.3s ease;
}

.recipe-card:hover .card-img-top {
  transform: scale(1.05);
}

/* Badges & Buttons over Image */
.badge-rating {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-like {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-like:hover {
  background: #f8f9fa;
}

/* Typography */
.recipe-card .card-title {
  font-size: 25px;
  line-height: 1.4;
  color: #111;
}

.text-danger {
  color: #e63946 !important;
  /* Custom reddish-orange */
}

.meta-info img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

.meta-info span {
  font-size: 0.85rem;
  white-space: nowrap;
}

.challenge-section {
  background-color: #ffffff;
}

.challenge-card {
  background-color: #F8F3EF;
  /* Light cream beige fallback */
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.8;
}

.content-wrapper {
  z-index: 1;
  width: 100%;
}

.challenge-text {
  /* font-family: 'Open Sans', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; */
  font-size: 1rem;
  line-height: 1.8;
  color: #2c2c2c;
  font-weight: 500;
}

.btn-post-recipe {
  background-color: #cc1e1e;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 30px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-post-recipe:hover {
  background-color: #a81515;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .challenge-card {
    padding: 40px 15px;
  }

  .challenge-text {
    font-size: 14px;
  }
}


.whereSec .swiper-button-prev:after,
.whereSec .swiper-button-next:after {
  font-family: 'Font Awesome 5 Pro';
  font-size: 28px;
}

.whereSec .swiper-button-prev:after {
  content: '\f177';
}

.whereSec .swiper-button-next:after {
  content: '\f178';
}

.whereSec .swiper-button-next,
.whereSec .swiper-button-prev {
  background: var(--primary);
  width: 55px;
  height: 55px;
  color: var(--white);
  border-radius: 50px;
  top: 50%;
  transition: 0.5s ease-in-out;
}

.whereSec .swiper-button-next:hover,
.whereSec .swiper-button-prev:hover {
  background: var(--secondary);
  color: var(--white);
}

.whereSec .swiper-button-next {
  right: 9rem;
}

.whereSec .swiper-button-prev {
  left: 9rem;
}

.whereSec .recipe-card .card-title {
  border-bottom: unset;
  margin-bottom: 0;
}

.jan-wraps h3 {
  font-size: 42px;
  font-weight: 600;
  color: #212529;
  font-family: 'Oswald';
}

.jan-wraps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.jan-wraps .themeBtn {
  border: 3px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-weight: 500;
}

section.whereSec {
  padding-bottom: 3rem;
}

a.themeBtn.blackbtn {
  margin: 2rem auto;
  border: 2px solid #E4E4E7;
  background: transparent;
  color: #000;
}

a.themeBtn.blackbtn:hover {
  color:
    #fff;
}

.whereSec.jansection .row+.row {
  margin-top: 30px;
}

.recipe-section.janrecipepage1 .card-title {
  border: unset;
}

.recipe-search-form {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 6px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.recipe-search-form:focus-within {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-color: #d1d1d1;
}

.search-input {
  border: none !important;
  box-shadow: none !important;
  background: transparent;
  height: 100%;
  font-size: 14px;
  color: #555;
  padding-left: 15px;
}

.search-input::placeholder {
  color: #999;
  font-weight: 400;
}

.search-btn {
  background-color: #dc2f2f;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  min-height: 40px;
}

.search-btn:hover {
  background-color: #c02222;
  color: #fff;
}

.search-btn i {
  font-size: 14px;
}


.directions-section {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
  background-color: #fff;
}

.main-heading {
  font-weight: 700;
  font-size: 24px;
  color: #111;
}

.step-indicator {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #fdf2f2;
  /* faint red background */
  flex-shrink: 0;
}

.step-title {
  color: #E92D28;
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
}

.step-line {
  height: 1px;
  background-color: #e9ecef;
  margin-top: 4px;
  /* Optically align with text middle */
}

.step-image {
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.step-description p {
  font-size: 1rem;
  line-height: 1.7;
  color: #3F3F46;
  text-align: justify;
  margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .step-title {
    font-size: 16px;
  }

  .step-description p {
    text-align: left;
  }
}

.reviews-section {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
}

.text-light-gray {
  color: #e0e0e0;
}

.rating-stars .active {
  color: #ffc107;
  font-style: normal;
  font-size: 1.25rem;
}

.rating-stars-small span {
  font-size: 0.9rem;
}

.progress {
  background-color: #f5f5f5;
  box-shadow: none;
  border-radius: 4px;
}

.progress-bar.bg-danger {
  background-color: #d92e2e !important;
}

.media .avatar {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.nested-reply {
  border-left: 2px solid #eee;
  padding-left: 1.5rem;
  margin-top: 2rem;
}

.comment-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0.5rem;
}

.reply-btn {
  font-size: 0.75rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reply-btn:hover {
  color: #d92e2e;
  text-decoration: none;
}

.custom-input {
  background-color: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 2px;
  padding: 0.75rem;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.custom-input:focus {
  border-color: #d92e2e;
  box-shadow: none;
}

.btn-custom {
  background-color: #111;
  border: none;
  border-radius: 2px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-custom:hover {
  background-color: #333;
}

/* Interactive Stars for Form */
.interactive-stars i {
  font-style: normal;
  margin-right: 2px;
  transition: color 0.2s;
}

.interactive-stars i.hovered,
.interactive-stars i.selected {
  color: #ffc107;
}




.object-fit-cover {
  object-fit: cover;
}

.recipe-title {
  font-size: 2.5rem;
  line-height: 1.2;
}

/* Icon Colors and Typography */
.text-danger {
  color: #e74c3c !important;
}

/* Meta Data */
.recipe-meta i {
  font-size: 1.1rem;
  width: 20px;
}

/* Contact Info */
.icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #fde8e8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info small {
  line-height: 1.3;
}

/* Action Buttons */
.btn-circle {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: #eee;
  background-color: #fff;
  transition: all 0.2s ease;
}

.btn-circle:hover {
  background-color: #e74c3c;
  color: #fff !important;
  border-color: #e74c3c;
}

/* Stepper Buttons */
.btn-stepper {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border-color: #ddd;
  margin-left: 5px;
  font-weight: bold;
}

/* Custom Checkbox Styling */
.custom-control-label {
  cursor: pointer;
  padding-left: 10px;
}

.custom-control-label::before {
  border-color: #ddd;
  border-radius: 2px;
}

/* When checked, make background red */
.custom-control-input:checked~.custom-control-label::before {
  border-color: #e74c3c;
  background-color: #e74c3c;
}

/* Strikethrough effect on checked */
.custom-control-input:checked~.custom-control-label {
  text-decoration: line-through;
  color: #e74c3c;
}

.custom-control-input:checked~.custom-control-label .ing-qty,
.custom-control-input:checked~.custom-control-label .ing-name {
  color: #e74c3c !important;
}

.ing-qty {
  min-width: 80px;
  display: inline-block;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .recipe-title {
    font-size: 2rem;
  }

  .contact-info {
    display: none !important;
    /* Hide contact info on small mobile for cleaner look if needed, or stack it */
  }
}

.directions-section .row+.row {
  margin-top: 42px;
}

section.recipe-detail-section.bg-white {
  padding: 9rem 0 3rem 0;
}

section.recipe-detail-section.bg-white::before {
  position: absolute;
  content: "";
  background: #F4F4F5;
  width: 100%;
  height: 536px;
  top: -14rem;
}

body.recipepage3 header {
  position: relative;
}

body.recipepage3 .topbar {
  position: relative;
  z-index: 1;
}

                        
.card-body button {
    margin: auto;
    border: unset;
    outline: unset;
}