/* Font Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins: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 Var */
:root {

  /* Root Theme Color */
  --theme-color: #000000;
  --theme-color-second: #965005;
  --theme-color-third: #000;

  /* Root Font */
  --heading-font: "Poppins", sans-serif;
  /* --paragraph-font: "Urbanist", sans-serif; */
  /* --span-font: 'spanist'; */

  /* Root Shadow Css */
  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 16px;
  color: #1e1e1e;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: var(--heading-font);
}

/* Font Face */
/* @font-face {
  font-family: "";
  src: url();
}

@font-face {
  font-family: "";
  src: url();
} */

a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;
}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 12px;
  color: inherit;
  font-family: var(--heading-font);
}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 21px;
  font-size: 16px;
  font-family: var(--heading-font);
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

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

h1 {
  font-size: 58px;
}

h2 {
  font-size: 42px;
  font-weight: 600;
}

h3 {
  font-size: 31px;
}

h4 {}

h5 {}

h6 {}

.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

/* Back To Top */

@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #fe8a02;
  border-radius: 25px;
  text-align: center;
  border: 2px solid #fe8a02;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 15px;
  opacity: 1;
}

.m-backtotop>div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

.m-backtotop>div.text {
  font-size: 5px;
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 20px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Padding Top And Bottom */
.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}

/* Form Css */

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}

/* Site Button */
.hd_info {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 9px;
}

.hd_info a img {
  margin: 0 24px 0 10px;
}

a.comon-btn {
  background: var(--theme-color-second);
  color: #fff;
  display: inline-block;
  font-size: 15px;
  padding: 12px 0;
  border-radius: 0;
  width: 210px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}

a.comon-btn:hover {
  background: #121212;
  color: var(--theme-color-second);
}

a.comon-btn2 {
  background: var(--theme-color);
  color: #fff;
  display: inline-block;
  font-size: 15px;
  padding: 12px 0;
  border-radius: 0;
  width: 210px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;

}

a.comon-btn2:hover {
  background: #121212;
  color: var(--theme-color-second);
}

a.comon-btn3 {
  background: #fff;
  color: #000;
  display: inline-block;
  font-size: 15px;
  padding: 12px 0;
  border-radius: 0;
  width: 210px;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;

}

a.comon-btn3:hover {
  background: #121212;
  color: var(--theme-color-second);
}

/* Sticky Top */
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999999999999;
}

/* Small Header */

.small {
  display: none;
}

.header_menu {
  background: transparent;
  position: absolute;
  left: 0;
  right: 0;
}

a.navbar-brand img {
  width: 180px;
}

.header_menu li a {
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
  padding: 29px 19px;
  display: inline-block;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: #fff2db;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 16px;
  display: block;
  width: 100%;
  padding: 13px 13px;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  position: absolute;
  right: 0;
  top: 80px !important;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 210px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}

/* Banner Section */
.banner_sec h1 span {
  background: var(--theme-color-second);
  display: inline-block;
  font-weight: 300;
  line-height: 1;
}

.banner_sec p {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
}

.banner_sec {
  padding: 460px 0 80px;
}

/* Home Section 1 */
.home_sec1 {
  padding-bottom: 150px;
}

/* Home Section 4 */

.home_sec4 ul li span {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: -16px;

  font-size: 17px;
}

.home_sec4 ul li span i {
  font-size: 11px;
}

.home_sec4 ul li {
  font-size: 15px;
  margin-bottom: 24px;
}

.home_sec4 .content h6 {
  font-size: 19px;
  margin-bottom: 22px;
}

/* ******** */
.sugar-specs-section .heading {
  font-size: 28px;
  font-weight: 700;
  color: #a24c00;
  margin-bottom: 20px;
}

.sugar-specs-section .heading.orange {
  color: #d16c00;
}

.sugar-specs-section .spec-list li {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 10px;
}

.sugar-specs-section .spec-list li strong {
  color: #000;
}

/* ****** */
.brazil-sugar-section {
  color: #ffffff;
}

.brazil-sugar-section {
  color: #ffffff;
  padding-bottom: 375px;
}

.brazil-sugar-section p {
  font-size: 16px;
}

/* ****** */

.best-products-section .card {
  background-color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  padding-bottom: 60px;
  height: 100%;
  position: relative;
}

.best-products-section .card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.best-products-section .card-caption {
  font-size: 14px;
  color: #666;
  margin-top: 13px;
  font-style: italic;
}

.best-products-section .product-title {
  font-size: 15px;
  font-weight: 500;
  color: #111;
  margin-top: 8px;
  line-height: 1.5;
}

.best-products-section .with-button {
  position: relative;
  padding-bottom: 50px;
}

.best-products-section .quick-view {
  display: inline-block;
  background-color: #f2f2f2;
  color: #000;
  font-weight: 600;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 3px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.best-products-section .bordered-card {
  border: 1px solid #f4dbbf;
}

.best-products-section .comon-btn2 {
  position: absolute;
  bottom: 15px;
}


/* REVIEW SEC */

.testmonial_sec .review_card .btom_cont .cont_info h6 {
  margin-bottom: 0;
  /* font-family: 'my-font3'; */
  font-size: 17px;
}

.testmonial_sec .review_card .btom_cont .cont_info i {
  font-size: 24px;
  color: #000;
}

.testmonial_sec .review_card .btom_cont .cont_info {
  display: flex;
  align-items: center;
  gap: 6px;
}

.testmonial_sec .review_card .btom_cont img {
  width: 90px;
}

.testmonial_sec .review_card {
  padding: 26px;
  box-shadow: rgba(100, 100, 111, 0.29) 0px 0 13px 0px;
  border-radius: 10px;
  margin: 30px 10px;
}

.testmonial_sec .owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  padding: 0px 0;
}

.testmonial_sec .review_card span {
  margin-bottom: 12px;
  display: block;
  font-size: 17px;
  font-weight: 500;
}

.testmonial_sec .heading p {
  margin-bottom: 0px;
}

.testmonial_sec .review_card p {
  font-size: 15px;
}

/* CONTACT SECTION */

.contact_section .form_contact {
  text-align: center;
  background: linear-gradient(45deg, #965005 33%, #4f2900 100%);
  padding: 85px 50px;
  color: #fff;
  padding-left: 105px;
}

.contact_section .form_contact h5 {
  font-size: 27px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.contact_section .form_contact p {
  margin-bottom: 24px;
  /* padding: 0px 12px; */
  /* font-family: "my-font-medium"; */
  line-height: 27px;
}

.contact_section .form_contact input {
  width: 100%;
  outline: none;
  /* border-bottom: 1px solid #fff !important; */
  padding: 14px;
  /* border-radius: 4px; */
  /* outline: none; */
  font-size: 15px;
  background: #9c7449;
  border: none;
  padding-left: 12px;
  /* padding-bottom: 8px; */
}

.contact_section .form_contact input::placeholder {
  opacity: 1 !important;
  color: #fff;

}

.contact_section .form_contact textarea {
  width: 100%;
  outline: none;
  border: none;
  background: #9c7449;
  padding: 17px;
  outline: none;
  font-size: 15px;
  padding-left: 12px;

}

.contact_section .form_contact textarea::placeholder {
  opacity: 1 !important;
  color: #fff;

}

.contact_section .form_contact button {
  background: #fff;
  color: #000;
  border: none;
  text-transform: uppercase;
  width: 100%;
  padding: 13px 0;
  border-radius: 4px;
  font-size: 15px;
  letter-spacing: 1px;
  border: none;
  transition: all 0.7s;
}

.contact_section .form_contact button:hover {
  background: #000;
  color: #fff;
  transition: all 0.7s;
}

.contact_section .form_contact h4 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;
}

/* faq */

.contact_section .heading {
  margin-right: 60px;
}

.contact_section .heading {
  position: relative;
}

.contact_section .heading img {
  position: absolute;
  width: 170px;
  top: -42px;
  left: -70px;
}

.contact_section .accordion-item {
  margin-bottom: 15px;
  border: none !important;
  box-shadow: rgba(100, 100, 111, 0.14) 2px 2px 10px 2px;
  /* background-color: #bcbcbc !important; */
}

.contact_section .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 16px;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
  /* font-family: var(--span-font-2); */
  letter-spacing: 0;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 0 8px 0px;
}

.contact_section .accordion-body {
  /* background: #208fe7;
  color: #fff; */
  padding-top: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

.contact_section .accordion-body p {
  font-size: 15px;
  margin-bottom: 0;
}

.contact_section .accordion-button:not(.collapsed) {
  /* color: #fff;
  background-color: #208fe7; */

  box-shadow: none;
}

.contact_section .accordion-button:not(.collapsed)::after {
  background-image: url(../image/down-arrow.png);
  transform: var(--bs-accordion-btn-icon-transform);
}

.contact_section h3 {
  font-size: 51px;
  font-weight: 600;
}

.contact_section .heading h2 {
  color: #965005;
}

.footer {
  background-position: bottom !important;
  padding: 50px 0 80px;
  color: #fff;
}

.footer .ft-leading-left {
  border-right: 2px solid #965005;
  height: 360px;
}

.footer .ft-leading-left p {
  font-size: 14px;
  line-height: 25px;
}

.footer .social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer .social li a {
  display: flex;
  width: 50px;
  height: 50px;
  border-radius: 600px;
  background-color: #fff;
  color: #965005;
  font-size: 25px;
  align-items: center;
  justify-content: center;
}

.footer .ft-leading-left h5, .footer .ft-leading-left-2 h5 {
  font-size: 18px;
  color: #cc6c05;
}

.footer .ft-list li {
  margin-bottom: 10px;
  text-transform: capitalize;
}

.footer .ft-list li a {
  color: #fff;
  font-size: 14px;
}

.footer .ft-leading-left-2 li {
  padding-bottom: 20px;
  border-bottom: 2px solid #965005;
}

.footer .ft-leading-left-2 .border-0 li {
  border: 0 !important;
}

.footer .copy-right-box {
  background-color: #b9600077;
}

/* blog-sec */

.blog-sec .blog-box a p span {
  color: #2e3192;
  margin-right: 10px;
}

.blog-sec .blog-box a p {
  color: #505050;
  margin-bottom: 5px !important;
  font-family: "my-font-medium";
  font-size: 15px;
}

.blog-sec .blog-box a h5 {
  font-family: "my-font-regular";
  font-weight: 400;
  color: #000000;
  font-size: 18px;
  line-height: 1.4;
}

.read-btn {
  color: #000;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

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

.blog-sec .blog-box {
  position: relative;
}

.blog-sec .blog-box .btom_content {
  position: absolute;
  bottom: 10px;
  padding: 0 24px;
}

.blog-sec .blog-box .btom_content p {
  color: #fff !important;
}

.blog-sec .blog-box .btom_content h5 {
  color: #fff !important;
}

/* INNER PAGE */

#inner-banner {
  background: #cc6c05;
  padding: 170px 0 40px;
  color: #fff;
}

#inner-banner h1 {
  font-size: 68px;
  font-weight: 500;
  line-height: 58px;
  margin-bottom: 13px;
}

#inner-banner .breadcrumb a {
  color: #fff;
  font-weight: 600;
}

#inner-banner .breadcrumb-item.active {
  color: rgba(230, 230, 230, 0.75);
}

#inner-banner .breadcrumb-item+.breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  content: var(--bs-breadcrumb-divider, "/");
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(215, 215, 215, 0.75);
}


/* CONTACT US PAGE */

.contact .heading {
  text-align: center;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
  /* background: #e8e4e4 !important; */
  padding: 38px 0 27px;
  border: 1px solid #e8e4e4;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0px 0px 9px 5px rgba(0, 0, 0, 0.08);
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
  margin-top: 20px;
  color: #000;
}

#contact .contact-info .fa-map-marker {
  font-size: 39px;
}

#contact .contact-info h3 {
  text-transform: capitalize;
  color: #272727;
  margin: 14px 0 0;
  /* margin-bottom: 0; */
  font-size: 23px;
  margin-bottom: 6px;
  /* font-family: 'Poppins', sans-serif; */
  text-transform: capitalize;
}

#contact address {
  margin-bottom: 16px;
  font-style: normal;
  line-height: inherit;
  color: #202020;
  font-weight: 400;
}

#contact .contact-info i {
  font-size: 45px;
  display: inline-block;
  margin-bottom: 0;
  color: #23b096 !important;
}

#contact .contact-info .fa-envelope {
  font-size: 32px;
}

#contact .contact-info a {
  color: #202020;
  font-size: 16px;
}

#contact .con-form form input,
#contact .con-form form textarea {
  padding: 15px 8px;
  border-left: transparent;
  border-right: transparent;
  border-top: transparent;
  border-bottom: 1px solid #000;
  box-shadow: none;
  font-size: 15px;
  outline: none;
  width: 100%;
}

#contact .con-form form input {
  color: #000;
}

#contact .con-form form label {
  color: #00000080;
}

#contact .con-form form button[type="submit"] {
  background: #bf8703;
  border: 0;
  padding: 16px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  font-weight: 500;
  border-radius: 5px;
}

#contact .con-form .contact-location .timing {
  gap: 10px;
  display: grid;
}

#contact .con-form form .form-btn-grp {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

#contact .con-form a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

#contact .con-form .form-info {
  box-shadow: 1px 2px 35px 7px rgba(0, 0, 0, 0.11);
  padding: 30px 40px;
  border-radius: 6px;
}

#contact .con-form {
  padding: 20px 0px 0;
}


/* MAP SEC*/

.map {
  line-height: 0;
}

.map iframe {
  border-radius: 10px;
}

#contact .contact-phone p {
  margin-bottom: 2px;
}

/* ***** */

.privacy-policy-section h3 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #333;
}

.privacy-policy-section h4 {
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #444;
}

.privacy-policy-section h5 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #555;
}

.privacy-policy-section p {
  font-size: 16px;
  margin-bottom: 16px;
}

.privacy-policy-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.privacy-policy-section ul li {
  margin-bottom: 8px;
  font-size: 16px;
  list-style-type: disc;
}

.privacy-policy-section a {
  color: #b63a3a;
  text-decoration: none;
}

.privacy-policy-section a:hover {
  text-decoration: underline;
}

/* PRODUCT SEC */

.deals_page .feature {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: end;
}

.deals_page .feature p strong {
  color: #515151;
  font-weight: 400;
}

.deals_page select {
  display: flex;
  align-items: center;
  border: 1px solid #bbb;
  border-radius: 0px;
  overflow: hidden;
  padding: 11px 16px;
  background: transparent;
  color: #5e5e5e;
  border-radius: 5px;
  width: 50%;
}


.deals_page .accordion-button {
  font-size: 17px;
  letter-spacing: 0;
  color: #fff;
  font-weight: 400;
  background: #cc6c05;
  /* font-family: 'Poppins', sans-serif; */
}

/* .deals_page .accordion-button:not(.collapsed)::after {
  background-image: url("../image/upload.png");
  transform: rotate(-0deg);
} */

.deals_page #collapseOne {
  background: #fff0 !important;
  color: #313131;
}

.deals_page #collapseThree {
  background: #fff0 !important;
  color: #404040;
}

/* .deals_page .accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("../image/upload.png");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
  transform: rotate(180deg);
} */

.deals_page .page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #cc6c05;
  border-color: #cc6c05;
}

.deals_page .accordion-button:focus {
  z-index: 3;
  border-color: #000;
  outline: 0;
  box-shadow: none;
  background: #cc6c05;
  color: #ffff;
}

.add-to-btn {
  background: #cc6c05;
  color: #fff;
  display: inline-block;
  font-size: 13px;
  padding: 12px 0px;
  border-radius: 5px;
  font-weight: 400;
  width: 13rem;
  text-align: center;
  text-transform: uppercase;
  border-radius: 3px;
}

.add-to-btn:hover {
  background: #121212;
  color: #fff;
}


.deals_page .btom_text a.comon-btn:hover {
  background: #121212;
  color: #fff;
}

.deals_page .product_name {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 11px;
}

/* inner blog */


.inner-blog-left-sec {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  padding: 15px 19px 35px;
  border-radius: 8px;
}

.inner-blog-left-sec .inner-blog-sec1 p {
  color: #000000ab;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head p {
  color: #606060;
  margin-bottom: 12px;
}

.inner-blog-left-sec .inner-blog-sec1 h3 {
  font-weight: 600;
  margin-bottom: 18px;
  /* font-size: 29px; */
}

.inner-blog-left-sec .inner-blog-sec1 img {
  border-radius: 5px;
  margin-bottom: 0;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1c1c1c2b;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul {
  display: flex;
  gap: 15px;
  align-items: center;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li i {
  font-size: 17px;
  color: var(--theme-color);
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head i {
  color: var(--theme-color);
  font-size: 16px;
  margin-right: 3px;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li a {
  color: #00000059;
}

.inner-blog-left-sec .navigation-sec .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-blog-left-sec .navigation-sec .navigation a {
  color: var(--theme-color);
  font-size: 15px;
  font-weight: 600;
}

.inner-blog-left-sec .navigation-sec .navigation i {
  color: var(--theme-color);
}

.inner-blog-left-sec .navigation-sec .blog-contain {
  padding: 25px 18px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  border-radius: 5px;
  height: 100%;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top {
  padding-bottom: 15px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top img {
  border-radius: 5px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading h3 {
  color: #000;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p strong {
  color: #00000059;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p {
  color: #000000ab;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading .blog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-blog-left-sec .inner-blog-comment .contact-form {
  padding: 20px 25px;
  border: 1px solid rgba(69, 69, 70, 0.2);
  border-radius: 8px;
  background: #fff;
  color: #000;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form input {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form textarea {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button {
  color: #ffffff;
  background-color: #000;
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #000;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 400;
  transition: 0.5s;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button:hover {
  background: #1c1c1c3b;
  border: 1px solid #1c1c1c3b;
  color: #000;
  transition: 0.5s;
}

.inner-blog-left-sec .admin-sec p {
  color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul {
  display: flex;
  gap: 25px;
  align-items: center;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li i {
  font-size: 18px;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li a {
  color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content {
  border-top: 1px solid #1c1c1c3b;
  border-bottom: 1px solid #1c1c1c3b;
  padding: 10px 20px;
}

.inner-blog-left-sec .admin-sec img {
  border-radius: 5px;
}


/* inner-blog-right-sec */

.inner-blog-right-sec {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  padding: 35px 21px;
  border-radius: 8px;
}

.inner-blog-right-sec .blog-search form {
  position: relative;
  border: 1px solid #1c1c1c3b;
  border-radius: 5px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.inner-blog-right-sec .blog-search form input {
  border: none;
  outline: none;
  padding: 0;
  width: 180%;
}

.inner-blog-right-sec .blog-search form button {
  /* position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%; */
  cursor: pointer;
  background: none;
  border: 0;
  font-size: 15px;
  color: #000000;
	padding-left:150px !important;
}

.inner-blog-right-sec .popular-sec .popular-cards1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #1c1c1c3b;
  padding: 15px 0;
  gap: 10px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .img-top img {
  width: 130px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 p {
  color: #000000ab;
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 0;
}

.inner-blog-right-sec .popular-sec .popular-cards1 a {
  color: #000000ab;
  font-size: 15px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .heading {
  width: 100%;
}

.inner-blog-comment h4 {
  margin-bottom: -30px !important;
}

/* inner-product page css */

.product-details img {
  border: 1px solid #ddd;
  width: 100%;
  height: auto;
}



.product-details .rating {
  display: flex;
  gap: 5px;
  align-items: center;
  color: #ffa855;
}

.product-details .rating a, .product-details .price span {
  color: #666;
  text-decoration: underline;
}

.product-details .stack {
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  color: #008000;
}

.product-details .list-item {

  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.product-details .list-item li {
  display: inline-block;
  padding: 10px 25px;
  background-color: #fddec1;
  border-radius: 600px;
}

.product-details .hd_info {
  color: #000;
  gap: 10px;
}

.product-details .counter {
  width: 143px;
  display: flex;
  gap: 2px;
  padding: 8px 15px;
  border: 1px solid #666;
  border-radius: 60px;
  align-items: center;
}

.product-details .counter input {
  width: 100%;
  padding: 10px;
  border: none;
  outline: none;
  text-align: center;
}

.product-details .counter span {
  font-size: 22px;
  cursor: pointer;
  display: block;
}

.product-details button.comon-btn {
  background: var(--theme-color-second);
  color: #fff;
  display: inline-block;
  font-size: 15px;
  padding: 12px 0;
  border-radius: 0;
  width: 210px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  border: none;
}


.product-details button.wishlist {
  border: none;
  background: transparent;
  font-size: 22px;
}

.product-details .faq_sec .accordion-button:not(.collapsed) {
  color: #000000;
  background-color: transparent;
  box-shadow: none !important;
  border-bottom: 1px solid #000;
  border-radius: 0;
}

.product-details .faq_sec .accordion-button {
  border-radius: 0 !important;
}

.product-details .faq_sec .accordion-header {
  border-radius: 0;
  line-height: normal;
}

.sugar-info-section ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.sugar-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.sugar-image .caption {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.5rem;
}

/* ********** */
.wholesale-sugar {
  background-color: #fff;
  color: #333;
}

.section-title {
  color: #a35400;
}

.highlight {
  background-color: #fff2db;
  border-left: 5px solid #d17c00;
  padding: 1rem;
  /* margin: 2rem auto; */
  /* max-width: 850px; */
}

.sugar-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.wholesale-sugar .sugar-text ul li {
  margin-bottom: 17px;
}

/* -***** */
.feature-card {
  background-color: var(--theme-color-second);
  padding: 30px 22px;
  border-radius: 10px;
  text-align: start;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  height: 100%;
  color: #fff;
}

.feature-card .icon {
  background-color: #a14e00;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card .icon img {
  width: 40px;
  height: 40px;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 19px;
  font-weight: bold;
  color: #fff;
}

.feature-card p {
  font-size: 15px;
  color: #f0f0f0;
  line-height: 1.5;
  /* font-weight: 600; */
}


.sugar-supplier .intro {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.sugar-supplier .intro img {
  width: 200px;
  border-radius: 5px;
}

.sugar-supplier .intro .content {
  flex: 1;
}

.sugar-supplier h3 {
  margin-top: 30px;
  font-size: 20px;
  font-weight: bold;
}

.sugar-supplier h4 {
  margin-top: 25px;
  font-size: 17px;
  font-weight: bold;
  color: #555;
}

.sugar-supplier p {
  margin: 15px 0;
}

.sugar-supplier ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.sugar-supplier ul li {
  margin-bottom: 10px;
}


/Blog Comment Section  /

#respond {

    margin: 0 auto;
}
#respond #reply-title small a{
        color: white !important;
        background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#respond h2 {
    font-size: 24px;
    margin: 24px 0 16px 0;
    font-weight: 500;
}
#respond form {
    display: block;
    margin-top: 0em;
        border: none;
}
#respond form p{
        color: #6d6d6d;
      margin: 0;
    line-height: 26px;
    margin-bottom: 21px;
    font-size: 16px;
}
#respond .comment-form-comment,
#respond .comment-form-author,
#respond .comment-form-email,
#respond .comment-form-url {
    margin-bottom: 20px;
}

#respond label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

#respond textarea,
#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#respond .comment-form-cookies-consent {
    margin-top: 20px;
}

#respond .form-submit {
    margin-top: 20px;
}

#respond .submit {
    background-color: #3c4040;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#respond .submit:hover {
    background: #000000;
    color: #fff;
    transition: all 0.8s;
}#respond .comment-form-cookies-consent input {
    width: 18px;
    height: 12px;
}
#respond .comment-form-cookies-consent input,
#respond .comment-form-cookies-consent label {
  display: inline;
}
#respond p.logged-in-as a{
    color: #0f3ca1 !important;
    text-decoration: underline;
    display: inline-block !important;
}
#comments .comment-author a{
    color: #000 !important;
}
#comments .comment-metadata a{
    color: #000 !important;
}
#comments .comment-metadata a.comment-edit-link{
        color: white !important;
        background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#comments span.comment-reply a{
    color: white !important;
        background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px !important;
}

form.wpcf7-form.init P {
    margin-bottom: 0px !important;
}



.product-meta-container .list-item {
       display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
    }

.product-meta-container .list-item li {
      display: inline-block;
    padding: 10px 25px;
    background-color: #fddec1;
    border-radius: 600px;
    }


.woocommerce div.product {
    position: unset !important;
}

.woocommerce-ordering .orderby {
	width: 100% !important;
	
}
/* inner - product hr css  */
.bold-black {
  height: 2px; /* Makes the line thicker */
  border: none; /* Removes the default border */
  background-color: black; /* Sets the color to black */
  margin: 20px 0; /* Adds some space above and below the line */
}
/* inner-product quote btn  */

.hd_info.quantity .comon-btn {
    background: var(--theme-color-second);
    color: #fff;
    display: inline-block;
    font-size: 15px;
    padding: 12px 0;
    border-radius: 0;
    width: 210px;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    border: none;
}