/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --theme-font: "Inter", sans-serif;
  --theme-font-two: "Inter", sans-serif;
  --theme-font-three: "Inter", sans-serif;
  --theme-gray: #6f7775;
  --theme-gray-rgb: 111, 119, 117;
  --theme-white: #ffffff;
  --theme-white-rgb: 255, 255, 255;
  --theme-base: #fb9d31;
  --theme-green: #00715d;
  --theme-base-rgb: 0, 113, 93;
  --theme-black: #283734;
  --theme-black-rgb: 40, 55, 52;
  --theme-primary: #fbd45a;
  --theme-primary-rgb: 251, 212, 90;
  --theme-extra: #f9f4e8;
  --theme-extra-rgb: 249, 244, 232;
  --theme-bdr-color: #eee9db;
  --theme-bdr-color-rgb: 238, 233, 219;
  --theme-bdr-radius: 15px;
  --font-size: 15px;
  --default-padding: 50px 0px;
  --default-padding-top: 50px;
  --default-padding-bottom: 50px;
  --responsive-font-size: 15px;
}

body {
  font-family: var(--theme-font);
  color: var(--theme-black);
  font-size: var(--font-size);
  line-height: 25px;
  background-color: #fff8f2;
  font-weight: 400;
}

/* body.locked {
  overflow: hidden;
} */

a {
  color: var(--theme-base);
  font-size: var(--font-size);
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.default-padding {
  padding: var(--default-padding);
}

.default-padding-top {
  padding-top: var(--default-padding-top);
}

.default-padding-bottom {
  padding-bottom: var(--default-padding-bottom);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--theme-black);
  font-family: var(--theme-font-two);
  margin: 0;
  font-weight: 700;
}

p {
  text-transform: none;
  font-family: var(--theme-font);
  font-size: var(--font-size);
  line-height: 2;
  font-weight: 400;
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  font-size: var(--font-size);
  color: var(--theme-black);
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

/* .container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
} */

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.section-separator {
  border-color: var(--theme-border);
  border-width: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--theme-base, #a47c68);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--theme-base);
  opacity: 0.3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition:
    width 0.3s,
    height 0.3s,
    opacity 0.3s;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0.3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--theme-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: 0.4;
}

.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--theme-base);
  color: var(--theme-black);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  border-radius: 30px;
  padding: 15px 50px 15px;
  transition: all 0.5s linear;
  overflow: hidden;
  z-index: 1;
}

.thm-btn:before {
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: -230%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
  background-color: var(--theme-black);
}

.thm-btn:hover {
  color: var(--theme-white);
}

.thm-btn:hover:before {
  top: -40%;
}

.section-title {
  position: relative;
  display: block;
  margin-top: -4px;
  margin-bottom: 46px;
}

.section-title__tagline {
  font-size: 24px;
  color: var(--theme-base);
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 10px;
  font-family: var(--theme-font-three);
}

.section-title__title {
  margin: 0;
  color: var(--theme-black);
  font-size: 50px;
  line-height: 60px;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-top: 6px;
}

/* scroll to top */
.scroll-to-top {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--theme-base);
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.scroll-to-top i {
  color: var(--theme-white);
  font-size: 18px;
  line-height: 50px;
}

.scroll-to-top:hover {
  background-color: var(--theme-base);
}

.scroll-to-top:hover i {
  color: var(--theme-white);
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  position: relative;
  display: block;
  width: 100%;
  /* background-color: rgb(235 235 235); */
  /* box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1); */
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 99;
  position: relative;
}

.main-menu {
  position: relative;
  display: block;
}

.main-menu__wrapper {
  position: relative;
  display: block;
  /*padding-left: 60px;
  padding-right: 50px;*/
}

.main-menu__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-menu__left {
  position: relative;
  display: block;
  width: 20%;
  /* margin: 0px 50px; */
  /* margin-right: 100px; */
}

.main-menu__logo {
  display: block;
  text-align: center;
}

.main-menu__logo img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  margin: 0px 0px 0px 0px;
  width: 200px;
}

.main-menu__shape-1 {
  position: absolute;
  bottom: -5px;
  right: -140px;
}

.main-menu__shape-1 img {
  width: auto;
}

.main-menu__right {
  display: block;
  width: 100%;
}

.main-menu__right-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 15px;
}

.main-menu__right-top-left {
  display: block;
}

.main-menu__volunteers {
  display: flex;
  align-items: center;
}

.main-menu__volunteers-icon {
  position: relative;
  height: 44px;
  width: 44px;
  background-color: var(--theme-base);
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-menu__volunteers-icon:hover img {
  animation: menuIconShake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes menuIconShake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}

.main-menu__volunteers-icon:before {
  position: absolute;
  bottom: 0;
  left: 1px;
  width: 15px;
  height: 5px;
  content: "";
  background-image: url(../images/shapes/main-menu__volunteers-icon-shape.png);
  background-repeat: no-repeat;
  transform: rotate(220deg);
}

.main-menu__volunteers-text-box {
  margin-left: 10px;
}

.main-menu__volunteers-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--theme-black);
  font-family: var(--theme-font-three);
}

.main-menu__volunteers-text a {
  color: var(--theme-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__volunteers-text a:hover {
  color: var(--theme-base);
}

.main-menu__volunteers-text span {
  position: relative;
  display: inline-block;
}

.main-menu__volunteers-text span:before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  background-color: var(--theme-black);
  height: 1px;
}

.main-menu__right-top-right {
  display: flex;
  align-items: center;
}

.main-menu__right-top-address {
  display: block;
}

.main-menu__right-top-address-list {
  display: flex;
  align-items: center;
}

.main-menu__right-top-address-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__right-top-address-list li:before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  right: -25px;
  background-color: var(--theme-bdr-color);
  width: 1px;
}

.main-menu__right-top-address-list li:last-child:before {
  display: none;
}

.main-menu__right-top-address-list li + li {
  margin-left: 35px;
}

.main-menu__right-top-address-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__right-top-address-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 25px;
  color: var(--theme-base);
}

.main-menu__right-top-address-list li:last-child .icon span {
  font-size: 28px;
}

.main-menu__right-top-address-list li .content {
  margin-left: 15px;
}

.main-menu__right-top-address-list li .content p {
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
}

.main-menu__right-top-address-list li .content h5 {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  font-family: var(--theme-font);
}

.main-menu__right-top-address-list li .content h5 a {
  color: var(--theme-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__right-top-address-list li .content h5 a:hover {
  color: var(--theme-base);
}

.main-menu__right-top-address-list li .content img {
  width: 150px;
  height: auto;
}

.main-menu__right-top-social {
  display: flex;
  align-items: center;
  margin-left: 50px;
}

.main-menu__right-top-social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--theme-black);
  font-size: 14px;
  background-color: var(--theme-extra);
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu__right-top-social a:hover {
  color: var(--theme-white);
  background-color: var(--theme-base);
}

.main-menu__right-top-social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--theme-base);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.main-menu__right-top-social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.main-menu__right-top-social a + a {
  margin-left: 10px;
}

.main-menu__right-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--theme-base);
  padding-left: 25px;
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 999;
  padding-left: 15px !important;
  padding-right: 15px;
}

.main-menu__main-menu-box {
  display: block;
}

.main-menu__main-menu-content-box {
  position: relative;
  display: block;
}

.main-menu__search-cat-btn-box {
  display: flex;
  align-items: center;
  margin-right: 25px;
}

.main-menu__social_media {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
}

.main-menu__social_media:before {
  content: "";
  position: absolute;
  top: -5px;
  bottom: -5px;
  left: -30px;
  width: 1px;
  background-color: rgba(var(--theme-white-rgb), 0.1);
}

.main-menu__social_media a {
  font-size: 16px;
  color: var(--theme-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  background-color: var(--theme-white);
  padding: 0px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}

.main-menu__social_media a:hover {
  color: var(--theme-green);
}

.main-menu__cat-box {
  display: flex;
  align-items: center;
  margin-right: 30px;
  margin-left: 30px;
}

.main-menu__cart {
  font-size: 24px;
  color: var(--theme-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__cart:hover {
  color: var(--theme-base);
}

.main-menu__btn-box {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}

.main-menu__btn {
  font-size: 14px;
  font-weight: 700;
  color: var(--theme-black);
  background-color: var(--theme-primary);
  padding-left: 50px;
  padding-top: 17px;
  padding-bottom: 17px;
  position: relative;
  display: flex;
  align-items: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__btn:hover {
  background-color: var(--theme-black);
  color: var(--theme-white);
}

.main-menu__btn:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: -10000000000000px;
  background-color: var(--theme-primary);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.main-menu__btn:hover:before {
  background-color: var(--theme-black);
}

.main-menu__btn span {
  font-size: 15px;
  padding-right: 10px;
  position: relative;
}

.main-menu .main-menu__list,
.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list > li > ul,
  .main-menu .main-menu__list > li > ul > li > ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list > li > ul,
  .stricky-header .main-menu__list > li > ul > li > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list > li,
.stricky-header .main-menu__list > li {
  padding-top: 12px;
  padding-bottom: 12px;
  position: relative;
}

.main-menu .main-menu__list > li + li,
.stricky-header .main-menu__list > li + li {
  margin-left: 50px;
}

.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
  font-weight: 600;
  font-size: calc(0.9rem + 0.1vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  letter-spacing: 0.5px;
}

.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li.current-menu-ancestor > a,
.main-menu .main-menu__list > li.current-menu-item > a,
.main-menu .main-menu__list > li.current-menu-page > a,
.main-menu .main-menu__list > li.current_page_item > a,
.main-menu .main-menu__list > li:hover > a,
.stricky-header .main-menu__list > li.current > a,
.stricky-header .main-menu__list > li.current_page_item > a,
.stricky-header .main-menu__list > li.current-menu-ancestor > a,
.stricky-header .main-menu__list > li.current-menu-item > a,
.stricky-header .main-menu__list > li.current-menu-page > a,
.stricky-header .main-menu__list > li:hover > a {
  font-weight: 600;
  color: #ffffff;
}

.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition:
    opacity 500ms ease,
    visibility 500ms ease,
    -webkit-transform 700ms ease;
  transition:
    opacity 500ms ease,
    visibility 500ms ease,
    -webkit-transform 700ms ease;
  transition:
    opacity 500ms ease,
    visibility 500ms ease,
    transform 700ms ease;
  transition:
    opacity 500ms ease,
    visibility 500ms ease,
    transform 700ms ease,
    -webkit-transform 700ms ease;
  z-index: 99;
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 39.2px 0.8px rgba(0, 0, 0, 0.1);
  padding: 15px 10px 15px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.main-menu .main-menu__list > li > ul > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul > li > ul {
  display: none;
}

.main-menu .main-menu__list > li:hover > ul,
.main-menu .main-menu__list > li > ul > li:hover > ul,
.stricky-header .main-menu__list > li:hover > ul,
.stricky-header .main-menu__list > li > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list > li > ul > li,
.main-menu .main-menu__list > li > ul > li > ul > li,
.stricky-header .main-menu__list > li > ul > li,
.stricky-header .main-menu__list > li > ul > li > ul > li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list > li > ul > li + li,
.main-menu .main-menu__list > li > ul > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li > ul > li + li {
  border-top: none;
  margin-top: 5px;
}

.main-menu .main-menu__list > li > ul > li > a,
.main-menu .main-menu__list > li > ul > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > ul > li > a {
  position: relative;
  align-items: center;
  gap: 0px;
  font-size: 15px;
  line-height: 28px;
  color: var(--theme-gray);
  letter-spacing: 0;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 5px 5px 5px;
  -webkit-transition: 500ms;
  transition: 500ms;
  background-color: var(--theme-white);
  border-radius: 6px;
}

.main-menu .main-menu__list > li > ul > li:hover > a,
.main-menu .main-menu__list > li > ul > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li > ul > li:hover > a {
  background-color: var(--theme-extra);
  color: var(--theme-black);
}

.main-menu .main-menu__list > li > ul > li > a::before,
.main-menu .main-menu__list > li > ul > li > ul > li > a::before,
.stricky-header .main-menu__list > li > ul > li > a::before,
.stricky-header .main-menu__list > li > ul > li > ul > li > a::before {
  position: absolute;
  top: 50%;
  right: 20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f30b";
  font-size: 14px;
  color: var(--theme-base);
  transform: translateY(-50%) scale(0);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list > li > ul > li:hover > a::before,
.main-menu .main-menu__list > li > ul > li > ul > li:hover > a::before,
.stricky-header .main-menu__list > li > ul > li:hover > a::before,
.stricky-header .main-menu__list > li > ul > li > ul > li:hover > a::before {
  transform: translateY(-50%) scale(1);
}

.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li > ul.right-align,
.stricky-header .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu-three__main-menu-box .main-menu__list > .megamenu,
.main-menu-two__main-menu-box .main-menu__list > .megamenu,
.main-menu__wrapper .main-menu__list > .megamenu {
  position: static;
}

.main-menu-three__main-menu-box .main-menu__list > .megamenu > ul,
.main-menu-two__main-menu-box .main-menu__list > .megamenu > ul,
.main-menu__wrapper .main-menu__list > .megamenu > ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.main-menu-three__main-menu-box .main-menu__list > .megamenu > ul > li,
.main-menu-two__main-menu-box .main-menu__list > .megamenu > ul > li,
.main-menu__wrapper .main-menu__list > .megamenu > ul > li {
  padding: 0 !important;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: var(--theme-white);
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition:
    visibility 500ms ease,
    -webkit-transform 500ms ease;
  transition:
    visibility 500ms ease,
    -webkit-transform 500ms ease;
  transition:
    transform 500ms ease,
    visibility 500ms ease;
  transition:
    transform 500ms ease,
    visibility 500ms ease,
    -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--theme-base);
  cursor: pointer;
}

.mobile-nav__buttons a + a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--theme-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--theme-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--theme-black);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition:
    visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition:
    visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition:
    transform 500ms ease 500ms,
    visibility 500ms ease 500ms;
  transition:
    transform 500ms ease 500ms,
    visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition:
    visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition:
    visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition:
    transform 500ms ease 0ms,
    visibility 500ms ease 0ms;
  transition:
    transform 500ms ease 0ms,
    visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
}
.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* use rgba for smoother transparency */
  backdrop-filter: blur(8px); /* blur background content */
  -webkit-backdrop-filter: blur(8px); /* Safari support */
  cursor: pointer;
}
.mobile-nav__content {
  /* width: 300px;
  background-color: var(--theme-black); */
  width: 100%;
  background-color: var(--theme-green);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition:
    opacity 500ms ease 0ms,
    visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition:
    opacity 500ms ease 0ms,
    visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition:
    opacity 500ms ease 0ms,
    visibility 500ms ease 0ms,
    transform 500ms ease 0ms;
  transition:
    opacity 500ms ease 0ms,
    visibility 500ms ease 0ms,
    transform 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition:
    opacity 500ms ease 500ms,
    visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition:
    opacity 500ms ease 500ms,
    visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition:
    opacity 500ms ease 500ms,
    visibility 500ms ease 500ms,
    transform 500ms ease 500ms;
  transition:
    opacity 500ms ease 500ms,
    visibility 500ms ease 500ms,
    transform 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 40px;
  right: 29px;
  font-size: 18px;
  color: var(--theme-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list > li:not(:last-child),
.mobile-nav__content .main-menu__list > li > ul > li:not(:last-child),
.mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list > li > a > .main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  /* display: flex; */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: var(--theme-white);
  font-size: var(--font-size);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
  font-size: var(--responsive-font-size);
}

.mobile-nav__content
  .main-menu__list
  > li
  > a.expanded
  .mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > a.expanded
  .mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li
  > a.expanded {
  color: var(--theme-base);
}

.mobile-nav__content .main-menu__list > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button {
  width: 30px;
  height: 30px;
  background-color: var(--theme-base);
  border: none;
  outline: none;
  color: var(--theme-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition:
    transform 500ms ease,
    -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list > li > a > button.expanded,
.mobile-nav__content .main-menu__list > li > ul > li > a > button.expanded,
.mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li
  > a
  > button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: var(--theme-white);
  color: var(--theme-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 0px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--theme-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--theme-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  background-color: var(--theme-white);
  padding: 0px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}
.mobile-nav__social a + a {
  margin-left: 5px;
}

.mobile-nav__social a:hover {
  color: var(--theme-green);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--theme-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li + li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: var(--theme-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--theme-white);
}

.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--theme-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: var(--theme-white);
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

/* -------------#banner---------------- */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-control-next,
.carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  padding: 0;
  color: var(--theme-white);
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: 1;
  transition: opacity 0.15s ease;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 35px;
  background-color: var(--theme-green);
  height: 50px;
  opacity: 0.7;
}

.carousel-control-next-icon:focus,
.carousel-control-next-icon:hover,
.carousel-control-prev-icon:focus,
.carousel-control-prev-icon:hover {
  color: var(--theme-white);
  text-decoration: none;
  outline: 0;
  opacity: 1;
}

.carousel-control-prev-icon {
  border-radius: 0px 10px 10px 0px;
  -webkit-border-radius: 0px 10px 10px 0px;
  -moz-border-radius: 0px 10px 10px 0px;
  -ms-border-radius: 0px 10px 10px 0px;
  -o-border-radius: 0px 10px 10px 0px;
}

.carousel-control-next-icon {
  border-radius: 10px 0px 0px 10px;
  -webkit-border-radius: 10px 0px 0px 10px;
  -moz-border-radius: 10px 0px 0px 10px;
  -ms-border-radius: 10px 0px 0px 10px;
  -o-border-radius: 10px 0px 0px 10px;
}

.carousel-caption {
  position: absolute;
  right: 5% !important;
  bottom: 80px;
  left: 0;
  left: 0% !important;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 10px;
  color: var(--theme-white);
  text-align: right;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* /------------------#welcome------------start------------ */
.welcome-text {
  position: relative;
  background-image: url(../images/icon/palm-white-vector.svg);
  background-position: left bottom;
  background-size: 35%;
  background-repeat: no-repeat;
}

.heading-box {
  position: relative;
}

.heading-box span {
  padding: 10px 20px;
  display: inline-block;
  font-family: var(--theme-font);
  font-size: 15px;
  line-height: 18px;
  color: var(--theme-white);
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 500;
  background-color: var(--theme-base);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.heading-box h1 {
  font-size: calc(1.5rem + 0.8vw);
  line-height: 1.5;
  color: var(--theme-green);
  font-family: var(--theme-font-two);
}

.heading-box h2 {
  font-size: calc(1.5rem + 0.7vw);
  line-height: 1.5;
  color: var(--theme-green);
  text-transform: uppercase;
  font-family: var(--theme-font-two);
}

.heading-box h3 {
  font-size: calc(1.5rem + 0.5vw);
  line-height: 1.5;
  color: var(--theme-green);
  font-family: var(--theme-font-two);
}

.section-details {
  padding: 5px 0px 13px 0px;
}

.section-details p {
  color: var(--theme-black);
  margin: 0 0 8px;
  text-transform: none;
  text-align: justify;
}

.heading-globle {
  width: 70%;
  margin: 0 auto;
}

.heading-globle p {
  margin-bottom: 15px;
}

.theme-btn-primary a {
  display: inline-flex;
  position: relative;
  font-size: var(--font-size);
  background-color: var(--theme-base);
  color: var(--theme-white);
  line-height: 30px;
  padding: 8px 30px;
  border-radius: 30px;
  text-transform: capitalize;
}

.theme-btn-primary a:hover {
  background-color: var(--theme-green);
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}

/* -------------------#welcome------------End--------------- */

/* --------------line----------------- */
.divider.divider-small {
  background: transparent;
}

.divider.divider-small hr {
  width: 70px;
  height: 4px;
  border-radius: 50px;
}

.divider.divider-primary.divider-small hr {
  background: var(--theme-base);
  opacity: 1;
  margin: 5px 0px 15px;
}

/* ------------------------------#products-box start------------------- */
.products-box .heading-box {
  padding-bottom: 20px;
}

.products-box .card {
  /* height: 450px; */
  min-height: 100%;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border: none;
}

.card.orange {
  border: 2px solid #fed986;
  overflow: hidden;
  box-shadow: 0px 6px 9px -2px #2828287d;
}

.card.green {
  border: 2px solid #9fd8a8;
  overflow: hidden;
  box-shadow: 0px 6px 9px -2px #2828287d;
}

.content-products-new h4.orange {
  color: var(--theme-black);
  padding: 15px 0px;
  background-color: #fed986;
}

.content-products-new h4.green {
  color: var(--theme-black);
  padding: 15px 0px;
  background-color: #9fd8a8;
}

.content-products-new h4 {
  font-size: calc(0.7rem + 0.5vw);
  line-height: 1.5;
  text-align: center;
  font-weight: 500;
  font-family: var(--theme-font-three);
  margin: 0px 0px 0px;
}

.content-products-point {
  text-align: left;
}

.content-products-point ul {
  padding: 5px 5px 5px 25px;
}

.content-products-point ul li {
  color: var(--theme-black);
  margin: 5px 0;
  text-transform: none;
}

.content-products-point ul li:last-child {
  margin-bottom: 0;
}

.palm-bg {
  background-image: url(../images/icon/product-icon/palm-oil-bg.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.glycerin-bg {
  background-image: url(../images/icon/product-icon/palm-oil-bg.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.soap-noodles-bg {
  background-image: url(../images/icon/product-icon/palm-oil-bg.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.fatty-alcohol-bg {
  background-image: url(../images/icon/product-icon/palm-oil-bg.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.fatty-acid-bg {
  background-image: url(../images/icon/product-icon/palm-oil-bg.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.surfactant-bg {
  background-image: url(../images/icon/product-icon/palm-oil-bg.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.specialty-fats-bg {
  background-image: url(../images/icon/product-icon/palm-oil-bg.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.vegetable-oil-bg {
  background-image: url(../images/icon/product-icon/palm-oil-bg.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.petrochemicals-bg {
  background-image: url(../images/icon/product-icon/palm-oil-bg.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}

.home-style-one-item {
  padding: 20px 15px;
  text-align: center;
}

.home-style-one-item img {
  width: 120px;
  height: 120px;
  margin-bottom: 5px;
}

.content-products {
  padding: 0px 0px;
}

.content-products h4 {
  font-size: calc(0.75rem + 0.5vw);
  line-height: 1.5;
  font-weight: 500;
  font-family: var(--theme-font-three);
  margin: 2px 0px 5px;
}

.content-products h4.orange {
  color: var(--theme-base);
}

.content-products h4.green {
  color: var(--theme-green);
}

.content-products .divider.divider-primary.divider-small hr {
  margin: 0px auto 15px;
}

.content-products .divider.divider-primary.divider-small hr.orange {
  background: var(--theme-base);
}

.content-products .divider.divider-primary.divider-small hr.green {
  background: var(--theme-green);
}

.content-products p {
  color: var(--theme-black);
  margin: 2px 0;
  text-transform: none;
}

.content-products ul {
  padding: 5px 0px;
}

.content-products ul li {
  list-style: none;
  color: var(--theme-black);
  margin: 10px 0;
  text-transform: none;
}

.content-products ul li:last-child {
  margin-bottom: 0;
}

/* ------------------------------#products-box end------------------- */
/* ------------------# marquee start--------------------- */
.marquee-wrapper .marquee {
  background: var(--theme-green);
  position: relative;
  --duration: 120s;
  --gap: 0px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  gap: 0px;
  padding: 9px 0px;
}

.marquee-wrapper .marquee:first-child {
  animation-duration: 100s !important;
}

.marquee-wrapper .marquee:last-child {
  animation-duration: 100s !important;
}
.marquee-group-table {
  animation-duration: 200s !important;
}
.marquee-wrapper .marquee .marquee-group {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  align-items: center;
  gap: 5px;
  min-width: 100%;
  -webkit-animation: scroll 50s linear infinite;
  animation: scroll 100s linear infinite;
}

.marquee-wrapper .marquee .marquee-group .marquee-text i {
  margin: 0px 50px 0px 0px;
  font-size: 35px;
}

.marquee-wrapper .marquee .marquee-group .marquee-text {
  font-weight: 600;
  font-size: calc(2rem + 0.6vw);
  letter-spacing: 1px;
  line-height: 1.5em;
  text-transform: capitalize;
  color: var(--theme-white);
  margin: 0px 22px;
  display: flex;
  font-family: var(--theme-font-three);
  align-items: center;
  gap: 7px;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-100% - var(--gap)));
    transform: translateX(calc(-100% - var(--gap)));
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-100% - var(--gap)));
    transform: translateX(calc(-100% - var(--gap)));
  }
}

/*-----------------------------------# Marquee End ---------------------------------- */

/* ---------------------------------------------globle---------------------- */
.serviceSection {
  background: url(../images/banner/world_map.jpg) no-repeat center bottom;
  background-size: 100%;
  height: 75vh;
  display: flex;
  align-items: start;
  background-color: var(--theme-green);
}

.why-box-card {
  display: flex;
  background: #afea3f63;
  color: var(--theme-white);
  border-radius: 10px;
  padding: 16px 12px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 3px 7px rgb(0 0 0 / 76%);
  align-items: center;
  flex-direction: row;
  gap: 15px;
  border: 2px solid var(--theme-white);
}

.why-box-card:hover {
  background: #004135;
  color: var(--theme-white);
}

.why-box-card img {
  width: 75px;
  height: 75px;
  padding: 17px;
  background-color: var(--theme-green);
  border-radius: 50px;
}

.why-box-card p {
  color: var(--theme-white);
  margin: 0;
  letter-spacing: 0.5px;
}

.why-box-card h5 {
  color: var(--theme-white);
  font-size: calc(1.5rem + 0.9vw);
  line-height: 1;
  font-weight: 700;
  font-family: var(--theme-font-two);
}

.why-box-card:hover {
  cursor: pointer;
}

.why-box-card:hover p,
.why-box-card:hover h5 {
  color: var(--theme-white);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.why-box-card:hover img {
  background-color: #52da78;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

/* ----download--------------------- */

.download-app .heading-box {
  padding-bottom: 15px;
}

.download-images img {
  text-align: center;
  width: 100%;
  height: auto;
}

.qr-section {
  text-align: center;
  /* padding: 0px 0px 0px 30px; */
}

.qr-section h3 {
  font-size: calc(1rem + 0.5vw);
  line-height: 1.5;
  font-weight: 700;
  color: var(--theme-green);
  font-family: var(--theme-font-two);
  margin-bottom: 5px;
}

.qr-images {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.qr-images img {
  width: 140px;
  height: auto;
}

.download-store {
  text-align: center;
  padding: 0px 0px 0px 0px;
}

.download-store h3 {
  font-size: calc(1rem + 0.5vw);
  line-height: 1.5;
  font-weight: 700;
  color: var(--theme-green);
  font-family: var(--theme-font-two);
  margin-bottom: 5px;
}

.download-images-icon-btn {
  flex-direction: column;
  gap: 22px;
  display: flex;
  align-items: center;
}

.download-images-icon-btn img {
  height: auto;
  width: 70%;
}

.feature-card {
  height: calc(100vh - 20vh);
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-text h3 {
  color: #157347;
  margin-bottom: 15px;
}

.feature-text p,
.feature-text ul {
  font-size: 15px;
  color: #555;
}

.feature-image {
  text-align: center;
}

.feature-image img {
  width: 100%;
}

/************************ testimonial one ***********************/
.testimonial-section-details {
  padding: 50px 20px 67px 0px;
  position: relative;
  z-index: 3;
}

.testimonial-section-details .heading-box span {
  padding: 10px 20;
  display: inline-block;
  font-family: var(--theme-font);
  font-size: 15px;
  line-height: 18px;
  color: var(--theme-white);
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 500;
  background-color: var(--theme-base);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.testimonial-section-details .heading-box h3 {
  font-size: calc(1.8rem + 1vw);
  line-height: 1.4;
  color: var(--theme-white);
  text-transform: uppercase;
  font-family: var(--theme-font-two);
}

.testimonial-section-details p {
  color: var(--theme-white);
  z-index: 1;
  position: relative;
  padding: 8px 0px 10px;
}

.testimonial-one {
  position: relative;
  padding: 100px 0 150px;
  background-color: var(--theme-green);
  background-position: left center;
  background-size: 100%;
  background-repeat: no-repeat;
}

.testimonial-one .heading-box {
  position: relative;
  z-index: 1;
}

.testimonial-one::before {
  content: "";
  position: absolute;
  top: 0;
  left: -13%;
  right: 0;
  bottom: 0;
  background-image: url(../images/testimonial-bg.svg);
  background-position: left center;
  background-size: 40%;
  background-repeat: no-repeat;
  opacity: 1;
  opacity: 0.7;
  z-index: 0;
}

.testimonial-one-right {
  position: relative;
  margin: 3px 1px 2px 20px;
  border-radius: 13px;
  z-index: 2;
  background-image: linear-gradient(0deg, #fbd584 84%, #ffffff00 10%);
  box-shadow: var(--theme-green) 0px 5px 0px 0px;
}

.testimonial-one-item {
  padding: 5px 15px 5px;
}

.testimonial-one-item p {
  line-height: 1.8;
  color: var(--theme-black);
  margin: 5px 10px;
  font-size: 15px;
}

.testimonial-one-item p span {
  font-weight: 700;
  display: block;
  padding-bottom: 5px;
  padding-top: 3px;
  font-size: 18px;
}

.testimonial-one-details-inner {
  background-color: #9fbbac;
  box-shadow: var(--theme-green) 0px 5px 0px -1px;
  padding: 10px 15px;
  border-radius: 50px;
  position: relative;
  width: 60%;
  border: 1px solid var(--theme-green);
  margin: 0px auto 16px;
}

.testimonial-one-details {
  display: flex;
  align-items: center;
  padding-left: 1px;
  gap: 14px;
}

.testimonial-one-details h5 {
  font-size: calc(0.85rem + 0.3vw);
  line-height: 1.5;
  font-weight: 500;
  font-family: var(--theme-font-two);
  margin: 0px 0px 0px;
  color: var(--theme-white);
}

.testimonial-one-details p {
  font-size: 15px;
  letter-spacing: 0.5px;
}

.testimonial-one-details-inner i {
  color: #fed629;
  font-size: 16px;
  letter-spacing: unset;
  line-height: 1;
  transform: scaleX(-1);
  letter-spacing: 3px;
  /* opacity: 0.2; */
  /* -webkit-text-stroke-width: 1px; */
  /* -webkit-text-fill-color: transparent; */
}

.testimonial-slider-one button.slick-arrow {
  position: absolute;
  bottom: -40px;
  left: 0px;
  border: none;
  background: none;
  color: var(--theme-white);
  font-size: 24px;
  line-height: 0;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 1px solid var(--theme-white);
}

.testimonial-slider-one button.slick-next.slick-arrow {
  left: 90px;
}

.testimonial-slider-one button.slick-prev.slick-arrow {
  transform: rotate(180deg);
}

.testimonial-slider-one ul.slick-dots {
  position: relative;
  bottom: -30px;
  display: flex;
  column-gap: 10px;
  align-items: center;
  justify-content: center;
}

.testimonial-slider-one ul.slick-dots li {
  line-height: 0;
  display: block;
}

.testimonial-slider-one ul.slick-dots li button {
  border: none;
  background-color: #014a3d;
  font-size: 0;
  height: 15px;
  width: 15px;
  border-radius: 100%;
  opacity: 0.5;
}

.testimonial-slider-one ul.slick-dots li.slick-active button {
  opacity: 1;
}

.feature-text-green {
  padding: 0px 50px;
}

.feature-text-green h3 {
  font-size: calc(1.2rem + 0.5vw);
  line-height: 1.3;
  color: var(--theme-green);
  /* text-transform: uppercase; */
  font-family: var(--theme-font);
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-text-green p {
  line-height: 2;
  color: var(--theme-green);
}

.feature-text-green ul {
  margin: 15px 0px;
  padding: 0;
}

.feature-text-green ul li {
  color: var(--theme-green);
  list-style: none;
  padding: 5px 5px 5px 35px;
  background-image: url(../images/icon/green-arrow.svg);
  background-repeat: no-repeat;
  background-position: 10px 10px;
  background-size: 16px;
  line-height: 25px;
  font-size: var(--font-size);
}

.feature-text-orange {
  padding: 0px 50px;
}

.feature-text-orange h3 {
  font-size: calc(1.2rem + 0.5vw);
  line-height: 1.3;
  color: var(--theme-base);
  /* text-transform: uppercase; */
  font-family: var(--theme-font);
  font-weight: 600;
  margin-bottom: 20px;
}

.feature-text-orange p {
  line-height: 2;
  color: var(--theme-base);
}

.feature-text-orange ul {
  margin: 20px 0px;
  padding: 0;
}

.feature-text-orange ul li {
  color: var(--theme-base);
  list-style: none;
  padding: 5px 5px 5px 35px;
  background-image: url(../images/icon/orange-arrow.svg);
  background-repeat: no-repeat;
  background-position: 10px 10px;
  background-size: 16px;
  line-height: 25px;
  font-size: var(--font-size);
}

/* ------------------------client-slider-start-------------- */
.client-parts {
  padding: var(--default-padding);
  background: var(--theme-white);
}

.product .product_img img {
  width: 110px !important;
  height: auto;
  margin: 0 auto !important;
}

.product .product_img .owl-carousel .owl-item {
  transition: transform 0.8s ease-in-out;
}

/* ------------------------client-slider-end----------------- */
/*
<!-- ====================================================-->
<!--Start Footer-->
<!-- ==================================================-->*/
.home-footer.subscribe-area {
  padding-top: 50px;
}

.home-footer.subscribe-area .row.subscribe {
  /* background: url(../images/subscribe-bg.jpg); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 50px;
  margin-top: 0px;
  z-index: 1;
  position: relative;
  background-color: #198754;
  border-radius: 15px;
}

.subscribe-content h4 {
  font-size: var(--font-size);
  color: var(--theme-white);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.subscribe-content h1 {
  color: var(--theme-white);
}

.single-subscribe-input-box {
  text-align: right;
  display: flex;
  align-items: center;
}

.single-subscribe-input-box input {
  width: 100% !important;
  background: var(--theme-white);
  border: 1px solid var(--theme-white) !important;
  height: 60px;
  outline: 0 !important;
  padding: 0 15px !important;
  color: var(--theme-black);
  border-radius: 50px;
}

.single-subscribe-input-box input::placeholder {
  color: var(--theme-white);
}

.single-subscribe-input-box button {
  font-size: 25px;
  color: var(--theme-white);
  font-weight: 500;
  border: transparent;
  text-transform: uppercase;
  background: var(--theme-green);
  position: relative;
  height: 50px;
  width: 80px;
  border-radius: 50px;
  position: relative;
  right: 80px;
}

/*
<!-- ====================================================-->
<!--Start Footer Area Home Three-->
<!-- ==================================================-->*/
.home-footer.footer-area {
  /* background: url(../images/footer-bg.jpg); */
  background-color: var(--theme-green);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 120px 0 20px;
  margin-top: -80px;
}

.footer-widget-logo {
  margin: 10px 0px 20px;
}

.home-footer .footer-widget-logo img {
  width: 250px;
  height: auto;
}

.home-footer .footer-desc {
  margin-bottom: 20px;
}

.home-footer .footer-desc p {
  color: var(--theme-white);
}

.home-footer .footer-widget-title h4 {
  font-size: calc(1rem + 0.6vw);
  line-height: 1.3;
  text-transform: capitalize;
  margin: 20px 0px 15px;
  color: var(--theme-white);
  font-weight: 700;
  font-family: var(--theme-font);
}

.home-footer .footer-widget-title h4:before {
  background: transparent;
}

.home-footer .footer-widget-menu ul {
  padding: 0;
}

.home-footer .footer-widget-menu ul li {
  list-style: none;
  padding: 2px 0px;
}

.home-footer .footer-widget-menu ul li a {
  display: inline-block;
  line-height: 2rem;
  color: var(--theme-white);
  position: relative;
  font-size: var(--font-size);
}

.home-footer .footer-widget-menu ul li a:hover {
  margin-left: 0;
  opacity: 0.6;
}

.home-footer .footer-widget-menu ul li a:before {
  background: transparent;
}

.home-footer .footer-widget-contact {
  background: transparent;
  padding: 0;
  margin-top: 0;
}

.home-footer .footer-widget-contact-box {
  display: flex;
  margin-bottom: 20px;
  gap: 10px;
}

.home-footer .footer-widget-contact-box img {
  width: 100%;
}

.home-footer .footer-widget-contact-content h4 {
  font-size: 20px;
  line-height: 27px;
  color: #f7f9fb;
  font-weight: 700;
  margin: 0;
}

.home-footer .footer-widget-contact-content p {
  line-height: 28px;
  color: var(--theme-white);
}

.home-footer .footer-widget-contact-content p a {
  color: var(--theme-white);
}

.home-footer .footer-widget-contact-content p a:hover {
  margin-left: 0;
  opacity: 0.6;
}

.home-footer .row.add-border {
  border-top: 1px solid var(--theme-white);
  padding-top: 20px;
  margin-top: 40px;
}

.home-footer .footer-bottom-content {
  text-align: center;
}

.home-footer .footer-bottom-content p {
  margin: 0;
  color: var(--theme-white);
}

.home-footer .footer-bottom-content a {
  display: inline-block;
  opacity: 0.6;
}

.why-choose-three {
  position: relative;
  overflow: hidden;
}

.why-choose-three-image {
  height: auto;
  position: absolute;
  right: 0;
  top: 0;
}

.why-choose-three .custom-container {
  width: 83%;
  padding: 0px 0;
  position: relative;
}

.why-choose-three-image img {
  height: auto;
  width: 58%;
}

.bg {
  width: 100%;
  background: #fff8f2;
}

.table-responsive td tr {
  font-weight: 400;
  line-height: 27px;
  padding: 3px 10px;
  font-size: 16px;
}

.table-responsive td {
  padding: 8px 15px;
  border: 1px solid var(--theme-green);
  line-height: 25px;
}

.bg tr:nth-child(even) {
  background-color: #4c887e24;
  color: #131313;
  font-weight: 400;
}

.table-responsive th {
  background-color: var(--theme-green);
  color: #fff !important;
  font-weight: 500;
  line-height: 26px;
  padding: 10px 15px;
  border: 1px solid var(--theme-green);
}

.table-hadding-body {
  padding: 0px 0px;
}

.table-hadding-body .icon-table {
  text-align: center;
  border-right: 2px solid var(--theme-base);
}

.table-hadding-body .icon-table i {
  font-size: 50px;
  line-height: 60px;
  color: var(--theme-black);
}

.table-hadding-body .icon-table img {
  width: 60px;
  height: auto;
}

.table-hadding-body .icon-table p {
  margin: 0;
  line-height: 19px;
  font-size: 14px;
}

.global-reach {
  padding: 70px 0px;
  background-color: #fffbdb;
}

.table-box-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 10px 10px 0px 0px;
  text-align: center;
}
.table-box-img img {
  width: 100%;
  height: auto;
}

.table-box-two {
  display: flex;
  gap: 0px;
  justify-content: space-between;
  background-color: #ffd996;
  position: relative;
  padding: 7px 0px;
}

.price-table-box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../images/malaysia-map-palm-oil-industry.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 1;
}

.price-card {
  padding: 0px 5px;
  top: 0;
  position: relative;
  margin: 0px 13%;
  border-radius: 35px;
  border: none;
  z-index: 5;
}
.price-card::after {
  content: "";
  position: absolute;
  bottom: -13px;
  right: -45px;
  width: 120px;
  height: 100px;
  background-image: url(../images/palm-oil-fruit-oleochemicals.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 11;
  opacity: 1;
  pointer-events: none;
}
.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../images/mblion-palm-oil-price-app-tablet-interface.png);
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 11;
  opacity: 1;
  pointer-events: none;
}

.price-header {
  /* background-color: #fdf1b7; */
  /* width: 50%; */
  display: flex;
  align-items: center;
  padding: 0px 15px;
}

.price-header h3 {
  margin: 0;
  font-weight: 700;
  font-size: calc(0.9rem + 0.2vw);
  font-family: var(--theme-font-three);
}
.price-card .marquee-wrapper .marquee .marquee-group .marquee-text {
  font-weight: 500;
  font-size: calc(0.7rem + 0.3vw);
  letter-spacing: 1px;
  line-height: 1.5em;
  text-transform: capitalize;
  color: var(--theme-black);
  margin: 0px 5px;
  display: flex;
  font-family: var(--theme-font-three);
  align-items: center;
  gap: 7px;
}

.price-card .marquee-wrapper .marquee {
  background: #fdf1b7;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 0px;
  padding: 7px 0px;
  font-family: var(--theme-font-three);
}

.price-down {
  color: #e63946;
  font-family: var(--theme-font-three);
}

.price-up {
  color: #2a9d8f;
  font-family: var(--theme-font-three);
}

.divider {
  color: var(--theme-black);
  margin: 0 3px;
}

.price-subheader {
  /* background-color: #fdf1b7; */
  /* width: 50%; */
  align-items: center;
  display: flex;
  padding: 0px 15px;
}

.price-subheader p {
  line-height: 24px;
  margin: 0px;
  font-weight: 600;
  font-size: calc(0.6rem + 0.3vw);
  font-family: var(--theme-font-three);
}

.price-subheader p span {
  display: block;
  margin: 0;
  font-weight: 400;
  font-size: calc(0.35rem + 0.4vw);
  font-family: var(--theme-font-three);
}

.price-table {
  background-image: url(../images/icon/price-table-palm.svg);
  background-position: center center;
  background-size: 50%;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
  background-color: var(--theme-white);
  border-radius: 0px 0px 10px 10px !important;
  margin: 0;
  border: none;
}

.price-table th,
.price-table td {
  vertical-align: middle;
  padding: 10px 12px;
  color: var(--theme-green);
  margin: 0;
}

.price-table th {
  background-color: var(--theme-green);
  padding: 15px 15px;
  font-size: calc(0.95rem + 0.15vw);
  letter-spacing: 0.2px;
  color: var(--theme-white);
}

.price-table tbody tr td:first-child {
  color: var(--theme-green);
}

.price-table tbody,
td,
tfoot,
th,
thead,
tr {
  border-bottom: 1px solid #dddddd;
}
.price-table tbody,
td,
tfoot,
th,
thead,
tr:last-child {
  border-bottom: none;
}

.price-table tbody tr:last-child td {
  border-bottom: none;
  padding-bottom: 20px; /* extra space only on the last row */
}

.table-box-img:first-child img {
  padding-top: 10px;
}
.price-table-box {
  margin: 0;
  position: relative;
}

.mobile-table-img {
  position: relative;
  margin-left: -90px;
  margin-bottom: 10px;
  z-index: 1;
}

.mobile-table-img img {
  width: 185px;
}

.stricky-header {
  display: none !important;
}

.stats-section {
  padding: 15px 0px;
  background: #fff;
}

/* keep your original CSS */
.stat-box {
  text-align: center;
  position: relative;
}

.stat-box h2 {
  color: #ff6600;
  font-weight: 700;
  font-size: calc(2rem + 0.9vw);
}

.stat-box p {
  margin: 0 auto;
  width: 80%;
}

.stat-box::before {
  content: "";
  position: absolute;
  right: -19px;
  top: 1%;
  width: 12px;
  height: 12px;
  border-radius: 12px;
  background-color: var(--theme-base);
}

.stat-box::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 3%;
  width: 3px;
  height: 140%;
  background: linear-gradient(to bottom, var(--theme-base), transparent);
}

/* hide line + dot for the last one */
.stats-section .row > div:last-child .stat-box::before,
.stats-section .row > div:last-child .stat-box::after {
  display: none;
}
.social-links-linked a {
  font-size: 14px;
  line-height: 25px;
  font-weight: 400;
  color: #555;
  margin-bottom: 7px;
}

.social-links-linked a:hover {
  color: #33837b;
}

#mySidenav a {
  position: fixed;
  right: -100px;
  transition: 0.3s;
  width: 140px;
  text-decoration: none;
  color: #fff;
  display: inline-block;
  z-index: 1;
}

#mySidenav a:hover {
  right: 0;
}

#linkedin {
  top: 460px;
  background: #0077b5;
}
#twitter {
  top: 510px;
  background: var(--theme-black);
}
#facebook {
  top: 560px;
  background: #3b57a1;
}
#youtube {
  top: 610px;
  background: #fe0201;
}
#instagram {
  top: 660px;
  background-image: linear-gradient(350deg, #ff8b3e, #ee2a7b, #b13996);
}

.sidenav {
  top: 200px;
}

.sidenav p {
  font-size: 15px;
  text-transform: capitalize;
  display: inline-block;
  margin: 0;
  padding: 10px 8px 10px 8px;
  line-height: 1.1;
}

.linkedin,
.twitter,
.youtube,
.facebook,
.instagram {
  display: inline-block;
  background: url(../images/palm-oil-market-social-media-links.png) no-repeat;
  overflow: hidden;
  text-indent: -9999px;
  text-align: left;
}

.linkedin {
  background-position: 0 0;
  width: 40px;
  height: 40px;
  float: left;
}
.facebook {
  background-position: -40px 0;
  width: 40px;
  height: 40px;
  float: left;
}
.twitter {
  background-position: -40px -40px;
  width: 40px;
  height: 40px;
  float: left;
}
.youtube {
  background-position: 0 -80px;
  width: 40px;
  height: 40px;
  float: left;
}
.instagram {
  background-position: -40px -80px;
  width: 40px;
  height: 40px;
  float: left;
}

.box-es {
  padding: 35px;
  box-shadow: -1px 4px 9px 2px #00000040;
}

.sticky-footer {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 110;
  display: none;
}

.sticky-footer .sticky-phone {
  float: left;
  width: 100%;
}

.sticky-footer .sticky-phone a {
  float: left;
  width: 25%;
}

.sticky-footer .sticky-phone a.mobile-num {
  background: #081726;
  padding: 8px 10px 8px 10px;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  text-align: center;
}

.sticky-footer .sticky-phone a.email {
  background: #b21414;
  padding: 10px 5px 10px 5px;
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
}

.whatsapp_btn {
  position: fixed;
  bottom: 100px;
  left: 10px;
  width: 50px;
  height: 50px;
  z-index: 100;
}

.whatsapp_btn .icon_logo {
  position: relative;
  z-index: 150;
  padding: 0px;
}

.whatsapp_btn .icon_logo > a > img {
  width: 50px;
  height: 50px;
}

.whatsapp_btn .circle_waves {
  border-radius: 50%;
  background-color: #3cc04e;
  width: 50px;
  height: 50px;
  position: absolute;
  opacity: 0;
  bottom: 1px;
  left: 0;
  z-index: 120;
  animation: waves 4s infinite cubic-bezier(0.36, 0.11, 0.89, 0.32);
}

@keyframes waves {
  from {
    transform: scale(0.55, 0.55);
    opacity: 0.6;
  }

  to {
    transform: scale(1.8, 1.8);
    opacity: 0;
  }
}

/* =============== --------------- --------------- =============== */

.review-section {
  position: relative;
  padding: 20px 0 0px;
  background-image: linear-gradient(
    332deg,
    #9fbbac 39%,
    var(--theme-green) 33%
  );
  background-size: 100%;
  background-repeat: no-repeat;
}

.review-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0%;
  right: 0;
  bottom: -3%;
  background: url(../images/palm-background.png);
  background-position: bottom left;
  background-size: 101%;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 0;
}

.review-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -1%;
  background-image: url(../images/global-palm-oil-trade-city-skyline.png);
  background-position: right bottom;
  background-size: 93%;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 1;
}

.review-section-img {
  position: relative;
  bottom: 0;
}

.review-section-img img {
  width: 100%;
  /* height: auto; */
  position: absolute;
  top: 4px;
}

.testimonial-section-details .review-star {
  padding-top: 13px;
  padding-bottom: 15px;
  display: flex;
  gap: 10px;
}

.testimonial-section-details .review-star i {
  font-size: calc(2rem + 0.7vw);
  color: #fed629;
}

.testimonial-one-details img {
  width: 80px;
  height: 80px;
  border-radius: 50px;
  background-color: var(--theme-green);
  padding: 4px;
}

/* ---------------------------------new-footer------------ */
.footer-parts {
  padding: 30px 3px 30px;
  background-image: url(../images/palm-background.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--theme-green);
}

.socialmedia-bg {
  background-color: rgba(255, 255, 255, 0.5);
}

.footer-social-box {
  padding: 25px;
  text-align: center;
  border-right: 1px solid #fff;
}

.footer-social-box.last {
  border-right: none;
  /* Remove right border for last */
}

.footer-social-box a {
  color: var(--theme-black);
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size);
}

.footer-social-box a i {
  margin-right: 6px;
  font-size: 16px;
  background-color: var(--theme-black);
  padding: 5px;
  color: #fff;
  display: flex;
  width: 30px;
  align-items: center;
  justify-content: center;
  height: 30px;
  border-radius: 5px;
}

.heading-bg-orange {
  background-color: var(--theme-base);
}

.heading---title-text {
  display: flex;
  justify-content: space-around;
}

.heading---title-text p {
  color: var(--theme-white);
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 3px;
  margin: 0;
  font-size: 13px;
  padding: 5px;
}

.footer-border {
  border: #005546 1px solid;
  margin: 14px 0px;
}

/* ===== WHITE CARDS ===== */
.footer-section {
  display: flex;
  justify-content: center;
}
.footer-card {
  background: #f6f1eb;
  border-radius: 20px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.25);
  height: 100%;
  padding: 20px;
  margin: 0 20px;
  position: relative;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.footer-card h5 {
  font-size: calc(0.9rem + 0.45vw);
  line-height: 1.5;
  text-transform: uppercase;
  margin: 0px 0px 10px;
  color: var(--theme-black);
  font-weight: 700;
}

.footer-card .logo-badge img {
  width: 70%;
  height: auto;
  margin-bottom: 20px;
}

.footer-card .bullet-list ul {
  padding-left: 0px;
}

.footer-card .bullet-list ul li {
  list-style: none;
  padding: 4px 0px;
}

.footer-card .bullet-list ul li img {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: #262626;
  margin-right: 4px;
  /* filter: grayscale(100%); */
  padding: 2px;
}

.footer-card .bullet-list ul li a {
  display: inline-block;
  color: var(--theme-black);
  position: relative;
}

.footer-card .bullet-list ul li a:hover {
  color: var(--theme-base);
  transition: 0.5s;
}

.footer-card .download-footer h4 {
  font-size: calc(0.9rem + 0.45vw);
  line-height: 1.5;
  text-transform: uppercase;
  margin: 0px 0px 10px;
  color: var(--theme-black);
  font-weight: 700;
  text-align: center;
}

.footer-card .download-footer h4 span {
  font-size: calc(0.5rem + 0.4vw);
  display: block;
  line-height: 2;
}

.footer-card .footer-download {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0px 10px;
}

.footer-card .footer-download img {
  width: 90%;
  height: auto;
}

.footer-card .free-text {
  text-align: center;
}

.footer-card .free-text p {
  text-transform: uppercase;
  margin: 0px 0px 0px;
  color: var(--theme-black);
  font-weight: 400;
  letter-spacing: 7px;
}

.footer-card .download-footer-mail {
  margin-top: 20px;
}

.footer-card .download-footer-mail h5 {
  font-size: calc(0.7rem + 0.45vw);
  line-height: 1.5;
  text-transform: uppercase;
  margin: 0px 0px 0px;
  color: var(--theme-black);
  font-weight: 700;
}

.site-list {
  padding: 0px 15px;
}

.site-list .item a {
  border: 1px solid #cfd5da;
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
  width: 90%;
  background-color: var(--theme-white);
  color: var(--theme-black);
}

.site-list .item a:hover {
  color: var(--theme-base);
  transition: 0.5s;
}

.site-list .item i {
  width: 22px;
  text-align: center;
}

/* -------footer phone */
.footer-phone-box {
  position: relative;
  margin: 0 auto;
  max-width: 400px;
  width: 100%;
}
.footer-phone-card {
  padding: 0px 5px;
  position: relative;
  margin: 0px auto;
  z-index: 5;
}
.footer-phone-card::before {
  content: "";
  position: absolute;
  top: -65px;
  left: 0px;
  right: 0;
  bottom: -65px;
  background-image: url(../images/mblion-oleochemicals-app-mobile-interface.png);
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
}

.phone-detail {
  position: relative;
  z-index: 2;
  padding: 0px 15px;
}
.footer-phone-site img {
  width: 100%;
  /* margin-top: -73px; */
  position: relative;
  background-size: cover;
  overflow: hidden;
}

.footer-phone-site-text h3 {
  font-size: calc(0.9rem + 0.45vw);
  line-height: 1.5;
  text-transform: uppercase;
  padding: 2px 15px 10px;
  color: var(--theme-black);
  font-weight: 700;
}
.footer-phone-site-list {
  padding: 0px 15px;
}

.footer-phone-site-list .item a {
  border: 1px solid #cfd5da;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
  width: 100%;
  background-color: var(--theme-white);
  color: var(--theme-black);
}
.footer-phone-site-list .item a:hover {
  color: var(--theme-base);
  transition: 0.5s;
}

.footer-bottom-content {
  padding: 19px 0px 0px;
  text-align: center;
  color: #fff;
}
.footer-bottom-content p a {
  color: var(--theme-white);
}
.footer-bottom-content p a:hover {
  color: var(--theme-base);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.footer-about {
  background-image: url(../images/palm-oil-plantation-trees.png);
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
}

.footer-our-product {
  background-image: url(../images/palm-oil-raw-material-plantation.png);
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
}

.footer-download-bg {
  background-image: url(../images/palm-oil-industry-plantation.png);
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
}
.social-box {
  font-size: 15px;
  color: var(--theme-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  background-color: var(--theme-black);
  width: 27px;
  display: inline-block;
  height: 27px;
  padding: 5px;
  border-radius: 3px;
  margin-right: 10px;
  text-align: center;
}

.recommendation-box {
  background-color: #ffffff;
  padding: 25px 15px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--theme-base);
}

.recommendation-text {
  padding: 0px 0px;
  min-height: 100%;
}

.recommendation-text img {
  width: 45px;
  height: auto;
  margin: 0 auto;
  padding-bottom: 2px;
}

.recommendation-text h4 {
  font-size: 16px;
  color: var(--theme-black);
  margin: 5px 0px 0px;
}

.recommendation-text p {
  font-size: 14px;
  color: var(--theme-black);
}

.sticky-footer {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 110;
  display: none;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
/* .page-header {
  position: relative;
  display: block;
  padding: 170px 0;
  background-color: var(--theme-black);
  z-index: 1;
} */
/* 
.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: var(--theme-green);
  background-blend-mode: luminosity;
  opacity: 0.7;
  z-index: -1;
} */

.page-header img {
  width: 100%;
  height: auto;
}

.page-header__inner {
  position: relative;
  display: block;
  text-align: center;
  z-index: 15;
}

.page-header__inner h2 {
  font-size: 45px;
  color: var(--theme-white);
  line-height: 55px;
  margin-bottom: 7px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.thm-breadcrumb {
  position: relative;
  display: block;
}

.thm-breadcrumb li {
  position: relative;
  display: inline-block;
  color: var(--theme-white);
  font-size: 15px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li + li {
  margin-left: 10px;
}

.thm-breadcrumb li a {
  position: relative;
  display: inline-block;
  color: var(--theme-white);
  font-size: 15px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
  color: var(--theme-base);
}

.thm-breadcrumb li.active {
  color: var(--theme-base);
}

.wel-part {
  padding: var(--default-padding);
}

.welcome-text-title {
  /* border-bottom: 1px dotted #b5c9c6; */
  margin-bottom: 10px;
}

.welcome-text-title h1 {
  font-size: 25px;
  padding: 3px 8px;
  margin: 3px 0;
  font-weight: 700;
  color: var(--theme-white);
  line-height: 40px;
  letter-spacing: 1px;
  background-color: var(--theme-green);
}

.welcome-text p {
  text-align: justify;
  margin: 0;
  line-height: 27px;
  padding-bottom: 4px;
  color: var(--theme-black);
  font-size: 15px;
  padding-top: 4px;
  font-weight: 400;
}
.wel-images-a img {
  width: 100%;
  height: auto;
  margin: 10px 0px;
  padding: 5px;
}
.wel-images img {
  width: 100%;
  height: auto;
  margin: 10px 0px;
  padding: 5px;
  box-shadow: 0 0 5px 0 #7a7a7a4a;
}
.specification-list h3 {
  line-height: 34px;
  color: #fff;
  font-size: 15px;
  padding: 3px 12px;
  margin-bottom: 5px;
  line-height: 27px;
  line-height: 35px;
  font-weight: 500;
  background-color: #3e867c;
}
.specification-list {
  padding: 20px 0px;
}
.specification-list ul {
  margin: 0;
  padding: 0;
}
.specification-list ul li {
  color: var(--theme-black);
  font-size: 15px;
  list-style: none;
  background-color: #f5d2aa;
  padding: 7px 7px 7px 7px;
  margin-bottom: 5px;
  background-repeat: no-repeat;
  background-position: 5px 12px;
  font-weight: 400;
  line-height: 25px;
  border-left: 4px solid var(--theme-base);
}

.specification-list ul li a {
  color: #000;
  font-size: 15px;
  line-height: 27px;
  font-weight: 400;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}
.specification-list ul li a:hover {
  color: var(--theme-green);
  transition: 0.5s;
}

.welcome-text-point p {
  text-align: justify;
  margin: 0;
  line-height: 27px;
  padding-bottom: 3px;
  color: var(--theme-black);
  font-size: 15px;
  padding-top: 3px;
  font-weight: 400;
}
.welcome-text-point h2 {
  font-size: 18px;
  margin: 6px 0 6px;
  font-weight: 600;
  color: var(--theme-green);
  line-height: 30px;
  display: inline-block;
  border-bottom: 1px dotted #b5c9c6;
  position: relative;
  letter-spacing: 0.5px;
}
.welcome-text-point h3 {
  font-size: 17px;
  margin: 10px 0 7px;
  font-weight: 500;
  color: var(--theme-base);
  line-height: 35px;
  border-bottom: 1px dotted #b5c9c6;
  position: relative;
  letter-spacing: 0.5px;
}

.welcome-text-point ul {
  margin: 0;
  padding: 0;
}
.welcome-text-point ul li {
  color: var(--theme-black);
  font-size: 15px;
  list-style: none;
  padding: 3px 5px 3px 25px;
  margin-bottom: 0px;
  background-image: url(../images/icon/drop-icon.svg);
  background-repeat: no-repeat;
  background-position: 5px 10px;
  background-size: 12px;
  font-weight: 400;
  line-height: 27px;
}

.table-boxes {
  padding: 10px 0;
}

.pd-top-bottom {
  padding: 10px 0;
}
.all-page-pd-bottom {
  padding-bottom: 15px;
}
.all-page-pd-top {
  padding-top: 15px;
}

.table-responsive-1 {
  /* border: 3px solid var(--theme-green); */
}
.table-responsive-1 th {
  background-color: var(--theme-green);
  color: var(--theme-white);
  font-weight: 700;
  line-height: 26px;
  padding: 7px 10px;
  font-size: 15px;
  border: 2px solid var(--theme-extra);
}

.table-responsive-1 td {
  padding: 5px 8px;
  font-size: 15px;
  border: 2px solid var(--theme-extra);
  line-height: 25px;
  color: var(--theme-black);
  font-weight: 400;
  background-color: #efefef;
}

.table-responsive-1 tbody,
td,
tfoot,
th,
thead,
tr {
  /* border-bottom: 2px solid var(--theme-green); */
}

.welcome-text h2 {
  font-size: 18px;
  margin: 4px 0 4px;
  font-weight: 500;
  color: var(--theme-green);
  line-height: 30px;
  letter-spacing: 0;
  display: inline-block;
  border-bottom: 1px dotted #b5c9c6;
  position: relative;
}

.sticky-right {
  position: sticky;
  /* overflow-x: hidden; */
  top: 50px;
}

/* -------footer phone */
.side-phone-box {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 307px;
}
.side-phone-card {
  padding: 55px 3px;
  position: relative;
  margin: 0px auto;
  z-index: 5;
}
.side-phone-card::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0;
  bottom: 0px;
  background-image: url(../images/palm-oil-price-intelligence-mobile-app.png);
  background-size: 100% 100%;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
}

.side-phone-detail {
  position: relative;
  z-index: 2;
  padding: 3px 10px 3px 11px;
}
.side-phone-site img {
  width: 100%;
  /* margin-top: -73px; */
  position: relative;
  background-size: cover;
  overflow: hidden;
}

.side-phone-site-text h3 {
  font-size: calc(0.6rem + 0.45vw);
  line-height: 1.5;
  text-transform: uppercase;
  padding: 120px 5px 0px;
  color: var(--theme-black);
  font-weight: 700;
}
.side-phone-site-list {
  padding: 0px 0px;
}

.side-phone-site-list .item a {
  border: 1px solid #cfd5da;
  border-radius: 8px;
  padding: 0.4rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
  width: 100%;
  background-color: var(--theme-white);
  color: var(--theme-black);
}
.side-phone-site-list .item a:hover {
  color: var(--theme-base);
  transition: 0.5s;
}

.product-box {
  border: 1px solid #f0a43a;
  padding: 8px 0px;
  background: #fff;
  text-align: center;
  height: 108px;
  /* width: 85px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.product-box img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  margin-bottom: 2px;
}

.product-name {
  font-weight: 600;
  font-size: 11px;
  color: #333;
}

.grid-wrapper {
  max-width: 100%;
  margin: 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.side-phone-site-text-padding-box {
  height: 103px;
}

.side-phone-detail .bullet-list {
  margin: 3px 0px;
}
.side-phone-detail .bullet-list ul {
  padding-left: 0px;
}
.side-phone-detail .bullet-list ul li {
  list-style: none;
  padding: 2px 0px;
}

/* ODD items = Green */
.side-phone-detail .bullet-list ul li:nth-child(odd) {
  background: #e3e3e3;
}

/* EVEN items = Orange */
.side-phone-detail .bullet-list ul li:nth-child(even) {
  background: #efefef;
}
.side-phone-detail .bullet-list ul li h5 {
  color: var(--theme-black);
  font-weight: 600;
  padding: 8px 10px;
  font-size: 17px;
}
.side-phone-detail .bullet-list ul li img {
  width: 30px;
  height: 30px;
  margin: 3px 8px 3px 15px;
  padding: 1px;
}

.side-phone-detail .bullet-list ul li a {
  display: inline-block;
  color: var(--theme-black);
  position: relative;
  font-size: 0.9em;
}

.side-phone-detail .bullet-list ul li a:hover {
  color: #000;
  transition: 0.5s;
}

/* .side-phone-detail .bullet-list ul li a::before {
  position: absolute;
  top: 50%;
  right: 20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f30b";
  font-size: 14px;
  color: var(--theme-base);
  transform: translateY(-50%) scale(0);
  -webkit-transition: 500ms;
  transition: 500ms;
} */

/*--------------------------------------------------------------
# Events One
--------------------------------------------------------------*/
.products-one {
  background-color: var(--theme-green);
  padding: var(--default-padding);
  overflow: hidden;
}

.products-one__right {
  position: relative;
  display: block;
}

.products-one__carousel {
  position: relative;
  display: block;
}

.products-one__single {
  position: relative;
  border: 3px solid var(--theme-white);
  margin: 15px 5px 15px 5px;
  display: block;
  -webkit-box-shadow: 0px 8px 8px 0px rgb(0 0 0 / 3%);
  box-shadow: 0px 8px 8px 0px rgb(0 0 0 / 3%);
  border-radius: 15px;
  background-color: #fff;
  max-height: 100%;
}

.products-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 15px 15px 0px 0px;
  z-index: 1;
}

.products-one__img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* content: ""; */
  /* background: rgb(33, 45, 43); */
  /* background: linear-gradient(
    180deg,
    rgb(20 45 43 / 0%) 8%,
    var(--theme-green) 92%
  ); */
  /* z-index: 1; */
}

.products-one__img:after {
  position: absolute;
  top: 0;
  background-color: #fff;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  /* background-color: rgba(var(--theme-black-rgb), 0.3); */
  /* transform: scale(1, 0); */
  /* transition: transform 500ms ease; */
  transform-origin: top center;
  border-radius: var(--theme-bdr-radius);
  z-index: -2;
}

.products-one__single:hover .products-one__img:after {
  transform: scale(1, 1);
  transform-origin: bottom center;
}

.products-one__img img {
  width: 100%;
  /* border-radius: var(--theme-bdr-radius); */
  transform: scale(1);
  transition: transform 500ms ease;
}

.products-one__single:hover .products-one__img img {
  transform: scale(1.05);
}

.products-one__date {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--theme-primary);
  padding: 6px 25px;
  border-radius: 15px;
  z-index: 2;
}

.products-one__date p {
  font-size: 18px;
  color: var(--theme-black);
  line-height: 18px;
  font-family: var(--theme-font-three);
  font-weight: 700;
}

.products-one__content {
  padding: 12px 12px;
  /* position: absolute; */
  /* bottom: 15px; */
  /* left: 25px; */
  /* z-index: 2; */
}
.products-one__content .products-one__title {
  font-weight: 500;
  line-height: 29px;
}
.products-one__content .products-one__title a {
  color: var(--theme-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.products-one__single:hover .products-one__content .products-one__title a {
  color: var(--theme-green);
}

.products-one__content p {
  margin: 0;
  line-height: 26px;
  padding-bottom: 4px;
  color: var(--theme-black);
  font-size: 15px;
  padding-top: 4px;
  font-weight: 400;
  text-align: justify;
}

.products-one__content .products-one__read {
  font-weight: 500;
  line-height: 29px;
}
.products-one__content .products-one__read a {
  color: var(--theme-green);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-size: 16px;
  letter-spacing: 0.5px;
}
.products-one__single:hover .products-one__content .products-one__read a {
  color: var(--theme-base);
}

.products-one__carousel.owl-carousel .owl-stage-outer {
  overflow: hidden;
}

.products-one__carousel.owl-carousel .owl-item {
  opacity: 0;
  overflow: hidden;
  transition:
    opacity 500ms ease,
    visibility 500ms ease;
}

.products-one__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.products-one__carousel.owl-theme .owl-nav {
  position: absolute;
  bottom: -70px;
  right: 0px;
  margin: 0;
}

.products-one__carousel.owl-theme .owl-nav .owl-next {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  color: var(--theme-black);
  border: 2px solid var(--theme-black);
  font-size: 15px;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.products-one__carousel.owl-theme .owl-nav .owl-prev {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  color: var(--theme-black);
  border: 2px solid var(--theme-black);
  font-size: 15px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.products-one__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 5px;
}

.products-one__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 5px;
}

.products-one__carousel.owl-theme .owl-nav .owl-next:hover,
.products-one__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--theme-base);
  color: var(--theme-white);
  border: 2px solid var(--theme-base);
}

.client-page {
  background-color: var(--theme-white);
  padding: 15px;
  margin: 20px 0px;
  border: var(--theme-green) 2px solid;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.client-page .product .product_img img {
  width: 90px !important;
  height: auto;
  margin: 0 auto !important;
}

/* download-page--wooman */

.download-page {
  background: var(--theme-base);
  padding: 0;
  position: relative;
  margin-top: 30px;
}
.download-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #fff8f2;
}
.download-center {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 25px;
  width: 80%;
  margin: 50px auto;
}

.download-hadding h4 {
  font-weight: 200;
  font-size: calc(1.7rem + 0.4vw);
  letter-spacing: 0.5px;
  line-height: 1.5em;
  text-transform: uppercase;
  color: var(--theme-white);
  align-items: center;
}
.download-images-page {
  display: flex;
  gap: 25px;
}
.download-images-page a img {
  width: 100%;
}
.download-page img {
  width: 100%;
  height: auto;
  position: relative;
}

.download-woman {
  text-align: center;
}
.download-woman img {
  width: 100%;
  text-align: center;
}

.contact-info-area-wrapper-p {
  background: var(--theme-base);
  padding: 60px;
  border-radius: 10px;
  position: relative;
}
.contact-info-area-wrapper-p .box-hading {
  margin-bottom: 40px;
}
.contact-info-area-wrapper-p .box-hading h4 {
  font-size: 42px;
  color: var(--theme-extra);
  margin-bottom: 10px;
  font-weight: 800;
}
.contact-info-area-wrapper-p .box-hading p {
  line-height: 27px;
  font-size: 17px;
  margin: 0px;
  color: var(--theme-extra);
}

@media only screen and (max-width: 991px) {
  .contact-info-area-wrapper-p {
    margin-right: 0;
    padding: 25px;
  }
}
.contact-info-area-wrapper-p .single-contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 575px) {
  .contact-info-area-wrapper-p .single-contact-info {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
  }
}
.contact-info-area-wrapper-p .single-contact-info:last-child {
  margin-bottom: 0;
}
.contact-info-area-wrapper-p .single-contact-info .icon {
  height: 55px;
  width: 55px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-area-wrapper-p .single-contact-info .icon i {
  color: var(--theme-green);
  font-size: 20px;
}
.contact-info-area-wrapper-p .single-contact-info .info-wrapper span {
  color: #ffffff;
  display: block;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
}
.contact-info-area-wrapper-p .single-contact-info .info-wrapper a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
}
@media only screen and (max-width: 575px) {
  .contact-info-area-wrapper-p.new {
    padding: 25px;
    margin-bottom: 25px;
  }
}

.contact-form-p {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  border: 1px solid rgba(32, 40, 45, 0.2);
}
@media only screen and (max-width: 991px) {
  .contact-form-p {
    margin-left: 0;
    padding: 25px;
  }
}
.contact-form-p input {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(32, 40, 45, 0.2);
  border-radius: 5px;
  margin-bottom: 30px;
  padding: 10px 15px;
  font-size: 15px;
}
.contact-form-p textarea {
  margin-bottom: 20px;
  border: 1px solid rgba(32, 40, 45, 0.2);
  border-radius: 5px;
  height: 100px;
  padding: 10px 15px;
  width: 100%;
}
.contact-form-p textarea:focus {
  border: 1px solid var(--theme-base);
}
.contact-form-p.new {
  margin-left: 0;
}

.rts-btn.btn-primary {
  background: var(--theme-green);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
}
.rts-btn.btn-primary::before {
  content: "";
  position: absolute;
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  width: 200%;
  height: 200%;
  top: 110%;
  left: 50%;
  background: #f2f2f2;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  z-index: -1;
}
.rts-btn.btn-primary:hover {
  background: #f2f2f2;
  color: var(--theme-green);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.rts-btn.btn-primary:hover::before {
  top: -40%;
}
.rts-btn.btn-primary.btn-white {
  background: #f2f2f2;
  color: #20282d;
}
.rts-btn.btn-primary.btn-white::before {
  background: var(--theme-green);
}
.rts-btn.btn-primary.btn-white:hover {
  background: var(--theme-green);
  color: #f2f2f2;
}
.rts-btn.btn-primary.btn-white:hover::before {
  top: -40%;
}
.rts-btn.btn-primary.with-border {
  border: 1px solid transparent;
}

/*--------------------------------------------------------------
# FAQ One
--------------------------------------------------------------*/
.faq-one {
  position: relative;
  display: block;
  background-color: var(--theme-extra);
  padding: 120px 0 160px;
  z-index: 1;
}

.faq-one-shape-1 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  mix-blend-mode: luminosity;
  opacity: 0.15;
  z-index: -1;
}

.faq-one-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 807px;
  height: 626px;
  opacity: 0.08;
  z-index: -1;
}

.faq-one__left {
  position: relative;
  display: block;
}

.faq-one__left .section-title {
  margin-bottom: 28px;
}

.faq-one__text-1 {
  font-size: 16px;
  padding-bottom: 41px;
  margin-right: 70px;
}

.faq-one__btn {
  font-weight: 800;
}

.faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  border: 2px solid var(--theme-bdr-color);
  border-radius: 35px;
  background-color: var(--theme-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one-accrodion .accrodion.active {
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.05);
}

.faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 21px 40px 21px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  border-radius: 35px;
}

.faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 28px;
  color: var(--theme-black);
  letter-spacing: -0.02em;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.faq-one-accrodion .accrodion + .accrodion {
  margin-top: 10px;
}

.faq-one-accrodion .accrodion.active .accrodion-title {
  color: var(--theme-base);
}

.faq-one-accrodion .accrodion.active .accrodion-title h4 {
  color: var(--theme-base);
}

.faq-one-accrodion .accrodion-title h4::before {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  color: var(--theme-extra);
  background-color: var(--theme-green);
  position: absolute;
  top: 50%;
  right: -15px;
  height: 20px;
  width: 20px;
  line-height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\f068";
  color: var(--theme-green);
  background-color: var(--theme-bdr-color);
  height: 20px;
  width: 20px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-one-accrodion .accrodion .accrodion-title h4::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -27px;
  transform: translateY(-50%);
  height: 45px;
  width: 45px;
  background-color: var(--theme-extra);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::after {
  background-color: var(--theme-base);
}

.faq-one-accrodion .accrodion-content {
  position: relative;
  padding: 0px 40px 14px;
  margin-top: -5px;
}

.faq-one-accrodion .accrodion-content p {
  margin: 0;
}
