@import url("https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --theme-primary: #64be44;
  --theme-secondary: #cf2289;
  --theme-hover-color: #45a224;
  --theme-beryl-black: #32262a;
  --theme-gray: #414141;
  --theme-gray1: #64748b;
  --theme-dark-gray: #0f172a;
  --theme-red: #ef4444;
  --theme-orange: #ffb900;
  --theme-border: #dbdbdb;
  --theme-font-family: "Public Sans", sans-serif;
  /* --theme-poppins-family: "Poppins", sans-serif; */
}
* {
  margin: 0;
  box-sizing: border-box;
}
*,
::after,
::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
html {
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}
body {
  color: var(--bs-text-shed);
  transition: 0.35s;
  overflow-x: hidden;
  width: 100vw;
  padding: 0 !important;
  margin: 0 !important;
  font-weight: 400;
  font-family: var(--theme-font-family);
}
.v-center {
  align-items: center;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
a,
button {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: none;
  outline: 0;
  transition: 0.5s all ease-in-out;
  font-family: var(--theme-font-family);
}
p {
  font-family: var(--theme-font-family);
}
.slow-effect {
  transition: 0.5s all ease-in-out;
}
.theme-primary-bg {
  background: var(--theme-primary);
}
.theme-secondary-bg {
  background: var(--theme-secondary);
}
.theme-bg-beryl {
  background: var(--theme-beryl-black);
}
.theme-primary-color {
  color: var(--theme-primary);
}
.theme-secondary-color {
  color: var(--theme-secondary);
}
.theme-dander-color {
  color: var(--theme-red);
}
.theme-gray {
  color: var(--theme-gray);
}
.theme-gray1 {
  color: var(--theme-gray1);
}
.theme-orange {
  color: var(--theme-orange);
}
.theme-dark-gray {
  color: var(--theme-dark-gray);
}
.fw-300 {
  font-weight: 300;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.fw-800 {
  font-weight: 800;
}
.fw-900 {
  font-weight: 900;
}
/*--- font size ---*/
.fs-12 {
  font-size: 12px;
}
.fs-13 {
  font-size: 13px;
}
.fs-14 {
  font-size: 14px;
}
.fs-15,
.fs-16 {
  font-size: 15px;
}

.fs-18 {
  font-size: 16px;
}
.fs-20 {
  font-size: 17px;
}
.fs-26 {
  font-size: 22px;
}
.fs-30 {
  font-size: 24px;
}
.fs-50 {
  font-size: 28px;
}
.fs-70 {
  font-size: 30px;
}
.z_index {
  z-index: 1;
}
p {
  color: var(--theme-gray);
}
.public-font {
  font-family: var(--theme-public-family);
}
.section-padding {
  padding: 60px 0;
}
.common-top-space {
  margin-top: 25px;
}
.heading-space {
  margin-bottom: 26px;
}
.common-gap {
  gap: 25px 0;
}
.section-text {
  font-size: 18px;
  margin: 10px 0;
}
/*==== Common Button ====*/
/* Btn Style One */
.common-btn {
  position: relative;
  font-size: 16px;
  overflow: hidden;
  text-align: center;
  border-radius: 7px;
  padding: 10px 15px;
  display: inline-block;
}
.secondary-btn {
  color: #fff;
  background-color: var(--theme-secondary);
  background-image: var(--theme-secondary);
}
.primary-btn {
  color: #fff;
  background-color: var(--theme-primary);
  background-image: var(--theme-primary);
}
.common-btn:before {
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: -200%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
  background: var(--theme-hover-color);
}
.common-btn:hover:before {
  top: -40%;
}
.common-inner-btn {
  position: relative;
  z-index: 1;
  float: left;
  overflow: hidden;
  display: inline-block;
}
.btn-static-text {
  position: relative;
  display: block;
  color: var(--white-color);
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.common-btn:hover .btn-static-text:first-child {
  -webkit-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
}
.btn-hover-text {
  position: absolute;
  top: 100%;
  display: block;
  color: var(--white-color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.common-btn:hover .btn-hover-text {
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  left: 0;
  right: 0;
}
/*==============================*/
.button-style-one {
  font-size: 16px;
  font-weight: 600;
  padding: 4px 22px;
  padding-right: 4px;
  border-radius: 38px;
  display: inline-block;
  letter-spacing: -0.01em;
  color: #fff;
  background: var(--theme-primary);
  gap: 10px;
  position: relative;
  overflow: hidden;
  width: fit-content;
}
.button-style-one:hover {
  color: #fff;
}
.btn-text-box {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-block;
}
.button-style-one::before {
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: -200%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
  background: var(--theme-hover-color);
}
.button-style-one:hover::before {
  top: -40%;
}
.btn-static-text {
  position: relative;
  display: block;
  transition: 0.3s;
  transform: translateY(-1px);
}
.button-style-one:hover .btn-static-text {
  -webkit-transform: translateY(-150%);
  transform: translateY(-150%);
}
.button-style-one .btn-hover-text {
  position: absolute;
  top: 100%;
  display: block;
  transition: 0.3s;
  transform: translateY(-1px);
}
.button-style-one:hover .btn-hover-text {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.arrow-bg-box {
  position: relative;
  overflow: hidden;
  height: 38px;
  width: 38px;
  line-height: 38px;
  border-radius: 50%;
  margin-left: 2px;
  text-align: center;
  display: inline-block;
  background-color: #fff;
  z-index: 1;
}
.btn-style-one-arrow {
  transform: translateY(-2px);
  position: absolute;
  bottom: 11px;
  left: 12px;
  transition: all 0.2s ease-out;
  color: #000;
  font-size: 16px;
  transform: none;
}
.button-style-one:hover .btn-style-one-arrow:first-child {
  transform: translateX(30px);
}
.btn-style-one-arrow:last-child {
  left: -12px;
  bottom: 11px;
  transform: translate(0, 0);
  opacity: 0;
  color: var(--theme-hover-color);
}
.button-style-one:hover .btn-style-one-arrow:last-child {
  transform: translateX(24px);
  opacity: 1;
}
/*==== Header Section ====*/
/*--- header top bar ---*/
.inner-top-bar {
  padding: 12px 0;
}
.top-bar-links {
  flex: 0 0 57%;
}
.top-bar-links ul {
  gap: 10px 30px;
}
.top-bar-links a,
.top-bar-contact a {
  color: #fff;
  text-decoration: underline transparent;
}
.top-bar-links a:hover,
.top-bar-contact a:hover {
  color: #fffb01;
  text-decoration: underline;
}
.top-bar-contact {
  flex: 0 0 43%;
  display: flex;
  justify-content: flex-end;
}
/*==== Header Middle bar ====*/
/*--- Header menu ---*/
.header .menu > ul > li {
  display: inline-block;
}
.header .menu > ul > li > a {
  font-size: 14px;
  color: var(--theme-dark-gray);
  position: relative;
  transition: color 0.3s ease;
  padding: 17px 0;
  display: block;
}
.header .menu > ul > li > a:hover {
  color: var(--theme-hover-color);
}
/*--- Header Sub Menu ---*/
.header .menu > ul > li .sub-menu {
  position: absolute;
  z-index: 500;
  background-color: #ffffff;
  padding: 10px;
  transition: all 0.5s ease;
  margin-top: 25px;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  border: 1px solid #dbe1e8;
  box-shadow: 0 2px 13px -7px rgba(19, 19, 22, 0.23);
}
.sub-menu.single-column-menu::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  margin: -10px 0 0 4px;
  top: 0;
}
.header .menu > ul > li .sub-menu > ul > li {
  line-height: 1;
}
.header .menu > ul > li .sub-menu > ul > li > a {
  display: block;
  padding: 12px 26px 12px 15px;
  font-size: 16px;
  color: var(--theme-beryl-black);
  background: #f8f9fd;
  margin-bottom: 10px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.header .menu > ul > li .sub-menu > ul > li > a:hover {
  padding: 12px 10px 12px 20px;
  color: #fff;
  background: var(--theme-primary);
}
.header .menu > ul > li .sub-menu > ul > li > a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background: #fff;
  top: 19px;
  inset-inline-start: 0;
  transition: all 0.3s ease-in-out 0s;
}
.header .menu > ul > li .sub-menu > ul > li > a:hover::before {
  width: 12px;
}
.sub-menu a i {
  position: absolute;
  right: 10px;
  transition: 0.5s all ease-in-out;
}
.header .menu > ul > li .sub-menu > ul > li > a:hover i {
  right: -18px;
}
.header .menu > ul > li .single-column-menu {
  min-width: 215px;
  max-width: 260px;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li {
  line-height: 1;
  display: block;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
  padding: 10px 0;
  display: inline-block;
  font-size: 15px;
  color: #555555;
  transition: color 0.3s ease;
}
.header .menu > ul > li .sub-menu.mega-menu {
  left: 50%;
  transform: translateX(-50%);
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
  flex: 0 0 25%;
  padding: 0 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title {
  font-size: 16px;
  color: #ea4636;
  font-weight: 500;
  line-height: 1;
  padding: 10px 0;
}
.header
  .menu
  > ul
  > li
  .sub-menu.mega-menu-column-4
  > .list-item.text-center
  .title {
  text-align: center;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img {
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
  margin-top: 10px;
  height: 300px;
  object-fit: cover;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover {
  color: #ea4636;
}
/*--- header logo area ---*/
.header-logo {
  position: relative;
  z-index: 1;
  flex: 0 0 30%;
}
.logo-image a {
  font-size: 30px;
  color: #000000;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.logo-image img {
  width: 100px;
}
/*--- header middle right area ---*/
.header-middle-right {
  flex: 0 0 70%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}
.header-international-link {
  color: #fff;
  font-size: 14px;
}
.header-international-link:hover {
  color: var(--theme-hover-color);
}
.distributor-btn.common-btn {
  padding: 13px 11px;
  font-size: 13px;
  margin: 0 6px;
}
.header-heart-link i {
  font-size: 24px;
  color: #fff;
}
.header-wish-count {
  background: var(--theme-secondary);
  color: #fff;
  width: 16px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 10px;
  height: 16px;
  top: -6px;
  right: -6px;
  font-weight: 600;
  min-width: 16px;
}
.header-cart-link i {
  font-size: 24px;
  color: #fff;
}
.header-heart-link i:hover,
.header-cart-link i:hover {
  color: var(--theme-hover-color);
}
.header-card-count {
  background: var(--theme-secondary);
  color: #fff;
  width: 16px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 10px;
  height: 16px;
  top: 0px;
  right: -3px;
  font-weight: 700;
  min-width: 16px;
}
/* banner section */
.mobile-menu-head {
  display: none;
}
/* .mobile-menu-head,
.mobile-menu-trigger {
  display: none;
} */
/*======== Cart Popup =======*/
.cart-btn {
  border: none;
  background: transparent;
  font-size: 20px;
  position: relative;
}
.cart-popup {
  position: absolute;
  top: 0%;
  width: 320px;
  background: #fff;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
  right: 0;
  box-shadow: 0 2px 25px -8px rgba(19, 19, 22, 0.23);
}
.cart-popup::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  margin: -10px 0 0 30px;
  right: 14px;
}
.cart-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cart-header,
.cart-footer {
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
}
.cart-footer {
  border-top: 1px solid #eee;
}
.cart-body {
  padding: 20px;
}
.cart-info {
  overflow-y: auto;
  max-height: 335px;
}
.close-cart {
  cursor: pointer;
  font-size: 20px;
  position: absolute;
  right: 13px;
  color: var(--bs-gray-500);
}
.close-cart:hover {
  color: var(--theme-gray);
}
.mini-cart-item {
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.mini-cart-image {
  min-width: 80px;
  width: 80px;
  height: 80px;
  border-radius: 7px;
}
.mini-cart-image img {
  object-fit: cover;
}
.mini-cart-item:hover .mini-cart-image img {
  transform: scale(1.1);
}
.mini-cart-product-title {
  color: #000;
}
.mini-cart-product-title:hover {
  color: var(--theme-hover-color);
}
/*==== Home Slider Main CSS ====*/
.home-slider-section {
  background: radial-gradient(
    68.09% 68.09% at 50.34% 31.91%,
    #ffffff 0%,
    #f6f1e0 100%
  );
  padding: 60px 0 50px;
}
.home-slider-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 92px;
  background: radial-gradient(
    33.7% 33.7% at 50% 66.3%,
    #fff 0%,
    #f6f1e000 100%
  );
}
.slider-heading,
.slider-text,
.button-anim,
.home-banner-info {
  opacity: 0;
  transform: translateY(60px);
}
.slider-image-area {
  opacity: 0;
  transform: translateY(100px);
}
.animate .slider-heading {
  animation: headingUp 0.8s ease forwards;
  animation-delay: 0.8s;
}
.slider-heading {
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 15px;
}
.animate .slider-text {
  animation: slideUp 0.9s ease forwards;
  animation-delay: 0.9s;
}
.animate .button-anim {
  animation: slideUp 1.2s ease forwards;
  animation-delay: 1.2s;
}
.slider-content .button-style-one {
  margin: 30px 0;
}
.animate .home-banner-info {
  animation: slideUp 1.4s ease forwards;
  animation-delay: 1.4s;
}
.single-info {
  box-shadow: 0px 4px 4px 0px #f2e3b1;
  padding: 20px;
  border-radius: 20px;
  transition: 0.5s all ease-in-out;
}
.single-info:hover {
  background: var(--theme-hover-color) !important;
  color: #fff;
}
.single-info i {
  font-size: 40px;
  color: #585857;
  transition: 0.5s all ease-in-out;
}
.single-info:hover i {
  color: #fff;
}
.animate .slider-image-area {
  animation: slideUp 1s ease forwards;
  animation-delay: 1s;
}
.image-hover-effect {
  perspective: 5000px;
}
.hover-inner-image {
  transition: transform 0.2s ease;
}
.hero-slider .hero-arrow-nav {
  visibility: hidden;
  opacity: 0;
}
.hero-slider:hover .hero-arrow-nav {
  visibility: visible;
  opacity: 1;
}
.up-down-animate {
  animation: up_down_animate 1s ease-in-out infinite alternate;
}
@keyframes up_down_animate {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(15px);
  }
}
@keyframes headingUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-arrow-nav.swiper-button-next,
.hero-arrow-nav.swiper-button-prev,
.nutrition-thumb-btn {
  background: url(../images/shapes/nav_arrow.svg);
  background-size: contain;
  width: 55px;
  height: 55px;
  top: 72%;
  transform: translateY(-50%);
  color: #000;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
}
.nutrition-thumb-btn {
  top: 50%;
}
.swiper-button-next:after,
.swiper-button-prev:after,
.nutrition-thumb-btn:after {
  color: #fff;
  font-size: 16px;
}
.hero-arrow-nav::after {
  display: none;
}
.hero-arrow-nav::before,
.nutrition-thumb-btn::before {
  content: "";
  background: var(--theme-orange);
  width: 0px;
  height: 0px;
  position: absolute;
  border-radius: 50%;
  transition: 0.5s all ease-in-out;
  opacity: 0;
}
.hero-arrow-nav:hover::before,
.nutrition-thumb-btn:hover::before {
  opacity: 1;
  width: 55px;
  height: 55px;
}
.hero-arrow-nav:hover i,
.nutrition-thumb-btn:hover i {
  color: var(--theme-red);
}
/*==== Product Section ====*/
.product-card {
  border-radius: 12px;
  background: #f6f6f6;
  transition: 0.4s;
}
.product-card:hover {
  transform: translateY(-8px);
}
.product-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
.product-image img {
  transition: transform 0.6s ease;
}
.product-card:hover img {
  transform: scale(1.08);
}
.other-product .swiper-slide {
  height: auto;
}
.badge {
  top: 15px;
  left: 15px;
  z-index: 2;
  opacity: 0;
  transform: scale(0.7);
  animation: popIn 0.4s ease forwards;
  animation-delay: 0.8s;
  border-radius: 100px;
}
.wishlist {
  top: 12px;
  right: 12px;
  background: #fff1fa;
  width: 31px;
  height: 31px;
  cursor: pointer;
  font-size: 18px;
  opacity: 0;
  transform: scale(0.7);
  animation: popIn 0.8s ease forwards;
  animation-delay: 1s;
  color: var(--theme-gray1);
}
.product-card-details {
  padding: 15px;
}
.rating-star .yo-star-fill {
  color: #ff8c00;
}
.rating-star .yo-star {
  color: #6a7282;
}
.product-total-rating {
  color: var(--theme-gray);
}
.product-title {
  color: #000;
  margin: 4px 0 10px;
  display: block;
}
.product-card:hover .product-title {
  color: var(--theme-hover-color);
}
.old-price {
  color: #918b8b;
}
.product-card-footer .common-btn {
  padding: 8px 11px;
  font-size: 14px;
}
@keyframes popIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/*==== Video section ====*/
.video-section {
  background: #fff url(../images/resources/video_bg.webp);
  background-size: cover;
  padding: 160px 0 80px;
  margin-top: -100px;
}
.video-image {
  border-radius: 50px;
}
.popup-play-btn {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  background: transparent;
}
.popup-play-btn i {
  font-size: 40px;
  color: #fff;
}
.video-content {
  max-width: 673px;
  margin-left: auto;
}
.video-text {
  margin-bottom: 26px;
}
/*--- Video section ---*/
.video-iframe {
  height: 400px;
  margin: 0 auto;
  width: 95%;
  display: flex;
}
.video-modal {
  position: fixed;
  z-index: 9;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  backdrop-filter: blur(6px);
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9999;
  background: #000000ad;
}
.video-modal.active {
  opacity: 1;
  visibility: visible;
}
.video-modal-content {
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  margin: 0 auto;
  width: 100%;
}
.video-modal.active .video-modal-content {
  transform: scale(1);
}
.video-close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  background-color: transparent;
  border: none;
}
/*==== Testimonials section ====*/
.testimonial-section {
  background: #fafafa;
  position: relative;
  padding-bottom: 100px;
}
.testimonial-slider .swiper-slide {
  height: auto;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 20px 0 32px;
  height: 100%;
  border-top: 1px solid #e2e8f080;
  box-shadow: 0px 2px 7px 0px #8280801a;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.testimonials-text .yo-quote {
  position: absolute;
  top: -16px;
  left: -24px;
  font-size: 31px;
  color: #0f172a1a;
}
.testimonials-content p {
  margin: 23px 0 30px;
  padding-left: 15px;
}
.user {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #e2e8f080;
  padding: 14px 0;
  margin-top: auto;
}
.avatar {
  width: 40px;
  height: 40px;
  background: #f1f5f9;
  min-width: 40px;
  color: var(--theme-dark-gray);
}
.trust-badge {
  display: inline-block;
  background: #6cc04a;
  color: #fff;
  padding: 8px 30px;
  border-radius: 100px;
  font-size: 13px;
  width: fit-content;
  margin: 0 auto;
}
.trust-image img {
  border: 2px solid #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  object-fit: cover;
}
.left-side-quote {
  color: #e8e6e7;
  font-size: 62px;
  position: absolute;
  left: 2%;
  transform: rotate(-12deg);
  top: 115px;
}
.right-side-quote {
  color: #e8e6e7;
  font-size: 62px;
  position: absolute;
  right: 2%;
  transform: rotate(12deg);
  bottom: 28px;
}
/*==== Why Section ====*/
.why-section {
  background: linear-gradient(180deg, #f6f1e0 0%, #fbfafa 100%);
}
.wht-bg-shape {
  margin: 0 auto;
  text-align: center;
  left: 0;
  right: 0;
  width: 100%;
  top: -40px;
}
.why-choose-box {
  display: grid;
  gap: 30px 20px;
  margin-top: 30px;
}
.choose-header {
  background: linear-gradient(90deg, #f0e4c0 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 50px 0 0 50px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.chose-icon {
  background: #ec9c3b;
  width: 63px;
  min-width: 63px;
  height: 63px;
  display: flex;
  border-radius: 50%;
  border: 4px solid #fff;
  align-items: center;
  justify-content: center;
}
.chose-icon i {
  color: #fff;
  font-size: 30px;
  transition: 0.5s all ease-in-out;
}
.choose-header:hover .chose-icon i {
  animation: toBottomFromTop 0.5s forwards;
}
.why-product-img {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}
.orbit-animate {
  animation: orbit 5s linear infinite;
}
@keyframes orbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*==== Support Section ====*/
.support-section {
  border-top: 1px solid #e1e1e1;
  padding: 60px 0;
  background: #fbfafa;
}
.support-heading {
  text-transform: uppercase;
  font-size: 20px;
  margin: 0;
}
.support-box .partner-logo {
  margin-top: 20px;
}
.partner-box {
  display: flex;
  gap: 30px 30px;
  align-items: center;
  margin-top: 30px;
}
.partner-box .partner-logo {
  position: relative;
}
.support-inner-wrapper img {
  height: 50px;
  margin-right: 15px;
}
/*==== Footer Section ====*/
.footer {
  background: #1f1317;
  padding-top: 54px;
}
.footer::before {
  content: "";
  background: url(../images/resources/footer_bg.webp);
  width: 100%;
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 0;
  opacity: 0.5;
}
.footer-logo img {
  width: 138px;
}
.footer p,
.footer a {
  color: #99a1af;
}
.footer-about-text {
  margin: 10px 0 30px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  color: #fff;
  font-size: 20px;
  backdrop-filter: blur(1px);
}
.footer-social a:hover {
  background: var(--theme-hover-color);
  transform: rotateZ(360deg) scale(1.02);
}
.widget-title {
  font-weight: 600;
  margin-bottom: 23px;
  font-size: 20px;
}
.footer-links-list a:hover {
  color: var(--theme-hover-color);
}

.footer-single-info {
  margin-bottom: 15px;
}
.footer-single-info i {
  color: var(--theme-primary);
  float: left;
  width: 30px;
  min-width: 30px;
  overflow: hidden;
  padding-top: 4px;
  font-size: 20px;
}
.footer-single-info p,
.footer-single-info a {
  font-size: 18px;
  overflow: hidden;
  display: block;
}
.footer-single-info a:hover {
  color: var(--theme-hover-color);
}
.newsletter input {
  background: #1f1a1a;
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  backdrop-filter: blur(1px);
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
}
.newsletter input::placeholder {
  color: #fff;
  opacity: 0.5;
}
.newsletter .common-btn {
  color: #fff;
  font-size: 14px;
  margin-top: 12px;
  padding: 16px;
}
.footer-newsletter-text {
  margin-bottom: 24px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  padding: 20px 0;
  font-size: 14px;
}
.footer .copyright-text {
  color: #6a7282;
}
.footer-copyright ul {
  gap: 16px 20px;
}
.footer-copyright a {
  color: #99a1af;
}
/* .footer-copyright a::before {
  content: "";
  background: #99a1af;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  left: -11px;
  top: 6px;
} */
/* .footer-copyright li:first-child a::before {
  display: none;
} */
.footer-copyright a:hover {
  color: var(--theme-hover-color);
}
.develop-link {
  color: #fff !important;
}
.develop-link:hover {
  color: var(--theme-hover-color) !important;
}
#scroll {
  position: fixed;
  right: 10px;
  bottom: 60px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--theme-secondary);
  display: none;
  cursor: pointer;
  z-index: 9;
}
#scroll span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 10px solid #fff;
}
/*==== Product slider section ====*/
.processing-section {
  height: 100% !important;
  background: radial-gradient(circle at top left, #064f3d, #01261f);
  color: #fff;
}
.processing-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.processing-slider .swiper {
  height: 100%;
}
.processing-slider .swiper-slide {
  display: flex;
  align-items: center;
}
.processing-section .swiper-slide {
  opacity: 0 !important;
}
.processing-section .swiper-fade .swiper-slide-active {
  opacity: 1 !important;
}
.processing-img {
  border-radius: 20px;
  overflow: hidden;
}
.processing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0px 8px 29px -8px #0f1312;
  border-radius: 20px;
}
.processing-content .heading-tag,
.processing-content .processing-heading,
.processing-content .desc,
.progress-line,
.processing-img,
.progress-pagination {
  opacity: 0;
}
.swiper-slide-active .processing-content .heading-tag {
  animation: moveDown 1s ease-in forwards;
  animation-delay: 0.3s;
}
.swiper-slide-active .processing-content .processing-heading {
  animation: moveDown 1s ease-in forwards;
  animation-delay: 0.5s;
}
.swiper-slide-active .processing-content .desc {
  animation: moveDown 1s ease-in forwards;
  animation-delay: 0.8s;
}
.progress-line {
  animation: moveDown 1s ease-in forwards;
  animation-delay: 0.9s;
}
.swiper-slide-active .processing-img,
.progress-pagination {
  animation: resizeClipPath 1s ease-in forwards;
  animation-delay: 0.3s;
}
.processing-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff1a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 10px 15px -3px #0000001a;
  border: 1px solid #ffffff33;
  font-size: 36px;
  color: var(--theme-orange);
}
.processing-sub-heading {
  text-transform: uppercase;
  letter-spacing: 2.8px;
}
.processing-heading {
  margin: 21px 0 14px;
  font-size: 30px;
}
.desc {
  color: #d6d3d1;
  font-size: 16px;
}
.progress-line {
  position: relative;
  width: 130px;
  margin-top: 30px;
}
.progress-line::before {
  content: "";
  width: 100px;
  height: 2px;
  background: #fe9a00;
  position: absolute;
  left: 28px;
  top: 11px;
}
.current-count,
.total-count {
  color: #ffffff4d;
}
.total-count {
  position: relative;
  left: 122px;
}
.progress-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transition: all 0.6s ease-in-out;
  background: transparent;
  border: 1px solid #7fa59b;
  opacity: 1;
}
.progress-pagination .swiper-pagination-bullet-active {
  height: 24px;
  background-image: linear-gradient(180deg, #f09819 0%, #ff512f 100%);
  border-radius: 14px;
  border: 1px solid #ffffff80;
}
@keyframes moveDown {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes resizeClipPath {
  0% {
    clip-path: circle(5%);
    opacity: 0;
  }
  100% {
    clip-path: circle(71%);
    opacity: 1;
  }
}
/*==== Nutrition section ====*/
/*---- Nutrition information slider ---*/
.nutrition-section {
  background: radial-gradient(
    68.09% 68.09% at 50.34% 31.91%,
    #ffffff 0%,
    #f6f1e0 100%
  );
}
.nutrition-slider {
  width: 100%;
  height: auto;
  margin: 0 0 10px 0;
}
.nutrition-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.product-info {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.nutrition-quantity {
  font-size: 22px;
}
.nutrition-name {
  font-size: 18px;
}
.nutrition-single-info p {
  font-size: 14px;
}
/*==== Nutrition thumb slider ====*/
.nutrition-thumb-wrap {
  max-width: 600px;
  margin: 20px auto 0;
}
.nutrition-product-thumbnails {
  max-width: 485px;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.nutrition-product-thumbnails .swiper-slide {
  width: 100px;
  height: 100px;
  text-align: center;
  overflow: hidden;
  display: block;
  border: 1px solid #e3dfdf;
  background: #fff;
  border-radius: 5px;
  padding: 6px;
  opacity: 0.7;
  transition: 0.3s;
  cursor: pointer;
}
.nutrition-product-thumbnails .swiper-slide-thumb-active {
  opacity: 1;
  border: 1px solid var(--theme-orange);
}
.nutrition-product-thumbnails img {
  width: auto;
  height: 100%;
  object-fit: contain;
}
.nutrition-thumb-prev.nutrition-thumb-btn {
  left: -18px;
}
.nutrition-thumb-next.nutrition-thumb-btn {
  right: -18px;
}
/*===================================
             FAQs Page
===================================*/
/*==== Banner Section ====*/
.banner-section {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.banner-section::before {
  content: "";
  background: linear-gradient(
    0deg,
    #1c1917 0%,
    rgba(28, 25, 23, 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.banner-content {
  padding: 50px 0;
}
/*==== faqs section ====*/
.faqs-accordion .accordion-item {
  border: 1px solid #cdcdcd;
}
.accordion-collapse {
  transition: all 0.3s;
}
.faqs-accordion .accordion-button:not(.collapsed) {
  background: transparent;
}
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  transition: all 0.5s;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}
/*===================================
            Quality Assurance Page
===================================*/
/*==== Quality Commitment ====*/
.row.single-commitment {
  margin-bottom: 64px;
}
.row.single-commitment:last-child {
  margin-bottom: 0;
}
.commitment-row2 .left-col,
.commitment-row4 .left-col {
  order: 1;
}
.commitment-img img {
  border-radius: 16px;
}
.commitment-content .section-title {
  font-size: 25px;
}
.commitment-content .section-text {
  font-size: 16px;
}
.commitment-content ul li {
  list-style: disc inside;
}
/*==== Nutrition table ====*/
.nutrition-card {
  border-radius: 16px;
  background: #f8f8f8;
  box-shadow: 0px 1px 3px 0px #0000001a;
}
.nutrition-card table {
  border-color: transparent;
}
.table-body tr:not(:last-child) {
  border-bottom: 1px solid #f5f5f4;
}
.nutrition-table td,
.nutrition-table th {
  padding: 20px 24px;
}
.table-header th,
.table-header th {
  background: var(--theme-primary);
  color: #fff;
  font-weight: 600;
}
.table-body td {
  color: #414141;
  white-space: nowrap;
}
/*===================================
            international Page
===================================*/
/*========== banner section ===========*/
.international-banner .banner-title {
  max-width: 851px;
}
.international-banner .banner-gray-text {
  max-width: 620px;
}
.banner-gray-text {
  color: #d6d3d1;
}
.banner-buttons {
  margin-top: 20px;
}
.banner-green-btn {
  background: var(--theme-primary);
  color: #fff;
  padding: 15px 23px;
  border-radius: 100px;
}
.banner-green-btn:hover {
  background: var(--theme-hover-color);
}
.banner-white-btn {
  background: transparent;
  color: #fff;
  padding: 15px 23px;
  border-radius: 100px;
  border: 1px solid #fff;
}
.banner-white-btn:hover {
  background: var(--theme-hover-color);
  border: 1px solid var(--theme-hover-color);
}
.banner-white-btn i {
  animation: upDownMover 3.5s ease-in-out infinite 0.8s;
  display: inline-block;
}
@keyframes upDownMover {
  0%,
  100% {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
  }
  50% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }
}
/*==== certification Commitment ====*/
.cert-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  box-shadow: 0px 1px 2px -1px #0000001a;
  box-shadow: 0px 1px 3px 0px #0000001a;
  border: 1px solid #e7e5e4;
}
.cert-card img {
  max-height: 90px;
  transition: transform 0.4s ease;
}
.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.cert-card:hover img {
  transform: scale(1.1);
}
/*==== Data Sheet Commitment ====*/
.data-sheet-content {
  max-width: 628px;
}
/*==== packaging section ====*/
.packaging-section .info-card:first-child {
  margin-bottom: 33px;
}
.info-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  transition: 0.5s all ease-in-out;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 1px 3px 0px #0000001a;
  border: 1px solid #f5f5f4;
}
.info-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: 0;
  width: 127px;
  height: 125px;
  background: var(--theme-primary);
  border-radius: 0 0 0 100%;
  transition: 0.5s all ease-in-out;
  opacity: 10%;
}
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
.info-card:hover::after {
  transform: scale(1.2);
}
.box-header {
  gap: 10px;
  margin-bottom: 24px;
}
.icon-box {
  width: 64px;
  min-width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f3ffee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 31px;
  color: var(--theme-primary);
}
.info-card:hover .icon-box {
  color: #fff;
  background: var(--theme-primary);
}
.info-card:hover .icon-box i {
  animation: gelatine 0.6s;
}
@keyframes gelatine {
  from,
  to {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  25% {
    -webkit-transform: scale(0.7, 1.1);
    transform: scale(0.7, 1.1);
  }
  50% {
    -webkit-transform: scale(1.1, 0.7);
    transform: scale(1.1, 0.7);
  }
  75% {
    -webkit-transform: scale(0.95, 1.05);
    transform: scale(0.95, 1.05);
  }
}
.box-list li {
  list-style: disc inside;
}
.box-list li::marker {
  color: var(--theme-primary);
  font-size: 16px;
}
.catalogue-btn {
  background: transparent;
  color: var(--theme-primary);
  margin-top: 26px;
}
.catalogue-btn:hover {
  color: var(--theme-secondary);
}
.catalogue-btn:hover i {
  padding-left: 5px;
}
.packaging-img {
  border-radius: 16px;
}
/*==== Map section ====*/
.status-badge {
  box-shadow: 0px 1px 3px 0px #0000001a;
  padding: 10px 24px;
  border-radius: 100px;
  width: fit-content;
  margin: 32px auto 0;
  border: 1px solid #e7e5e4;
}
.status-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;
}
.status-dot::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  top: 0;
  left: 0;
  animation: pulseDot 1.5s infinite;
  opacity: 0.6;
}
.status-badge span {
  color: #44403b;
}
@keyframes pulseDot {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}
.map-wrapper {
  position: relative;
}
.map-wrapper img {
  width: 100%;
  display: block;
}
/* Map Pins */
.map-pin {
  font-size: 20px;
  position: absolute;
  cursor: pointer;
  transform: translate(-50%, -50%);
}
.map-pin1 {
  top: 21.8%;
  left: 4.8%;
}
.map-pin2 {
  top: 35.2%;
  left: 16.9%;
}
.map-pin3 {
  top: 31%;
  left: 27%;
}
.map-pin4 {
  top: 10%;
  left: 35.8%;
}
.map-pin5 {
  top: 69.7%;
  left: 32.8%;
}
.map-pin6 {
  top: 23.4%;
  left: 51.3%;
}
.map-pin7 {
  top: 25.7%;
  left: 60%;
}
.map-pin8 {
  top: 20.7%;
  left: 79.7%;
}
.map-pin9 {
  top: 48.4%;
  left: 48%;
}
.map-pin10 {
  top: 55.7%;
  left: 55.3%;
}
.map-pin11 {
  top: 50.3%;
  left: 59.5%;
}
.map-pin12 {
  top: 50%;
  left: 69%;
}
.map-pin13 {
  top: 56%;
  left: 68.4%;
}
.map-pin14 {
  top: 42.2%;
  left: 75.6%;
}
.map-pin15 {
  top: 78%;
  left: 81.6%;
}
/* Pulse Effect */
.map-pin::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #e91e63;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: smoothPulse 2.5s ease-out infinite;
  opacity: 0.5;
  z-index: -1;
}
.map-pin i {
  color: var(--theme-secondary);
}
/* Tooltip */
.tooltip {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 4px;
  opacity: 0;
  transition: 0.3s;
  white-space: nowrap;
}
.map-pin:hover .tooltip {
  opacity: 1;
}
.map-pin {
  font-size: 12px;
  position: absolute;
  cursor: pointer;
  transform: translate(-50%, -50%);
}
@keyframes smoothPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.6;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}
/*==== Logistics & Delivery ====*/
.logistics-image img {
  animation: up_down_animate 1s ease-in-out infinite alternate;
}
.logistics-delivery-info {
  margin-top: 24px;
}
.delivery-card {
  background: #fafaf9;
  padding: 15px;
  display: flex;
  gap: 15px;
  border-radius: 12px;
  flex-basis: 50%;
}
.logistics-card-icon i {
  color: var(--theme-primary);
  font-size: 24px;
  position: relative;
  top: 4px;
  transition: 0.5s all ease-in-out;
}
.delivery-card:hover .logistics-card-icon {
  animation: 1s wobble-vertical 1 ease-in-out;
}
@keyframes wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
/*==== Partner Contact section ====*/
.partner-wrap {
  margin-top: 30px;
}
.partner-info a {
  color: var(--theme-gray);
}
.partner-info a:hover {
  color: var(--theme-hover-color);
}
.heigh-light-box {
  border: 1px solid #fef3c6;
  background: #fffbeb;
  padding: 24px;
  border-radius: 12px;
}
.international-heigh-light {
  margin-top: 30px;
}
.heigh-light-heading {
  color: #7b3306;
}
.heigh-light-box p {
  color: #939393;
}
/*==== contact us form ====*/
.form-details {
  padding: 30px 20px;
  box-shadow: 0px 20px 25px -5px #0000001a;
  border: 1px solid #e7e5e4;
  border-radius: 24px;
}
.form-shape::after {
  content: "";
  position: absolute;
  top: -40px;
  right: 0;
  width: 127px;
  height: 125px;
  background: var(--theme-primary);
  border-radius: 0 0 0 100%;
  opacity: 10%;
  z-index: -1;
}
.form-heading-area {
  margin-bottom: 31px;
}
.form-field {
  margin-bottom: 20px;
}
.form-field .input-field::placeholder,
.form-field .textarea-field::placeholder {
  color: var(--theme-gray1);
}
.input-field,
.textarea-field {
  border: 1px solid #d6d3d1;
  padding: 10px 15px;
  border-radius: 8px;
  transition: 0.5s all ease-in-out;
  color: var(--bs-heading-color);
  font-size: 14px;
}
.input-field:focus,
.textarea-field:focus {
  border: 1px solid var(--theme-hover-color);
  box-shadow: none;
}
.textarea-field {
  height: 95px;
  resize: none;
}
/*===================================
            Contact Us Page
===================================*/
/*==== map section ====*/
.top-section {
  padding: 60px 0;
}
/*==== Form  section ====*/
.single-contact-info {
  display: grid;
  grid-template-columns: 75px auto;
  margin-top: 30px;
}
.contact-icon {
  box-shadow: 0px 1px 3px 0px #0000001a;
  border: 1px solid #f3f4f6;
  width: 56px;
  height: 56px;
  font-size: 24px;
  color: #4a5565;
}
.contact-icon:hover {
  background: var(--theme-hover-color);
  color: #fff;
  border: 1px solid var(--theme-hover-color);
}
.contact-icon:hover i {
  animation: toBottomFromTop 0.5s forwards;
}
@keyframes toBottomFromTop {
  49% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
.contact-title {
  color: #99a1af;
}
.contact-details-info a,
.contact-details-info p {
  color: var(--theme-dark-gray);
}
.contact-details-info a:hover {
  color: var(--theme-hover-color);
}
.contact-details-info span {
  color: #64748b;
}
.form-field-icon {
  position: absolute;
  left: 14px;
  top: 17px;
  color: var(--theme-gray1);
  font-size: 18px;
}
.contact-input {
  background: #f9fafb;
  padding: 14px 15px 14px 40px;
  border: 1px solid #f9fafb;
}
.form-select.input-field {
  background-color: #f9fafb;
  padding: 14px 15px 14px 40px;
  border: 1px solid #f9fafb;
}
.contact-textarea {
  background: #f9fafb;
  padding: 14px 15px;
  border: 1px solid #f9fafb;
  height: 145px;
}
.form-shape1::before {
  content: "";
  position: absolute;
  top: -40px;
  right: 0;
  width: 127px;
  height: 125px;
  border-radius: 0 0 0 100%;
  transition: 0.5s all ease-in-out;
  z-index: -1;
  background: #fee3f3;
  filter: blur(41px);
}
/*==== Regional Distributors section ====*/
.distributors-card {
  box-shadow: 0px 1px 3px 0px #0000001a;
  border: 1px solid #0000000d;
  border-radius: 16px;
  padding: 20px 13px;
}
.distributors-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.distributors-header {
  display: grid;
  grid-template-columns: 70px auto;
  margin-bottom: 20px;
}
.distributors-location-icon {
  background: #0000000d;
  width: 48px;
  height: 48px;
  color: #000;
  font-size: 20px;
}
.distributors-other-details i,
.distributors-other-details a {
  color: #4a5565;
}
.distributors-other-details i {
  width: 30px;
}
.distributors-card:hover .distributors-location-icon {
  color: #fff;
  background: var(--theme-primary);
}
.distributors-card:hover .distributors-location-icon i {
  animation: gelatine 0.6s;
}
/*===================================
       Become Distributor Page
===================================*/
/*==== banner section ====*/
.become-distributor-banner .banner-gray-text,
.about-banner .banner-gray-text {
  max-width: 660px;
}
/*==== wht Partner section ====*/
.partner-card .box-text {
  margin-top: 30px;
}
/*==== Eligibility requirements section ====*/
.requirements-wrap {
  margin: 30px 0;
  gap: 30px;
}
.requirements-card {
  grid-template-columns: 50px auto;
}
.requirements-icons {
  background: #f3ffee;
  color: #64be44;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  font-size: 25px;
}
.requirements-icons:hover {
  border-radius: 50%;
  background: var(--theme-hover-color);
  color: #fff;
}
.requirements-icons:hover i {
  animation: toBottomFromTop 0.5s forwards;
}
/*===================================
               About Page
===================================*/
/*==== banner section ====*/
.about-banner {
  min-height: 350px;
}
.about-banner-video-btn {
  background: #ffffff1f;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  font-size: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto 0;
  backdrop-filter: blur(7px);
  color: #fff;
  padding: 11px;
}
/*==== About section ====*/
.about-image {
  padding: 20px 15px 20px 30px;
}
.about-image::before {
  content: "";
  width: 96%;
  height: 97%;
  position: absolute;
  z-index: -1;
  background: #000;
  opacity: 0.1;
  border-radius: 24px;
  bottom: -3px;
  left: 9px;
  transform: rotate(3deg);
}
.about-image .hover-inner-image {
  border-radius: 24px;
  overflow: hidden;
}
.about-image .hover-inner-image::before {
  content: "";
  width: 100%;
  height: 90px;
  position: absolute;
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.about-image-text {
  bottom: 30px;
  left: 30px;
}
.about-content {
  max-width: 806px;
  margin-left: auto;
}
.about-content .section-text {
  font-size: 16px;
  margin-top: 30px;
}
/*==== Team section ====*/
.meet-section-text {
  font-size: 16px;
}
.team-card {
  background: #fbfbfb;
}
.team-card:hover img {
  transform: scale(1.02);
}
.team-content {
  padding: 24px 20px;
}
.member-designation {
  margin-bottom: 20px;
}
/*==== core principle section ====*/
.principle-card {
  background: #f8f9ff;
  padding: 40px 20px;
  border-radius: 14px;
}
.principle-card:hover {
  background: var(--theme-primary);
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.icon-area {
  background: #332f31;
  color: #fff;
  width: 64px;
  height: 64px;
  font-size: 31px;
}
.principle-card:hover .icon-area {
  background: #fff;
}
.principle-card:hover i {
  transform: scale(1.1);
  color: #000;
  animation: gelatine 0.6s;
}
.principle-card:hover .card-heading,
.principle-card:hover p {
  color: #fff;
}
.journey-content .section-text {
  max-width: 500px;
}
.journey-btn {
  padding: 27px;
}
.bg-text.text-uppercase.position-absolute.fw-700 {
  font-size: 87px;
  bottom: -15px;
  left: 0;
  right: 0;
  opacity: 5%;
}
.bg-text-title {
  color: #0000006b;
  background: url("../images/resources/text_bg_image.webp") repeat-x;
  background-size: auto 68%;
  -webkit-background-clip: text;
  background-clip: text;
  position: absolute;
  text-align: center;
  font-size: 44px;
  bottom: -24px;
  margin: 0 auto;
  left: 0;
  right: 0;
  z-index: -1;
  animation: slideBg 20s linear infinite;
}
.journey-content .button-style-one:hover ~ .bg-text-title {
  animation: none;
  background-size: auto 100%;
}
@keyframes slideBg {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
/*==== Event Section ====*/
.event-gallery-section {
  background: #f8f9ff;
}
.event-gallery-section .swiper-slide img {
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}
.event-popup-modal .swiper-slide {
  justify-content: center;
}
.event-popup-modal .btn-close {
  background-image: none;
}
.event-popup-modal .btn-close {
  color: #fff;
  font-size: 29px;
}
/*==== event popup ====*/
.event-modal .modal-content {
  background: transparent;
  border: none;
}
.event-modal .swiper-wrapper {
  vertical-align: middle;
  align-items: center;
}
.popup_event_slider img {
  border-radius: 16px;
  margin: 0 auto;
  text-align: center;
  display: block;
}
.popup_event_slider .swiper-slide {
  overflow: hidden;
  border-radius: 16px;
}
.event-modal .swiper-button-next,
.event-modal .swiper-button-prev {
  color: #fff;
}
.popup_event_slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90vh;
}
.popup_event_slider img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}
.event-modal.fade .modal-dialog {
  transform: scale(0.9);
  transition: 0.3s ease;
}
.event-modal.show .modal-dialog {
  transform: scale(1);
}
.event-modal.show {
  backdrop-filter: blur(6px);
  background: #0000005c;
}
/*===================================
       My Review Page
===================================*/
.single-review {
  margin-bottom: 24px;
}
.inner-review-box:last-child {
  margin-bottom: 0;
}
.inner-review-box {
  border-bottom: 1px solid #f3f4f6;
  padding: 15px;
  box-shadow: 0px 2px 7px 0px #8280801a;
  border-radius: 16px;
  gap: 20px;
}
.review-product-image {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
  border-radius: 8px;
  overflow: hidden;
}
.review-product-image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.product-review-title {
  color: var(--theme-dark-gray);
}
.product-review-title:hover {
  color: var(--theme-hover-color);
}
.review-text {
  color: #4a5565;
}
.review-content .rating {
  margin: 7px 0 5px;
}
.publish-review-date {
  color: #99a1af;
}
.status-button-group {
  position: absolute;
  right: 23px;
  top: 24px;
}
.edit-btn,
.delete-review-btn {
  color: #99a1af;
  font-size: 18px;
}
.edit-btn:hover,
.edit-btn:active {
  color: var(--theme-hover-color);
}
.delete-review-btn:hover,
.delete-review-btn:active {
  color: var(--theme-red);
}
/*=============================
      Sign Up Page
================================*/
.signup-card {
  background: #fff;
  border-radius: 8px;
  margin: auto;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.login-logo {
  width: 180px;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  padding: 3px 15px 15px;
  height: 146px;
  background: var(--theme-beryl-black);
  z-index: 0;
  box-shadow: 0px 12px 4px 0px #00000026;
  border-radius: 0 0 100px 100px;
}
.login-logo img {
  width: 120px;
  position: relative;
  z-index: 1;
}
.left-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.login-area-form {
  max-width: 366px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
/* login-form-area */
.right-side {
  padding: 173px 25px 40px;
}
.login-area-form {
  max-width: 366px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.login-header {
  margin-bottom: 45px;
}
.tnc-links {
  color: var(--theme-secondary);
}
.tnc-links:hover {
  color: var(--theme-gray1);
}
.continue-title {
  margin: 34px 0 24px;
}
.continue-title::before {
  content: "";
  position: absolute;
  background: #f3f4f6;
  width: 100%;
  height: 1px;
  top: 13px;
  left: 0;
  z-index: 0;
}
.continue-title span {
  width: fit-content;
  margin: 0 auto;
  display: block;
  background: #fff;
  position: relative;
  padding: 0 10px;
}
.login-social-icons i {
  border: 1px solid #eaeff4;
  background: #f9fafb;
  width: 35px;
  height: 35px;
  color: var(--theme-gray);
  font-size: 18px;
  margin: 0 3px;
}
.login-social-icons i:hover {
  background: var(--theme-hover-color);
  color: #fff;
  border: 1px solid var(--theme-hover-color);
}
.already-account-text a:hover {
  color: var(--theme-hover-color);
}
/*====================================
     Verify OTP Page 
=====================================*/
.verify-icon {
  width: 64px;
  height: 64px;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 32px;
  color: var(--theme-primary);
}
.otp-box {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.otp-input {
  width: 40px;
  height: 47px;
  text-align: center;
  font-size: 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  outline: none;
  background: #f4f4f4;
}
.otp-input:focus {
  border-color: #4caf50;
  background: var(--theme-primary);
  color: #fff;
}
.otp-input.active {
  background: #4caf50;
  color: #fff;
  border-color: #4caf50;
}
.resend {
  margin: 35px 0 20px;
}
.otp-counter {
  top: 2px;
  margin-left: 4px;
}
/*====================================
     Sign In Page 
=====================================*/
.signin-tap {
  background: #f5fafd;
  border-radius: 50px;
  padding: 5px;
}
.signin-items .nav-link {
  border-radius: 50px;
  font-weight: 600;
  color: var(--theme-gray1);
  padding: 15px 10px;
  transition: all 0.5s ease;
}
.signin-items .nav-link.active {
  background: var(--theme-secondary);
  color: #fff;
}
.login-inner-form .form-field {
  margin-bottom: 20px;
}
.eye-icon {
  position: absolute;
  right: 15px;
  cursor: pointer;
  color: #777;
  top: 14px;
}
.forgot-password-link {
  color: var(--theme-secondary);
}
.forgot-password-link:hover {
  color: var(--theme-hover-color);
}
/*===================================
       Product Details page
===================================*/
.breadcrumb-area {
  margin-bottom: 20px;
}
.breadcrumb-item,
.breadcrumb-item a {
  color: #64748b;
}
.breadcrumb-item a:hover {
  color: var(--theme-secondary);
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #6c7a89;
}
/*====  product tap panel ====*/
.information-tap-panel {
  box-shadow: 0px 2px 7px 0px #8280801a;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
}
.nav-link.info-nav {
  padding: 15px 8px;
  background: transparent !important;
  color: var(--theme-gray1);
}
.nav-link.info-nav.active {
  color: var(--theme-primary);
}
.nav-link.info-nav::before {
  content: "";
  width: 0%;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--theme-primary);
  transition: 0.5s all ease-in-out;
  right: 0;
  text-align: center;
}
.nav-link.info-nav.active::before {
  width: 100%;
}
.information-body-content {
  padding: 20px;
  border-top: 1px solid #e2e8f0;
}
.information-title,
.reviews-header {
  margin-bottom: 30px;
}
/*====  product Additional Info ====*/
.specifications-table-wrap {
  border: 1px solid #e2e8f080;
}
.specifications-table-wrap {
  box-shadow: none;
}
.specifications-table-body tr:not(:last-child) {
  border-bottom: 1px solid #e2e8f080;
}
.specifications-table-body tr td:first-child {
  font-weight: 600;
  color: var(--theme-gray);
}
.specifications-table-body tr td {
  color: #64748b;
}
/*====  customer Review  ====*/
.customer-single-reviews {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 15px;
  margin-bottom: 24px;
}
.customer-single-reviews:last-child {
  margin-bottom: 0;
}
.name-letter {
  background: #f1f5f9;
  width: 40px;
  height: 40px;
}
/*====  rating form  ====*/
.review-card {
  padding: 15px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #f1f5f94d;
}
.write-review-text {
  margin: 16px 0 12px;
}
.qty-box .form-control {
  border-radius: 12px;
  padding: 12px;
}
.review-form textarea.form-control {
  height: 140px;
  resize: none;
}
.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.rating input {
  display: none;
}
.rating label i {
  font-size: 24px;
  color: #64748b;
  cursor: pointer;
  transition: 0.5s all ease-in-out;
  margin-right: 10px;
}
.rating label:hover i,
.rating label:hover ~ label i,
.rating input:checked ~ label i {
  color: #fbbf24;
}
.rating label:hover i::before,
.rating label:hover ~ label i::before,
.rating input:checked ~ label i::before {
  content: "\e932";
}
/*==== Products details image area ====*/
.product-wrapper {
  background: #fff;
  padding: 15px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0px 2px 7px 0px #8280801a;
}
.product-image-details {
  background: #f1f5f9;
  border-radius: 12px;
  padding: 20px;
}
.product-thumb-slider {
  height: 250px;
}
.product-thumb-items {
  height: 100px;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: 0.5s all ease-in-out;
}
.product-thumb-items.active {
  opacity: 1;
  border: 2px solid #65b741;
}
.product-thumb-items img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-big-items {
  height: 250px;
}
.zoom-item-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #e8edf2;
}
.zoom-item-container img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  transition: transform 0.1s ease;
}
.big-item-slider iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.big-image-logo {
  right: 10px;
  top: 10px;
  background: #fff;
  padding: 6px;
  z-index: 2;
  border-radius: 10px;
  width: 50px;
  height: 50px;
}
.thumb-play-icon {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
}
.product-video-btn .thumb-play-icon {
  font-size: 68px;
}
.product-big-items video {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.video-play-btn,
.video-mute-btn,
.video-fullscreen-btn {
  background: var(--theme-gray);
  color: #fff;
  width: 40px;
}
.video-play-btn:hover {
  background: #e91e63;
  transform: translateY(-4px) scale(1.1);
}
.video-mute-btn:hover {
  background: #28a745;
  transform: translateY(-4px) scale(1.1);
}
.video-fullscreen-btn:hover {
  background: #ffffff;
  color: #000;
  transform: translateY(-4px) scale(1.1);
}
/*==== product items details right side (Product page) ==== */
.product-items-title {
  padding-right: 40px;
  margin-bottom: 20px;
}
.review-star-icon i {
  color: #ff8c00;
}
.old-price {
  color: #918b8b;
}
.product-quantity {
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 24px 0;
  margin: 35px 0;
}
.qty-box {
  width: 133px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  min-width: 133px;
}
.product-quantity .input-group {
  width: 100%;
}
.minus.minus-qty,
.plus-qty {
  width: 42px;
  border: none;
}
.minus.minus-qty:active,
.plus-qty:active {
  border: none;
}
.qty-input:focus {
  box-shadow: none;
}
.product-quantity .common-btn {
  padding: 13px 15px;
}
.product-items-details .wishlist {
  top: 0;
  right: 0;
}
.product-logos {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  display: grid;
  gap: 20px;
}
.single-logo {
  background: #fff;
  border-radius: 12px;
  padding: 18px 30px;
  transition: all 0.4s ease;
  height: 140px;
  box-shadow: 0px 1px 2px -1px #0000001a;
  box-shadow: 0px 1px 3px 0px #0000001a;
  border: 1px solid #e7e5e4;
}
.single-logo:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.single-logo:hover img {
  transform: scale(1.1);
}
.single-logo img {
  max-height: 90px;
  transition: transform 0.4s ease;
}
/*===========================
     Shopping Cart Page 
==============================*/
.common-shop-area {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0px 2px 7px 0px #8280801a;
}
.shop-header-title {
  padding: 20px 13px;
  border-bottom: 1px solid #e2e8f0;
}
.inner-shopping-details {
  padding: 15px;
}
.shopping-left-wrap {
  box-shadow: 0px 2px 7px 0px #8280801a;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
}
.cart-table-thead tr th {
  color: #64748b;
  font-weight: 500;
  padding: 0 15px 15px;
}
.cart-table-thead tr th:first-child {
  padding: 0 15px 15px 0;
}
.cart-table-thead tr th:last-child {
  padding: 0 0 15px 15px;
}
.product-img {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}
.cart-items-title {
  color: #000;
}
.cart-items-title:hover {
  color: var(--theme-hover-color);
}
.cart-items-quantity {
  color: #64748b;
  margin: 7px 0 4px;
}
.cart-remove-item {
  color: var(--theme-red);
}
.cart-item td {
  padding: 15px;
  white-space: nowrap;
  color: var(--theme-gray);
}
.cart-item td:first-child {
  padding: 15px 15px 15px 0;
}
.cart-item td:last-child {
  padding: 15px 0 15px 15px;
}
/* .cart-item .minus-qty,
.cart-item .plus-qty {
  height: 27px;
  line-height: 11px;
}
.cart-item .qty-input {
  padding: 2px 12px;
  height: 24px;
} */
.summary-card {
  border-radius: 16px;
  padding: 15px;
  position: sticky;
  top: 20px;
  border: 1px solid #e2e8f0;
  background: #f1f5f94d;
}
.summary-card-title {
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e2e8f0;
}
.summary-right {
  min-width: 65px;
  text-align: right;
  width: 65px;
}
.free-shipping-text {
  padding-right: 65px;
}
.order-summary-details {
  margin-bottom: 15px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
  gap: 10px;
}
.custom-checkbox input[type="checkbox"] {
  display: none;
}
.custom-checkbox label {
  position: relative;
  cursor: pointer;
  padding-left: 29px;
  display: block;
}
.custom-checkbox label::before {
  content: "\e915";
  font-family: "yoicon";
  display: display;
  font-size: 0.9rem;
  text-align: center;
  width: 22px;
  margin-right: 10px;
  border-radius: 2px;
  color: transparent;
  box-shadow: 0 0 0 2px #ccc inset;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  top: 0px;
  position: absolute;
  left: 0;
  height: 22px;
}
.custom-checkbox input[type="checkbox"]:checked ~ label::before {
  background-color: var(--theme-primary);
  color: #fff;
  box-shadow: none;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.secondary-outer-btn {
  border: 1px solid var(--theme-secondary);
  color: var(--theme-secondary);
}
.secondary-outer-btn.common-btn::before {
  background: var(--theme-secondary);
}
/*====================================
     Checkout (Shipping page) Page 
=====================================*/
.steps-progress {
  max-width: 516px;
  margin: 20px auto;
}
.multi-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}
/* .is-active::before {
  content: "✓";
  display: block;
  margin: 0 auto 4px;
  background-color: #027f00;
  width: 36px;
  height: 36px;
  line-height: 32px;
  text-align: center;
  font-weight: bold;
  border-radius: 50%;
  color: white;
} */
.step-progress-list {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.step-number {
  display: flex;
  margin: 0 auto 4px;
  background-color: #f1f5f9;
  width: 42px;
  height: 42px;
  text-align: center;
  border-radius: 50%;
  color: #64748b;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  transition: 0.5s all ease-in-out;
}
.shipping-step .step-number {
  background: var(--theme-primary);
  color: #fff;
}
.tap-steps.active .step-number {
  animation: pulse 2s infinite;
  background: var(--theme-primary);
  color: #fff;
}
.step-name {
  color: var(--theme-dark-gray);
  margin-top: 13px;
}
.payment-step .step-name {
  color: #64748b;
}
.payment-step.active .step-name {
  color: var(--theme-dark-gray);
  margin-top: 13px;
}
.payment-step::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 22px;
  width: 85%;
  height: 1px;
  background: #d9e0e6;
  z-index: -1;
  transition: 0.5s all ease-in-out;
}
.payment-step.active::before {
  background: var(--theme-primary);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #027f0070;
  }
  100% {
    box-shadow: 0 0 0 10px #027f0000;
  }
}
@keyframes nextStep {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/*==== checkout shipping form ====*/
.checkout-form {
  box-shadow: 0px 2px 7px 0px #8280801a;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 15px;
}
.shop-header-title i {
  top: 2px;
}
.checkout-items-list {
  margin-bottom: 20px;
}
.single-checkout-item {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}
.checkout-items-price {
  margin-left: 7px;
  padding-left: 5px;
}
.checkout-items-price::before {
  content: "/";
  color: #6c7a89;
  left: -7px;
  position: relative;
}
/*====================================
     Checkout (Shipping page) Page 
=====================================*/
/* Hide default radio */
.payment-input {
  display: none;
}
.payment-box {
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #9ca3af;
  border-radius: 4px;
  display: inline-block;
  margin-right: 10px;
  position: relative;
}
.payment-input:checked + .payment-box .radio-custom {
  background: #63b245;
  border-color: #63b245;
}
.payment-input:checked + .payment-box .radio-custom::after {
  content: "✔";
  color: #fff;
  font-size: 14px;
  position: absolute;
  top: -2px;
  left: 3px;
}
.payment-input:checked + .payment-box {
  border-color: #63b245;
}
.card-details {
  display: none;
  margin-top: 15px;
}
#credit:checked + .payment-box .card-details {
  display: block;
}
/*--- successfully popup modal ---*/
.successfully-popup-modal .modal-body {
  padding: 30px;
}
.success-message-check {
  width: 48px;
  height: 48px;
  color: #fff;
  font-size: 25px;
}
.success-popup-title {
  margin: 20px 0;
}
.thank-you-text {
  margin-bottom: 30px;
}
.successfully-popup-modal .btn-close {
  position: absolute;
  right: 20px;
  top: 20px;
  border: 2px solid #414141;
  border-radius: 50%;
  padding: 6px;
  font-size: 10px;
  background-color: #64748b4a;
  opacity: 1;
}
/*====================================
     Track Order Page 
=====================================*/
.timeline-item {
  padding: 0 0 30px 0;
}
.timeline-item:last-child {
  padding: 0;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 22px;
  top: -100%;
  width: 2px;
  height: 100%;
  background: #e2e8f0;
  transition: 0.5s all ease-in-out;
}
.timeline-item.active::before {
  background: var(--theme-primary);
}
.timeline-item:first-child::before {
  display: none;
}
.timeline-details {
  display: flex;
  gap: 15px;
}
.timeline-icon {
  left: 0;
  top: 0;
  width: 45px;
  height: 45px;
  font-size: 24px;
  background: #fff;
  color: var(--theme-gray1);
  border: 3px solid #e2e8f0;
  z-index: 1;
  min-width: 45px;
}
.timeline-item.active .timeline-icon {
  background: var(--theme-primary);
  color: #fff;
  border: 3px solid var(--theme-primary);
}
.timeline-info {
  width: 100%;
}
.timeline-title {
  margin-bottom: 3px;
  color: var(--theme-gray1);
}
.timeline-item.active .timeline-title {
  color: var(--theme-dark-gray);
}
.timeline-status {
  font-size: 12px;
  color: #6b7280;
}

/*--- track order sidebar  ---*/
.back-page-link {
  color: #64748b;
}
.back-page-link:hover {
  color: var(--theme-secondary);
}
.back-page-link span {
  padding-left: 15px;
}
.back-page-link:hover span {
  padding-left: 10px;
}
.delivery-time-box {
  border: 1px solid #e2e8f0;
  background: #f1f5f94d;
  border-radius: 12px;
  padding: 16px 24px;
}
.need-help-box {
  margin: 32px 0 0;
  border-top: 1px solid #e2e8f0;
  padding-top: 24px;
}
/*===================================
               My Account Page
===================================*/
/*--- Account Sidebar ---*/
.account-sidebar {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 2px 7px 0px #8280801a;
  border: 1px solid #f3f4f6;
  position: sticky;
  top: 10px;
}
.profile-header {
  border-bottom: 1px solid #f3f4f6;
  padding: 24px;
}
.profile-image {
  width: 48px;
  height: 48px;
}
.profile-info p {
  color: #6a7282;
}
.account-sidebar-details {
  padding: 10px;
}
.account-sidebar .nav-link {
  border-radius: 8px;
  margin-bottom: 8px;
  padding: 12px 15px;
  transition: 0.5s all ease-in-out;
}
.sidebar-nav-link i,
.sidebar-nav-link span {
  color: var(--theme-gray1);
  transition: 0.5s all ease-in-out;
}
.sidebar-nav-link i {
  font-size: 17px;
}
.account-sidebar .nav-link.active {
  background: #64be44;
}
.account-sidebar .nav-link.active i,
.account-sidebar .nav-link.active span {
  color: #fff;
}
.account-sidebar .nav-link:hover {
  background: #64be44;
  padding: 12px 10px 12px 20px;
}
.sidebar-nav-link:hover i,
.sidebar-nav-link:hover span {
  color: #fff;
}
.sidebar-logout i,
.sidebar-logout span {
  color: #fb2c36 !important;
}
.sidebar-nav-link.sidebar-logout:hover {
  background: transparent;
}
.sidebar-nav-link.sidebar-logout:hover span {
  letter-spacing: 1px;
}

/*==== Account right details ====*/
.account-card {
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 2px 7px 0px #8280801a;
  border: 1px solid #f3f4f6;
}
.account-header {
  margin-bottom: 34px;
}
.personal-photo-area {
  width: max-content;
}
.profile-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.personal-profile-image {
  background: #f9fafb;
  width: 96px;
  height: 96px;
}
.personal-profile-image img {
  object-fit: cover;
  object-position: top;
}
.change-photo-title {
  cursor: pointer;
  width: fit-content;
  margin: 0 auto;
}
.common-btn {
  padding: 13px 15px;
}

/*====================================
     Security Setting Page 
=====================================*/
.character-info {
  margin-top: 9px;
  color: #6a7282;
}
.account-buttons {
  border-top: 1px solid #f3f4f6;
  padding-top: 24px;
}
.common-btn.cancel-button {
  background: #e8ede6;
  color: var(--theme-gray);
}
/* .account-card {
  border-radius: 20px;
} 
  .account-menu .nav-link {
  color: #555;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 5px;
  transition: 0.3s;
}
.account-menu .nav-link:hover {
  background: #f1f1f1;
}
.account-menu .nav-link.active {
  background: #4caf50;
  color: #fff;
}*/
/*====================================
     Payment Method Page 
=====================================*/
.payment-card {
  background: #f9fafb;
  border-radius: 8px;
  padding: 20px 18px;
}
.card-number {
  margin: 15px 0 0;
}
.card-right-side img {
  width: 45px;
}
.security-box {
  background: #f9fafb;
  border-radius: 12px;
  padding: 12px 15px;
}
.security-box i {
  color: var(--theme-hover-color);
  font-size: 20px;
}
/*====================================
    My Order Page 
=====================================*/
.order-box {
  margin-bottom: 30px;
}
.order-box:last-child {
  margin-bottom: 0;
}
.order-info-wrapper {
  width: 100%;
  gap: 20px;
  background: #f7fafa;
  border: 1px solid #f3f4f6;
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  padding: 20px;
}
.order-left-col {
  gap: 20px 40px;
}
.order-list-title {
  color: #99a1af;
}
.order-list-info {
  color: #0f172a;
}
.invoice-button {
  background: #f1f1f1;
  border: 1px solid #00000008;
  border-radius: 8px;
  padding: 7px 15px;
  color: var(--theme-gray1);
}
.invoice-button:hover {
  background: var(--theme-hover-color);
  border: 1px solid var(--theme-hover-color);
  color: #fff;
}
.view-button {
  background: var(--theme-secondary);
  border-radius: 8px;
  padding: 7px 15px;
  color: #fff;
}
.view-button:hover {
  background: var(--theme-hover-color);
}
.order-listing {
  border: 1px solid #eeeff1;
  padding: 20px;
  border-radius: 0 0 16px 16px;
}
.delivery-status {
  padding-bottom: 24px;
}
.delivered-badge {
  border: 1px solid #b9f8cf;
  background: #f0fdf4;
  border-radius: 100px;
  width: fit-content;
  padding: 4px 15px;
  color: #008236;
}
.shipped-badge {
  border: 1px solid #bedbff;
  background: #eff6ff;
  border-radius: 100px;
  width: fit-content;
  padding: 4px 15px;
  color: #1447e6;
}
.product-thead th {
  color: #0f172a;
}
.product-thead th:first-child,
.product-table td:first-child {
  width: 80px;
  padding-left: 0;
}
.product-thead th:last-child,
.product-table td:last-child {
  width: 100px;
  padding-right: 0;
}
.product-table td {
  vertical-align: middle;
  border-top: 1px solid #f1f1f1;
  font-size: 15px;
  color: var(--theme-gray1);
  white-space: nowrap;
}
.product-order-image {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
}
.table-product-name {
  color: var(--theme-gray) !important;
  font-size: 16px !important;
}
/**/
.order-header {
  background: #eef1f4;
  padding: 18px 20px;
}
.order-header table {
  margin: 0;
}
.order-header th {
  font-size: 13px;
  color: #6c757d;
  font-weight: 500;
}
.order-header strong {
  display: block;
  font-size: 14px;
  color: #212529;
  margin-top: 4px;
}
.status-row {
  background: #fff;
}
.delivered {
  background: #e6f7ed;
  color: #198754;
}
.shipped {
  background: #e7f1ff;
  color: #0d6efd;
}
.view-btn {
  background: linear-gradient(45deg, #d63384, #c21875);
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
}
.invoice-btn {
  background: #f1f3f5;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
}

@media (max-width: 991px) {
  /*==== Header Section ====*/
  /*--- header middle right area ---*/
  .header .item-center {
    order: 3;
    flex: 0 0 100%;
  }
  /* .header .item-left,
  .header-middle-right {
    flex: 0 0 auto;
  } */
  .v-center {
    justify-content: space-between;
  }
  /* Hamburger */
  .hamburger {
    width: 30px;
    height: 38px;
    display: flex;
    padding: 12px 4px;
    align-self: center;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: all 500ms ease;
  }
  .hamburger span {
    height: 2px;
    width: 83.33333333%;
    background: var(--theme-secondary);
    transition: all 400ms ease-in-out;
    transition: all 500ms ease;
  }
  .hamburger:hover span {
    background-color: #fff;
  }
  .hamburger .meat {
    width: 100%;
    transition: all 200ms ease-in-out;
  }
  .hamburger .bottom-bun {
    width: 58.33333333%;
    transition: all 100ms ease-in-out;
  }
  .hamburger:hover span {
    width: 100%;
  }
  html:not(.body-menu-opened) .hamburger .top-bun {
    animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
  }
  html:not(.body-menu-opened) .hamburger .meat {
    animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
  }
  html:not(.body-menu-opened) .hamburger .bottom-bun {
    animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
  }
  @-webkit-keyframes burger-hover {
    0% {
      width: 100%;
    }
    50% {
      width: 50%;
    }
    100% {
      width: 100%;
    }
  }
  @keyframes burger-hover {
    0% {
      width: 100%;
    }
    50% {
      width: 50%;
    }
    100% {
      width: 100%;
    }
  }
  .body-menu-opened .hamburger .top-bun {
    transform: rotate(-45deg) translate(-4.5px, 4px);
    width: 100%;
  }
  .body-menu-opened .hamburger .bottom-bun {
    transform: rotate(45deg) translate(-4.5px, -4px);
    width: 100%;
  }
  .body-menu-opened .hamburger .meat {
    width: 0;
  }
  /* .header .mobile-menu-trigger {
    display: flex;
    height: 30px;
    width: 30px;
    margin-left: 15px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }
  .header .mobile-menu-trigger span {
    display: block;
    height: 2px;
    background-color: #333333;
    width: 24px;
    position: relative;
  }
  .header .mobile-menu-trigger span:before,
  .header .mobile-menu-trigger span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333333;
  }
  .header .mobile-menu-trigger span:before {
    top: -6px;
  }
  .header .mobile-menu-trigger span:after {
    top: 6px;
  } */
  .header-middle-right {
    align-items: center;
  }
  .header .menu {
    position: fixed;
    width: 320px;
    background-color: #ffffff;
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    transform: translate(-100%);
    transition: all 0.5s ease;
    z-index: 1099;
  }
  .header .menu.active {
    transform: translate(0%);
  }
  .header .menu > ul > li {
    line-height: 1;
    margin: 0;
    display: block;
  }
  .header .menu > ul > li > a {
    line-height: 50px;
    height: 50px;
    padding: 0 50px 0 15px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .header .menu > ul > li > a i {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 0;
    right: 0;
    text-align: center;
    line-height: 50px;
    transform: rotate(-90deg);
  }
  .header .menu .mobile-menu-head {
    display: flex;
    height: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 501;
    position: sticky;
    background-color: #ffffff;
    top: 0;
  }
  .header .menu .mobile-menu-head .go-back {
    height: 50px;
    width: 50px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 16px;
    display: none;
  }
  .header .menu .mobile-menu-head.active .go-back {
    display: block;
  }
  .header .menu .mobile-menu-head .current-menu-title {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
  }
  .header .menu .mobile-menu-head .mobile-menu-close {
    height: 50px;
    width: 50px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 25px;
  }
  .header .menu .menu-main {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .header .menu > ul > li .sub-menu.mega-menu,
  .header .menu > ul > li .sub-menu {
    visibility: visible;
    opacity: 1;
    position: absolute;
    box-shadow: none;
    margin: 0;
    padding: 15px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 65px;
    max-width: none;
    min-width: auto;
    display: none;
    transform: translateX(0%);
    overflow-y: auto;
  }
  .header .menu > ul > li .sub-menu.active {
    display: block;
  }
  @keyframes slideLeft {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }
    100% {
      opacity: 1;
      transform: translateX(0%);
    }
  }
  @keyframes slideRight {
    0% {
      opacity: 1;
      transform: translateX(0%);
    }
    100% {
      opacity: 0;
      transform: translateX(100%);
    }
  }
  .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img {
    margin-top: 0;
  }
  .header
    .menu
    > ul
    > li
    .sub-menu.mega-menu-column-4
    > .list-item.text-center
    .title {
    margin-bottom: 20px;
  }
  .header
    .menu
    > ul
    > li
    .sub-menu.mega-menu-column-4
    > .list-item.text-center:last-child
    .title {
    margin-bottom: 0px;
  }
  .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
    flex: 0 0 100%;
    padding: 0px;
  }
  .header .menu > ul > li .sub-menu > ul > li > a,
  .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
    display: block;
  }
  .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul {
    margin-bottom: 15px;
  }
  .menu-overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
  }
  .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }

  /*==== Product slider section (Home page) ====*/
  .processing-slider {
    padding: 60px 0;
  }
  /*==== Nutrition thumb slider (Home Page) ====*/
  .nutrition-slider .swiper-slide img {
    height: 300px;
    width: auto;
    margin-bottom: 30px;
  }
  /*====  Shopping page ====*/
  .summary-card {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  /*==== Header Section ====*/
  /*--- header top bar ---*/
  .international-desktop-menu {
    display: none;
  }
  .top-bar-contact span {
    display: none;
  }
  /*====  Home Page  ====*/
  .processing-slider .swiper-pagination {
    text-align: start;
    bottom: 15px;
  }
  /*====  Track Order Page  ====*/
  .timeline-date {
    position: static;
    margin-top: 5px;
  }
  /*==== Cart Page ====*/
  .product-table td {
    padding: 12px;
    font-size: 13px;
  }
}
@media (max-width: 575px) {
  /*==== Header Section ====*/
  .header-heart-link {
    position: absolute;
    top: -37px;
    right: 80px;
  }
  .header-heart-link i:hover,
  .header-cart-link i:hover {
    color: var(--theme-secondary);
  }
  .cart-button {
    position: absolute;
    right: 4px;
    top: -44px;
  }
  .desktop-about-link,
  .top-bar-contact {
    display: none;
  }
}
@media (max-width: 575px), (min-width: 992px) and (max-width: 1199px) {
  /*==== Cart Page ====*/
  .product-img {
    width: 60px;
    min-width: 60px;
    height: 60px;
  }
  .cart-items-title {
    font-size: 14px;
  }
  .product-img {
    margin-top: 8px;
  }
}
@media (max-width: 420px) {
  /*==== My Account Page ====*/
  .add-address-btn,
  .common-inner-btn {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 460px) and (max-width: 767px), (min-width: 992px) {
  /*==== packaging section (international page) ====*/
  .box-header {
    grid-template-columns: 80px auto;
  }
}
@media (min-width: 480px) and (max-width: 575px) {
  /*==== Product Section (Home Page) ====*/
  .product-col {
    width: 50%;
  }
}
@media (min-width: 480px) and (max-width: 991px), (min-width: 1200px) {
  /*==== Form section (International Page) ====*/
  .phone-details {
    grid-template-columns: 48% 48%;
  }
}
@media (min-width: 576px) and (max-width: 767px), (min-width: 992px) {
  /*==== Logistics & Delivery (International Page) ====*/
  .delivery-card {
    display: grid;
  }
  .logistics-delivery-info {
    grid-template-columns: 48% 48%;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  /*==== Header Section ====*/
  .cart-wrapper {
    min-width: 100px;
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  /*==== Form  section (Contact page) ====*/
  .contact-page-details {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    gap: 3%;
  }
  .single-contact-info {
    grid-template-columns: none;
    gap: 15px 0;
  }
  .processing-slider .swiper-pagination {
    bottom: 50% !important;
    display: flex;
    flex-direction: column;
    right: 3px !important;
    left: auto !important;
    justify-content: end;
    align-items: end;
    gap: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  /*==== Partner Contact section (International Page) ====*/
  .heigh-light-box {
    padding: 16px;
  }
}
@media (min-width: 376px) {
  /*==== core principle section (About page) ====*/
  .bg-text-title {
    font-size: 50px;
    bottom: -32px;
  }
}
@media (min-width: 480px) {
  /*==== Form section (International Page) ====*/
  .single-contact {
    grid-template-columns: 30px auto;
  }
  /*====  customer Review (Product Details page) ====*/
  .customer-single-reviews {
    padding: 24px;
  }
  .review-card {
    padding: 32px;
  }
  /*==== product items details right side (Product page) ==== */
  .product-quantity {
    grid-template-columns: 135px auto;
  }
  .product-quantity .input-group {
    width: 133px;
  }
  /*====  Track Order Page  ====*/
  .timeline-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
  }
  .timeline-item::before {
    left: 30px;
  }
  .timeline-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .timeline-time {
    display: block;
    text-align: right;
  }
}
@media (min-width: 576px) {
  /*---- Common css ----*/
  .fs-50 {
    font-size: 30px;
  }
  .fs-70 {
    font-size: 36px;
  }
  /*==== Header Section ====*/
  /*--- header Middle ---*/
  .header-wish-count,
  .header-card-count {
    width: 21px;
    height: 21px;
    min-width: 21px;
  }
  .header-cart-link i,
  .header-heart-link i {
    font-size: 30px;
  }
  .header-heart-link {
    position: relative;
  }
  /*==== Header Section ====*/
  /*--- Cart ---*/
  .cart-popup {
    top: 77%;
  }
  .cart-popup::before {
    right: 64px;
  }
  /*==== Home Slider Main CSS (Home Page) ====*/
  .slider-heading {
    font-size: 36px;
  }
  /*==== Testimonials section (Home page) ====*/
  .trust-badge {
    padding: 8px 18px;
  }
  /*==== Why Section (Home page) ====*/
  .why-choose-box {
    grid-template-columns: 50% 50%;
  }
  /*==== Support Section (Home page) ====*/
  .support-inner-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: start;
  }
  .partner-box {
    display: block;
    margin: 0;
  }
  .partner-box .partner-logo {
    margin-top: 20px;
  }
  /*==== core principle section (About page) ====*/
  .bg-text-title {
    font-size: 75px;
    bottom: -6px;
  }
  /*==== product items details right side (Product page) ==== */
  .product-thumb-slider {
    height: 425px;
  }
  .product-big-items {
    height: 425px;
  }
  .product-items-details {
    padding: 0 35px 0 0px;
  }
  .product-items-title {
    padding-right: 0;
  }
  /*==== Footer ====*/
  #scroll {
    right: 20px;
    bottom: 20px;
    width: 55px;
    height: 55px;
  }
  #scroll span {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #fff;
  }
}
@media (min-width: 768px) {
  /*---- Common css ----*/
  .fs-16 {
    font-size: 16px;
  }
  .fs-18 {
    font-size: 18px;
  }
  .fs-70 {
    font-size: 40px;
  }
  /*==== Header Section ====*/
  /*--- header top bar ---*/
  .international-mobile-menu {
    display: none !important;
  }
  /*==== Home Slider Main CSS (Home Page)====*/
  .slider-heading {
    font-size: 40px;
  }
  .hero-arrow-nav.swiper-button-next,
  .hero-arrow-nav.swiper-button-prev,
  .nutrition-thumb-btn {
    top: 50%;
  }
  /*==== Video section (Home Page) ====*/
  .video-iframe {
    width: 650px;
  }
  /*==== Nutrition section(Home Page) ====*/
  .nutrition-quantity {
    font-size: 26px;
  }
  .nutrition-name {
    font-size: 20px;
  }
  /*==== Banner Section (Faqs Page) ====*/
  .banner-section {
    min-height: 400px;
  }
  /*==== Quality Commitment (Quality Assurance Page) ====*/
  .single-commitment:nth-child(odd) .right-col {
    order: 1;
  }
  /*==== packaging section (international page) ====*/
  .info-card {
    padding: 33px;
  }
  /*==== Map section (international page) ====*/
  .map-pin {
    font-size: 15px;
  }
  .map-pin::before {
    width: 10px;
    height: 10px;
  }
  /*==== banner section (About page) ====*/
  .about-banner {
    min-height: 400px;
  }
  /*==== Sign In Page  ====*/
  .signin-items .nav-link {
    padding: 15px 25px;
  }
  /*==== Product Details page  ====*/
  .nav-link.info-nav {
    padding: 26px 43px;
  }
  .information-body-content {
    padding: 42px;
  }
  /*==== Products details image area (Product page) ====*/
  .product-wrapper {
    padding: 35px 20px;
  }
  /*====  Shopping page ====*/
  .summary-card {
    padding: 25px;
  }
  /*==== checkout shipping form ====*/
  .checkout-form {
    padding: 23px;
  }
  .checkout-items-list {
    margin-bottom: 40px;
  }
}
@media (min-width: 992px) {
  /*---- Common css ----*/
  .fs-20 {
    font-size: 20px;
  }
  .fs-26 {
    font-size: 24px;
  }
  .fs-30 {
    font-size: 26px;
  }
  .fs-50 {
    font-size: 36px;
  }
  .section-padding {
    padding: 80px 0;
  }
  .common-top-space {
    margin-top: 45px;
  }
  .breadcrumb-area {
    margin-bottom: 45px;
  }
  /*==== Header Section ====*/
  /*--- Header menu ---*/
  .menu-main {
    display: flex;
    gap: 0 15px;
  }
  .header .menu > ul > li > a {
    color: #fff;
  }
  /*==== Header Section ====*/
  /*--- header Logo area ---*/
  .header-logo::after {
    background: var(--theme-beryl-black);
    content: "";
    left: 0;
    right: 0;
    top: -77px;
    position: absolute;
    width: 100%;
    height: 130px;
    z-index: 0;
    box-shadow: 0px 12px 4px 0px #00000026;
    border-radius: 0 0 100px 100px;
  }
  .logo-image {
    position: absolute;
    top: -70px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  /*--- header area ---*/
  .header-logo {
    flex: 0 0 14%;
    text-align: center;
    order: 1;
  }
  .header-item {
    flex: 0 0 43%;
    order: 0;
  }
  .header-middle-right {
    flex: 0 0 43%;
    order: 2;
  }
  /*--- Header Menu ---*/
  .header .menu > ul > li.menu-item-has-children:hover .sub-menu {
    margin-top: 0px;
    visibility: visible;
    opacity: 1;
  }
  .about-mobile-menu {
    display: none !important;
  }
  /*==== Header Section ====*/
  /*--- Cart ---*/
  .cart-popup {
    top: 100%;
  }
  .cart-popup::before {
    right: 14px;
  }
  /*==== Home Slider Main CSS (Home Page)====*/
  .home-slider-section {
    padding: 90px 0 30px;
  }
  .slider-heading {
    margin-bottom: 30px;
  }
  /*==== Product slider section (Home page) ====*/
  .processing-slider {
    height: 850px;
  }
  /*==== Video section (Home Page) ====*/
  .video-iframe {
    width: 750px;
    height: 600px;
  }
  /*==== Testimonials section (Home page) ====*/
  .testimonials-content p {
    margin: 23px 0 62px;
  }
  /*==== Why Section (Home page) ====*/
  .why-image {
    margin-left: 50px;
  }
  /*==== Support Section (Home page) ====*/
  .support-heading {
    font-size: 30px;
  }
  .support-inner-wrapper {
    display: flex;
    gap: 30px 59px;
    align-items: center;
  }
  .support-box {
    display: flex;
    justify-content: start;
    gap: 30px 39px;
    align-items: center;
  }
  .support-box .partner-logo,
  .partner-box .partner-logo {
    margin-top: 0;
  }
  .partner-box {
    display: flex;
  }
  .partner-logo img {
    height: 45px;
  }
  /*==== Product slider section (Home page) ====*/
  .processing-slider {
    height: 450px;
  }
  .processing-heading {
    font-size: 36px;
  }
  /*==== Nutrition section(Home Page) ====*/
  .detail-col1 {
    order: 0;
  }
  .details-col3 {
    order: 1;
  }
  .detail-col2 {
    order: 2;
  }
  .detail-col1 .product-info {
    text-align: right;
  }
  .nutrition-quantity {
    font-size: 30px;
  }
  /*==== Banner Section (Faqs Page) ====*/
  .banner-section {
    min-height: 500px;
  }
  /*==== Quality Commitment (Quality Assurance Page) ====*/
  .commitment-content .section-title {
    font-size: 30px;
  }
  .commitment-content .section-text {
    font-size: 18px;
  }
  /*==== banner section (international Page) ====*/
  .banner-buttons {
    margin-top: 60px;
  }
  /*==== Map section (international page) ====*/
  .map-pin {
    font-size: 20px;
  }
  .map-pin::before {
    width: 14px;
    height: 14px;
  }
  /*==== map section (Contact page) ====*/
  .top-section {
    padding: 80px 0 80px;
  }
  /*==== Form  section (Contact page) ====*/
  .single-contact-info:first-child {
    margin-top: 48px;
  }
  /*==== banner section (About page) ====*/
  .about-banner {
    min-height: 500px;
  }
  /*==== core principle section (About page) ====*/
  .bg-text-title {
    font-size: 87px;
    bottom: -15px;
  }
  /*==== My Review Page ====*/
  .inner-review-box {
    grid-template-columns: 80px auto 40px;
  }
  .inner-review-box {
    padding: 24px;
  }
  .right-side {
    padding: 60px 60px;
    order: 1;
  }
  /*==== product items details right side (Product page) ==== */
  .product-image-details {
    position: sticky;
    top: 10px;
  }
  .product-items-details .wishlist {
    top: -24px;
    right: -8px;
  }
  /*==== checkout Step Progress ====*/
  .steps-progress {
    margin: 45px auto;
  }
  /*====  Track Order Page  ====*/
  .timeline-item {
    padding: 0 0 53px 0;
  }
  /*==== Account right details (My Account page) ====*/
  .account-card {
    padding: 32px;
  }
  /*==== Cart Page ====*/
  .order-left-col {
    gap: 0 60px;
  }
  /*==== Footer Common Page ====*/
  .footer-bottom {
    margin-top: 47px;
    padding: 35px 0;
  }
}
@media (min-width: 1200px) {
  /*---- Common css ----*/
  .fs-26 {
    font-size: 26px;
  }
  .fs-30 {
    font-size: 30px;
  }
  .fs-50 {
    font-size: 40px;
  }
  .fs-70 {
    font-size: 46px;
  }
  .section-text {
    margin: 20px 0;
  }
  /*==== Header Section ====*/
  /*--- header Logo area ---*/
  .logo-image img {
    width: 120px;
  }
  .header-logo::after {
    top: -77px;
    height: 150px;
  }
  .logo-image {
    top: -66px;
  }
  /*--- Header Menu ---*/
  .header .menu > ul > li > a {
    font-size: 16px;
  }
  /*--- header middle right area ---*/
  .distributor-btn.common-btn {
    padding: 10px 15px;
    font-size: 16px;
    margin: 0 20px;
  }
  .header-international-link {
    font-size: 16px;
  }
  /*==== Home Slider Main CSS (Home Page)====*/
  .slider-heading {
    font-size: 46px;
  }
  .slider-content .button-style-one {
    margin: 50px 0;
  }
  /*==== Testimonials section (Home page) ====*/
  .testimonial-section {
    padding-bottom: 150px;
  }
  /*==== Why Section (Home page) ====*/
  .wht-bg-shape {
    top: -90px;
  }
  /*==== Support Section (Home page) ====*/
  .partner-logo img {
    height: 60px;
  }
  /*==== Product slider section (Home page) ====*/
  .processing-slider {
    height: 600px;
  }
  .processing-img {
    padding: 20px 20px 30px;
  }
  .processing-content {
    padding: 0 60px 0 0;
  }
  .processing-heading {
    font-size: 40px;
  }
  .desc {
    font-size: 20px;
  }
  .progress-line {
    margin-top: 70px;
  }
  /*==== Nutrition section(Home Page) ====*/
  .nutrition-quantity {
    font-size: 36px;
  }
  /*==== Nutrition thumb slider (Home Page) ====*/
  .nutrition-thumb-wrap {
    margin: 50px auto 0;
  }
  /*==== Banner Section (Faqs Page) ====*/
  .banner-section {
    min-height: 509px;
  }
  /*==== Quality Commitment (Quality Assurance Page) ====*/
  .commitment-lists .single-commitment:nth-child(odd) .commitment-content {
    padding-right: 50px;
  }
  .commitment-lists .single-commitment:nth-child(odd) .image-hover-effect {
    padding-left: 42px;
  }
  .commitment-lists .single-commitment:nth-child(even) .commitment-img {
    padding-right: 50px;
  }
  .commitment-lists .single-commitment:nth-child(even) .commitment-content {
    padding-left: 42px;
  }
  /* :where(.commitment-row1, .commitment-row3, .commitment-row5)
    .commitment-content {
    padding-right: 50px;
  }
  :where(.commitment-row1, .commitment-row3, .commitment-row5)
    .image-hover-effect {
    padding-left: 42px;
  }
  :where(.commitment-row2, .commitment-row4) .commitment-img {
    padding-right: 50px;
  }
  :where(.commitment-row2, .commitment-row4) .commitment-content {
    padding-left: 42px;
  } */
  .commitment-content .section-title {
    font-size: 40px;
  }
  /*==== map section (Contact page) ====*/
  .top-section {
    padding: 100px 0 80px;
  }
  /*==== banner section (About page) ====*/
  .about-banner {
    min-height: 600px;
  }
  .about-banner-video-btn {
    width: 104px;
    height: 104px;
    font-size: 80px;
    margin: 80px auto 0;
  }
  /*==== Team section (About Page) ====*/
  .member-designation {
    margin-bottom: 40px;
  }
  /*====  Shopping page ====*/
  .inner-shopping-details {
    padding: 40px;
  }
}
@media (min-width: 1400px) {
  /*---- Common css ----*/
  .fs-50 {
    font-size: 50px;
  }
  .fs-70 {
    font-size: 54px;
  }
  /*==== Header Section ====*/
  /*--- Header Menu ---*/
  .menu-main {
    gap: 0 25px;
  }
  /*==== Home Slider Main CSS (Home Page)====*/
  .slider-heading {
    font-size: 52px;
  }
  /*==== Support Section (Home page) ====*/
  .partner-logo img {
    height: 80px;
  }
  /*==== Footer Section ====*/
  .widget-footer-links {
    margin-left: 50px;
  }
  .footer-contact {
    max-width: 272px;
  }
  .newsletter-widget {
    max-width: 272px;
    margin-left: auto;
  }
  /*==== Product slider section (Home page) ====*/
  .processing-heading {
    font-size: 50px;
  }
  /*==== Quality Commitment (Quality Assurance Page) ====*/
  .commitment-content .section-title {
    font-size: 50px;
  }
  /*==== Form section (International Page) ====*/
  .form-details {
    padding: 40px;
  }

  /*==== core principle section (About page) ====*/
  .principle-card {
    padding: 40px 72px;
  }
  /*==== product items details right side (Product page) ==== */
  .product-thumb-slider,
  .product-big-items {
    height: 600px;
  }
  .product-items-details {
    padding: 0 53px 0 30px;
  }
  /*==== Cart Page ====*/
  .order-left-col {
    gap: 0 100px;
  }
}
@media (min-width: 1600px) {
  /*---- Common css ----*/
  .container {
    max-width: 1500px;
  }
  .fs-70 {
    font-size: 70px;
  }
  /*==== Home Slider Main CSS (Home Page)====*/
  .slider-heading {
    font-size: 70px;
  }
  /*==== Testimonials section (Home page) ====*/
  .testimonial-section {
    padding-bottom: 200px;
  }
  .left-side-quote {
    font-size: 105px;
    left: 3%;
    top: 60px;
  }
  .right-side-quote {
    font-size: 105px;
    right: 2%;
    bottom: -3px;
  }
  /*==== Why Section (Home page) ====*/
  .why-choose-box {
    margin-top: 60px;
  }
  .wht-bg-shape {
    top: -140px;
  }
  /*==== Form section (International Page) ====*/
  .contact-information-blog {
    padding: 50px;
  }
}
