@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary: #6b2f09;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Montserrat", sans-serif;
}

body {
  background: white;
  color: black;
}

.container-lg,
.container-fluid {
  padding: 0 !important;
}

.row {
  margin: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

::-webkit-scrollbar-thumb {
  background-color: var(--pink);
  border-radius: 100px;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: var(--purple);
}

::-webkit-scrollbar {
  width: 0px !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

nav.navbar {
  background: linear-gradient(-90deg, #794f38 0.01%, rgb(255, 255, 255) 77.38%);
}

.nav_logo {
  width: 170px;
}

.navbar_li_options li a {
  display: inline-block;
  color: black;
  font-weight: 550;
}

.hero_section {
  width: 100%;
  height: 750px;
  background: linear-gradient(
    -90deg,
    #794f38 0.01%,
    rgba(255, 255, 255, 0.2) 77.38%
  );
}

.heading_one,
.heading_one span {
  font-weight: 700;
  font-size: 3.2rem;
}

.heading_one {
  color: var(--primary);
}

.heading_one span {
  color: black;
}

.hero_btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  text-decoration: none;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 550;
  padding: 14px 20px;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: all 0.3s linear;
  &:hover {
    font-weight: 550;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
  }
}

.right_hero_imgs img:nth-child(1) {
  width: 100%;
}

.right_hero_imgs img:nth-child(2) {
  width: 100%;
}

.hero_h5 {
  position: absolute;
  top: -6%;
  right: 10%;
  z-index: 1;
  color: black;
  transform: scale(0.9);
}

.about_img {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.about_section,
.choose_section,
.category_section,
.mission_section,
.innovation_section {
  width: 100%;
  max-width: 1920px;
}

.heading_two {
  color: var(--primary);
}

.category_tab {
  background: linear-gradient(180deg, #7b513a 0%, #ffffff 85.54%);
}

.category_img_btn.active {
  background: var(--primary);
  border: 2px solid white;
}

.category_img_btn {
  border: 2px solid transparent;
  padding: 8px;
  background: white;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  color: white;
  max-width: 260px;
  width: 100%;
  border-radius: 13px;
  transition: all 0.2s linear;
  &:hover {
    transform: scale(1.08);
  }
}

.category_img_btn img {
  width: 80px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  border: 2px solid var(--primary);
}

.category_img_btn.active span.title,
.category_img_btn.active span.content {
  color: white;
}

.category_img_btn span.title {
  font-size: 17px !important;
  font-weight: 650;
  color: black;
  text-align: start;
}

.category_img_btn span.content {
  font-size: 14px !important;
  font-weight: 500;
  text-align: start;
  color: rgb(79, 78, 78);
}

.brown_bag_img {
  position: absolute;
  top: -100px;
  left: -4%;
  width: 15%;
  transform: rotate(-25deg);
}

.category_product_card {
    background:whitesmoke;
  flex: 1;
  transition: flex 0.3s ease;
  overflow: hidden;
  border-radius: 15px;
}

.category_product_card img {
  width: 100%;
  height: 350px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.category_product_card:hover {
  flex: 1.6;
}

.category_product_card span {
  color: black;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}

.category_product_card .title_and_btn {
  opacity: 1;
  /*changed opacity from 0 to 1*/
  /*transform: translateY(40px);*/
  transition: all 0.2s linear;
}

.category_product_card:hover .title_and_btn {
  opacity: 1;
  transform: translateY(0);
}

.view_prod_btn {
  display: inline-block;
  color: white;
  background: var(--primary);
  border-radius: 10px;
  font-weight: 550;
  font-size: 14px;
  padding: 10px 20px;
  text-decoration: none;
  text-align: center;
}

.brown_bag_img_about {
  width: 16%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.straw_cup {
  width: 10%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}

.heading_box img {
  width: 2%;
}

.mix_heading_color {
  color: var(--primary);
}

.mix_heading_color span {
  color: black;
}

.openBox {
  position: absolute;
  top: 7%;
  right: 0;
  z-index: 0;
  width: 12%;
}

.choose_card {
  border: 2px solid var(--primary);
  border-radius: 15px;
  height: 100%;
}

.choose_card img {
  width: 60px;
  aspect-ratio: 1/1;
  object-fit: contain;
  object-position: center;
}

.footer_img {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  height: 500px;
}

.learn_more_btn {
  background: transparent;
  display: inline-block;
  color: #6b2f09;
  border: 2px solid #6b2f09;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 25px;
  border-radius: 10px;
}

.testimonial_card {
  background: linear-gradient(180deg, #794f38 27.8%, #ffffff 94.07%);
  border-radius: 20px;
}

.testimonial_card .user_svg {
  position: relative;
}

.testimonial_card .user_svg svg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial_card .user_svg svg {
  border-radius: 100%;
  border: 6px solid white;
  background: white;
}

.testimonial_card .rating {
  width: 150px;
}

.text-justify {
  text-align: justify;
  text-wrap-style: stable !important;
}

.accordion-button:focus {
  box-shadow: none !important;
  background: transparent !important;
  color: black !important;
}

.accordion-item {
  border: 2px solid #6b2f09 !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  padding: 15px !important;
}

.accordion-button:not(.collapsed) {
  background: transparent !important;
}

.accordion-button::after {
  content: none !important;
}

.accordion-header button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

footer {
  background: var(--primary);
}

.footer_logo {
  width: 150px;
  filter: brightness(50);
}

svg {
  flex: none !important;
}

.form-control:focus {
  box-shadow: none !important;
}

.bannerImg {
  height: 500px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.banner_overly {
  background: linear-gradient(
    90.01deg,
    #794f38 0.01%,
    rgba(255, 255, 255, 0.2) 77.38%
  );
}

.square_img {
  object-fit: cover;
  aspect-ratio: 1/1;
  object-position: center;
  width: 100%;
}

.square_box {
  aspect-ratio: 1/1;
  border-radius: 15px;
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 560px;
  background: linear-gradient(180deg, #794f38 0%, #a47d68 100%);
  display: flex;
  justify-content: center;
  align-items: end;
}

.social_div {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  z-index: 1;
}

.icons_social {
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s linear;
  &:hover {
    background: var(--primary);
  }
}

.icons_social svg {
  width: 25px;
  height: 25px;
}

.icons_social svg path {
  transition: all 0.2s linear;
  fill: #6b2f09;
}

.icons_social:hover svg path {
  fill: white;
}

.all_prod_card {
  transition: all 0.2s linear;
  &:hover {
    transform: scale(0.95);
  }
}

.all_prod_card img.product {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.whatsapp_icon {
  position: absolute;
  top: 50%;
  right: 4%;
}

.whatsapp_icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: all 0.2s linear;
}

.whatsapp_icon:hover img {
  transform: scale(1.1);
}

.product_full_img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.2s linear;
  /* &:hover {
    object-fit: contain;
  } */
}

.whatsapp_enquiry {
  border: 2px solid black;
  border-radius: 40px;
  height: 100%;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.whatsapp_enquiry img {
  width: 30px;
  aspect-ratio: 1/1;
  object-fit: contain;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove the spin buttons in Firefox */
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.swiper-slide{
  user-select: none;
}

.ol_parent ol{
    display:flex;
    flex-direction:column;
    gap:15px;
}