:root {
  --dark-green: #014643;
  --green: #1CC070;
  --black: #000000;
  --white: #ffffff;
  --txt-color: #272C2D;
}

html {
  scroll-behavior: smooth;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.container-narrow {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.d-flex {
  display: flex;
  flex-wrap: wrap;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-space-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

body,
button,
input,
select,
optgroup,
textarea {
  color: var(--txt-color);
  font-family: "Forma DJR Micro";
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
a {
  clear: both;
  font-family: "Forma DJR Micro";
}

h1 {
  font-weight: 500;
  font-size: 42px;
  line-height: 52px;
  margin: 0px;
}

h2 {
  font-weight: 500;
  font-size: 42px;
  line-height: 52px;
  margin: 0px;
}

h3 {
  font-weight: 500;
  font-size: 36px;
  line-height: 46px;
  margin: 0px;
}

h4 {
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  margin: 0px;
}

h5 {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  margin: 0px;
}

h6 {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin: 0px;
}

a {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  text-decoration: none;
  color: var(--txt-color);
  transition: 0.3s linear;
}

a:hover,
a:focus {
  color: rgb(1, 70, 67);
}

.txt-upper {
  text-transform: uppercase;
}

.txt-capitalize {
  text-transform: capitalize;
}

.btn {
  font-weight: 500;
  padding: 16px 40px;
  border-radius: 5px;
  gap: 10px;
  transition: 0.3s linear;
}

.btn svg {
  transition: 0.3s linear;
}

.btn-white {
  background-color: var(--white);
  color: var(--dark-green);
}

.btn-white svg {
  fill: var(--dark-green);
}

.btn-white:hover {
  background-color: var(--dark-green);
  color: var(--white);
}

.btn-white:hover svg {
  fill: var(--white);
}

.btn-dgreen {
  background-color: var(--dark-green);
  color: var(--white);
}

.btn-dgreen svg {
  fill: var(--white);
}

.btn-dgreen:hover {
  background-color: var(--green);
  color: var(--white);
}

.btn-dgreen:hover svg {
  fill: var(--white);
}

.btn-outline {
  border: 1px solid var(--dark-green);
  background-color: transparent;
  color: var(--dark-green);
}

.btn-outline:hover {
  background-color: var(--dark-green);
  color: var(--white);
}

.btn-outline svg {
  fill: var(--dark-green);
}

.btn-outline:hover svg {
  fill: var(--white);
}

.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.pt100 {
  padding-top: 100px;
}

.pb100 {
  padding-bottom: 100px;
}

header .site-branding .site-title {
  display: none;
}

header .top_header_wrap {
  padding: 24px 0px;
  background-color: var(--dark-green);
}



header .top_menu ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}

header .top_menu ul li {
  line-height: 0;
}

header .top_menu ul li a {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: rgb(230, 230, 230);
}

header .site-branding {
  /* width: 20%; */
  line-height: 0;
}

header .site-branding .custom-logo-link {
  line-height: 0;
}

header .site-branding img {
  width: 100%;
  max-width: 200px;
}

header .header_search_wrap {

  /* width: 60%; */
}

header .header_search_wrap form {
  /* width: 60%; */
  position: relative;
  padding: 0px 30px;
  flex-wrap: nowrap !important;
}

header .header_search_wrap #product_cat {
  width: 130px;
  background: transparent;
  border: none;
  color: rgb(255, 255, 255);
  outline: none;
  margin-right: 20px;
}

header .categories-toggle {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  color: rgb(250, 250, 250);
  background: transparent;
  border: none;
  outline: none;
  padding: 0px;
  margin-right: 20px;
  text-align: left;
  cursor: pointer;
}

header .categories_menu .category-dropdown-list {
  width: 100%;
  max-width: 340px;
  background: rgb(250, 250, 250);
  padding: 25px;
  position: absolute;
  top: 73px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s linear;
}

header .categories_menu.open .category-dropdown-list {
  opacity: 1;
  visibility: visible;
  max-height: 400px;
  overflow-y: scroll;
}

header .categories-toggle p {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  margin: 0px;
}

header .categories-toggle p span {
  font-weight: 500;
}

header .categories_menu .menu-category-menu-container {
  width: 100%;
  max-width: 340px;
  background: rgb(250, 250, 250);
  padding: 25px;
  position: absolute;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s linear;
}

header .categories_menu.open .menu-category-menu-container {
  opacity: 1;
  visibility: visible;
}

header .categories_menu ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

header .categories_menu .category-dropdown-list li {
  line-height: 0;
}

header .categories_menu .category-dropdown-list li:not(:last-child) {
  margin-bottom: 25px;
}

header .categories_menu .category-dropdown-list li label {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: var(--txt-color);
  cursor: pointer;
  transition: 0.3s linear;
}

header .categories_menu .category-dropdown-list li label:hover {
  text-decoration: underline 2px;
  text-underline-offset: 2px;
}

header .categories_menu .category-dropdown-list li input {
  display: none;
}

header .header_search {
  position: relative;
  width: 100%;
  max-width: 300px;
  border: 1px solid rgb(26, 175, 102);
  border-radius: 5px;
  padding: 10px;
}

header .header_search form {
  line-height: 0;
}

header .header_search input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0px 25px 0px 0px;
  font-size: 18px;
  line-height: 24px;
  color: rgb(255, 255, 255) !important;
}

header .header_search input::placeholder {
  color: rgb(26, 175, 102);
}

header .header_search input[type="search"]::-webkit-search-cancel-button {
  display: none;
  opacity: 0;
}

header .header_search button {
  position: absolute;
  right: 10px;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0px;
  line-height: 0;
  cursor: pointer;
}

header .header_account {
  padding: 0px 30px;
}

header .header_account a {
  gap: 10px;
}

header .header_account p {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  margin: 0px;
  color: rgb(244, 244, 244);
}

header .header_cart a {
  position: relative;
  line-height: 0;
  align-items: center;
  display: flex !important;
}

header .header_cart #pi-eqw-cart .pi-count {
  top: 5px;
  left: unset;
  right: -2px;
  background: rgb(26, 175, 102);
  line-height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .header_cart p {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  margin: 0px;
  color: rgb(244, 244, 244);
  background: rgb(26, 175, 102);
  border-radius: 20px;
  position: absolute;
  top: 0px;
  right: -4px;
}

.main_menu {
  background: rgb(228, 242, 230);
}

.main_menu .main-navigation {
  position: relative;
}

.main_menu .main-navigation ul.mega-menu {
  position: unset !important;
  width: 100% !important;
  max-width: 1440px !important;
  margin: auto !important;
  padding: 15px 0px !important;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-megamenu>ul.mega-sub-menu {
  top: 54px;
  padding: 0px 22px;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row {
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1440px !important;
  margin: auto !important;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 li .mega-menu-link {
  position: relative;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 li .mega-menu-link::after {
  content: "";
  display: block;
  height: 3px;
  width: 0%;
  background: rgb(28, 192, 112);
  position: absolute;
  bottom: -15px;
  transition: 0.3s linear;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 li .mega-menu-link:hover::after,
#mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-toggle-on .mega-menu-link::after {
  width: 100%;
}

.mega-menu .mega-sub-menu .mega-menu_cta {
  padding: 40px 0px !important;
}

.mega-menu .mega-sub-menu .mega-menu_cta li,
.mega-menu .mega-sub-menu .mega-menu_navigation li {
  padding: 0px !important;
  line-height: 0 !important;
}

.mega-menu .mega-sub-menu .mega-menu_cta li p,
.mega-menu .mega-sub-menu .mega-menu_navigation li p {
  margin: 0px !important;
}

.mega-menu .mega-sub-menu .mega-menu_cta .mega-block-title {
  position: absolute;
  top: 20px;
  left: 20px;
  line-height: 40px;
  color: rgb(250, 250, 250) !important;
  text-transform: none !important;
  font-size: 30px !important;
  font-weight: 500 !important;
}

.mega-menu .mega-sub-menu .mega-menu_cta a.btn {
  width: fit-content;
  padding-right: 60px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-image: url("data:image/svg+xml,<svg width=\"17\" height=\"13\" viewBox=\"0 0 17 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15.5 6.01683V7.01683H0V6.01683H15.5Z\" fill=\"%23014643\"/><path d=\"M16.1221 6.445L8.43006 12.843L7.79006 12.075L14.5611 6.442L7.78906 0.766L8.43106 0L16.1221 6.445Z\" fill=\"%23014643\"/></svg>");
  background-repeat: no-repeat;
  background-position: right 30px center;
}

.mega-menu .mega-sub-menu .mega-menu_cta a.btn:hover {
  background-image: url("data:image/svg+xml,<svg width=\"17\" height=\"13\" viewBox=\"0 0 17 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15.5 6.01683V7.01683H0V6.01683H15.5Z\" fill=\"white\"/><path d=\"M16.1221 6.445L8.43006 12.843L7.79006 12.075L14.5611 6.442L7.78906 0.766L8.43106 0L16.1221 6.445Z\" fill=\"white\"/></svg>");
}

.mega-menu .mega-sub-menu .mega-menu_navigation {
  padding: 40px 7px !important;
}

.mega-menu .mega-sub-menu .mega-menu_navigation .widget_text .textwidget {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mega-menu .mega-sub-menu .mega-menu_navigation .widget_text .textwidget h5 {
  font-weight: 500;
  color: var(--txt-color);
}

.mega-menu .mega-sub-menu .mega-menu_navigation .widget_nav_menu ul li.submenu_heading a {
  line-height: 30px;
  color: var(--dark-green) !important;
  text-transform: none !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  padding-bottom: 15px !important;
}

.mega-menu .mega-sub-menu .mega-menu_navigation ul.mega-sub-menu {
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0px 10px;
  display: flex !important;
}

.mega-menu .mega-sub-menu .mega-menu_navigation .widget_media_image {
  width: 50px !important;
}

.mega-menu .mega-sub-menu .mega-menu_navigation .widget_media_image img {
  width: 100% !important;
}

.mega-menu .mega-sub-menu .mega-menu_navigation .widget_nav_menu {
  width: calc(100% - 60px) !important;
  padding-top: 0px !important;
  padding-bottom: 20px !important;
  margin-bottom: 20px !important;
  border-bottom: 1px solid rgb(230, 230, 230) !important;
}

.mega-menu .mega-sub-menu .mega-menu_navigation .widget_nav_menu:last-child {
  margin-bottom: 0px !important;
  padding-bottom: 0px !important;
  border-bottom: none !important;
}

.mega-menu .mega-sub-menu .mega-menu_navigation .mega-block-title {
  line-height: 30px;
  color: var(--dark-green) !important;
  text-transform: none !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  padding-bottom: 15px !important;
}

.mega-menu .mega-sub-menu .mega-menu_navigation .widget_nav_menu ul {
  width: 100%;
  position: unset;
  box-shadow: none;
  flex-direction: column;
}

.mega-menu .mega-sub-menu .mega-menu_navigation .widget_nav_menu ul li a {
  position: relative;
  width: fit-content;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: var(--dark-green) !important;
}

.mega-menu .mega-sub-menu .mega-menu_navigation .widget_nav_menu ul li a:hover {
  color: var(--green) !important;
}

.mega-menu .mega-sub-menu .link_sustain a::after {
  content: "Sustainable";
  background: rgb(28, 192, 112);
  color: rgb(255, 255, 255);
  padding: 2px 8px;
  font-size: 10px;
  border-radius: 15px;
  margin-left: 5px;
}

.home_hero-section .container {
  max-width: 860px;
  padding-bottom: 70px;
  padding-top: 50px;
}

.home_hero-section .container h1 {
  color: var(--dark-green);
  font-weight: 400;
  font-size: 56px;
  line-height: 66px;
}

.home_hero-section .hero_text p {
  margin-top: 10px;
  margin-bottom: 0px;
  font-size: 24px;
  line-height: 34px;
}

.cta_section .container {
  gap: 15px;
}

.cta_section .cta_col_lft {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 34px;
  border-radius: 10px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  flex-direction: column;
}

.wr {
  width: calc(40% - 7.5px);
  position: relative;
}

video#image_video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

span.btn.btn-dgreen.d-flex.align-center.btn-top {
  margin-top: 50px;
}

.cta_section .cta_col_rtl {
  width: calc(60% - 7.5px);
  gap: 15px;
}

.cta_section .cta_col_rtl .img_link_box {
  line-height: 0;
}

.cta_section .cta_col_rtl .img_link_box {
  width: calc(33.33% - 10px);
}

.cta_section .cta_col_rtl .img_link_box img {
  height: 275px;
  object-fit: cover;
}

.cta_section .img_txt_box {
  background-color: rgb(228, 242, 230);
  border-radius: 10px;
  height: 350px;
  max-width: 1440px;
  margin: auto;
}

.cta_section .img_txt_box .img_txt_box_txt {
  width: 58%;
  padding: 35px 40px;
}

.cta_section .img_txt_box .img_txt_box_img {
  position: relative;
  width: 42%;
  line-height: 0;
  height: 350px;
}

.cta_section .img_txt_box .img_txt_box_img img {
  height: 100%;
  object-fit: cover;
  object-position: 0px -65px;
  width: 100%;
}

.cta_section .img_txt_box .img_txt_box_img::after {
  content: "";
  display: block;
  height: 70px;
  width: 70px;
  background: url("/wp-content/uploads/2024/08/logo-icon-banner-green.png") center center / 100%;
  position: absolute;
  bottom: 30px;
  right: 30px;
}

.cta_section .img_txt_box .img_txt_box_txt h2 span {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.cta_section .img_txt_box .img_txt_box_txt h2 span::after {
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  background: var(--green);
  opacity: 0.7;
  position: absolute;
  bottom: 1px;
  z-index: -1;
}

.cta_section .img_txt_box .img_txt_box_txt p {
  margin: 20px 0px 40px;
  font-size: 18px;
  line-height: 26px;
}

.cta_section .img_txt_box .img_txt_box_txt a {
  width: fit-content;
}

.for_you-section{
	padding-left: 40px;
	padding-right: 40px;
}

.for_you-section .for-you_img {
  width: 50%;
  line-height: 0;
}

.for_you-section .for-you_img img {
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
}

.for_you-section .for-you-txt {
  width: 42%;
}

.for_you-section .for-you-txt .for-you_subheading {
  color: var(--green);
  margin-bottom: 10px;
}

.for_you-section .for-you_txt p {
  margin: 20px 0px 60px;
}

.for_you-section .categories-tabs {
  gap: 16px;
}

.for_you-section .categories-tabs a {
  position: relative;
  width: calc(50% - 8px);
  color: var(--dark-green);
  border: 1px solid var(--dark-green);
  border-radius: 10px;
  padding: 17px 20px;
}

.for_you-section .categories-tabs a svg {
  fill: var(--dark-green);
}

.for_you-section .categories-tabs a::after {
  content: "";
  display: block;
  height: 100%;
  width: 0px;
  background-color: rgb(244, 250, 245);
  border-radius: 10px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
  transition: 0.3s linear;
}

.for_you-section .categories-tabs a:hover::after {
  width: 100%;
}

.our-story-section {
  background-color: rgb(250, 250, 250);
	padding-left: 40px;
	padding-right: 40px;
}

.our-story-section .our-story_video {
  width: 48%;
  line-height: 0;
  position: relative;
}

.our-story-section .our-story_video video {
  border-radius: 10px;
  width: 100%;
}

.our-story-section .our-story_video button {
  background: transparent;
  padding: 0px;
  border: none;
  line-height: 0;
  cursor: pointer;
  position: absolute;
  top: 15%;
  left: 48%;
  transition: 0.3s linear;
}

.our-story_video {
  position: relative;
}

button.btn_play1 {
  position: absolute;
  top: 24%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
}

.cta_section .our-story_video button {
  padding: 0px;
  border: none;
  line-height: 0;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.3s linear;
  background: transparent;
  transform: translate(-50%, -50%);
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  appearance: button;
}

body,
button,
input,
select,
optgroup,
textarea {
  color: var(--txt-color);
  font-family: "Forma DJR Micro";
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

.our-story-section .our-story_video button.btn_pause {
  opacity: 0;
  visibility: hidden;
}

.our-story-section .our-story_video.playing button.btn_pause {
  opacity: 1;
  visibility: visible;
}

.our-story-section .our-story_video.playing button.btn_play {
  opacity: 0;
  visibility: hidden;
}

.our-story-section .our-story-txt {
  width: 50%;
}

.our-story-section .our-story-txt .our-story_subheading {
  color: var(--green);
  margin-bottom: 10px;
}

.our-story-section .our-story_txt p {
  margin: 20px 0px 0px;
}

.our-story-section .our-story_txt p:last-child {
  margin-bottom: 60px;
}

.our-story-section .our-story-txt a {
  gap: 10px;
}

.our-story-section .our-story-txt a:hover {
  color: var(--dark-green);
}

.our-story-section .our-story-txt a:hover svg {
  fill: var(--dark-green);
}

.our-story-section .our-story-txt a:last-child {
  margin-top: 20px;
}

.sign_up-section {
  background-color: rgb(250, 250, 250);
}

.sign_up-section .container-narrow {
  background-color: rgb(239, 234, 249);
  border-radius: 10px;
}

.sign_up-section .sign_up-txt {
  width: 60%;
  padding: 0px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sign_up-section .sign_up-txt .sign_up_heading {
  color: var(--dark-green);
  margin-top: 20px;
  margin-bottom: 30px;
}

.sign_up-section .sign_up-txt .sign_up_heading span {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.sign_up-section .sign_up-txt .sign_up_heading span::after {
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  background: var(--white);
  opacity: 0.7;
  position: absolute;
  bottom: 1px;
  z-index: -1;
}

.sign_up-section .sign_up-txt a {
  width: fit-content;
}

.sign_up-section .sign_up_img {
  position: relative;
  width: 40%;
  line-height: 0;
}

.sign_up-section .sign_up_img::after {
  content: "";
  display: block;
  height: 70px;
  width: 70px;
  background: url("/wp-content/uploads/2024/08/logo-icon-banner-purple.png") center center / 100%;
  position: absolute;
  bottom: 30px;
  right: 30px;
}

.signup_model {
  position: relative;
  background: rgb(255, 255, 255);
  width: 100%;
  max-width: 580px;
  margin: auto;
  padding: 50px;
  border-radius: 10px;
}

.signup_model form p {
  margin: 0px;
}

.signup_model form label {
  display: block;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 5px;
}

.signup_model form .wpcf7-form-control-wrap {
  display: block;
}

.signup_model form .wpcf7-form-control-wrap:not(:last-child) {
  margin-bottom: 15px;
}

.signup_model form input,
.signup_model form textarea {
  width: 100%;
  border: 1px solid rgb(168, 168, 168);
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 14px;
  line-height: 23px;
  color: var(--black);
  box-shadow: none !important;
  outline: none !important;
}

.signup_model form input::placeholder,
.signup_model form textarea::placeholder {
  color: rgb(168, 168, 168);
}

.signup_model form .form_btn {
  margin-top: 30px;
}

.signup_model form .form_btn input {
  width: fit-content;
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  padding: 15px 60px 15px 40px;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 5px;
  color: var(--white);
  background-color: var(--green);
  background-image: url("data:image/svg+xml,<svg width=\"17\" height=\"14\" viewBox=\"0 0 17 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15.5039 6.63121V7.63121H0.00390625V6.63121H15.5039Z\" fill=\"%23F4F4F4\"/><path d=\"M16.126 7.06023L8.43397 13.4582L7.79397 12.6902L14.565 7.05723L7.79297 1.38123L8.43497 0.615234L16.126 7.06023Z\" fill=\"%23F4F4F4\"/></svg>");
  background-repeat: no-repeat;
  background-position: right 30px center;
  cursor: pointer;
  transition: 0.3s linear;
}

.signup_model form .form_btn input:hover {
  background-color: var(--dark-green);
}

.mfp-close-btn-in .mfp-close {
  color: rgb(0, 0, 0);
  opacity: 1;
}

footer {
  background-color: rgb(255, 255, 255);
  padding-top: 80px;
  padding-bottom: 30px;
}

footer aside {
  width: 33.33%;
}

footer aside:last-child {
  padding-right: 3.33%;
}

footer .widget {
  margin: 0px;
}

footer .footer_site_info .wp-block-image {
  margin: 0px 0px 40px;
}

footer .footer_site_info .wp-block-image img {
  width: 100%;
  max-width: 200px;
}

footer .footer_site_info p {
  margin: 20px 0px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  width: 100%;
  max-width: 200px;
}

footer .footer_site_info p a:hover {
  color: var(--green);
}

footer .footer_site_info .wp-block-social-links {
  margin: 0px;
}

footer .footer_site_info .wp-block-social-links li {
  background-color: transparent;
  border-radius: 0px;
  transform: scale(1);
}

footer .footer_site_info .wp-block-social-links .wp-social-link-linkedin {
  background-image: url("/wp-content/uploads/2024/09/Icon-linkedin-in.png");
}

footer .footer_site_info .wp-block-social-links .wp-social-link-youtube {
  background-image: url("/wp-content/uploads/2024/09/Icon-youtube.png");
}

footer .footer_site_info .wp-block-social-links a {
  height: 45px;
  width: 45px;
}

footer .footer_site_info .wp-block-social-links a svg {
  display: none;
}

footer .footer_menu .widgettitle,
footer .footer_newsletter .wp-block-heading {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: var(--green);
}

footer .footer_menu ul {
  padding: 0px;
  margin: 30px 0px 0px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 0px;
}

footer .footer_menu ul li {
  width: 50%;
}

footer .footer_menu ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

footer .footer_menu ul li a:hover {
  color: var(--green);
}

footer .footer_newsletter .wp-block-heading {
  margin-bottom: 10px;
}

footer .footer_newsletter p {
  margin: 0px;
  width: 100%;
  max-width: 400px;
}

footer .footer_newsletter form {
  margin-top: 20px;
}

footer .footer_newsletter form p {
  position: relative;
  max-width: 100%;
}

footer .footer_newsletter form .wpcf7-form-control-wrap {
  display: block;
}

footer .footer_newsletter form input[type="email"] {
  width: 100%;
  background: rgb(250, 250, 250);
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 5px;
  padding: 20px 100px 20px 20px;
  color: var(--txt-color);
}

footer .footer_newsletter form input::placeholder {
  color: rgb(168, 168, 168);
}

footer .footer_newsletter form .wpcf7-submit {
  position: absolute;
  top: 0px;
  right: 0px;
  border: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml,<svg width=\"17\" height=\"13\" viewBox=\"0 0 17 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15.5 6.01683V7.01683H0V6.01683H15.5Z\" fill=\"%23014643\"/><path d=\"M16.1221 6.445L8.43006 12.843L7.79006 12.075L14.5611 6.442L7.78906 0.766L8.43106 0L16.1221 6.445Z\" fill=\"%23014643\"/></svg>");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding: 25px 45px 25px 25px;
  font-weight: 500;
  cursor: pointer;
}

footer .footer_newsletter form .wpcf7-spinner {
  display: none !important;
}

footer .site-info {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 2px solid rgb(230, 230, 230);
}

footer .site-info .copyright_txt {
  width: 60%;
}

footer .site-info .copyright_txt p {
  margin: 0px;
  color: var(--txt-color);
}

footer .site-info .develop_by_txt {
  width: 40%;
}

footer .site-info .develop_by_txt p {
  margin: 0px;
  color: rgb(168, 168, 168);
}

footer .site-info .language_selector {
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  gap: 20px;
}

footer .site-info .language_selector li {
  line-height: 0;
}

footer .site-info .language_selector li a {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: rgb(168, 168, 168);
}

footer .site-info .language_selector li a.active {
  font-weight: 500;
  color: var(--green);
}

.breadcrumb {
  padding: 40px 0px;
}

.breadcrumb .container {
  gap: 15px;
}

.breadcrumb a,
.breadcrumb p {
  margin: 0px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

.breadcrumb a {
  color: var(--green);
}

.breadcrumb a:hover {
  color: var(--dark-green);
}

.breadcrumb .breadcrumb_seperator {
  line-height: 0;
}

.blank_page .entry-content {
  margin-top: 40px;
}

.blank_page .entry-content p {
  margin-top: 5px;
}

.blank_page .entry-content p:not(:last-child) {
  margin-bottom: 20px;
}

.blank_page .entry-content ul {
  margin-left: 0px;
  padding-left: 18px;
}

.blank_page .entry-content a {
  color: var(--green);
}

.blank_page .entry-content a:hover {
  color: var(--dark-green);
}

.contact_page {
  background-color: rgb(250, 250, 250);
}

.contact_wrap .contact-wrapper {
  padding-top: 40px;
}

.contact_wrap .contact-wrapper .contact_details_wrap {
  width: 70%;
  padding-right: 50px;
}

.contact_wrap .contact-wrapper .contact_map_wrap {
  width: 30%;
}

.contact_wrap .contact_details .contact_email,
.contact_wrap .contact_details .contact_address {
  width: 50%;
}

.contact_wrap .contact_details .contact_email a {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.contact_wrap .contact_details .contact_email a:hover {
  color: var(--green);
}

.contact_wrap .contact_details .contact_address p {
  margin: 0px;
}

.contact_wrap .contact_form_wrap {
  padding-top: 40px;
}

.contact_wrap .contact_form_wrap .form_title {
  font-weight: 500;
}

.contact_wrap .contact_form_wrap form .form_col_lft {
  width: 50%;
  padding-right: 10px;
}

.contact_wrap .contact_form_wrap form .form_col_rtl {
  width: 50%;
  padding-left: 10px;
}

.contact_wrap .contact_form_wrap form p {
  margin: 0px;
}

.contact_wrap .contact_form_wrap form {
  margin-top: 20px;
}

.contact_wrap .contact_form_wrap form label {
  display: block;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 5px;
}

.contact_wrap .contact_form_wrap form .wpcf7-form-control-wrap {
  display: block;
}

.contact_wrap .contact_form_wrap form .wpcf7-form-control-wrap:not(:last-child) {
  margin-bottom: 15px;
}

.contact_wrap .contact_form_wrap form input,
.contact_wrap .contact_form_wrap form textarea {
  width: 100%;
  border: 1px solid rgb(168, 168, 168);
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 14px;
  line-height: 23px;
  color: var(--black);
  box-shadow: none !important;
  outline: none !important;
}

.contact_wrap .contact_form_wrap form input::placeholder,
.contact_wrap .contact_form_wrap form textarea::placeholder {
  color: rgb(168, 168, 168);
}

.contact_wrap .contact_form_wrap form .form_btn {
  margin-top: 30px;
}

.contact_wrap .contact_form_wrap form .form_btn input {
  width: fit-content;
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  padding: 15px 60px 15px 40px;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 5px;
  color: var(--white);
  background-color: var(--green);
  background-image: url("data:image/svg+xml,<svg width=\"17\" height=\"14\" viewBox=\"0 0 17 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15.5039 6.63121V7.63121H0.00390625V6.63121H15.5039Z\" fill=\"%23F4F4F4\"/><path d=\"M16.126 7.06023L8.43397 13.4582L7.79397 12.6902L14.565 7.05723L7.79297 1.38123L8.43497 0.615234L16.126 7.06023Z\" fill=\"%23F4F4F4\"/></svg>");
  background-repeat: no-repeat;
  background-position: right 30px center;
  cursor: pointer;
  transition: 0.3s linear;
}

.contact_wrap .contact_form_wrap form .form_btn input:hover {
  background-color: var(--dark-green);
}

.contact_wrap .contact_form_wrap form .policy_txt {
  color: rgb(168, 168, 168);
  margin-top: 10px;
}

.contact_wrap .contact_form_wrap form .policy_txt a {
  color: var(--green);
  font-weight: 400;
}

.faqs_page {
  background-color: rgb(250, 250, 250);
}

.faqs_page .entry-content {
  margin: 40px 0px 0px;
}

.faqs_page .entry-content .faq_list_wrap {
  width: 45%;
}

.faqs_page .faq_list_wrap h4 {
  margin-bottom: 20px;
}

.faqs_page .faq_list_wrap ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.faqs_page .faq_list_wrap ul li:not(:last-child) {
  margin-bottom: 15px;
}

.faqs_page .faq_list_wrap ul li a {
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 10px;
}

.faqs_page .faq_list_wrap ul li a svg {
  width: 17px;
  margin-top: 6px;
}

.faqs_page .faq_list_wrap ul li a span {
  width: calc(100% - 27px);
}

.faqs_page .faq_list_wrap ul li a:hover {
  color: var(--green);
  fill: var(--green);
}

.page_faq_details {
  background: rgb(250, 250, 250);
}

.page_faq_details .breadcrumb .d-flex,
.post_breadcrumb .d-flex {
  gap: 15px;
}

.single-faq-content .faq-content_wrap {
  margin-top: 40px;
}

.single-faq-content .faq-content_wrap .faq-content {
  width: 72%;
  padding-right: 30px;
}

.single-faq-content .faq-content_wrap .faq-sidebar {
  width: 28%;
  padding-left: 30px;
}

.single-faq-content .faq-content p {
  margin-top: 5px;
}

.single-faq-content .faq-content p:not(:last-child) {
  margin-bottom: 20px;
}

.single-faq-content .faq-content ul {
  margin-left: 0px;
  padding-left: 18px;
}

.single-faq-content .faq-content a {
  color: var(--green);
}

.single-faq-content .faq-content a:hover {
  color: var(--dark-green);
}

.single-faq-content .newsletter_box {
  background: rgb(244, 244, 244);
  border-radius: 5px;
  padding: 50px 40px;
}

.single-faq-content .newsletter_box p {
  margin: 20px 0px 30px;
}

.single-faq-content .newsletter_box .wp-block-button a {
  padding: 15px 60px 15px 40px;
  line-height: 28px;
  background-image: url("data:image/svg+xml,<svg width=\"17\" height=\"14\" viewBox=\"0 0 17 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15.5039 6.63121V7.63121H0.00390625V6.63121H15.5039Z\" fill=\"%23F4F4F4\"/><path d=\"M16.126 7.06023L8.43397 13.4582L7.79397 12.6902L14.565 7.05723L7.79297 1.38123L8.43497 0.615234L16.126 7.06023Z\" fill=\"%23F4F4F4\"/></svg>");
  background-repeat: no-repeat;
  background-position: right 30px center;
  font-size: 18px !important;
  color: var(--white) !important;
}

.single-faq-content .newsletter_box .wp-block-button a:hover {
  background-color: var(--dark-green) !important;
}

.about_page {
  background-color: rgb(250, 250, 250);
}

.video_section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.video_section .video_wrap {
  position: relative;
  width: 40%;
  line-height: 0;
}

.video_section .video_wrap video {
  width: 100%;
  border-radius: 20px;
}

.video_section .video_wrap img {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.video_section .video_content {
  width: 50%;
  gap: 60px;
}

.video_section .video_content_box {
  width: calc(50% - 30px);
}

.video_section .video_content_box .content_box_img {
  line-height: 0;
  border-radius: 50px;
  border: 1px solid rgb(112, 112, 112);
  width: fit-content;
  padding: 5px;
  overflow: hidden;
}

.video_section .video_content_box h4 {
  margin: 20px 0px;
}

.video_section .video_content_box .content_box_txt p {
  margin: 0px;
}

.about_txt_section {
  background: rgb(244, 244, 244);
  padding: 60px 0px;
}

.about_txt_section .about_txt_heading {
  width: 40%;
}

.about_txt_section .about_txt_heading h4 {
  font-size: 28px;
  line-height: 38px;
}

.about_txt_section .about_txt_wrap {
  width: 50%;
  gap: 30px;
}

.about_txt_section .about_txt_wrap .about_txt {
  width: calc(50% - 15px);
  gap: 10px;
}

.about_txt_section .about_txt .about_text_icon {
  line-height: 0;
  width: 17px;
  padding-top: 6px;
}

.about_txt_section .about_txt .about_text {
  width: calc(100% - 27px);
}

.about_txt_section .about_txt .about_text p:first-child {
  margin-top: 0px;
}

.about_txt_section .about_txt .about_text p:last-child {
  margin-bottom: 0px;
}

.our_story_section .our_story_title {
  width: 40%;
}

.our_story_section .our_story_title .story_subheading {
  color: var(--green);
  margin-bottom: 10px;
}

.our_story_section .our_story_title .story_heading {
  width: 100%;
  max-width: 300px;
  margin-bottom: 40px;
}

.our_story_section .our_story_txt {
  width: 50%;
}

.news_page {
  background-color: rgb(250, 250, 250);
}

.news_content {
  margin-top: 40px;
  padding-bottom: 70px;
}

.product_tabs_wrap .product_filters {
  margin-bottom: 40px;
}

.product_tabs_wrap .product_tabs {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product_tabs_wrap .product_tabs .button {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: var(--dark-green);
  background: rgb(244, 244, 244);
  border: none;
  outline: none;
  border-radius: 5px;
  padding: 4px 16px;
  cursor: pointer;
  transition: 0.3s linear;
}

.product_tabs_wrap .product_tabs .button.is-checked {
  background: var(--green);
  color: var(--white);
}

.product_tabs_wrap .product_search_from {
  width: 30%;
}

.product_tabs_wrap .product_search_from form {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin-left: auto;
  margin-right: 0px;
  background: rgb(255, 255, 255);
  line-height: 0;
  padding: 6px 10px;
}

.product_tabs_wrap .product_search_from form {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin-left: auto;
  margin-right: 0px;
  background: rgb(255, 255, 255);
  line-height: 0;
  padding: 6px 10px;
}

.product_tabs_wrap .product_search_from form input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0px 25px 0px 0px;
  font-size: 16px;
  line-height: 20px;
  color: rgb(0, 0, 0) !important;
}

.product_tabs_wrap .product_search_from form input[type="search"]::-webkit-search-cancel-button {
  display: none;
  opacity: 0;
}

.product_tabs_wrap .product_search_from form button {
  position: absolute;
  right: 10px;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0px;
  line-height: 0;
  cursor: pointer;
}

.product_tabs_wrap .product_tab_content {
  width: 33.33%;
  padding: 30px 10px;
}

.product_tabs_wrap .product_tab_content:nth-child(1),
.product_tabs_wrap .product_tab_content:nth-child(2),
.product_tabs_wrap .product_tab_content:nth-child(3) {
  padding-top: 0px;
}

.product_tabs_wrap .product .featured-image {
  line-height: 0;
  border-radius: 20px;
  overflow: hidden;
}

.product_tabs_wrap .product:hover .featured-image a {
  transform: scale(1.1);
}

.product_tabs_wrap .product .featured-image a {
  display: block;
  line-height: 0;
}

.product_tabs_wrap .product .featured-image a img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
}

.product_tabs_wrap .product .post_tag {
  width: fit-content;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: rgb(28, 192, 112);
  margin: 20px 0px 0px;
  border: 1px solid rgb(28, 192, 112);
  border-radius: 2px;
  padding: 4px 15px;
}

.product_tabs_wrap .product h4 {
  margin: 20px 0px 10px;
}

.product_tabs_wrap .product h4 a {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.product_tabs_wrap .product:hover h4 a {
  text-decoration: underline 2px;
  text-underline-offset: 2px;
}

.product_tabs_wrap .product .post_date {
  color: rgb(168, 168, 168);
  margin: 10px 0px 0px;
}

.custom-pagination ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.custom-pagination ul .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  border-radius: 5px;
  transition: 0.3s linear;
}

.custom-pagination ul span.page-numbers {
  color: rgb(39, 44, 45);
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
}

.custom-pagination ul span.page-numbers.current {
  font-weight: 500;
}

.custom-pagination ul .page-numbers:hover,
.custom-pagination ul .page-numbers.current {
  background: rgb(244, 244, 244);
}

.custom-pagination ul .page-numbers svg {
  width: 10px;
  fill: rgb(4, 80, 77);
}

.post_content_wrap .post_content {
  width: 72%;
  padding-right: 30px;
}

.post_content_wrap .post-sidebar {
  width: 28%;
  padding-left: 30px;
}

.sharing_box p {
  margin: 0px;
}

.sharing_box h5 {
  color: var(--green);
}

.sharing_box ul {
  list-style: none;
  padding: 0px;
  margin: 10px 0px 0px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sharing_box ul li a {
  height: 45px;
  width: 45px;
  line-height: 0;
  background: rgb(244, 244, 244);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s linear;
}

.sharing_box ul li a svg {
  width: 22px;
}

.sharing_box ul li a:hover {
  background: var(--green);
}

.sharing_box ul li a path {
  transition: 0.3s linear;
}

.sharing_box ul li a:hover path {
  fill: var(--white) !important;
}

.post_content_wrap .post-sidebar .newsletter_box {
  background: rgb(244, 244, 244);
  border-radius: 5px;
  padding: 50px 40px;
}

.post_content_wrap .post-sidebar .newsletter_box p {
  margin: 20px 0px 30px;
}

.post_content_wrap .post-sidebar .newsletter_box .wp-block-button a {
  padding: 15px 60px 15px 40px;
  line-height: 28px;
  background-image: url("data:image/svg+xml,<svg width=\"17\" height=\"14\" viewBox=\"0 0 17 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15.5039 6.63121V7.63121H0.00390625V6.63121H15.5039Z\" fill=\"%23F4F4F4\"/><path d=\"M16.126 7.06023L8.43397 13.4582L7.79397 12.6902L14.565 7.05723L7.79297 1.38123L8.43497 0.615234L16.126 7.06023Z\" fill=\"%23F4F4F4\"/></svg>");
  background-repeat: no-repeat;
  background-position: right 30px center;
  font-size: 18px !important;
  color: var(--white) !important;
}

.post_content_wrap .post-sidebar .newsletter_box .wp-block-button a:hover {
  background-color: var(--dark-green) !important;
}

.post_content_wrap .post-sidebar .related-posts {
  margin-top: 40px;
}

.post_content_wrap .post-sidebar .related-posts h5 {
  color: var(--green);
  margin-bottom: 40px;
}

.post_content_wrap .post-sidebar .related-posts ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.post_content_wrap .post-sidebar .related-posts ul li:not(:last-child) {
  border-bottom: 2px solid rgb(230, 230, 230);
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.post_content_wrap .post-sidebar .related-posts ul li a {
  font-weight: 400;
}

.post_content_wrap .post-sidebar .related-posts ul li a:hover {
  color: var(--green);
}

.post_content_wrap .post_content .post-tags .cat-links,
.post_content_wrap .post_content .post-tags .edit-link {
  display: none;
}

.post_content_wrap .post_content .post-tags .tags-links {
  font-size: 0px;
}

.post_content_wrap .post_content .post-tags .tags-links a {
  display: inline-block;
  width: fit-content;
  color: var(--green);
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  margin: 0px 0px 20px;
  border: 1px solid var(--green);
  border-radius: 2px;
  padding: 4px 15px;
}

.post_content_wrap .post_content .entry-title {
  margin-bottom: 10px;
}

.post_content_wrap .post_content .entry-meta .byline {
  display: none;
}

.post_content_wrap .post_content .entry-meta .posted-on {
  font-size: 0px;
}

.post_content_wrap .post_content .entry-meta .posted-on a {
  font-weight: 400;
  color: rgb(168, 168, 168);
}

.post_content_wrap .post_content .post-thumbnail {
  display: none;
}

.post_content_wrap .post_content .entry-content {
  margin-top: 40px;
}

.post_content_wrap .post_content .entry-content p {
  margin-top: 10px;
}

.post_content_wrap .post_content .entry-content h6 {
  font-weight: 500;
}

.post_content_wrap .post_content .entry-content blockquote {
  position: relative;
  margin: 40px 0px;
  padding-left: 200px;
  color: var(--green);
}

.post_content_wrap .post_content .entry-content blockquote::before {
  content: "‚Äú";
  display: block;
  font-size: 90px;
  line-height: 90px;
  color: var(--green);
  position: absolute;
  top: -20px;
  left: 130px;
}

.post_content_wrap .post_content .entry-content blockquote h4 {
  font-weight: 500;
}

.post_content_wrap .post_content .entry-content blockquote h6 {
  font-weight: 400;
  margin-top: 10px;
}

.post_content_wrap .post_content .entry-footer {
  display: none;
}

.post_content_wrap .post_content .post-gallery {
  gap: 20px;
  margin: 60px 0px;
}

.post_content_wrap .post_content .post-gallery .post-gallery_img {
  line-height: 0;
  width: calc(33.33% - 13.3333px);
}

.post_content_wrap .post_content .post-gallery .post-gallery_img img {
  border-radius: 5px;
}

.custom-category-list {
  padding-top: 40px;
  border-bottom: 2px solid rgb(230, 230, 230);
}

.category_page {
  background: rgb(250, 250, 250);
}

.custom-category-list .subcategory-list {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
  gap: 40px;
}

.custom-category-list .subcategory-list li {
  width: calc(25% - 30px);
  line-height: 0;
}

.custom-category-list .subcategory-list li img {
  background: rgb(244, 244, 244);
  border-radius: 5px;
}

.custom-category-list .subcategory-list li a {
  display: inline-block;
  color: var(--dark-green);
}

.custom-category-list .subcategory-list li p {
  position: relative;
  width: fit-content;
  margin: 20px 0px 0px;
}

.custom-category-list .subcategory-list li a:hover p {
  text-decoration: underline 2px;
  text-underline-offset: 2px;
}

.category_products .category_products-title {
  text-align: center;
}

.category_products .popular_products {
  margin: 40px 0px 0px;
  padding: 0px;
  list-style: none;
}

.category_products .popular_products li {
  line-height: 0;
  padding: 0px 10px;
}

.category_products .slick-slider .slick-arrow {
  background: rgb(244, 244, 244);
  border-radius: 5px;
}

.category_products .slick-slider .slick-prev::after {
  background-image: url("data:image/svg+xml,<svg width=\"8\" height=\"13\" viewBox=\"0 0 8 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-2.38419e-05 5.98916C-0.000576913 6.2856 0.130418 6.567 0.357606 6.75742L6.35761 11.7864C6.78088 12.1412 7.4116 12.0857 7.76637 11.6624C8.12114 11.2391 8.06561 10.6084 7.64234 10.2536L2.56019 5.99394L7.63948 1.76881C8.06407 1.41563 8.12195 0.785112 7.76876 0.360522C7.41557 -0.064068 6.78506 -0.121951 6.36047 0.231237L0.360471 5.22224C0.132573 5.41181 0.000529289 5.69272 -2.38419e-05 5.98916Z\" fill=\"%2304504D\"/></svg>");
}

.category_products .slick-slider .slick-prev {
  left: -20px;
}

.category_products .slick-slider .slick-next::after {
  background-image: url("data:image/svg+xml,<svg width=\"8\" height=\"13\" viewBox=\"0 0 8 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.00002 5.98916C8.00058 6.2856 7.86958 6.567 7.64239 6.75742L1.64239 11.7864C1.21912 12.1412 0.588399 12.0857 0.233629 11.6624C-0.121141 11.2391 -0.0656114 10.6084 0.357658 10.2536L5.43981 5.99394L0.360522 1.76881C-0.0640679 1.41563 -0.121951 0.785112 0.231237 0.360522C0.584426 -0.064068 1.21494 -0.121951 1.63953 0.231237L7.63953 5.22224C7.86743 5.41181 7.99947 5.69272 8.00002 5.98916Z\" fill=\"%2304504D\"/></svg>");
}

.category_products .slick-slider .slick-next {
  right: -20px;
}

.category_products .popular_products li .product_badges {
  gap: 10px;
  min-height: 32px;
}

.category_products .popular_products li .product_badge {
  background: var(--green);
  border-radius: 2px;
  padding: 4px 14px;
  gap: 5px;
}

.category_products .popular_products li .product_badge.new_badge {
  background: var(--dark-green);
}

.category_products .popular_products li .product_badge p {
  margin: 0px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: rgb(244, 244, 244);
}

.category_products .popular_products li img {
  width: 100%;
  border-radius: 5px;
}

.category_products .popular_products li a {
  display: inline-block;
  color: var(--dark-green);
}

.category_products .popular_products li h6 {
  font-weight: 500;
  position: relative;
  margin: 20px 0px 0px;
}

.category_products .popular_products li a:hover h6 {
  text-decoration: underline 2px;
  text-underline-offset: 2px;
}

.videos_page {
  background-color: rgb(250, 250, 250);
}

.sec_videos {
  margin-top: 30px;
}

.sec_videos .product_filters {
  margin-bottom: 40px;
}

.sec_videos .videos_filter {
  list-style: none;
  width: 70%;
  gap: 10px;
  margin: 0px;
  padding: 0px;
}

.sec_videos .videos_filters li {
  line-height: 0;
}

.sec_videos .videos_filters li a {
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: var(--dark-green);
  background: rgb(244, 244, 244);
  padding: 4px 16px;
  border-radius: 5px;
}

.sec_videos .videos_filters li.active a {
  background: var(--green);
  color: var(--white);
}

.sec_videos .video_search_from {
  width: 30%;
}

.sec_videos .video_search_from form {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin-left: auto;
  margin-right: 0px;
  background: rgb(255, 255, 255);
  line-height: 0;
  padding: 6px 10px;
}

.sec_videos .video_search_from form input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0px 25px 0px 0px;
  font-size: 16px;
  line-height: 20px;
  color: rgb(0, 0, 0) !important;
}

.sec_videos .video_search_from form button {
  position: absolute;
  right: 10px;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0px;
  line-height: 0;
  cursor: pointer;
}

.sec_videos .videos_wrapper {
  margin-top: 40px;
}

.sec_videos .videos_wrapper .videos_wrap:not(:last-child) {
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 2px solid rgb(230, 230, 230);
}

.sec_videos .videos_wrapper .videos_wrap h4 {
  margin-bottom: 20px;
}

.sec_videos .videos_wrapper .video_wrap {
  gap: 60px 20px;
}

.sec_videos .videos_wrapper .video_wrap .video {
  width: calc(33.33% - 13.3333px);
}

.sec_videos .video .video_box {
  position: relative;
  line-height: 0;
}

.sec_videos .video .video_box video {
  width: 100%;
}

.sec_videos .video .video_box #play_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.sec_videos .video h5 {
  margin-top: 10px;
  font-weight: 500;
  color: var(--green);
  transition: 0.3s linear;
}

.sec_videos .video:hover h5 {
  text-decoration: underline 2px;
  text-underline-offset: 2px;
}

.tax-product_cat,
.tax-product_tag {
  background-color: rgb(250, 250, 250);
}

.tax-product_cat .breadcrumb .woocommerce-breadcrumb,
.tax-product_tag .breadcrumb .woocommerce-breadcrumb {
  margin: 0px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--txt-color);
}

.tax-product_cat .breadcrumb a,
.tax-product_tag .breadcrumb a {
  color: var(--green);
}

.tax-product_cat .woocommerce-products-header h1,
.tax-product_tag .woocommerce-products-header h1 {
  padding-bottom: 10px;
}

.tax-product_cat .woocommerce-products-header .term-description,
.tax-product_tag .woocommerce-products-header .term-description {
  width: 50%;
}

.tax-product_cat .woocommerce-products-header .desc_read_more,
.tax-product_tag .woocommerce-products-header .desc_read_more,
.archive .woocommerce-products-header .desc_read_more {
  gap: 10px;
}

.tax-product_cat .woocommerce-products-header .desc_read_more svg,
.tax-product_tag .woocommerce-products-header .desc_read_more svg,
.archive .woocommerce-products-header .desc_read_more svg {
  fill: var(--green);
}

.category_products_filter {
  padding: 20px 0px;
}

.category_products_filter .result-count p {
  margin: 0px 10px 0px 0px;
  padding-right: 10px;
  border-right: 2px solid rgb(230, 230, 230);
}

.category_products_filter .orderby form {
  margin: 0px;
  float: none;
  line-height: 21px;
}

.category_products_filter .orderby form select {
  width: fit-content;
  font-weight: 700;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
}

/* PAGE BACKGROUND */
.tax-product_cat,
.tax-product_tag,
.tax-product_type,
.search,
.search-results,
.woocommerce-results-page,
.post-type-archive-product,
.woocommerce-shop,
.paged {
  background-color: rgb(250, 250, 250);
}

/* PRODUCT WRAPPER */
.tax-product_cat .products,
.tax-product_tag .products,
.tax-product_type .products,
.search .products,
.search-results .products,
.woocommerce-results-page .products,
.post-type-archive-product .products,
.woocommerce-shop .products,
.paged .products {
  margin-bottom: 0 !important;
}

/* PRODUCT ITEM */
.tax-product_cat .products li,
.tax-product_tag .products li,
.tax-product_type .products li,
.search .products li,
.search-results .products li,
.woocommerce-results-page .products li,
.post-type-archive-product .products li,
.woocommerce-shop .products li,
.paged .products li {
  width: 25% !important;
  margin: 0 !important;
  padding: 20px 10px !important;
}

/* BADGES WRAPPER */
.tax-product_cat .products li .product_badges,
.tax-product_tag .products li .product_badges,
.tax-product_type .products li .product_badges,
.search .products li .product_badges,
.post-type-archive-product .products li .product_badges,
.woocommerce-shop .products li .product_badges,
.paged .products li .product_badges {
  gap: 10px;
}

/* BADGE BASE */
.tax-product_cat .products li .product_badge,
.tax-product_tag .products li .product_badge,
.tax-product_type .products li .product_badge,
.search .products li .product_badge,
.post-type-archive-product .products li .product_badge,
.woocommerce-shop .products li .product_badge,
.paged .products li .product_badge {
  background: var(--green);
  border-radius: 2px;
  padding: 4px 14px;
  gap: 5px;
}

/* NEW BADGE COLOR */
.tax-product_cat .products li .product_badge.new_badge,
.tax-product_tag .products li .product_badge.new_badge,
.tax-product_type .products li .product_badge.new_badge,
.search .products li .product_badge.new_badge,
.post-type-archive-product .products li .product_badge.new_badge,
.woocommerce-shop .products li .product_badge.new_badge,
.paged .products li .product_badge.new_badge {
  background: var(--dark-green);
}

/* BADGE TEXT */
.tax-product_cat .products li .product_badge p,
.tax-product_tag .products li .product_badge p,
.tax-product_type .products li .product_badge p,
.search .products li .product_badge p,
.post-type-archive-product .products li .product_badge p,
.woocommerce-shop .products li .product_badge p,
.paged .products li .product_badge p {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: rgb(244, 244, 244);
}

/* IMAGE */
.tax-product_cat .products li img,
.tax-product_tag .products li img,
.tax-product_type .products li img,
.search .products li img,
.post-type-archive-product .products li img,
.woocommerce-shop .products li img,
.paged .products li img {
  width: 100%;
  border-radius: 5px;
}

/* TITLE LINK */
.tax-product_cat .products li a,
.tax-product_tag .products li a,
.tax-product_type .products li a,
.search .products li a,
.post-type-archive-product .products li a,
.woocommerce-shop .products li a,
.paged .products li a {
  width: 100%;
  display: inline-block;
  color: var(--dark-green);
}

/* TITLE */
.tax-product_cat .products li h2,
.tax-product_tag .products li h2,
.tax-product_type .products li h2,
.search .products li h2,
.post-type-archive-product .products li h2,
.woocommerce-shop .products li h2,
.paged .products li h2 {
  line-height: inherit;
  font-weight: 500;
  position: relative;
  margin: 20px 0 0;
}

/* HOVER TITLE */
.tax-product_cat .products li a:hover h2,
.tax-product_tag .products li a:hover h2,
.tax-product_type .products li a:hover h2,
.search .products li a:hover h2,
.post-type-archive-product .products li a:hover h2,
.woocommerce-shop .products li a:hover h2,
.paged .products li a:hover h2 {
  text-decoration: underline 2px;
  text-underline-offset: 2px;
}

/* HIDE PRICE & BUTTON */
.tax-product_cat .products li .price,
.tax-product_cat .products li .button,
.tax-product_tag .products li .price,
.tax-product_tag .products li .button,
.tax-product_type .products li .price,
.tax-product_type .products li .button,
.search .products li .price,
.search .products li .button,
.post-type-archive-product .products li .price,
.post-type-archive-product .products li .button,
.woocommerce-shop .products li .price,
.woocommerce-shop .products li .button,
.paged .products li .price,
.paged .products li .button {
  display: none !important;
}

/* HIDE SIDEBAR */
.tax-product_cat #secondary,
.tax-product_tag #secondary,
.tax-product_type #secondary,
.search #secondary,
.post-type-archive-product #secondary,
.woocommerce-shop #secondary,
.paged #secondary {
  display: none;
}



.tax-product_tag .categories_content {
  display: none;
}

.categories_content {
  border-top: 2px solid rgb(230, 230, 230);
  margin-top: 100px;
}

.categories_content .img_txt_box_img {
  width: 46%;
  line-height: 0;
}

.categories_content .categories_content_title {
  margin-bottom: 30px;
}

.categories_content .img_txt_box_img img {
  border-radius: 5px;
}

.categories_content .img_txt_box_txt {
  width: 46%;
}

.categories_content .img_txt_box_txt p {
  margin: 10px 0px 20px;
}

.categories_content .img_txt_box_txt p:last-child {
  margin-bottom: 0px;
}

.single-product {
  background-color: rgb(250, 250, 250);
}

.single-product .breadcrumb .woocommerce-breadcrumb,
.archive .breadcrumb .woocommerce-breadcrumb {
  margin: 0px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--txt-color);
}

.single-product .breadcrumb a,
.archive .breadcrumb a {
  color: var(--green);
}

.single-product .woocommerce-product-gallery {
  width: 40% !important;
  margin: 0px 0px 60px !important;
}

.single-product .woocommerce-product-gallery .woocommerce_product_thumbnails a {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

.single-product .woocommerce-product-gallery .slick-slider .slick-arrow {
  background: rgb(244, 244, 244);
  border-radius: 5px;
}

.single-product .woocommerce-product-gallery .slick-slider .slick-prev::after {
  background-image: url("data:image/svg+xml,<svg width=\"8\" height=\"13\" viewBox=\"0 0 8 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-2.38419e-05 5.98916C-0.000576913 6.2856 0.130418 6.567 0.357606 6.75742L6.35761 11.7864C6.78088 12.1412 7.4116 12.0857 7.76637 11.6624C8.12114 11.2391 8.06561 10.6084 7.64234 10.2536L2.56019 5.99394L7.63948 1.76881C8.06407 1.41563 8.12195 0.785112 7.76876 0.360522C7.41557 -0.064068 6.78506 -0.121951 6.36047 0.231237L0.360471 5.22224C0.132573 5.41181 0.000529289 5.69272 -2.38419e-05 5.98916Z\" fill=\"%2304504D\"/></svg>");
}

.single-product .woocommerce-product-gallery .slick-slider .slick-prev {
  left: -20px;
}

.single-product .woocommerce-product-gallery .slick-slider .slick-next::after {
  background-image: url("data:image/svg+xml,<svg width=\"8\" height=\"13\" viewBox=\"0 0 8 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.00002 5.98916C8.00058 6.2856 7.86958 6.567 7.64239 6.75742L1.64239 11.7864C1.21912 12.1412 0.588399 12.0857 0.233629 11.6624C-0.121141 11.2391 -0.0656114 10.6084 0.357658 10.2536L5.43981 5.99394L0.360522 1.76881C-0.0640679 1.41563 -0.121951 0.785112 0.231237 0.360522C0.584426 -0.064068 1.21494 -0.121951 1.63953 0.231237L7.63953 5.22224C7.86743 5.41181 7.99947 5.69272 8.00002 5.98916Z\" fill=\"%2304504D\"/></svg>");
}

.single-product .woocommerce-product-gallery .slick-slider .slick-next {
  right: -20px;
}

.single-product .woocommerce-product-gallery .product_content_tabs {
  margin-top: 30px;
  gap: 30px;
  justify-content: flex-start;
}

.single-product .woocommerce-product-gallery .product_content_tabs a:hover,
.single-product .woocommerce-product-gallery .product_content_tabs a:focus {
  text-decoration: underline 2px;
  text-underline-offset: 2px;
}

.single-product .summary {
  margin: 0px 0px 60px !important;
  width: 45% !important;
}

.single-product .summary .product_badges {
  gap: 10px;
}

.single-product .summary .product_badge {
  background: transparent;
  border: 2px solid var(--green);
  border-radius: 2px;
  padding: 4px 14px;
  gap: 5px;
}

.single-product .summary .product_badge p {
  margin: 0px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: var(--green);
}

.single-product .summary .product_badge svg {
  fill: var(--green);
}

.single-product .summary .product_desc_wrap {
  margin-top: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgb(230, 230, 230);
}

.single-product .summary .product_desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.single-product .summary .product_desc p:first-child {
  margin-top: 0px;
}

.single-product .summary .product_desc p:last-child {
  margin-bottom: 0px;
}

.single-product .summary .product_desc_wrap .desc_read_more {
  gap: 10px;
  margin-top: 10px;
}

.single-product .summary .woocommerce-product-details__short-description {
  display: none !important;
}

.single-product .summary .variations_form.cart {
  margin: 25px 0px 0px;
}

.single-product .summary .variations_form.cart .variation {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgb(230, 230, 230);
}

.single-product .summary .variations_form.cart .variation .label {
  margin-bottom: 10px;
  font-weight: 700;
}

.single-product .summary .variations_form.cart .variable-items-wrapper {
  gap: 20px;
}

.single-product .summary .variations_form.cart .variation .variable-item {
  height: fit-content;
  padding: 0px;
  margin: 0px;
  border: none;
  outline: none;
  box-shadow: none;
  background: transparent !important;
}

.single-product .summary .variations_form.cart .variation .variable-item::before {
  content: "";
  display: inline-block;
  height: 16px;
  width: 16px;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(168, 168, 168);
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
}

.single-product .summary .variations_form.cart .variation .variable-item.selected::after {
  content: "";
  display: inline-block;
  height: 10px;
  width: 10px;
  background: rgb(28, 192, 112);
  border: 1px solid rgb(168, 168, 168);
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
}

.single-product .summary .variations_form.cart .variation .variable-item-contents {
  display: inline-block;
  padding-left: 21px;
  line-height: 20px;
}

.single-product .summary .variations_form.cart .variation .variable-item-contents span {
  padding: 0px !important;
}

.single-product .summary .variations_form.cart .variation select {
  min-width: 100%;
  margin-right: 0px;
  padding: 11px;
  border-radius: 5px;
  border: 1px solid rgb(230, 230, 230);
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,<svg width=\"13\" height=\"8\" viewBox=\"0 0 13 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0.998854 0C1.1451 -4.29153e-05 1.28958 0.0319915 1.4221 0.0938468C1.55462 0.155702 1.67196 0.245872 1.76585 0.358L6.02485 5.44L10.2499 0.36C10.3339 0.25896 10.437 0.175467 10.5533 0.114294C10.6696 0.0531216 10.7968 0.0154686 10.9276 0.00348806C11.0585 -0.00849247 11.1904 0.00543499 11.3159 0.0444727C11.4413 0.0835104 11.5579 0.146894 11.6589 0.231C11.7599 0.315009 11.8434 0.418108 11.9046 0.534403C11.9657 0.650698 12.0034 0.777909 12.0154 0.908765C12.0273 1.03962 12.0134 1.17155 11.9744 1.29702C11.9353 1.42249 11.872 1.53904 11.7879 1.64L6.79685 7.64C6.70294 7.75275 6.58536 7.84346 6.45246 7.90567C6.31956 7.96789 6.1746 8.00009 6.02785 8C5.88178 7.9999 5.73749 7.96779 5.60516 7.90594C5.47282 7.84409 5.35564 7.754 5.26185 7.642L0.232854 1.642C0.110741 1.49617 0.032752 1.31853 0.00803661 1.12994C-0.0166788 0.941341 0.0129061 0.749609 0.0933189 0.577235C0.173732 0.404861 0.301639 0.258996 0.46203 0.156754C0.622422 0.054512 0.808646 0.000133991 0.998854 0Z\" fill=\"%23272C2D\"/></svg>");
  background-repeat: no-repeat;
  background-position: right 20px center;
}

.single-product .summary .variations_form.cart .variation select:focus-visible,
.single-product .summary .variations_form.cart .variation select:hover {
  border: 1px solid var(--green);
}

.single-product .summary .reset_variations,
.single-product .summary .woocommerce-variation-availability,
.single-product .summary .product_meta {
  display: none !important;
}

.single-product .summary .quantity {
  width: fit-content;
  float: unset;
  margin: 0px;
}

.single-product .summary .quantity input[type="number"]::-webkit-inner-spin-button,
.single-product .summary .quantity input[type="number"]::-webkit-outer-spin-button {
  appearance: none;
  margin: 0px;
}

.single-product .summary .quantity input {
  width: 200px;
  text-align: left;
  padding: 8px 14px;
  border-radius: 5px;
  border: 1px solid rgb(230, 230, 230);
  outline: none;
}

.single-product .summary .quantity input:focus-visible,
.single-product .summary .quantity input:hover {
  border: 1px solid var(--green);
}

.single-product .summary .pi-custom-button {
  font-weight: 500;
  background-repeat: no-repeat;
  background-position: right 30px center;
  width: fit-content !important;
  margin: 0px 0px 0px 20px !important;
  padding: 14px 60px 14px 40px !important;
  background-image: url("data:image/svg+xml,<svg width=\"17\" height=\"14\" viewBox=\"0 0 17 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15.5039 6.63121V7.63121H0.00390625V6.63121H15.5039Z\" fill=\"%23F4F4F4\"/><path d=\"M16.126 7.06023L8.43397 13.4582L7.79397 12.6902L14.565 7.05723L7.79297 1.38123L8.43497 0.615234L16.126 7.06023Z\" fill=\"%23F4F4F4\"/></svg>") !important;
}

.single-product .summary .pi-custom-button::after {
  content: unset !important;
}

.single-product .summary .pisol-view-cart {
  display: none;
}

.single-product .summary .single_add_to_cart_button {
  margin-top: 40px;
  width: fit-content;
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 5px;
  background-repeat: no-repeat;
  background-position: right 30px center;
  transition: 0.3s linear;
  padding: 15px 60px 15px 40px !important;
  color: var(--white) !important;
  background-color: var(--green) !important;
  background-image: url("data:image/svg+xml,<svg width=\"17\" height=\"14\" viewBox=\"0 0 17 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15.5039 6.63121V7.63121H0.00390625V6.63121H15.5039Z\" fill=\"%23F4F4F4\"/><path d=\"M16.126 7.06023L8.43397 13.4582L7.79397 12.6902L14.565 7.05723L7.79297 1.38123L8.43497 0.615234L16.126 7.06023Z\" fill=\"%23F4F4F4\"/></svg>") !important;
}

.single-product .summary .single_add_to_cart_button:hover {
  background-color: var(--dark-green) !important;
}

.single-product .product_content_Wrap {
  display: block;
  clear: both;
  width: 100%;
  background-color: rgb(244, 244, 244);
  padding: 60px 0px;
}

.single-product .product_content_Wrap .product_content_lft,
.single-product .product_content_Wrap .product_content_rtl {
  width: 50%;
}

.single-product .product_content_Wrap .product_content_lft {
  padding-right: 10px;
}

.single-product .product_content_Wrap .product_content_rtl {
  padding-left: 10px;
}

.single-product .product_content_Wrap .product_benefits h4,
.single-product .product_content_Wrap .product_downloads h4,
.single-product .product_content_Wrap .product_description h4,
.single-product .product_content_Wrap .product_video h4 {
  margin-bottom: 20px;
}

.single-product .product_content_Wrap .product_benefits ul {
  margin: 0px;
  padding: 0px 0px 0px 18px;
}

.single-product .product_content_Wrap .product_benefits ul li::marker {
  color: var(--green);
}

.single-product .product_content_Wrap .product_description p {
  margin-top: 0px;
}

.single-product .product_content_Wrap .product_description p:last-child {
  margin-bottom: 0px;
}

.single-product .product_content_Wrap .product_downloads {
  margin-top: 60px;
}

.single-product .product_content_Wrap .product_downloads a {
  font-weight: 400;
  text-decoration: underline;
  gap: 10px;
}

.single-product .product_content_Wrap .product_downloads a:not(:last-child) {
  margin-bottom: 10px;
}

.single-product .product_content_Wrap .product_video h4 {
  text-align: center;
}

.single-product .product_content_Wrap .product_video {
  margin-top: 60px;
}

.single-product .product_content_Wrap .product_video .video_box {
  position: relative;
  max-height: 500px;
}

.single-product .product_content_Wrap .product_video .video_box video,
.single-product .product_content_Wrap .product_video .video_box iframe {
  width: 100%;
  height: 500px;
}

.single-product .product_content_Wrap .product_video .video_box #play_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.single-product .related h4 {
  text-align: center;
  margin-bottom: 40px;
}

.single-product .related .products {
  margin-bottom: 0px;
}

.single-product .related .products li {
  width: 25% !important;
  margin: 0px !important;
  padding: 0px 10px !important;
}

.single-product .related .products li .product_badges {
  gap: 10px;
  min-height: 33px;
}

.single-product .related .products li .product_badge {
  background: var(--green);
  border-radius: 2px;
  padding: 4px 14px;
  gap: 5px;
}

.single-product .related .products li .product_badge.new_badge {
  background: var(--dark-green);
}

.single-product .related .products li .product_badge p {
  margin: 0px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: rgb(244, 244, 244);
}

.single-product .related .products li img {
  width: 100%;
  border-radius: 5px;
}

.single-product .related .products li a {
  width: 100%;
  display: inline-block;
  color: var(--dark-green);
}

.single-product .related .products li h2 {
  line-height: inherit;
  font-weight: 500;
  position: relative;
  margin: 20px 0px 0px;
}

.single-product .related .products li a:hover h2 {
  text-decoration: underline 2px;
  text-underline-offset: 2px;
}

.single-product .related .products li .price,
.single-product .related .products li .button {
  display: none !important;
}

.single-product .product_posts {
  border-top: 2px solid rgb(230, 230, 230);
  padding-top: 60px;
  padding-bottom: 60px;
}

.single-product .product_posts .product_posts_title {
  text-align: center;
  margin-bottom: 40px;
}

.single-product .latest-post-item {
  width: 33.33%;
  padding: 0px 10px;
}

.single-product .latest-post-item .featured-image {
  line-height: 0;
  border-radius: 20px;
  overflow: hidden;
}

.single-product .latest-post-item:hover .featured-image a {
  transform: scale(1.1);
}

.single-product .latest-post-item .featured-image a {
  display: block;
  line-height: 0;
}

.single-product .latest-post-item .post_tag {
  width: fit-content;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: rgb(28, 192, 112);
  margin: 20px 0px 0px;
  border: 1px solid rgb(28, 192, 112);
  border-radius: 2px;
  padding: 4px 15px;
}

.single-product .latest-post-item h4 {
  margin: 20px 0px 10px;
}

.single-product .latest-post-item h4 a {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.single-product .latest-post-item:hover h4 a {
  text-decoration: underline 2px;
  text-underline-offset: 2px;
}

.single-product .latest-post-item .post_date {
  color: rgb(168, 168, 168);
  margin: 10px 0px 0px;
}

.search_result_wrap {
  background: rgb(250, 250, 250);
}

.search_result_wrap .search_posts {
  padding-top: 40px;
  gap: 40px 20px;
}

.search_result_wrap .search_posts article {
  width: calc(25% - 15px);
  display: flex;
  flex-direction: column-reverse;
}

.search_result_wrap .search_posts article .entry-title {
  line-height: 0;
}

.search_result_wrap .search_posts article .post-thumbnail {
  background: rgb(250, 250, 250);
  line-height: 0;
  margin-bottom: 20px;
}

.search_result_wrap .search_posts article .entry-summary,
.search_result_wrap .search_posts article .entry-footer {
  display: none !important;
}

.search_result_wrap .search_posts article:hover .entry-title a {
  text-decoration: underline 2px;
  text-underline-offset: 2px;
}

.enquiry-cart-content-table th {
  text-align: left;
  background: transparent;
}

.enquiry-cart-content-table td {
  border-bottom: none !important;
}

.enquiry-cart-content-table .product-name {
  text-align: left;
  font-size: 18px;
}

.enquiry-cart-content-table .product-name a {
  color: inherit;
  font-weight: 400;
}

.enquiry-cart-content-table .product-name br {
  display: none;
}

.enquiry-cart-content-table .product-name .pi-attribute-label {
  display: none;
}

.enquiry-cart-content-table .product-name span {
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  padding: 0px 5px;
}

#pi-eqw-enquiry-form input,
#pi-eqw-enquiry-form textarea {
  border: 1px solid rgb(168, 168, 168);
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 14px;
  line-height: 23px;
  color: var(--black);
  box-shadow: none !important;
  outline: none !important;
}

#pi-eqw-enquiry-form input::placeholder,
#pi-eqw-enquiry-form textarea::placeholder {
  color: rgb(168, 168, 168);
}

#pi-eqw-enquiry-form .pi-btn {
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  padding: 15px 60px 15px 40px;
  border: none;
  border-radius: 5px;
  background-image: url("data:image/svg+xml,<svg width=\"17\" height=\"14\" viewBox=\"0 0 17 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15.5039 6.63121V7.63121H0.00390625V6.63121H15.5039Z\" fill=\"%23F4F4F4\"/><path d=\"M16.126 7.06023L8.43397 13.4582L7.79397 12.6902L14.565 7.05723L7.79297 1.38123L8.43497 0.615234L16.126 7.06023Z\" fill=\"%23F4F4F4\"/></svg>");
  background-repeat: no-repeat;
  background-position: right 30px center;
  cursor: pointer;
  transition: 0.3s linear;
  outline: none !important;
  box-shadow: none !important;
  color: var(--white) !important;
  background-color: var(--green) !important;
}

#pi-eqw-enquiry-form .pi-btn:hover {
  background-color: var(--dark-green) !important;
}

.wpcsb-wrapper .wpcsb-container {
  padding: 20px 0px !important;
}

.wpcsb-wrapper .wpcsb-product {
  max-width: 1440px !important;
}

.wpcsb-wrapper .wpcsb-product .wpcsb-product-info {
  flex-grow: 0 !important;
}

.wpcsb-wrapper .wpcsb-product .wpcsb-product-action {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}

.wpcsb-wrapper .wpcsb-product .wpcsb-product-action .variations {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.wpcsb-wrapper .wpcsb-product .wpcsb-product-action .variations .label {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
}

.wpcsb-wrapper .wpcsb-product .variations_form.cart .variable-items-wrapper {
  gap: 5px;
}

.wpcsb-wrapper .wpcsb-product .variations_form.cart .variation .variable-item {
  height: fit-content;
  padding: 0px;
  margin: 0px;
  border: none;
  outline: none;
  box-shadow: none;
  background: transparent !important;
}

.wpcsb-wrapper .wpcsb-product .variations_form.cart .variation .variable-item::before {
  content: "";
  display: inline-block;
  height: 12px;
  width: 12px;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(168, 168, 168);
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
}

.wpcsb-wrapper .wpcsb-product .variations_form.cart .variation .variable-item.selected::after {
  content: "";
  display: inline-block;
  height: 8px;
  width: 8px;
  background: rgb(28, 192, 112);
  border: 1px solid rgb(168, 168, 168);
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
}

.wpcsb-wrapper .wpcsb-product .variations_form.cart .variation .variable-item-contents {
  display: inline-block;
  padding-left: 15px;
  font-size: 12px;
  line-height: 14px;
}

.wpcsb-wrapper .wpcsb-product .variations_form.cart .variation .variable-item-contents span {
  padding: 0px !important;
}

.wpcsb-wrapper .wpcsb-product .variations_form.cart .reset_variations {
  display: none;
}

.wpcsb-wrapper .wpcsb-product .wpcsb-product-action .pi-eqw-qty-container {
  padding-left: 20px;
}

.wpcsb-wrapper .wpcsb-product .wpcsb-product-action .pi-custom-button {
  font-weight: 500;
  background-repeat: no-repeat;
  background-position: right 15px center;
  width: fit-content !important;
  margin: 0px !important;
  padding: 14px 40px 14px 20px !important;
  background-image: url("data:image/svg+xml,<svg width=\"17\" height=\"14\" viewBox=\"0 0 17 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15.5039 6.63121V7.63121H0.00390625V6.63121H15.5039Z\" fill=\"%23F4F4F4\"/><path d=\"M16.126 7.06023L8.43397 13.4582L7.79397 12.6902L14.565 7.05723L7.79297 1.38123L8.43497 0.615234L16.126 7.06023Z\" fill=\"%23F4F4F4\"/></svg>") !important;
}

select#product_cat option {
  color: rgb(0, 0, 0);
}

.woocommerce-no-products-found {
  margin-top: 20px;
}

.search-no-results #page #secondary {
  display: none;
}

a.desc_read_more.d-flex.align-center {
  display: none;
}

span.wpcf7-not-valid-tip,
.single-product .product_posts {
  display: none;
}

.single-product .categories_content {
  display: none;
}

.woocommerce_product_thumbnails .slick-current.slick-active {
  border: 1px solid rgb(28, 192, 112) !important;
  background-color: rgb(255, 255, 255) !important;
}

.price span.woocommerce-Price-amount.amount {
  display: none;
}

#pi-eqw-mini-cart.top-right {
  top: 23%;
  right: 12%;
}

.archive .woocommerce-products-header .desc_read_more,
.orderby {
  display: none;
}

.mega-menu-item img {
  border-radius: 15px;
}

.product_desc_wrap .desc_read_more {
  display: block !important;
}

.product_desc_wrap .desc_read_more svg {
  margin-left: 5px;
}

.enquiry-cart-content-table {
  border: 1px solid rgba(204, 204, 204, 0.42) !important;
}

#pi-enquiry-container.eqw-content-position-right #pi-eqw-enquiry-form {
  border: 1px solid rgba(204, 204, 204, 0.42) !important;
  padding: 10px 15px !important;
}

th.product-quantity {
  text-align: center;
}

.woocommerce-variation.single_variation p {
  display: none;
}

.related.products {
  padding-bottom: 0px;
}

div.mg-wsac-fix-sticky-bar.mg-wsac-container {
  border-top: 1px solid rgba(204, 204, 204, 0.45);
}

.woocommerce table {
  padding: 0px 20px !important;
  border-collapse: separate !important;
}

.woocommerce thead {
  background-color: rgba(204, 204, 204, 0.42);
}

.variable-item:not(.radio-variable-item).disabled {
  display: none !important;
}

.hero_buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.hero_buttons .btn {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid rgb(26, 175, 102);
  border-radius: 10px;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.hero_buttons .btn-sample {
  background-color: rgb(26, 175, 102);
  color: white;
}

.hero_buttons .btn-sample:hover {
  background-color: white;
  color: rgb(26, 175, 102);
  border-color: rgb(26, 175, 102);
}

.hero_buttons .btn-meeting {
  background-color: white;
  color: rgb(26, 175, 102);
}

.hero_buttons .btn-meeting:hover {
  background-color: rgb(26, 175, 102);
  color: white;
  border-color: rgb(26, 175, 102);
}

/* Banner Section */

.banner-main-sec,
.inner-right-sec {
  display: flex;
  gap: 16px;
}

.right-banner-section img {
  border-radius: 6px;
  height: 100%;
}

.banner-slider,
.banner-slider img {
  height: 100%;
  border-radius: 6px;
}

.banner-section {
  padding: 0 0 80px;
}

.banner-main-sec .left-banner-section,
.banner-main-sec .right-banner-section {
  width: 50%;
}

.banner-slider .swiper-button-prev,
.banner-slider .swiper-button-next {
  background: rgb(228 242 230);
  border-radius: 3rem;
  display: grid;
  height: 40px !important;
  place-content: center;
  width: 40px !important;
}

.banner-slider .swiper-button-prev::after,
.banner-slider .swiper-button-next::after {
  color: #014643;
  font-size: 22px !important;
}

#mega-menu-item-3106,
#mega-menu-item-3107,
#mega-menu-item-3108 {
  display: none !important;
}

@media only screen and (min-width: 768px) {
  .hide-lg {
    display: none;
  }
}

@media only screen and (max-width: 1480px) {
  .container {
    max-width: calc(100% - 40px);
  }

  .main_menu .main-navigation ul.mega-menu {
    max-width: calc(100% - 40px) !important;
  }

  .wpcsb-wrapper .wpcsb-product {
    max-width: calc(100% - 40px) !important;
  }
}

@media only screen and (max-width: 1280px) {
  .container-narrow {
    max-width: calc(100% - 40px);
  }
}

@media only screen and (max-width: 1024px) {
  h1 {
    font-size: 32px;
    line-height: 40px;
  }

  h2 {
    font-size: 32px;
    line-height: 40px;
  }

  h3 {
    font-size: 30px;
    line-height: 40px;
  }

  h4 {
    font-size: 24px;
    line-height: 34px;
  }

  h5 {
    font-size: 16px;
    line-height: 26px;
  }

  .pt100 {
    padding-top: 60px;
  }

  .pb100 {
    padding-bottom: 60px;
  }

  a {
    font-size: 16px;
    line-height: 26px;
  }

  .btn {
    padding: 10px 30px;
  }

  footer aside:last-child {
    padding-right: 0px;
  }

  footer aside:nth-child(1) {
    width: 30%;
  }

  footer aside:nth-child(2) {
    width: 29.66%;
  }

  footer aside:nth-child(3) {
    width: 40.33%;
  }

  footer aside:last-child {
    padding-right: 0px;
    width: 40%;
  }

  .home_hero-section .container h1 {
    font-size: 54px;
    line-height: 64px;
  }

  .cta_section .img_txt_box {
    overflow: hidden;
  }

  .cta_section .img_txt_box .img_txt_box_txt {
    padding: 20px;
  }

  .cta_section .img_txt_box .img_txt_box_txt p {
    margin: 20px 0px;
  }

  .cta_section .img_txt_box .img_txt_box_img img {
    height: 100%;
    object-fit: cover;
  }

  .our-story-section .our-story_video {
    height: fit-content;
  }

  .our-story-section .our-story_txt p:last-child {
    margin-bottom: 20px;
  }

  .sign_up-section .sign_up-txt {
    padding: 0px 20px;
  }

  .single-faq-content .faq-content_wrap .faq-content,
  .post_content_wrap .post_content {
    width: 72%;
    padding-right: 15px;
  }

  .single-faq-content .faq-content_wrap .faq-sidebar,
  .post_content_wrap .post-sidebar {
    width: 28%;
    padding-left: 15px;
  }

  .single-faq-content .newsletter_box,
  .post_content_wrap .post-sidebar .newsletter_box {
    padding: 25px 20px;
  }

  .post_content_wrap .post_content .entry-content blockquote {
    padding-left: 60px;
  }

  .post_content_wrap .post_content .entry-content blockquote::before {
    left: 0px;
  }

  .categories_content {
    margin-top: 60px;
  }

  .tax-product_cat .woocommerce-products-header .term-description,
  .tax-product_tag .woocommerce-products-header .term-description {
    width: 60%;
  }

  .tax-product_cat .products .container,
  .tax-product_tag .products .container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 20px;
    padding-top: 40px;
  }

  .tax-product_cat .products li,
  .tax-product_tag .products li {
    float: none !important;
    width: calc(33.33% - 13.3333px) !important;
    margin: 0px !important;
    padding: 0px !important;
  }

  .categories_content .img_txt_box_img {
    width: 50%;
    padding-right: 15px;
  }

  .categories_content .img_txt_box_txt {
    width: 50%;
    padding-left: 15px;
  }
}

@media only screen and (max-width: 990px) {
  h1 {
    font-size: 26px;
    line-height: 36px;
  }

  h2 {
    font-size: 26px;
    line-height: 36px;
  }

  h3 {
    font-size: 20px;
    line-height: 30px;
  }

  h4 {
    font-size: 20px;
    line-height: 30px;
  }

  header .header_search_wrap form {
    width: 70%;
  }

  header .top_menu ul li a {
    font-size: 16px;
    line-height: 22px;
  }

  header .categories-toggle {
    margin-right: 20px;
  }

  header .categories-toggle p {
    font-size: 16px;
    line-height: 22px;
  }

  header .header_search {
    max-width: 200px;
  }

  header .header_account {
    padding: 0px 20px;
  }

  #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item {
    margin: 0px 40px 0px 0px;
  }

  #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item>a.mega-menu-link {
    font-size: 16px;
  }

  footer .footer_menu ul {
    margin: 30px 0px;
    gap: 10px 0px;
  }

  footer .footer_menu ul li {
    width: 100%;
  }

  footer aside:nth-child(1),
  footer aside:nth-child(2),
  footer aside:nth-child(3) {
    width: 33.33%;
  }

  footer aside:last-child {
    padding-right: 50%;
    width: 100%;
  }

  footer .site-info .copyright_txt,
  footer .site-info .develop_by_txt {
    width: 50%;
  }

  .home_hero-section .container h1 {
    font-size: 48px;
    line-height: 58px;
  }

  .home_hero-section .container {
    max-width: calc(100% - 40px);
  }

  .cta_section .cta_col_rtl .img_link_box a {
    margin-top: 10px;
    gap: 5px;
  }

  .cta_section .img_txt_box .img_txt_box_txt p {
    margin: 20px 0px;
    font-size: 16px;
    line-height: 26px;
  }

  .cta_section .img_txt_box .img_txt_box_txt {
    padding: 15px;
  }

  .cta_section .img_txt_box .img_txt_box_txt h2 span::after {
    height: 10px;
  }

  .cta_section .img_txt_box .img_txt_box_img::after {
    height: 50px;
    width: 50px;
    bottom: 20px;
    right: 20px;
  }

  .cta_section .cta_col_rtl .img_link_box img {
    height: 135px;
  }

  .for_you-section .for-you-txt {
    width: 50%;
    padding-right: 20px;
  }

  .for_you-section .for-you_txt p {
    margin: 20px 0px;
  }

  .for_you-section .categories-tabs a {
    padding: 10px 6px;
  }

  .our-story-section .our-story_video {
    width: 50%;
    padding-right: 20px;
  }

  .sign_up-section .sign_up-txt .sign_up_heading {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .contact_wrap .contact-wrapper .contact_details_wrap {
    width: 100%;
    padding-right: 0px;
    padding-bottom: 30px;
  }

  .contact_wrap .contact-wrapper .contact_map_wrap {
    width: 100%;
  }

  .contact_wrap .contact-wrapper .contact_map_wrap iframe {
    width: 100%;
  }

  .contact_wrap .contact_form_wrap form .form_col_lft {
    width: 100%;
    padding-right: 0px;
  }

  .contact_wrap .contact_form_wrap form .form_col_rtl {
    width: 100%;
    padding-left: 0px;
    padding-top: 15px;
  }

  .single-faq-content .faq-content_wrap .faq-content,
  .post_content_wrap .post_content {
    width: 60%;
    padding-right: 10px;
  }

  .single-faq-content .faq-content_wrap .faq-sidebar,
  .post_content_wrap .post-sidebar {
    width: 40%;
    padding-left: 10px;
  }

  .video_section .container {
    align-items: flex-start;
  }

  .video_section .video_content,
  .about_txt_section .about_txt_wrap {
    width: 60%;
    gap: 20px;
    padding-left: 30px;
  }

  .video_section .video_content_box,
  .about_txt_section .about_txt_wrap .about_txt {
    width: calc(50% - 10px);
  }

  .about_txt_section .about_txt_heading h4 {
    font-size: 20px;
    line-height: 30px;
  }

  .our_story_section .our_story_txt {
    width: 60%;
    padding-left: 30px;
  }

  .custom-category-list .subcategory-list li {
    width: calc(33.33% - 26.6667px);
  }

  .product_tabs_wrap .product_tab_content {
    width: 50%;
  }

  .product_tabs_wrap .product_tab_content:nth-child(3) {
    padding-top: 30px;
  }

  .single-product .woocommerce-product-gallery {
    float: left !important;
  }

  .single-product .summary {
    float: right !important;
  }

  .single-product .product_content_Wrap .product_content_lft {
    padding-right: 10px;
  }

  .single-product .product_content_Wrap .product_content_rtl {
    padding-left: 10px;
  }

  .single-product .related .products {
    display: flex;
    flex-wrap: wrap;
  }

  .single-product .related h4,
  .single-product .product_posts .product_posts_title {
    margin-bottom: 0px;
  }

  .single-product .related .products li {
    width: 50% !important;
    padding: 20px 10px !important;
  }

  .single-product .latest-post-item {
    width: 50%;
    padding: 20px 10px;
  }

  .search_result_wrap .search_posts article {
    width: calc(33.33% - 13.3333px);
  }

  .enquiry-cart-content-table .product-remove {
    width: 100% !important;
  }

  .enquiry-cart-content-table .product-thumbnail {
    width: 100px !important;
    text-align: left;
  }

  .enquiry-cart-content-table .product-name {
    width: calc(100% - 100px) !important;
    text-align: left !important;
  }

  #mega-menu-wrap-menu-1 #mega-menu-menu-1 li .mega-menu-link::after {
    bottom: 0px;
  }

  #mega-menu-wrap-menu-1 #mega-menu-menu-1 li .mega-menu-link:hover::after,
  #mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-toggle-on .mega-menu-link::after {
    bottom: 0px;
    width: 93% !important;
  }
}

@media only screen and (max-width: 767px) {

  .container,
  .container-narrow {
    max-width: calc(100% - 30px);
  }

  .hide-sm {
    display: none;
  }

  h1 {
    font-size: 24px;
    line-height: 34px;
  }

  h2 {
    font-size: 24px;
    line-height: 34px;
  }

  h4 {
    font-size: 20px;
    line-height: 30px;
  }

  h5 {
    font-size: 16px;
    line-height: 26px;
  }

  .btn {
    padding: 10px 20px;
  }

  header .site-branding,
  header .header_search_wrap {
    width: 50%;
  }

  header .header_account {
    padding-left: 0px;
  }

  header .header_account a p {
    display: none;
  }

  header .header_search_wrap .main-navigation {
    display: inline-block;
    width: fit-content;
    padding-left: 20px;
  }

  #mega-menu-wrap-menu-1 .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block {
    margin: 0px !important;
  }

  #mega-menu-wrap-menu-1 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated {
    transform: scale(0.5);
  }

  #mega-menu-wrap-menu-1 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner,
  #mega-menu-wrap-menu-1 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before,
  #mega-menu-wrap-menu-1 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
    background-color: rgb(39, 44, 45);
  }

  #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item {
    margin: 0px;
  }

  #mega-menu-wrap-menu-1 #mega-menu-menu-1 {
    margin-top: 15px;
  }

  #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item>a.mega-menu-link {
    padding: 0px 15px;
  }

  #mega-menu-item-3106,
  #mega-menu-item-3107,
  #mega-menu-item-3108 {
    display: block !important;
  }

  header .main_menu {
    background: rgb(1, 70, 67);
    padding: 0px 15px 15px;
  }

  header .main_menu .header_search_wrap {
    width: 100%;
    justify-content: flex-start;
    position: relative;
  }

  header .categories_menu .menu-category-menu-container {
    width: calc(100% + 30px);
    max-width: calc(100% + 30px);
    padding: 15px;
    top: 61px;
    left: -15px;
  }

  header .categories_menu ul li:not(:last-child) {
    margin-bottom: 15px;
  }

  header .categories_menu ul li a {
    font-size: 16px;
    line-height: 22px;
  }

  header .header_search_wrap form {
    width: 100%;
  }

  header .categories_menu .category-dropdown-list {
    width: calc(100% + 30px);
    max-width: calc(100% + 30px);
    left: -15px;
    top: 63px;
  }

  header .header_search {
    max-width: calc(100% - 101px);
  }

  .hero_buttons {
    gap: 4px;
  }

  footer {
    padding-top: 60px;
  }

  footer aside:nth-child(1) {
    width: 100%;
    margin-bottom: 30px;
  }

  footer aside:nth-child(2) {
    width: 44%;
  }

  footer aside:nth-child(3) {
    width: 56%;
  }

  footer aside:last-child {
    padding-right: 0px;
    width: 100%;
    margin-top: 30px;
  }

  footer .footer_menu ul {
    margin: 20px 0px 0px;
  }

  footer .site-info .container {
    flex-direction: column-reverse;
  }

  footer .site-info .copyright_txt,
  footer .site-info .develop_by_txt {
    width: 100%;
  }

  footer .site-info .copyright_txt p {
    text-align: center;
    margin-top: 10px;
  }

  .home_hero-section {}

  .home_hero-section .container h1 {
    font-size: 26px;
    line-height: 36px;
  }

  .home_hero-section .container {
    max-width: calc(100% - 30px);
  }

  .home_hero-section .hero_text p {
    font-size: 18px;
    line-height: 28px;
  }

  .cta_section .cta_col_lft {
    min-height: 300px;
    width: 100%;
    padding-bottom: 20px;
  }

  .cta_section .cta_col_rtl {
    width: 100%;
  }

  .cta_section .cta_col_rtl .img_link_box a {
    font-size: 12px;
    line-height: 22px;
  }

  .wr {
    width: 100%;
  }

  .cta_section .cta_col_rtl .img_link_box a svg {
    width: 12px;
  }

  .cta_section .img_txt_box {
    flex-direction: column-reverse;
  }

  .cta_section .img_txt_box {
    height: 100%;
  }

  .cta_section .img_txt_box .img_txt_box_img,
  .cta_section .img_txt_box .img_txt_box_txt {
    width: 100%;
    height: 214px;
  }

  .cta_section .img_txt_box .img_txt_box_txt {
    padding: 20px;
  }

  .cta_section .img_txt_box .img_txt_box_txt p {
    margin: 10px 0px;
    font-size: 14px;
    line-height: 24px;
  }

  .cta_section .cta_col_rtl .img_link_box img {
    height: 105px;
  }

  .for_you-section .container-narrow {
    flex-direction: column-reverse;
  }

  .for_you-section .for-you-txt {
    width: 100%;
    padding-right: 0px;
    padding-top: 20px;
  }

  .for_you-section .for-you_img,
  .our-story-section .our-story-txt {
    width: 100%;
  }

  .our-story-section .our-story_video {
    width: 100%;
    padding-right: 0px;
    padding-bottom: 20px;
  }

  .sign_up-section .sign_up-txt {
    width: 100%;
    padding: 20px;
  }

  .sign_up-section .sign_up_img {
    width: 100%;
  }

  .signup_model {
    padding: 40px 20px;
  }

  .blank_page .entry-content {
    margin-top: 20px;
  }

  .faqs_page .entry-content {
    gap: 40px 0px;
  }

  .faqs_page .entry-content .faq_list_wrap {
    width: 100%;
  }

  .page_faq_details .breadcrumb .d-flex,
  .post_breadcrumb .d-flex {
    gap: 5px;
  }

  .single-faq-content .faq-content_wrap .faq-content,
  .post_content_wrap .post_content {
    width: 100%;
    padding-right: 0px;
    padding-bottom: 10px;
  }

  .single-faq-content .faq-content_wrap .faq-sidebar,
  .post_content_wrap .post-sidebar {
    width: 100%;
    padding-left: 0px;
    padding-top: 10px;
  }

  .single-faq-content .newsletter_box,
  .post_content_wrap .post-sidebar .newsletter_box {
    padding: 30px 20px;
  }

  .post_content_wrap .post_content .post-gallery {
    margin: 40px 0px;
  }

  .post_content_wrap .post_content .post-gallery .post-gallery_img {
    width: calc(50% - 10px);
  }

  .post_content_wrap .post-sidebar {
    padding-bottom: 60px;
  }

  .post_content_wrap .post_content .entry-content blockquote {
    padding-left: 40px;
  }

  .post_content_wrap .post_content .entry-content {
    margin-top: 20px;
  }

  .single .breadcrumb p {
    width: 200px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .video_section .video_wrap,
  .about_txt_section .about_txt_heading,
  .our_story_section .our_story_title {
    width: 100%;
  }

  .video_section .video_content,
  .about_txt_section .about_txt_wrap,
  .our_story_section .our_story_txt {
    width: 100%;
    padding-left: 0px;
    padding-top: 30px;
  }

  .custom-category-list .subcategory-list {
    gap: 20px;
  }

  .custom-category-list .subcategory-list li {
    width: calc(50% - 10px);
  }

  .category_products .popular_products li h6 {
    font-size: 14px;
    line-height: 20px;
  }

  .category_products .popular_products li .product_badge {
    padding: 8px 10px;
  }

  .category_products .popular_products li .product_badge p {
    font-size: 12px;
    line-height: 12px;
  }

  .category_products .slick-slider .slick-prev {
    left: -10px;
  }

  .category_products .slick-slider .slick-next {
    right: -10px;
  }

  .product_tabs_wrap .product_filters {
    flex-direction: column-reverse;
  }

  .product_tabs_wrap .product_search_from {
    width: 100%;
    margin-bottom: 20px;
  }

  .product_tabs_wrap .product_tabs {
    width: 100%;
  }

  .product_tabs_wrap .product_tab_content {
    width: 100%;
    padding: 20px 0px !important;
  }

  .product_tabs_wrap .product_tab_content:nth-child(1) {
    padding-top: 0px !important;
  }

  .sec_videos .videos_filters {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .sec_videos .video_search_from,
  .sec_videos .videos_filter {
    width: 100%;
  }

  .sec_videos .videos_wrapper .video_wrap {
    gap: 20px;
  }

  .sec_videos .videos_wrapper .video_wrap .video {
    width: 100%;
  }

  .sec_videos .videos_wrapper .videos_wrap:not(:last-child) {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .single-product .breadcrumb .woocommerce-breadcrumb,
  .archive .breadcrumb .woocommerce-breadcrumb {
    flex-wrap: wrap;
  }

  .single-product .woocommerce-product-gallery {
    width: 100% !important;
    margin: 0px 0px 30px !important;
    float: none !important;
  }

  .single-product .summary {
    margin: 0px 0px 30px !important;
    width: 100% !important;
    float: none !important;
  }

  .single-product .product_content_Wrap .product_content_lft {
    width: 100%;
    padding-right: 0px;
    padding-bottom: 15px;
  }

  .single-product .product_content_Wrap .product_content_rtl {
    width: 100%;
    padding-left: 0px;
    padding-top: 15px;
  }

  .single-product .product_content_Wrap .product_downloads {
    margin-top: 30px;
  }

  .single-product .related h4,
  .single-product .product_posts .product_posts_title {
    margin-bottom: 20px;
  }

  .single-product .related .products li {
    width: 100% !important;
    padding: 20px 10px !important;
  }

  .single-product .latest-post-item {
    width: 100%;
    padding: 20px 10px;
  }

  .tax-product_cat .woocommerce-products-header .term-description,
  .tax-product_tag .woocommerce-products-header .term-description,
  .tax-product_type .woocommerce-products-header .term-description,
  .post-type-archive-product .woocommerce-products-header .term-description,
  .search .woocommerce-products-header .term-description,
  .search-results .woocommerce-products-header .term-description,
  .woocommerce-results-page .woocommerce-products-header .term-description {
    width: 100%;
  }


  .tax-product_cat .products .container,
  .tax-product_tag .products .container,
  .tax-product_type .products .container,
  .post-type-archive-product .products .container,
  .search .products .container,
  .search-results .products .container,
  .woocommerce-results-page .products .container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 20px;
    padding-top: 40px;
  }


  .tax-product_cat .products li,
  .tax-product_tag .products li,
  .tax-product_type .products li,
  .post-type-archive-product .products li,
  .search .products li,
  .search-results .products li,
  .woocommerce-results-page .products li {
    float: none !important;
    width: 100% !important;
    margin: 0px !important;
    padding: 0px !important;
  }


  .categories_content .img_txt_box_img {
    width: 100%;
    padding-right: 0px;
    padding-bottom: 15px;
  }

  .categories_content .img_txt_box_txt {
    width: 100%;
    padding-left: 0px;
    padding-top: 15px;
  }

  .search_result_wrap .search_posts article {
    width: 100%;
  }

  .our-story-section .our-story_video button {
    top: 35%;
  }

  /* Banner Section */
  .banner-main-sec .left-banner-section,
  .banner-main-sec .right-banner-section {
    width: 100%;
  }

  .banner-main-sec {
    flex-direction: column;
  }
}


@media (max-width: 480px) {
  footer .footer_newsletter form .wpcf7-submit {
    position: relative !important;
  }
}