.About_Info {
  margin: 50px 0px;
  /* background-color: #f6eedc; */
  /* background-image: url("/public/assets/images/about_us/about_Info/about_Info_bg.png"); */
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}

.About_Info .core-title {
  margin-top: 20px;
}

.About_Info .subheading {
  font-size: 15px;
  letter-spacing: 4px;
  color: #202020;
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
  font-family: Gotham;
}
.About_Info .core-title .subheading::before {
  content: "";
  width: 60px;
  height: 1px;
  background-color: #405e11;
  position: absolute;
  top: 50%;
  right: 110%;
  transform: translateY(-50%);
}

/* Right line */
.About_Info .core-title .subheading::after {
  content: "";
  width: 60px;
  height: 1px;
  background-color: #405e11;
  position: absolute;
  top: 50%;
  left: 110%;
  transform: translateY(-50%);
}

.About_Info .core-title .heading {
  font-size: 32px;
  font-weight: 700;
  color: #202020;
}

.About_Info.heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 48px;
  font-weight: 700;
  color: #222;
  font-family: "Playfair Display", serif;
}

.About_Info .heading_logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-left: 10px;
    margin-bottom: 20px;
}
.About_Info .About_Info .text_holder {
  width: 80%;
  margin: 0px auto;
  height: 100%;
  border-radius: 10px;
  padding: 30px;
}

.About_Info .text_holder p {
  color: #000 !important;
}

.About_Info .text_holder p {
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  color: #3a0a0abf;
  opacity: 1;
}

.About_Info.fadeInLeft {
  animation: fadeLeftAnim 0.9s ease forwards;
}

.About_Info .text_holder .welcome_div {
  background: transparent !important;
}

.About_Info .text_holder .why_shop_with_us_div {
  background: transparent !important;
}

.About_Info .abtbg {
    /* background-image: url('../../../../public/assets/images/about_us/about_Info/brand-journey-bg.jpg'); */
}

@keyframes fadeLeftAnim {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (min-width: 0px) and (max-width: 991px) {
  .About_Info {
    margin: 30px 0px;
    background-size: contain;
  }

  .About_Info .text_holder {
    width: 100%;
  }

  .About_Info .text_holder {
    padding: 10px;
}

  .About_Info .text_holder p {
    font-size: 13px !important;
    text-align: justify !important;
  }
}