@charset "UTF-8";

/*=======================================================================================*/
/*======================================================================================
  >> TABLE OF CONTENTS <<
========================================================================================
01. Mixins & Variables
02. Base
03. Components
04. Layouts
05. Sections
======================================================================================*/
/*---------------------------------------
01. Mixins & Variables
---------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&amp;display=swap");
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #315536;
  --theme2: #F5D83E;
  /* --theme3: #11A21B; */
  --theme3: #143511;
  --header: #2F2F2F;
  /* --text: #50624A; */
  --text: #000;
  --border: #02060A;
  --bg: #F5F6F4;
  --bg2: #50624A;
  --bg3: #F5F6F4;
  --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

/*---------------------------------------
02. Base
---------------------------------------*/
/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
html{
  scroll-behavior:smooth;
  overflow-x: clip;
}


body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  /* color: var(--text); */
  color: #000;
  background-color: var(--bg);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

@media (max-width: 575px) {
  body {
    font-size: 14px;
  }
}

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

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: "Cormorant Garamond", serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 75px;
  font-weight: 700;
  line-height: 120%;
  text-transform: capitalize;
}

@media (max-width: 1899px) {
  h1 {
    font-size: 70px;
  }
}

@media (max-width: 1600px) {
  h1 {
    font-size: 60px;
  }
}

@media (max-width: 1399px) {
  h1 {
    font-size: 50px;
  }
}

@media (max-width: 1199px) {
  h1 {
    font-size: 45px;
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 40px;
    line-height: 130% !important;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 30px;
  }
}

@media (max-width: 470px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 100%;
  font-family: "Cormorant Garamond", serif;
}

@media (max-width: 1399px) {
  h2 {
    font-size: 30px;
  }
}

@media (max-width: 1199px) {
  h2 {
    font-size: 33px;
  }
}

@media (max-width: 991px) {
  h2 {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 26px;
  }
}

@media (max-width: 470px) {
  h2 {
    font-size: 26px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  /* text-transform: capitalize; */
}

@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 24px;
  font-weight: 700;
  /* line-height: 150%; */
  line-height: 110%;
  text-transform: capitalize;
  font-family: "Cormorant Garamond", serif;
}

h5 {
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
}

h6 {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
  /* text-transform: capitalize; */
}

span {
  margin: 0px;
  text-transform: capitalize;
}

.theme-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  border: none;
  font-weight: 700;
  font-size: 19px;
  color: var(--white);
  padding: 15px 30px 15px;
  transition: 0.5s ease-in-out;
  text-transform: capitalize;
  overflow: hidden;
  gap: 5px;
  text-align: center;
  background-color: var(--theme);
  z-index: 1;
  border-radius: 8px;
  font-family: "Cormorant Garamond", serif;
}

@media (max-width: 1399px) {
  .theme-btn {
    padding: 15px 25px 15px;
  }
}

.theme-btn::before {
  content: "";
  background-color: var(--header);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}

.theme-btn:hover::before {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
  transition-delay: 200ms;
}

.theme-btn::after {
  content: "";
  background-color: rgba(47, 47, 47, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}

.theme-btn:hover::after {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}

.theme-btn:hover {
  color: var(--white);
}

.theme-btn:hover img {
  filter: brightness(0);
}

.theme-btn.theme-btn-3 {
  /* background-color: var(--theme3); */
  background: #315737;
  border: 1px solid #fff;
}

.link-btn {
  color: var(--theme);
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
   font-family: "Cormorant Garamond", serif;
}

.link-btn i {
  margin-left: 5px;
  color: var(--theme);
}

.theme-btn-2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  border: none;
  font-weight: 700;
  font-size: 16px;
  color: var(--header);
  padding: 15px 30px 15px;
  transition: 0.5s ease-in-out;
  text-transform: capitalize;
  overflow: hidden;
  gap: 5px;
  text-align: center;
  background-color: var(--theme2);
  z-index: 1;
  border-radius: 8px;
}

.theme-btn-2::before {
  content: "";
  background-color: var(--header);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}

.theme-btn-2:hover::before {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
  transition-delay: 200ms;
}

.theme-btn-2::after {
  content: "";
  background-color: rgba(47, 47, 47, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}

.theme-btn-2:hover::after {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}

.theme-btn-2:hover {
  color: var(--white);
}

.theme-btn-2:hover img {
  filter: brightness(0);
}

.theme-btn-2.style-btns {
  border: 1px solid var(--theme2);
}

.theme-btn-2.style-btns:hover {
  color: var(--theme2);
}

.link-btn-2 {
  color: var(--theme2);
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  font-family: "Instrument Sans", sans-serif;
  text-decoration: underline;
  text-transform: capitalize;
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.link-btn-2:hover {
  color: var(--theme2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme2) 0%, var(--theme2) 100%);
}

/*---------------------------------------
03. Components
---------------------------------------*/
.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
  background: none;
}

.mean-container .mean-nav>ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  display: block;
  width: 100%;
  padding: 10px 0;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  text-transform: capitalize;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
  border: none;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li .submenu li a {
  border-bottom: none !important;
  font-size: 14px;
  padding: 6px 0;
  color: var(--header);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li>a>i {
  display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
  display: inline-block;
  font-size: 18px;
}

.mean-container .mean-nav>ul>li:first-child>a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

/* Preloader Wrapper */
#agri-preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  /* dark green */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Content */
.preloader-content {
  text-align: center;
  color: #fff;
}

/* Leaf Shape */
.leaf {
  width: 60px;
  height: 60px;
  background: #4CAF50;
  border-radius: 0 100% 0 100%;
  transform: rotate(45deg);
  margin: 0 auto 15px;
  animation: leafSpin 1.2s linear infinite;
}

/* Text */
.preloader-content h4 {
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--header);
  margin: 0;
}

.farmer-loader {
  width: 90px;
  animation: float 1.2s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.back-to-top {
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 40px;
  border-radius: 100px;
  color: var(--white);
  font-size: 16px;
  position: fixed;
  display: inline-block;
  z-index: 9999;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.theme-bg-2 {
  background-color: var(--theme2);
  color: var(--header);
}

.back-to-top.theme-bg-2:hover {
  color: var(--theme2);
}

.back-to-top.theme-bg-3 {
  background-color: var(--theme3);
  color: var(--white);
}

.back-to-top.theme-bg-3:hover {
  color: var(--theme3);
}

@media (max-width: 575px) {
  .back-to-top {
    display: none;
  }
}

.back-to-top:hover {
  background-color: var(--white);
  color: var(--theme);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.cursor-outer {
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  background-color: var(--theme);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.34;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.cursor-outer.cursor-hover {
  opacity: 0.14;
}

.cursor-outer.cursor-big {
  opacity: 0;
}

.mouseCursor {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}

.mouseCursor.cursor-big {
  width: 20px;
  height: 20px;
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
}

.cursor-inner {
  -webkit-margin-start: -3px;
  margin-inline-start: -3px;
  margin-top: -3px;
  width: 10px;
  height: 10px;
  z-index: 10000001;
  background-color: var(--theme);
  opacity: 1;
  -webkit-transition: all 0.24s ease-out 0s;
  transition: all 0.24s ease-out 0s;
}

.cursor-inner span {
  color: var(--text);
  line-height: 60px;
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.cursor-inner.cursor-big span {
  opacity: 1;
}

.cursor-inner.cursor-hover {
  -webkit-margin-start: -10px;
  margin-inline-start: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--theme);
  border: 1px solid #686363;
  opacity: 0;
}

.search_popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--header);
  z-index: 100;
  padding-top: 70px;
  padding-bottom: 100px;
  opacity: 0;
  backdrop-filter: blur(10px);
  transform: translateY(-100%);
  transition: all 0.6s ease;
}

.search_popup.search-opened {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 0s;
  z-index: 999999;
}

.search_popup.search-opened .search_form .search_input {
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.3s;
}

.search_popup.search-opened .search_form .search_input::after {
  width: 100%;
  transition-delay: 0.5s;
}

@media (max-width: 575px) {
  .search_popup {
    padding-top: 50px;
    padding-bottom: 70px;
  }
}

.search_wrapper .search_top {
  margin-bottom: 80px;
}

.search_wrapper .search_top .search_logo {
  max-width: 200px;
}

.search_wrapper .search_top .search_logo a {
  display: block;
}

@media (max-width: 575px) {
  .search_wrapper .search_top .search_logo {
    max-width: 150px;
  }
}

.search_wrapper .search_top .search_close {
  margin-left: auto;
  margin-top: 10px;
}

.search_wrapper .search_top .search_close .search_close_btn {
  display: inline-block;
  width: 35px;
  height: 35px;
  font-size: 35px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.3);
}

.search_wrapper .search_top .search_close .search_close_btn svg {
  width: 30px;
  height: 30px;
}

.search_wrapper .search_top .search_close .search_close_btn:hover {
  color: var(--white);
  transform: rotate(90deg);
}

@media (max-width: 575px) {
  .search_wrapper .search_top {
    margin-bottom: 50px;
  }
}

@media (max-width: 500px) {
  .search_wrapper .search_top {
    margin-bottom: 40px;
  }
}

.search_wrapper .search_form .search_input {
  position: relative;
  height: 80px;
  transform: translateY(-40px);
  transition: all 0.4s ease-in-out;
  transition-delay: 0.5s;
  opacity: 0;
}

.search_wrapper .search_form .search_input::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  transition-delay: 0.3s;
  transition: all 0.4s ease-in-out;
}

.search_wrapper .search_form .search_input input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 0;
  outline: 0;
  font-size: 24px;
  color: var(--text);
  border-bottom: 1px solid transparent;
  padding: 0;
  padding-right: 30px;
}

.search_wrapper .search_form .search_input input::placeholder {
  font-size: 24px;
}

.search_wrapper .search_form .search_input input~.search-focus-border {
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 1px;
  background-color: var(--white);
  transition: all 0.5s;
}

.search_wrapper .search_form .search_input input:focus~.search-focus-border {
  width: 100%;
  left: 0;
  right: auto;
  transition: all 0.5s;
}

@media (max-width: 575px) {
  .search_wrapper .search_form .search_input input {
    font-size: 20px;
  }

  .search_wrapper .search_form .search_input input::placeholder {
    font-size: 20px;
  }
}

@media (max-width: 500px) {
  .search_wrapper .search_form .search_input input {
    font-size: 18px;
  }

  .search_wrapper .search_form .search_input input::placeholder {
    font-size: 18px;
  }
}

.search_wrapper .search_form .search_input button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--white);
}

.search-popup-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  cursor: zoom-out;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.search-popup-overlay.bg-theme-2 {
  background-color: var(--theme2);
}

.search-popup-overlay.bg-theme-3 {
  background-color: var(--theme3);
}

.search-popup-overlay.search-popup-overlay-open {
  opacity: 0.8;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.35s;
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes gelatine {

  from,
  to {
    transform: scale(1, 1);
  }

  25% {
    transform: scale(0.7, 1.1);
  }

  50% {
    transform: scale(1.1, 0.7);
  }

  75% {
    transform: scale(0.95, 1.05);
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@-webkit-keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }

  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes criss-cross-right {
  0% {
    right: -20px;
  }

  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-25%);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes zoom {
  0% {
    transform: scale(0.5);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.5);
  }
}

@keyframes translateY2 {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  100% {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes translateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes moving {
  0% {
    transform: translatey(0px);
  }

  20% {
    transform: translateX(-50px);
  }

  50% {
    transform: translatey(-40px);
  }

  100% {
    transform: translatey(0px);
  }
}

/*img-animation**********************/
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes animate-positive {
  0% {
    width: 0;
  }
}

@keyframes scale {
  0% {
    top: -1000px;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.animation-infinite {
  animation: ShapeAnim 50s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

@keyframes ShapeAnim {
  0% {
    background-position: top left;
  }

  100% {
    background-position: top left 3000px;
  }
}

.splt-txt .whitespace {
  width: 8px;
}

.splt-txt.animated .char {
  -webkit-animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

.splt-txt-bounce .whitespace {
  width: 20px;
}

@media (max-width: 991px) {
  .splt-txt-bounce .whitespace {
    width: 10px;
  }
}

.splt-txt-bounce.animated .char {
  -webkit-animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

@keyframes jello {
  11.1% {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

/* CSS */
.text-anims {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.text-anims.show {
  opacity: 1;
  transform: scale(1);
}

@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

@-webkit-keyframes borderanimate2 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }

  60% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(2.5);
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

@keyframes borderanimate2 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }

  60% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(2.5);
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

@keyframes waterFall {
  0% {
    transform: translateY(-40px) scaleY(0.6);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    transform: translateY(430px) scaleY(1);
    opacity: 0;
  }
}

@keyframes drone-fly-real {
  0% {
    transform: translate(-50%, -50%) translate(0, 0) rotate(0deg);
  }

  20% {
    transform: translate(-50%, -50%) translate(-40px, -40px) rotate(-2deg);
  }

  40% {
    transform: translate(-50%, -50%) translate(40px, -90px) rotate(2deg);
  }

  60% {
    transform: translate(-50%, -50%) translate(-30px, -130px) rotate(-2deg);
  }

  80% {
    transform: translate(-50%, -50%) translate(30px, -70px) rotate(1.5deg);
  }

  100% {
    transform: translate(-50%, -50%) translate(0, 0) rotate(0deg);
  }
}

/*---------------------------------------
04. Layouts
---------------------------------------*/
.header-top-section {
  position: relative;
  margin-bottom: 30px !important;
  border-radius: 10px;
  margin: 0 30px;
}

.header-top-section .container-fluid {
  padding: 0 20px;
}

@media (max-width: 575px) {
  .header-top-section .container-fluid {
    padding: 0 15px;
  }
}

@media (max-width: 1399px) {
  .header-top-section {
    display: none;
  }
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  position: relative;
  z-index: 999;
}

.header-top-wrapper .header-left .list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-top-wrapper .header-left .list li {
  color: var(--white);
}

.header-top-wrapper .header-left .list li a {
  color: var(--white);
}

.header-top-wrapper p {
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}

.header-top-wrapper p span {
  font-weight: 700;
}

.header-top-wrapper .header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-top-wrapper .header-right span {
  color: var(--white);
}

.header-top-wrapper .header-right .social-icon {
  display: flex;
  align-items: center;
  gap: 15px;
  text-transform: capitalize;
}

.header-top-wrapper .header-right .social-icon a {
  color: var(--white);
  transition: all 0.4s ease-in-out;
}

.header-top-wrapper .header-right .social-icon a:hover {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.header-main .main-menu ul {
  margin-bottom: 0;
}

.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 45px;
}

@media (max-width: 1199px) {
  .header-main .main-menu ul li {
    margin-inline-end: 30px;
  }
}

.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}

.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: rgb(80, 98, 74);
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li a i {
  margin-left: 4px;
  font-size: 14px;
}

.header-main .main-menu ul li a:hover {
  color: var(--theme);
}

.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 115%;
  inset-inline-start: 0;
  min-width: 260px;
  padding: 20px 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  transform: translateY(-10px);
  transition: all 0.4s ease-in-out;
  border-top: 6px solid var(--theme);
  background-color: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}

.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.34px;
  color: var(--header);
  line-height: 30px;
  padding: 0px 0px 0px 32px;
  padding-right: 22px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Cormorant Garamond", serif;
}

.header-main .main-menu ul li .submenu li a::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 2px;
  background: var(--theme);
  left: 14px;
  bottom: 18px;
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme);
}

.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}

.header-main .main-menu ul li .submenu li:hover>a {
  color: var(--theme) !important;
  margin-left: 10px;
}

.header-main .main-menu ul li .submenu li:hover>a::before {
  width: 10px;
}

.header-main .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme);
}

.header-main .main-menu ul li .submenu li:hover>.submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .submenu li.has-dropdown>a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}

.header-main .main-menu ul li .has-homemenu {
  width: 1000px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
  background-color: var(--white);
  border-radius: 8px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
  width: 100%;
  padding: 0 12px;
}

@media (max-width: 1399px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    font-size: 14px;
    min-width: 140px;
  }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: initial;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  border: none;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  padding: 15px 40px 15px;
  transition: 0.5s ease-in-out;
  text-transform: capitalize;
  overflow: hidden;
  gap: 5px;
  text-align: center;
  background-color: var(--theme);
  z-index: 1;
  border-radius: 8px;
}

@media (max-width: 1399px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    padding: 15px 25px 15px;
  }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn::after {
  content: "";
  background-color: var(--header);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover img {
  filter: brightness(0);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn.theme-btn-3 {
  background-color: var(--theme3);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn.theme-btn-3:hover {
  color: var(--white) !important;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn-2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  border: none;
  line-height: initial;
  font-weight: 700;
  font-size: 16px;
  color: var(--header);
  padding: 15px 40px 15px;
  transition: 0.5s ease-in-out;
  text-transform: capitalize;
  overflow: hidden;
  gap: 5px;
  text-align: center;
  background-color: var(--theme2);
  z-index: 1;
  border-radius: 8px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn-2::after {
  background-color: var(--header) !important;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn-2:hover {
  color: var(--white) !important;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn-2:hover img {
  filter: brightness(0);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
}

.header-main .main-menu ul li:hover>a {
  color: var(--theme);
}

.header-main .main-menu ul li:hover>a::after {
  color: var(--theme);
}

.header-main .main-menu ul li:hover>.submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.header-main .header-right {
  position: relative;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 70px;
}

.header-main .header-right.style-1 {
  gap: 200px !important;
}

@media (max-width: 1399px) {
  .header-main .header-right.style-1 {
    gap: 40px !important;
  }
}

.header-main .header-right.style-1 .icon-items {
  margin-right: -110px !important;
}

@media (max-width: 1399px) {
  .header-main .header-right.style-1 .icon-items {
    margin-right: 0 !important;
  }
}

@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}

.header-main .header-right .icon-items {
  display: flex;
  align-items: center;
  gap: 45px;
}

.header-main .header-right .icon-items .menu_search .search_btn {
  color: var(--white);
}

.header-main .header-right .icon-items a i {
  color: var(--white);
}

.header-main .header-right .header-btn {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-main .header-right .header-btn span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 15px 20px;
  display: inline-block;
  font-weight: 700;
}

.header-main .header-right .header-btn span i {
  color: var(--white);
  margin-right: 5px;
}

@media (max-width: 1399px) {
  .header-main .header-right .header-btn span {
    display: none;
  }
}

.header-main .header-right .header-btn span a {
  color: var(--white);
}

@media (max-width: 1399px) {
  .header-main .header-right .header-btn {
    gap: 16px;
  }
}

@media (max-width: 1399px) {
  .header-main .header-right .header-btn .header-button {
    display: none;
  }
}

.header-main .header-right .header-btn .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  color: var(--white);
}

.header-1 {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  margin-top: 45px;
  margin-top: 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 1399px) {
  .header-1 {
    top: 0;
    margin-top: 0;
  }
}

.header-1 .container-fluid {
  padding: 0 120px;
}

@media (max-width: 1600px) {
  .header-1 .container-fluid {
    padding: 0 90px;
  }
}

@media (max-width: 1399px) {
  .header-1 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .header-1 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .header-1 .container-fluid {
    padding: 0 15px;
  }
}

.header-1 .header-main .main-menu ul li a {
  color: var(--white);
}

.header-1 .header-main .main-menu ul li a:hover {
  color: var(--theme2);
}

.header-1 .header-main .main-menu ul li .submenu {
  border-top: 6px solid var(--theme2);
}

.header-1 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme2) !important;
}

.header-1 .header-main .main-menu ul li .submenu li a:hover::before {
  background-color: var(--theme2);
}

@media (max-width: 1899px) {
  .header-1 .header-main .main-menu ul li {
    margin-inline-end: 28px;
  }
}

.header-1 .header-main .header-left .logo .header-logo-2 {
  display: none;
}

@media (max-width: 1899px) {
  .header-1 .header-main .header-left .logo .header-logo-2 {
    gap: 40px;
  }
}

@media (max-width: 1899px) {
  .header-1 .header-main .header-right {
    gap: 40px;
  }
}

@media (max-width: 1899px) {
  .header-1 .header-main .header-right .icon-items {
    gap: 40px;
  }
}

@media (max-width: 1600px) {
  .header-1 .header-main .header-right .header-btn span {
    padding: 15px;
  }
}

.header-1.header-2 {
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.08); */
  border: 1px solid #315737 !important;
  margin-top: 0 !important;
}

@media (max-width: 1399px) {
  .header-1.header-2 {
    margin-top: 0;
  }
}

.header-1.header-2 .header-main {
  position: relative;
  padding: 10px 40px !important;
  border-radius: 0 !important;
  /* background-color: rgba(255, 255, 255, 0.95); */
  background-color: #315737;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04) !important;
  border: none !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
  transition: padding 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.4s ease-in-out;
}

.header-1.header-2 .header-main.header-inner {
  padding: 0 10px;
}

@media (max-width: 1600px) {
  .header-1.header-2 .header-main.header-inner {
    padding: 0 5px;
  }
}

@media (max-width: 575px) {
  .header-1.header-2 .header-main.header-inner {
    padding: 0;
  }
}

.header-1.header-2 .header-main.header-inner .main-menu nav>ul>li>a,
.header-1.header-2 .header-main.header-inner .main-menu>ul>li>a {
  /* color: var(--header) !important; */
  color: #fff;
  /* font-family: "Instrument Sans", sans-serif !important; */
  font-family: "Cormorant Garamond", serif;
  font-weight: 700 !important;
  font-size: 21px !important;
  letter-spacing: 0.4px !important;
  position: relative !important;
  padding: 22px 0 !important;
  transition: color 0.3s ease !important;
}

@media (min-width: 992px) {
  .header-1.header-2 .header-main.header-inner .main-menu>ul>li {
    position: relative !important;
  }

  .header-1.header-2 .header-main.header-inner .main-menu>ul>li>a::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--theme3);
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), left 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateX(-50%);
  }

  .header-1.header-2 .header-main.header-inner .main-menu>ul>li:hover>a::after {
    width: 100%;
  }
}

.header-1.header-2 .header-main.header-inner .main-menu nav>ul>li>a:hover,
.header-1.header-2 .header-main.header-inner .main-menu>ul>li>a:hover {
  /* color: var(--theme3) !important; */
  color: #fff;
  font-size: 19px !important;
}

/* Premium Sticky Header Animations and State Overrides */
@keyframes stickySlideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.header-1.header-2.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  margin-top: 0 !important;
  z-index: 1000 !important;
  animation: stickySlideDown 0.45s cubic-bezier(0.25, 1, 0.5, 1) forwards !important;
}

.header-1.header-2.sticky .header-main {
  padding: 8px 40px !important;
  border-radius: 0 !important;
  /* background-color: rgba(255, 255, 255, 0.92) !important; */
  background: #315737;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
  /* border: 1px solid rgba(255, 255, 255, 0.3) !important; */
  border: 1px solid #315737 !important;
  border-top: none !important;
}

/* Align links vertically inside sticky header */
.header-1.header-2.sticky .header-main.header-inner .main-menu nav>ul>li>a,
.header-1.header-2.sticky .header-main.header-inner .main-menu>ul>li>a {
  padding: 14px 0 !important;
}

.header-1.header-2.sticky .header-main.header-inner .main-menu>ul>li>a::after {
  bottom: 6px;
}

@media (max-width: 1600px) {
  .header-1.header-2 .header-main {
    padding: 10px 20px;
  }
}

@media (max-width: 1399px) {
  .header-1.header-2 .header-main {
    padding: 10px 0;
  }
}

.header-1.header-2 .header-main .overlay-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: none !important;
}

@media (max-width: 1899px) {
  .header-1.header-2 .header-main .overlay-shape img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 1399px) {
  .header-1.header-2 .header-main .overlay-shape {
    display: none !important;
  }
}

.header-1.header-2 .header-main .overlay-shape img {
  border-radius: 20px;
}

.header-1.header-2 .header-main .main-menu ul li a:hover {
  color: var(--theme3);
}

.header-1.header-2 .header-main .main-menu ul li .submenu {
  border-top: 6px solid var(--theme3);
}

.header-1.header-2 .header-main .main-menu ul li .submenu li a::before {
  background-color: var(--theme3) !important;
}

.header-1.header-2 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme3) !important;
}

.header-1.header-2 .header-main .main-menu ul li .submenu li a:hover::before {
  background-color: var(--theme3) !important;
}

.header-1.header-2 .header-main .main-menu ul li .submenu li:hover>a {
  color: var(--theme3) !important;
}

.header-1.header-2 .header-main .main-menu ul li .submenu li:hover>a::before {
  background-color: var(--theme3) !important;
}

.header-1.header-2 .header-main .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme3) !important;
}

.header-1.header-2 .header-main .main-menu ul li .submenu li.has-dropdown>a::after {
  color: var(--theme3) !important;
}

@media (max-width: 1899px) {
  .header-1.header-2 .header-main .main-menu ul li {
    margin-inline-end: 28px;
  }
}

.header-1.header-2 .header-main .header-right {
  gap: 100px;
}

@media (max-width: 1399px) {
  .header-1.header-2 .header-main .header-right {
    gap: 30px;
  }
}

.header-1.header-2 .header-main .header-right .icon-items {
  margin-right: -50px;
}

@media (max-width: 1399px) {
  .header-1.header-2 .header-main .header-right .icon-items {
    margin-right: 0;
  }
}

.header-1.header-2 .header-main .header-right .header-btn .header-button .theme-btn.theme-btn-3::before {
  background-color: var(--white);
}

.header-1.header-2 .header-main .header-right .header-btn .header-button .theme-btn.theme-btn-3::after {
  background-color: rgba(255, 255, 255, 0.3);
}

.header-1.header-2 .header-main .header-right .header-btn .header-button .theme-btn.theme-btn-3:hover {
  color: var(--theme3);
}

.header-1.header-2 .header-main .header-right .header-btn .header__hamburger .sidebar__toggle {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  /* border: 1px solid rgba(47, 47, 47, 0.2); */
  border: 1px solid #fff;  
  border-radius: 100px;
  /* color: var(--header); */
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.header-1.header-2 .header-main .header-right .header-btn .header__hamburger .sidebar__toggle:hover {
  background-color: var(--theme3);
  color: var(--white);
  border-color: var(--theme3);
}

.header-1.header-2.header-4 {
  margin-top: 20px;
}

.header-1.header-2.header-4 .header-main .main-menu ul li a {
  color: var(--white);
}

.header-1.header-2.header-4 .header-main .main-menu ul li a:hover {
  color: var(--theme3);
}

.header-1.header-2.header-4 .header-main .main-menu ul li .theme-btn {
  color: var(--white) !important;
}

.header-1.header-2.header-4 .header-main .main-menu ul li .submenu {
  border-top: 6px solid var(--theme3);
}

.header-1.header-2.header-4 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme3) !important;
}

.header-1.header-2.header-4 .header-main .main-menu ul li .submenu li a:hover::before {
  background-color: var(--theme3);
}

@media (max-width: 1899px) {
  .header-1.header-2.header-4 .header-main .main-menu ul li {
    margin-inline-end: 28px;
  }
}

.header-1.header-2.header-4 .header-main .header-right .icon-items .menu_search .search_btn {
  color: var(--white);
}

.header-1.header-2.header-4 .header-main .header-right .icon-items a i {
  color: var(--white);
}

.header-1.header-3 {
  margin-top: 60px;
}

@media (max-width: 1600px) {
  .header-1.header-3 {
    margin-top: 70px;
  }
}

@media (max-width: 1399px) {
  .header-1.header-3 {
    margin-top: 0;
  }
}

@media (max-width: 575px) {
  .header-1.header-3 {
    margin-top: 10px;
  }
}

.header-1.header-3 .container-fluid {
  padding: 0 40px;
}

@media (max-width: 1399px) {
  .header-1.header-3 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .header-1.header-3 .container-fluid {
    padding: 0 15px;
  }
}

.header-1.header-3 .header-main {
  position: relative;
}

@media (max-width: 575px) {
  .header-1.header-3 .header-main .logo .header-logo {
    display: none !important;
  }
}

.header-1.header-3 .header-main .logo .header-logo-2 {
  display: none;
}

@media (max-width: 575px) {
  .header-1.header-3 .header-main .logo .header-logo-2 {
    display: block !important;
  }
}

.header-1.header-3 .header-main .main-menu ul li a {
  color: rgb(80, 98, 74);
}

.header-1.header-3 .header-main .main-menu ul li a:hover {
  color: var(--theme);
}

.header-1.header-3 .header-main .main-menu ul li .submenu {
  border-top: 6px solid var(--theme);
}

.header-1.header-3 .header-main .main-menu ul li .submenu li a {
  color: var(--header);
}

.header-1.header-3 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme) !important;
}

.header-1.header-3 .header-main .main-menu ul li .submenu li a:hover::before {
  background-color: var(--theme) !important;
}

@media (max-width: 1899px) {
  .header-1.header-3 .header-main .main-menu ul li {
    margin-inline-end: 28px;
  }
}

.header-1.header-3 .header-main .header-right {
  gap: 50px;
}

@media (max-width: 1399px) {
  .header-1.header-3 .header-main .header-right {
    gap: 30px;
  }
}

.header-1.header-3 .header-main .header-right .icon-items .menu_search .search_btn {
  color: rgb(80, 98, 74);
}

@media (max-width: 575px) {
  .header-1.header-3 .header-main .header-right .icon-items .menu_search .search_btn {
    color: rgb(47, 47, 47);
    font-size: 16px;
  }
}

.header-1.header-3 .header-main .header-right .icon-items a i {
  color: rgb(80, 98, 74);
}

@media (max-width: 575px) {
  .header-1.header-3 .header-main .header-right .icon-items a i {
    color: rgb(47, 47, 47);
  }
}

.header-1.header-3 .header-main .header-right .header-btn .header-button .theme-btn {
  border: 1px solid var(--theme);
  background-color: transparent;
  color: rgb(200, 67, 58);
}

.header-1.header-3 .header-main .header-right .header-btn .header-button .theme-btn::before {
  background-color: var(--theme);
}

.header-1.header-3 .header-main .header-right .header-btn .header-button .theme-btn::after {
  background-color: rgba(200, 67, 58, 0.3);
}

.header-1.header-3 .header-main .header-right .header-btn .header-button .theme-btn:hover {
  color: var(--white);
}

.header-1.header-3 .header-main .header-right .header-btn .header__hamburger .sidebar__toggle {
  background-color: rgb(255, 255, 255);
  border-radius: 6px;
  color: rgb(80, 98, 74);
  width: 52px;
  height: 52px;
  line-height: 52px;
}

@media (max-width: 1399px) {
  .header-1.header-3 .header-main .header-right .header-btn .header__hamburger .sidebar__toggle {
    display: none;
  }
}

.header-1.header-3 .header-main .header-right .header-btn .header__hamburger .sidebar__toggle.style-2 {
  display: none !important;
}

@media (max-width: 1399px) {
  .header-1.header-3 .header-main .header-right .header-btn .header__hamburger .sidebar__toggle.style-2 {
    display: block !important;
  }
}

@media (max-width: 1399px) {
  .header-1.header-3 .header-main .header-right .header-btn .header__hamburger .sidebar__toggle {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid rgba(47, 47, 47, 0.2);
    color: rgb(47, 47, 47);
    background-color: transparent;
    border-radius: 100px;
  }

  .header-1.header-3 .header-main .header-right .header-btn .header__hamburger .sidebar__toggle.style-2 {
    display: block !important;
  }
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 99999;
  transition: all 0.9s;
  background-color: var(--white);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.sticky.header-1 {
  margin-top: 0;
}

.sticky.header-1 .header-main .header-left .header-logo {
  display: none;
}

.sticky.header-1 .header-main .header-left .header-logo-2 {
  display: block;
}

.sticky.header-1 .header-main .main-menu ul li a {
  color: var(--header);
}

.sticky.header-1 .header-main .header-right .icon-items .menu_search .search_btn {
  color: var(--header);
}

.sticky.header-1 .header-main .header-right .icon-items a i {
  color: var(--header);
}

.sticky.header-1 .header-main .header-right .header-btn span {
  background-color: var(--header);
}

.sticky.header-1 .header-main .header-right .header-btn .sidebar__toggle {
  color: var(--header);
}

.sticky.header-2 .header-main {
  padding: 10px;
}

.sticky.header-2 .header-main .overlay-shape {
  display: none;
}

.sticky.header-2 .header-main .main-menu ul li a:hover {
  /* color: var(--header) !important; */
  color: #fff;
  font-size: 19px;
}

.sticky.header-2 .header-main .main-menu ul li a:hover::before {
  background-color: var(--theme3) !important;
}

.sticky.header-2 .header-main .main-menu ul li .submenu li:hover>a {
  color: var(--theme3) !important;
  margin-left: 10px;
}

.sticky.header-2 .header-main .main-menu ul li .submenu li:hover>a::before {
  width: 10px;
}

.sticky.header-2 .header-main .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme3);
}

.sticky.header-2 .header-main .header-right .header-btn .header-button .theme-btn.theme-btn-3 {
  background-color: transparent;
  /* border: 1px solid var(--theme3); */
  border: 1px solid #fff;
  /* color: var(--theme3); */
  color: #fff;
}

.sticky.header-2 .header-main .header-right .header-btn .header-button .theme-btn.theme-btn-3::before {
  background-color: var(--theme3);
}

.sticky.header-2 .header-main .header-right .header-btn .header-button .theme-btn.theme-btn-3::after {
  background-color: rgba(17, 162, 27, 0.3);
}

.sticky.header-2 .header-main .header-right .header-btn .header-button .theme-btn.theme-btn-3:hover {
  color: var(--white);
}

.sticky.header-2 .header-main .header-right .header-btn .header__hamburger .sidebar__toggle {
  /* border: 1px solid var(--header); */
  border: 1px solid #fff;
}

.sticky.header-3 {
  margin-top: 0;
}

.sticky.header-4 {
  margin-top: 0px !important;
}

.sticky.header-4 .header-main .main-menu ul li a {
  color: var(--header) !important;
}

.sticky.header-4 .header-main .main-menu ul li a:hover {
  color: var(--theme3);
}

.sticky.header-4 .header-main .main-menu ul li .submenu {
  border-top: 6px solid var(--theme3);
}

.sticky.header-4 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme3) !important;
}

.sticky.header-4 .header-main .main-menu ul li .submenu li a:hover::before {
  background-color: var(--theme3);
}

.sticky.header-4 .header-main .header-right .icon-items .menu_search .search_btn {
  color: var(--header) !important;
}

.sticky.header-4 .header-main .header-right .icon-items a i {
  color: var(--header) !important;
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme2);
  position: fixed;
  right: 0;
  top: 0;
  width: 450px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 9999999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.style-2 {
  border-left: 2px solid var(--theme3) !important;
}

.offcanvas__info.style-3 {
  border-left: 2px solid var(--theme) !important;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.18) !important;
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}

.offcanvas__wrapper .offcanvas__content .text {
  color: var(--black);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme2);
  position: relative;
  z-index: 9;
  cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close.style-2 {
  background-color: var(--theme3);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close.style-2 i {
  color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close.style-3 {
  background-color: var(--theme);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close.style-3 i {
  color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--header);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}

@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas__contact {
    display: block;
  }
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact h4 {
  margin-bottom: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 0;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  /* font-size: 20px; */
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
    font-size: 14px;
  }
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  /* margin-bottom: 30px; */
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
    margin-bottom: 20px;
  }
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--black);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme3);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon.style-1 {
  color: var(--theme) !important;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon.style-2 {
  color: var(--theme2) !important;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 20px 40px;
  text-transform: capitalize !important;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 100%;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: #000;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme3);
  color: var(--white);
  border: 1px solid var(--theme3);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon.style-3 a:hover {
  background-color: var(--theme) !important;
  border: 1px solid var(--theme) !important;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon.style-2 a:hover {
  background-color: var(--theme2) !important;
  border: 1px solid var(--theme2) !important;
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    /* width: 300px; */
    width: 350px;
  }
}

@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}

.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 9;
  background-color: rgba(17, 162, 27, 0.1);
}

.breadcrumb-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 44, 16, 0.75) 0%, rgba(16, 44, 16, 0.45) 100%);
  z-index: 1;
}

@media (max-width: 1399px) {
  .breadcrumb-wrapper {
    margin-top: 0;
  }
}

.breadcrumb-wrapper .top-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
}

.breadcrumb-wrapper .top-image img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1399px) {
  .breadcrumb-wrapper .top-image {
    opacity: 0 !important;
    visibility: hidden !important;
    display: none !important;
  }
}

@media (max-width: 1399px) {
  .breadcrumb-wrapper.bg-cover {
    background-image: url('../website_images/sub-banner.png') !important;
  }
}

.breadcrumb-wrapper.bg-cover {
  background-position: center !important;
  background-size: cover !important;
}

.breadcrumb-wrapper .page-heading {
  position: relative;
  /* padding: 240px 0 100px; */
  padding: 190px 0 100px;
  z-index: 9;
  text-align: center;
}

@media (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading {
    text-align: center;
    padding-top: 160px;
    padding-bottom: 90px;
  }
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading {
    text-align: center;
    padding-top: 150px;
    padding-bottom: 80px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading {
    text-align: center;
    padding-top: 140px;
    padding-bottom: 70px;
  }
}

.breadcrumb-wrapper .page-heading h1 {
  color: var(--white) !important;
  font-size: 55px;
  position: relative;
  text-transform: capitalize;
  z-index: 9;
  font-weight: 700;
}

@media (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 50px;
    color: var(--white) !important;
  }
}

@media (max-width: 470px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 40px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  gap: 8px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: rgba(16, 44, 16, 0.65);
  backdrop-filter: blur(4px);
  border-radius: 30px;
  padding: 6px 20px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 9;
  position: relative;
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    margin-top: 15px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  color: var(--white) !important;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--white) !important;
  transition: all 0.4s ease-in-out;
  display: inline-flex;
  align-items: center;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a i {
  color: var(--white) !important;
  margin-right: 9px;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme2) !important;
  opacity: 1;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover i {
  color: var(--theme2) !important;
}

.error-items {
  text-align: center;
  position: relative;
  margin-top: -40px;
}

@media (max-width: 1399px) {
  .error-items {
    margin-top: 0;
  }
}

.error-items .error-image {
  background-size: cover;
  background-position: 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-image: url(../img/404.png);
  background-position: -85% 811px;
  background-size: 91% auto;
  font-size: 330px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -9.6px;
  animation-duration: 1500ms;
  -webkit-animation-duration: 1500ms;
  margin-bottom: 10px;
}

@media (max-width: 1399px) {
  .error-items .error-image {
    font-size: 300px;
    text-align: center;
    letter-spacing: initial;
    background-size: 58% auto;
  }
}

@media (max-width: 1199px) {
  .error-items .error-image {
    font-size: 250px;
    text-align: center;
    letter-spacing: initial;
    background-size: 76% auto;
  }
}

@media (max-width: 991px) {
  .error-items .error-image {
    font-size: 180px;
    background-size: 92% auto;
  }
}

@media (max-width: 767px) {
  .error-items .error-image {
    font-size: 130px;
    background-size: 90% auto;
  }
}

@media (max-width: 575px) {
  .error-items .error-image {
    font-size: 90px;
    background-size: 83% auto;
  }
}

.error-items h2 {
  font-size: 72px;
  font-weight: 500;
  letter-spacing: -2px;
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .error-items h2 {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .error-items h2 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .error-items h2 {
    font-size: 30px;
  }
}

.error-items p {
  max-width: 722px;
  margin: 0 auto 40px;
}

@media (max-width: 767px) {
  .error-items p {
    margin-bottom: 30px;
  }
}

.footer-widget-wrapper {
  padding: 80px 0 50px;
}

@media (max-width: 1399px) {
  .footer-widget-wrapper {
    padding: 50px 0 50px;
  }
}

@media (max-width: 991px) {
  .footer-widget-wrapper {
    padding: 40px 0 40px;
  }
}

.footer-widget-wrapper .single-footer-widget {
  margin-top: 5px;
}

.footer-widget-wrapper .single-footer-widget .widget-head {
  margin-bottom: 20px;
}

.footer-widget-wrapper .single-footer-widget .widget-head h4 {
  color: var(--white);
}

.footer-widget-wrapper .single-footer-widget .footer-content p {
  max-width: 400px;
  color: rgb(255, 255, 255);
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-icon a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 100px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-icon a:hover {
  background-color: var(--theme);
  border: 1px solid var(--theme);
}

.footer-widget-wrapper .single-footer-widget .list-area li {
  transition: all 0.4s ease-in-out;
  font-weight: 400;
  font-size: 16px;
  font-family: "Cormorant Garamond", serif;
}

.footer-widget-wrapper .single-footer-widget .list-area li:not(:last-child) {
  /* margin-bottom: 10px; */
  margin-bottom: 15px  !important;
}

.footer-widget-wrapper .single-footer-widget .list-area li a {
  color: rgb(255, 255, 255);
}

.footer-widget-wrapper .single-footer-widget .list-area li a i {
  margin-right: 5px;
  color: rgb(255, 255, 255);
  font-size: 13px;
  transition: all 0.4s ease-in-out;
}

.footer-widget-wrapper .single-footer-widget .list-area li:hover {
  margin-left: 5px;
}

.footer-widget-wrapper .single-footer-widget .list-area li:hover a {
  color: #fff !important;
}

.footer-widget-wrapper .single-footer-widget .list-area li:hover a i {
  color: #fff !important;
}

.footer-widget-wrapper.footer-widget-wrapper-2 {
  padding: 10px 0 8px;
}

@media (max-width: 991px) {
  .footer-widget-wrapper.footer-widget-wrapper-2 {
    padding: 25px 0 40px;
  }
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image {
  position: relative;
  border-radius: 10px;
  margin-right: 50px;
}

@media (max-width: 1399px) {
  .footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image {
    margin-right: 0;
  }
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(47, 47, 47, 0.6);
  border-radius: 10px;
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content {
  max-width: 510px;
  width: 100%;
  padding: 40px 30px;
  position: relative;
}

@media (max-width: 1399px) {
  .footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content {
    padding: 30px 20px;
  }
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content h3 {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content form {
  max-width: 510px;
  width: 100%;
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content .form-clt {
  position: relative;
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  color: rgb(80, 98, 74);
  line-height: 1;
  padding: 25px 50px;
  border-radius: 10px;
  max-width: 510px;
}

@media (max-width: 470px) {
  .footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content .form-clt input {
    padding: 25px 30px;
  }
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content .form-clt input::placeholder {
  color: rgb(80, 98, 74);
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content .form-clt i {
  position: absolute;
  left: 25px;
  top: 28px;
  color: var(--header);
}

@media (max-width: 470px) {
  .footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content .form-clt i {
    left: 10px;
  }
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content .form-clt .theme-btn-2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding: 15px 30px 15px;
}

@media (max-width: 470px) {
  .footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content .form-clt .theme-btn-2 {
    padding: 10px 20px 10px;
  }
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content .payment-save {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content .payment-save input {
  width: 14px;
  height: 14px;
  border: 1px solid var(--white);
  background-color: transparent;
  outline: none;
  color: var(--white);
  border-radius: 3px;
  transform: translateY(-2px);
  box-shadow: none;
}

@media (max-width: 470px) {
  .footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content .payment-save input {
    transform: translateY(0px);
  }
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .footer-contact-image .footer-contact-content .payment-save label {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--white);
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .list-area li:hover {
  margin-left: 5px;
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .list-area li:hover a {
  color: var(--theme2);
}

.footer-widget-wrapper.footer-widget-wrapper-2 .single-footer-widget .list-area li:hover a i {
  color: var(--theme2);
}

.footer-widget-wrapper.footer-widget-wrapper-2.widget-3 .single-footer-widget .footer-contact-image {
  background-color: var(--theme3);
}

.footer-widget-wrapper.footer-widget-wrapper-2.widget-3 .single-footer-widget .footer-contact-image::before {
  display: none;
}

.footer-widget-wrapper.footer-widget-wrapper-2.widget-3 .single-footer-widget .footer-contact-image .form-clt {
  position: relative;
}

.footer-widget-wrapper.footer-widget-wrapper-2.widget-3 .single-footer-widget .footer-contact-image .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  color: rgb(80, 98, 74);
  line-height: 1;
  padding: 25px 50px;
  border-radius: 10px;
  max-width: 510px;
}

@media (max-width: 470px) {
  .footer-widget-wrapper.footer-widget-wrapper-2.widget-3 .single-footer-widget .footer-contact-image .form-clt input {
    padding: 25px 30px;
  }
}

.footer-widget-wrapper.footer-widget-wrapper-2.widget-3 .single-footer-widget .footer-contact-image .form-clt input::placeholder {
  color: rgb(80, 98, 74);
}

.footer-widget-wrapper.footer-widget-wrapper-2.widget-3 .single-footer-widget .footer-contact-image .form-clt i {
  color: var(--theme3);
}

.footer-widget-wrapper.footer-widget-wrapper-2.widget-3 .single-footer-widget .footer-contact-image .form-clt .theme-btn-2 {
  background-color: var(--header);
  color: var(--white);
}

.footer-widget-wrapper.footer-widget-wrapper-2.widget-3 .single-footer-widget .footer-contact-image .form-clt .theme-btn-2::before {
  background-color: var(--theme3);
}

@media (max-width: 470px) {
  .footer-widget-wrapper.footer-widget-wrapper-2.widget-3 .single-footer-widget .footer-contact-image .form-clt .theme-btn-2 {
    padding: 10px 20px 10px;
  }
}

.footer-widget-wrapper.footer-widget-wrapper-2.widget-3 .single-footer-widget .list-area li:hover {
  margin-left: 5px;
}

.footer-widget-wrapper.footer-widget-wrapper-2.widget-3 .single-footer-widget .list-area li:hover a {
  color: var(--theme3);
}

.footer-widget-wrapper.footer-widget-wrapper-2.widget-3 .single-footer-widget .list-area li:hover a i {
  color: var(--theme3);
}

.footer-widget-wrapper.footer-widget-wrapper-2.style-inner-wrapper .single-footer-widget .footer-contact-image {
  background-color: rgb(1, 40, 4);
}

.footer-widget-wrapper.footer-widget-wrapper-2.style-inner-wrapper .single-footer-widget .footer-contact-image::before {
  display: none;
}

.footer-widget-wrapper.footer-widget-wrapper-2.style-inner-wrapper .single-footer-widget .footer-contact-image .form-clt {
  position: relative;
}

.footer-widget-wrapper.footer-widget-wrapper-2.style-inner-wrapper .single-footer-widget .footer-contact-image .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  color: rgb(80, 98, 74);
  line-height: 1;
  padding: 25px 50px;
  border-radius: 10px;
  max-width: 510px;
}

@media (max-width: 470px) {
  .footer-widget-wrapper.footer-widget-wrapper-2.style-inner-wrapper .single-footer-widget .footer-contact-image .form-clt input {
    padding: 25px 30px;
  }
}

.footer-widget-wrapper.footer-widget-wrapper-2.style-inner-wrapper .single-footer-widget .footer-contact-image .form-clt input::placeholder {
  color: rgb(80, 98, 74);
}

.footer-widget-wrapper.footer-widget-wrapper-2.style-inner-wrapper .single-footer-widget .footer-contact-image .form-clt i {
  color: var(--theme3);
}

.footer-widget-wrapper.footer-widget-wrapper-2.style-inner-wrapper .single-footer-widget .footer-contact-image .form-clt .theme-btn {
  background-color: rgb(17, 162, 27);
  color: var(--white);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding: 15px 30px 15px;
}

.footer-widget-wrapper.footer-widget-wrapper-2.style-inner-wrapper .single-footer-widget .footer-contact-image .form-clt .theme-btn::before {
  background-color: var(--theme3);
}

@media (max-width: 470px) {
  .footer-widget-wrapper.footer-widget-wrapper-2.style-inner-wrapper .single-footer-widget .footer-contact-image .form-clt .theme-btn {
    padding: 10px 20px 10px;
  }
}

.footer-widget-wrapper.footer-widget-wrapper-2.style-inner-wrapper .single-footer-widget .list-area li:hover {
  margin-left: 5px;
}

.footer-widget-wrapper.footer-widget-wrapper-2.style-inner-wrapper .single-footer-widget .list-area li:hover a {
  color: var(--theme3);
}

.footer-widget-wrapper.footer-widget-wrapper-2.style-inner-wrapper .single-footer-widget .list-area li:hover a i {
  color: var(--theme3);
}

.footer-section {
  padding-bottom: 80px;
}

.footer-area {
  margin: 0 30px 80px;
  border-radius: 20px;
}

@media (max-width: 1399px) {
  .footer-area {
    margin: 0 15px 0px;
  }
}

.footer-bottom {
  display: block !important;
  padding: 20px 0 !important;
  margin: 0 !important;
  width: 100% !important;
  visibility: visible !important;
  opacity: 1 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
  position: relative !important;
  z-index: 10 !important;
  overflow: visible !important;
  max-height: none !important;
  height: auto !important;
  float: none !important;
  clear: both !important;
}

.footer-bottom .footer-wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  /* border-top: 1px solid rgba(255, 255, 255, 0.2) !important; */
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important; */
  padding: 20px 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
  gap: 20px !important;
}

@media (max-width: 1399px) {
  .footer-bottom .footer-wrapper {
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .footer-bottom {
    padding: 15px 0 !important;
  }

  .footer-bottom .footer-wrapper {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom .footer-wrapper p {
    margin-bottom: 15px !important;
  }

  .footer-bottom .footer-wrapper .social-icon {
    justify-content: center !important;
  }
}

.footer-bottom .footer-wrapper h5 {
  font-size: 14px;
  font-weight: 500;
  color: rgb(131, 131, 131);
  line-height: 150%;
}

@media (max-width: 767px) {
  .footer-bottom .footer-wrapper h5 {
    text-align: center;
  }
}

.footer-bottom .footer-wrapper h5 span {
  color: var(--white);
  font-weight: 700;
}

.footer-bottom .footer-wrapper p {
  color: #fff !important;
  margin: 0 !important;
  font-size: 18px !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-family: "Cormorant Garamond", serif;
}

.footer-bottom .footer-wrapper p a {
  color: #fff !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

.footer-bottom .footer-wrapper p a:hover {
  text-decoration: underline !important;
}

.footer-bottom .footer-wrapper p span {
  color: var(--white);
}

.footer-bottom .footer-wrapper .footer-list {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 1399px) {
  .footer-bottom .footer-wrapper .footer-list {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.footer-bottom .footer-wrapper .footer-list li a {
  color: rgb(131, 131, 131);
}

.footer-bottom .footer-wrapper .footer-list li a:hover {
  color: var(--white);
}

.footer-bottom .footer-wrapper .social-icon {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.footer-bottom .footer-wrapper .social-icon a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  line-height: 40px !important;
  border-radius: 100px !important;
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  text-align: center !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  font-size: 16px !important;
  transition: all 0.3s ease !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.footer-bottom .footer-wrapper .social-icon a:hover {
  background-color: var(--theme3) !important;
  border: 1px solid var(--theme3) !important;
  color: #fff !important;
}

.footer-section-2 .footer-top-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 100px 0 60px;
}

@media (max-width: 1399px) {
  .footer-section-2 .footer-top-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .footer-section-2 .footer-top-item {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.footer-section-2 .footer-top-item .footer-right-item {
  display: flex;
  align-items: center;
  gap: 50px;
}

@media (max-width: 1399px) {
  .footer-section-2 .footer-top-item .footer-right-item {
    flex-wrap: wrap;
    gap: 25px;
  }
}

.footer-section-2 .footer-top-item .footer-right-item .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-section-2 .footer-top-item .footer-right-item .social-icon a {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 100px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.footer-section-2 .footer-top-item .footer-right-item .social-icon a:hover {
  background-color: var(--theme2);
  border: 1px solid var(--theme2);
  color: var(--header);
}

.footer-section-2 .footer-top-item .footer-right-item .icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 50px;
}

@media (max-width: 1399px) {
  .footer-section-2 .footer-top-item .footer-right-item .icon-item {
    padding-left: 0;
    border-left: none;
  }
}

@media (max-width: 470px) {
  .footer-section-2 .footer-top-item .footer-right-item .icon-item {
    gap: 8px;
  }
}

.footer-section-2 .footer-top-item .footer-right-item .icon-item .icon {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background-color: var(--theme2);
  border-radius: 100px;
  color: var(--header);
}

.footer-section-2 .footer-top-item .footer-right-item .icon-item .cont span {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  color: rgb(142, 142, 142);
  text-transform: capitalize;
}

.footer-section-2 .footer-top-item .footer-right-item .icon-item .cont h4 a {
  color: var(--white);
}

.footer-section-2 .footer-top-item.style-inner .footer-right-item .social-icon a:hover {
  background-color: var(--theme3);
  color: var(--white);
  border: 1px solid var(--theme3);
}

.footer-section-2 .footer-top-item.style-inner .footer-right-item .icon-item .icon {
  background-color: var(--theme3);
}

.footer-section-2 .footer-top-item.style-inner .footer-right-item .icon-item .icon img {
  filter: brightness(0) invert(1);
}

.footer-section-2 .footer-top-item.style-inner .footer-right-item .icon-item .cont h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  text-transform: capitalize;
}

.footer-section-2 .footer-top-item.style-inner .footer-right-item .icon-item .cont h3 a {
  color: var(--white);
}

.footer-section-2 .left-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 1399px) {
  .footer-section-2 .left-shape {
    display: none;
  }
}

.footer-section-2 .right-shape {
  position: absolute;
  right: 30px;
  bottom: 0;
}

@media (max-width: 1399px) {
  .footer-section-2 .right-shape {
    display: none;
  }
}

.footer-section-3 .footer-top-item-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 50px 0 35px;
}

@media (max-width: 1399px) {
  .footer-section-3 .footer-top-item-3 {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .footer-section-3 .footer-top-item-3 {
    padding-top: 40px;
  }
}

.footer-section-3 .footer-top-item-3 .left-content p {
  color: var(--white);
  max-width: 421px;
  margin-top: 30px;
}

.footer-section-3 .footer-top-item-3 .footer-right-item .icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
}

@media (max-width: 470px) {
  .footer-section-3 .footer-top-item-3 .footer-right-item .icon-item {
    gap: 8px;
  }
}

.footer-section-3 .footer-top-item-3 .footer-right-item .icon-item .icon {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background-color: var(--white);
  border-radius: 100px;
}

.footer-section-3 .footer-top-item-3 .footer-right-item .icon-item .cont span {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #fff;
  text-transform: capitalize;
}

.footer-section-3 .footer-top-item-3 .footer-right-item .icon-item .cont h4 a {
  color: var(--white);
}

/* Media query background override removed to allow premium green gradient on mobile/tablets */

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }

  .section-title br {
    display: none;
  }
}

.section-title .sub-title {
  font-size: 16px;
  font-weight: 600;
  color: rgb(200, 67, 58);
  border: 1px solid rgba(200, 67, 58, 0.2);
  padding: 6px 9px;
  display: inline-block;
  border-radius: 6px;
  line-height: 1;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  text-transform: capitalize;
}

.section-title .sub-title.style-2 {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 1399px) {
  .section-title h2 br {
    display: none;
  }
}

.section-title .sub-title-2 {
  color: var(--theme2);
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  display: inline-block;
  text-transform: capitalize;
}

.section-title .sub-title-2 img {
  margin-right: 8px;
}

.section-title .sub-title-2.style-2 {
  color: var(--header);
}

.section-title .sub-title-3 {
  border: 1px solid rgba(17, 162, 27, 0.2);
  color: var(--theme3);
  border-radius: 6px;
  text-transform: uppercase;
  padding: 2px 9px;
  font-family: "Inter", sans-serif;
  margin-bottom: 15px;
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
}

.section-title .sub-title-3.style-border {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .section-title-area {
    margin-bottom: 0;
  }

  .section-title-area br {
    display: none;
  }
}

@media (max-width: 1399px) {
  .section-title-area p br {
    display: none;
  }
}

.section-title-area .section-title {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--bg);
}

.section-bg-3 {
  background-color: var(--bg3);
}

.header-bg {
  background-color: var(--header);
}

.theme-bg-2 {
  background-color: var(--theme2);
}

.section-bg-2 {
  background-color: var(--bg2);
}

.section-padding {
  /* padding: 65px 0; */
  padding: 65px 0 35px;
}

@media (max-width: 1199px) {
  .section-padding {
    padding: 55px 0;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 45px 0;
  }
}

.footer-bg {
  background-color: rgb(1, 40, 4);
}

/*---------------------------------------
05. Sections
---------------------------------------*/
.about-wrapper .about-image {
  max-width: 640px;
  position: relative;
  border-radius: 20px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-image {
    max-width: initial;
  }
}

.about-wrapper .about-image .about-image-item {
  display: grid;
  align-items: center;
  gap: 30px;
  position: absolute;
  right: -100px;
  top: 125px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-image .about-image-item {
    right: 0;
    top: 0;
    flex-wrap: wrap;
    top: 100px;
  }
}

@media (max-width: 991px) {
  .about-wrapper .about-image .about-image-item {
    top: 250px;
  }
}

@media (max-width: 767px) {
  .about-wrapper .about-image .about-image-item {
    top: 80px;
  }
}

.about-wrapper .about-image .about-image-item .about-thumb {
  max-width: 234px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-image .about-image-item .about-thumb {
    max-width: 160px;
  }
}

@media (max-width: 575px) {
  .about-wrapper .about-image .about-image-item .about-thumb {
    max-width: 120px;
  }
}

.about-wrapper .about-image .about-image-item .about-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 4px solid var(--white);
}

.about-wrapper .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.about-wrapper .about-content {
  margin-left: 84px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-content {
    margin-left: 0;
  }
}

.about-wrapper .about-content .text {
  margin-top: 15px;
  max-width: 609px;
}

.about-wrapper .about-content .about-box-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  background-color: var(--white);
  padding: 0 0 0 20px;
  margin-top: 30px;
  margin-bottom: 50px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-content .about-box-item {
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding: 15px;
  }
}

.about-wrapper .about-content .about-box-item .left-item h3 {
  font-weight: 600;
  font-size: 18px;
}

.about-wrapper .about-content .about-box-item .left-item .list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-content .about-box-item .left-item .list-item {
    gap: 10px;
  }
}

.about-wrapper .about-content .about-box-item .left-item .list-item .list li {
  color: rgb(47, 47, 47);
  font-weight: 500;
}

@media (max-width: 1399px) {
  .about-wrapper .about-content .about-box-item .left-item .list-item .list li {
    font-size: 14px;
  }
}

.about-wrapper .about-content .about-box-item .left-item .list-item .list li i {
  margin-right: 8px;
  color: rgb(200, 67, 58);
}

.about-wrapper .about-content .about-box-item .left-item .list-item .list li:not(:last-child) {
  margin-bottom: 10px;
}

@media (max-width: 575px) {
  .about-wrapper .about-content .about-box-item .right-image {
    display: none;
  }
}

.about-wrapper .about-content .about-box-item .right-image img {
  width: 100%;
  height: 100%;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-content .about-box-item .right-image img {
    border-radius: 20px;
  }
}

.about-wrapper .about-content .about-box-item .right-image-2 {
  opacity: 0;
  visibility: hidden;
  display: none;
}

@media (max-width: 575px) {
  .about-wrapper .about-content .about-box-item .right-image-2 {
    opacity: 1;
    visibility: visible;
    max-width: 100%;
    display: block;
  }
}

.about-wrapper .about-content .about-box-item .right-image-2 img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.about-wrapper .about-content .about-button {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-content .about-button {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.about-wrapper .about-content .about-button .theme-btn.style-2 {
  background-color: transparent;
  border: 1px solid var(--theme);
  color: var(--theme);
}

.about-wrapper .about-content .about-button .theme-btn.style-2::before {
  background-color: var(--theme);
}

.about-wrapper .about-content .about-button .theme-btn.style-2::after {
  background-color: rgba(200, 67, 58, 0.3);
}

.about-wrapper .about-content .about-button .theme-btn.style-2:hover {
  color: var(--white);
}

.about-section {
  position: relative;
}

.about-section .left-shape {
  position: absolute;
  top: 490px;
  left: 0;
}

@media (max-width: 1600px) {
  .about-section .left-shape {
    display: none;
  }
}

.about-section .right-shape {
  position: absolute;
  right: 75px;
  bottom: 70px;
}

@media (max-width: 1399px) {
  .about-section .right-shape {
    display: none;
  }
}

.about-section .right-shape img {
  animation: rotateCircle 10s linear infinite;
}

.about-section-2 {
  z-index: 9;
}

.about-section-2 .section-title-area {
  border-top: 1px solid rgba(47, 47, 47, 0.2);
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
  padding: 60px 0;
  margin-bottom: 48px;
}

@media (max-width: 1399px) {
  .about-section-2 .section-title-area {
    padding: 30px 0;
    margin-bottom: 30px;
  }
}

.about-section-2 .section-title-area p {
  margin-bottom: 30px;
}

.about-section-2 .left-shape {
  position: absolute;
  left: 0;
  top: 10.5%;
  z-index: -1;
}

@media (max-width: 1399px) {
  .about-section-2 .left-shape {
    display: none;
  }
}

.about-section-2 .left-shape-2 {
  position: absolute;
  left: 30px;
  top: 44%;
  z-index: -1;
}

@media (max-width: 1600px) {
  .about-section-2 .left-shape-2 {
    display: none;
  }
}

.about-section-2 .right-shape {
  position: absolute;
  right: 0;
  top: 10.5%;
  z-index: -1;
}

@media (max-width: 1399px) {
  .about-section-2 .right-shape {
    display: none;
  }
}

.about-section-2 .right-shape-2 {
  position: absolute;
  right: 30px;
  top: 32%;
  z-index: -1;
}

@media (max-width: 1600px) {
  .about-section-2 .right-shape-2 {
    display: none;
  }
}

.about-section-2 .maize-shape {
  position: absolute;
  top: 19.5%;
  left: 30px;
}

@media (max-width: 1600px) {
  .about-section-2 .maize-shape {
    display: none;
  }
}

.about-section-2 .maize-shape-2 {
  position: absolute;
  top: 14%;
  right: 30px;
}

@media (max-width: 1600px) {
  .about-section-2 .maize-shape-2 {
    display: none;
  }
}

.about-wrapper-2 .count-wrap {
  display: flex;
  align-items: center;
  align-items: start;
  justify-content: space-between;
  margin-top: 130px;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .count-wrap {
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .about-wrapper-2 .count-wrap {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.about-wrapper-2 .count-wrap .count-item-2 h2 {
  font-weight: 600;
  font-size: 200px;
  color: transparent;
  line-height: 94%;
  -webkit-text-stroke: 1px rgb(245, 216, 62);
}

@media (max-width: 1399px) {
  .about-wrapper-2 .count-wrap .count-item-2 h2 {
    font-size: 90px;
  }
}

.about-wrapper-2 .count-wrap .count-item-2 p {
  font-size: 24px;
  font-weight: 400;
  color: rgb(47, 47, 47);
  max-width: 318px;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .count-wrap .count-item-2 p {
    font-size: 18px;
  }
}

.about-wrapper-2 .count-wrap .count-item-2.active h2 {
  color: var(--theme2);
}

.about-wrapper-2 .count-wrap .count-item-2.style-top {
  margin-top: -100px;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .count-wrap .count-item-2.style-top {
    margin-top: 0;
  }
}

.about-wrapper-2 .trac-wrap {
  margin-top: -60px;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .trac-wrap {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .about-wrapper-2 .trac-wrap {
    margin-top: 0;
  }
}

.about-wrapper-2 .trac-wrap .tractor-image {
  text-align: center;
  max-width: 491px;
  margin: 0 auto;
}

@media (max-width: 575px) {
  .about-wrapper-2 .trac-wrap .tractor-image {
    max-width: 190px;
    margin-left: 68px;
  }
}

.about-wrapper-2 .trac-wrap .tractor-image img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0px 4px 150px rgba(245, 216, 62, 0.5));
}

.about-wrapper-2 .paddy-image {
  margin-top: -180px;
  position: relative;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .paddy-image {
    margin-top: 0;
  }
}

@media (max-width: 575px) {
  .about-wrapper-2 .paddy-image {
    margin-top: -16px;
  }
}

.about-wrapper-2 .paddy-image .video-btn {
  width: 120px;
  height: 120px;
  line-height: 120px;
  display: inline-block;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
  color: var(--theme2);
  position: absolute;
  z-index: 9;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 17px;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .paddy-image .video-btn.ripple-2::before {
    display: none;
  }

  .about-wrapper-2 .paddy-image .video-btn.ripple-2::after {
    display: none;
  }
}

@media (max-width: 1399px) {
  .about-wrapper-2 .paddy-image .video-btn {
    bottom: 60px;
  }
}

@media (max-width: 991px) {
  .about-wrapper-2 .paddy-image .video-btn {
    width: 100px;
    height: 100px;
    line-height: 100px;
    bottom: 40px;
  }
}

@media (max-width: 767px) {
  .about-wrapper-2 .paddy-image .video-btn {
    width: 65px;
    height: 65px;
    line-height: 65px;
    bottom: 13px;
  }
}

.about-wrapper-2 .paddy-image .video-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 0.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 198px;
  height: 198px;
  border-radius: 100px;
}

.about-wrapper-2 .paddy-image .video-btn::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 154px;
  height: 154px;
  border-radius: 100px;
}

.about-wrapper-2 .paddy-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.about-wrapper-3 .about-content .text {
  max-width: 690px;
  margin-top: 15px;
}

.about-wrapper-3 .about-content .about-image-item {
  display: flex;
  align-items: center;
  margin-top: 50px;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-content .about-image-item {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .about-wrapper-3 .about-content .about-image-item {
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-3 .about-content .about-image-item {
    flex-wrap: initial;
    gap: 0;
  }
}

.about-wrapper-3 .about-content .about-image-item .about-image {
  position: relative;
  width: 313px;
  height: 175px;
  max-width: 100%;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 313 175'%3E%3Cpath d='M2.56509 29.7474C-4.8756 16.4161 4.76189 0 20.029 0H249.183C256.013 0 262.371 3.48579 266.045 9.24437L309.101 76.7444C313.286 83.3043 313.286 91.6957 309.101 98.2556L266.045 165.756C262.371 171.514 256.013 175 249.183 175H20.029C4.76185 175 -4.87562 158.584 2.56507 145.253L29.3587 97.2473C32.7401 91.189 32.7401 83.811 29.3588 77.7527L2.56509 29.7474Z' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 313 175'%3E%3Cpath d='M2.56509 29.7474C-4.8756 16.4161 4.76189 0 20.029 0H249.183C256.013 0 262.371 3.48579 266.045 9.24437L309.101 76.7444C313.286 83.3043 313.286 91.6957 309.101 98.2556L266.045 165.756C262.371 171.514 256.013 175 249.183 175H20.029C4.76185 175 -4.87562 158.584 2.56507 145.253L29.3587 97.2473C32.7401 91.189 32.7401 83.811 29.3588 77.7527L2.56509 29.7474Z' fill='white'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-content .about-image-item .about-image {
    height: 150px;
  }
}

@media (max-width: 991px) {
  .about-wrapper-3 .about-content .about-image-item .about-image {
    height: 175px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-3 .about-content .about-image-item .about-image {
    width: 200px;
    height: 98px;
  }
}

.about-wrapper-3 .about-content .about-image-item .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.about-wrapper-3 .about-content .about-image-item .about-image .count-content {
  position: absolute;
  top: 30px;
  left: 50px;
}

@media (max-width: 575px) {
  .about-wrapper-3 .about-content .about-image-item .about-image .count-content {
    top: 18px;
    left: 30px;
  }
}

.about-wrapper-3 .about-content .about-image-item .about-image .count-content h2 {
  font-size: 100px;
  color: var(--white);
  line-height: 90%;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-content .about-image-item .about-image .count-content h2 {
    font-size: 75px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-3 .about-content .about-image-item .about-image .count-content h2 {
    font-size: 40px;
    text-align: center;
  }
}

.about-wrapper-3 .about-content .about-image-item .about-image .count-content p {
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-content .about-image-item .about-image .count-content p {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-3 .about-content .about-image-item .about-image .count-content p {
    font-size: 10px;
  }
}

.about-wrapper-3 .about-box {
  border-radius: 20px;
  padding: 70px;
  width: 100%;
  max-width: 590px;
  position: relative;
  height: 100%;
  min-height: 480px;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-box {
    padding: 30px;
    max-width: initial;
    width: initial;
    min-height: 440px;
  }
}

@media (max-width: 991px) {
  .about-wrapper-3 .about-box {
    padding: 40px;
    min-height: 380px;
  }
}

@media (max-width: 767px) {
  .about-wrapper-3 .about-box {
    padding: 30px;
    min-height: 320px;
  }
}

.about-wrapper-3 .about-box::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  height: 95%;
  background-color: rgba(47, 47, 47, 0.2);
  top: 13px;
  left: initial;
  right: -10px;
  border-radius: 10px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-box::before {
    display: none;
  }
}

.about-wrapper-3 .about-box::after {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 90%;
  content: "";
  background-color: rgba(47, 47, 47, 0.1);
  top: 25px;
  left: initial;
  right: -20px;
  border-radius: 10px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-box::after {
    display: none;
  }
}

.about-wrapper-3 .about-box .about-right-item h3 {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}

.about-wrapper-3 .about-box .about-right-item .list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-box .about-right-item .list-item {
    gap: 10px;
  }
}

.about-wrapper-3 .about-box .about-right-item .list-item .list li {
  color: var(--white);
  font-weight: 500;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-box .about-right-item .list-item .list li {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-3 .about-box .about-right-item .list-item .list li {
    font-size: 13px;
  }
}

.about-wrapper-3 .about-box .about-right-item .list-item .list li i {
  margin-right: 8px;
  color: rgb(17, 162, 27);
}

.about-wrapper-3 .about-box .about-right-item .list-item .list li:not(:last-child) {
  margin-bottom: 10px;
}

.about-wrapper-3 .about-box .about-right-item .info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.about-wrapper-3 .about-box .about-right-item .info-item .content h4 {
  font-weight: 600;
  color: var(--white);
}

.about-wrapper-3 .about-box .about-right-item .info-item .content span {
  color: rgb(131, 131, 131);
  font-weight: 400;
  font-size: 15px;
}

.about-wrapper-3 .about-box .about-right-item .about-button {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-box .about-right-item .about-button {
    gap: 10px;
  }
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-box .about-right-item .about-button .theme-btn {
    padding: 13px 20px 13px;
  }
}

.about-wrapper-3 .about-box .about-right-item .about-button .theme-btn.theme-btn-3::before {
  background-color: var(--white);
}

.about-wrapper-3 .about-box .about-right-item .about-button .theme-btn.theme-btn-3::after {
  background-color: rgba(255, 255, 255, 0.3);
}

.about-wrapper-3 .about-box .about-right-item .about-button .theme-btn.theme-btn-3:hover {
  color: var(--theme3);
}

.about-wrapper-3 .about-box .about-right-item .about-button .theme-btn.style-2 {
  background-color: transparent;
  border: 1px solid rgb(255, 255, 255);
  color: var(--white);
}

.about-wrapper-3 .about-box .about-right-item .about-button .theme-btn.style-2::before {
  background-color: var(--theme3);
}

.about-wrapper-3 .about-box .about-right-item .about-button .theme-btn.style-2::after {
  background-color: rgba(17, 162, 27, 0.3);
}

.about-wrapper-3 .about-box .about-right-item .about-button .theme-btn.style-2:hover {
  color: var(--white);
  border: 1px solid var(--theme3);
}

.about-section-3 {
  position: relative;
}

.about-section-3 .chili-shape {
  position: absolute;
  left: 30px;
  top: 120px;
}

@media (max-width: 1600px) {
  .about-section-3 .chili-shape {
    display: none;
  }
}

.about-section-3 .tree-shape {
  position: absolute;
  right: 30px;
  bottom: 120px;
}

@media (max-width: 1600px) {
  .about-section-3 .tree-shape {
    display: none;
  }
}

.about-us-two-wrapper .about-us-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.about-us-two-wrapper .about-us-content .text {
  margin-top: 15px;
  max-width: 690px;
}

.about-us-two-wrapper .about-us-content .client-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .about-us-two-wrapper .about-us-content .client-info-item {
    flex-wrap: wrap;
    gap: 25px;
  }
}

.about-us-two-wrapper .about-us-content .client-info-item .client-item {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1399px) {
  .about-us-two-wrapper .about-us-content .client-info-item .client-item {
    gap: 20px;
  }
}

.about-us-two-wrapper .about-us-content .client-info-item .client-item h3 {
  font-size: 20px;
  font-weight: 600;
}

.about-us-two-wrapper .about-us-content .list li {
  color: var(--header);
  font-weight: 500;
}

@media (max-width: 1399px) {
  .about-us-two-wrapper .about-us-content .list li {
    font-size: 14px;
  }
}

.about-us-two-wrapper .about-us-content .list li i {
  margin-right: 8px;
  color: rgb(74 136 1);
}

.about-us-two-wrapper .about-us-content .list li:not(:last-child) {
  margin-bottom: 10px;
}

.about-us-two-wrapper .about-us-content .about-us-btn-item {
  display: flex;
  align-items: center;
  gap: 44px;
  position: relative;
  margin-top: 50px;
}

@media (max-width: 1399px) {
  .about-us-two-wrapper .about-us-content .about-us-btn-item {
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
  }
}

@media (max-width: 470px) {
  .about-us-two-wrapper .about-us-content .about-us-btn-item {
    flex-wrap: initial;
    gap: 10px;
  }
}

.about-us-two-wrapper .about-us-content .about-us-btn-item .theme-btn {
  border: 1px solid var(--theme3);
  background-color: transparent;
  color: var(--theme3);
}

@media (max-width: 470px) {
  .about-us-two-wrapper .about-us-content .about-us-btn-item .theme-btn {
    padding: 10px 25px 10px;
  }
}

.about-us-two-wrapper .about-us-content .about-us-btn-item .theme-btn::before {
  background-color: var(--theme3);
}

.about-us-two-wrapper .about-us-content .about-us-btn-item .theme-btn::after {
  background-color: rgba(17, 162, 27, 0.3);
}

.about-us-two-wrapper .about-us-content .about-us-btn-item .theme-btn:hover {
  border: 1px solid var(--theme3);
  color: var(--white);
}

.about-us-two-wrapper .about-us-content .about-us-btn-item .icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 470px) {
  .about-us-two-wrapper .about-us-content .about-us-btn-item .icon-item {
    gap: 8px;
  }
}

.about-us-two-wrapper .about-us-content .about-us-btn-item .icon-item .icon {
  width: 52px;
  height: 52px;
  line-height: 48px;
  text-align: center;
  background-color: var(--white);
  border: 1px solid var(--theme3);
  border-radius: 100px;
  color: var(--theme3);
}

@media (max-width: 470px) {
  .about-us-two-wrapper .about-us-content .about-us-btn-item .icon-item .icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
  }
}

.about-us-two-wrapper .about-us-content .about-us-btn-item .icon-item h3 {
  font-weight: 600;
}

@media (max-width: 470px) {
  .about-us-two-wrapper .about-us-content .about-us-btn-item .icon-item h3 {
    font-size: 16px;
  }
}

.about-us-two-wrapper .about-us-content .about-us-btn-item .icon-item h3 a {
  color: var(--header);
}

.about-wrapper-4 .about-image {
  position: relative;
  max-width: 460px;
  z-index: 9;
}

@media (max-width: 1399px) {
  .about-wrapper-4 .about-image {
    max-width: initial;
  }
}

.about-wrapper-4 .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.about-wrapper-4 .about-image .about-image-2 {
  position: absolute;
  bottom: -320px;
  right: -150px;
  max-width: 470px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .about-wrapper-4 .about-image .about-image-2 {
    right: 0;
    bottom: 0;
    max-width: 170px;
    z-index: 1;
  }
}

@media (max-width: 991px) {
  .about-wrapper-4 .about-image .about-image-2 {
    max-width: 370px;
  }
}

@media (max-width: 767px) {
  .about-wrapper-4 .about-image .about-image-2 {
    max-width: 170px;
  }
}

.about-wrapper-4 .about-content .text {
  max-width: 690px;
  margin-top: 15px;
}

.about-wrapper-4 .about-content .about-icon-item {
  display: flex;
  align-items: center;
  gap: 150px;
  margin-top: 30px;
}

@media (max-width: 1399px) {
  .about-wrapper-4 .about-content .about-icon-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.about-wrapper-4 .about-content .about-icon-item .icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-wrapper-4 .about-content .about-icon-item .icon-item img {
  width: 64px;
}

@media (max-width: 1399px) {
  .about-wrapper-4 .about-content .about-icon-item .icon-item h3 {
    font-size: 20px;
  }
}

.about-wrapper-4 .about-content .list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  border-bottom: 1px solid rgba(200, 67, 58, 0.2);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .about-wrapper-4 .about-content .list-item {
    gap: 10px;
  }
}

.about-wrapper-4 .about-content .list-item .list li {
  color: var(--theme3);
  font-weight: 500;
}

@media (max-width: 1399px) {
  .about-wrapper-4 .about-content .list-item .list li {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-4 .about-content .list-item .list li {
    font-size: 13px;
  }
}

.about-wrapper-4 .about-content .list-item .list li i {
  margin-right: 8px;
  color: var(--theme3);
}

.about-wrapper-4 .about-content .list-item .list li:not(:last-child) {
  margin-bottom: 10px;
}

.brand-box-1 {
  height: 120px;
  line-height: 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.brand-box-1 .brand-img-1 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-box-1 .brand-img-1 img {
  transition: all 0.6s ease;
  transform: translateY(0);
  opacity: 0.4;
}

.brand-box-1 .brand-img-1:last-child img {
  transform: translateY(-350%);
  opacity: 0;
}

.brand-box-1:hover .brand-img-1:first-child img {
  transform: translateY(100%);
  opacity: 0;
}

.brand-box-1:hover .brand-img-1:last-child img {
  transform: translateY(0);
  opacity: 1;
}

.brand-slider.style-border {
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
  padding-bottom: 120px;
}

@media (max-width: 1399px) {
  .brand-slider.style-border {
    padding-bottom: 100px;
  }
}

@media (max-width: 991px) {
  .brand-slider.style-border {
    padding-bottom: 80px;
  }
}

.brand-section-2 .swiper-slide.swiper-slide-active .brand-box-1 .brand-img-1:first-child img {
  transform: translateY(100%);
  opacity: 0;
}

.brand-section-2 .swiper-slide.swiper-slide-active .brand-box-1 .brand-img-1:last-child img {
  transform: translateY(0);
  opacity: 1;
}

.brand-section-3 h2 {
  color: var(--header);
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
  position: relative;
  margin-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  font-family: "Inter", sans-serif;
}

@media (max-width: 1399px) {
  .brand-section-3 h2 {
    margin-bottom: 30px;
  }
}

.brand-section-3 h2::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 638px;
  background-color: rgba(47, 47, 47, 0.2);
  left: 0;
  top: 10px;
}

@media (max-width: 1399px) {
  .brand-section-3 h2::before {
    display: none;
  }
}

.brand-section-3 h2::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 638px;
  background-color: rgba(47, 47, 47, 0.2);
  right: 0;
  top: 10px;
}

@media (max-width: 1399px) {
  .brand-section-3 h2::after {
    display: none;
  }
}

.brand-section-3 .swiper-slide.swiper-slide-active .brand-box-1 .brand-img-1:first-child img {
  transform: translateY(100%);
  opacity: 0;
}

.brand-section-3 .swiper-slide.swiper-slide-active .brand-box-1 .brand-img-1:last-child img {
  transform: translateY(0);
  opacity: 1;
}

.brand-section .swiper-slide.swiper-slide-active .brand-box-1 .brand-img-1:first-child img {
  transform: translateY(100%);
  opacity: 0;
}

.brand-section .swiper-slide.swiper-slide-active .brand-box-1 .brand-img-1:last-child img {
  transform: translateY(0);
  opacity: 1;
}

.contact-info-wrapper {
  display: flex;
  align-items: center;
  align-items: end;
  justify-content: space-between;
}

@media (max-width: 1399px) {
  .contact-info-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.contact-info-wrapper .contact-info-left-content .info-icon-item {
  display: flex;
  align-items: center;
  /* gap: 78px; */
  gap: 60px;
  margin-top: 40px;
}

@media (max-width: 1399px) {
  .contact-info-wrapper .contact-info-left-content .info-icon-item {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 30px;
  }
}

.contact-info-wrapper .contact-info-left-content .info-icon-item .icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 1024px) {

  .our-statistics-wrapper .row {
    display: flex;
    flex-direction: column;
  }

  .our-statistics-wrapper .col-xl-6,
  .our-statistics-wrapper .col-lg-5,
  .our-statistics-wrapper .col-lg-7 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .our-statistics-image {
    width: 100%;
    margin-bottom: 30px;
  }

  .our-statistics-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
  }

  .our-statistics-content {
    width: 100%;
    text-align: center;
    padding: 0;
  }

  .our-statistics-content h2 {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 15px;
  }

  .our-statistics-content p {
    margin-bottom: 25px;
  }

  .our-statistics-card {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
  }

  .statistics-card {
    flex: 1;
    text-align: center;
    padding: 20px;
  }
}

@media (max-width: 470px) {
  .contact-info-wrapper .contact-info-left-content .info-icon-item .icon-item {
    gap: 8px;
  }
}

.contact-info-wrapper .contact-info-left-content .info-icon-item .icon-item .icon {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background-color: var(--theme3);
  border-radius: 100px;
  color: #fff;
  top: -24px;
  position: relative;
}

.contact-info-wrapper .contact-info-left-content .info-icon-item .icon-item .icon img {
  filter: brightness(0) invert(1);
}

.contact-info-wrapper .contact-info-left-content .info-icon-item .icon-item .cont span {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  color: rgb(142, 142, 142);
  text-transform: capitalize;
}

.contact-info-wrapper .contact-info-left-content .info-icon-item .icon-item .cont h3 {
  font-size: 18px;
  font-weight: 700;
  top: -5px;
  position: relative;
}

.contact-info-wrapper .contact-info-left-content .info-icon-item .icon-item .cont h3 a {
  color: var(--header);
}

.contact-info-wrapper .info-right-content p {
  max-width: 700px;
  color: rgb(80, 98, 74);
  /* margin-bottom: 50px; */
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 17px;
}

@media (max-width: 1399px) {
  .contact-info-wrapper .info-right-content p {
    margin-bottom: 30px;
  }
}

.contact-info-wrapper .info-right-content .icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 470px) {
  .contact-info-wrapper .info-right-content .icon-item {
    gap: 8px;
    flex-wrap: wrap;
  }
}

.contact-info-wrapper .info-right-content .icon-item .icon {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background-color: var(--theme3);
  border-radius: 100px;
  color: var(--white);
  font-size: 20px;
  top: -24px;
  position: relative;
}

.contact-info-wrapper .info-right-content .icon-item .cont span {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  color: rgb(142, 142, 142);
  text-transform: capitalize;
}

.contact-info-wrapper .info-right-content .icon-item .cont h3 {
  font-size: 20px;
  font-weight: 700;
  top: -10px;
  position: relative;
}

.contact-info-wrapper .info-right-content .icon-item .cont h3 a {
  color: var(--header);
}

.contact-wrapper .contact-content {
  border-radius: 10px;
  padding: 30px 40px;
  background-color: var(--white);
  border: 2px solid #3a7f3e;
}

@media (max-width: 1399px) {
  .contact-wrapper .contact-content {
    padding: 20px 25px;
  }
}

.contact-wrapper .contact-content .contact-form .form-clt span {
  color: var(--header);
  margin-bottom: 10px;
  display: inline-block;
  text-transform: capitalize;
  font-weight: 500;
}

.contact-wrapper .contact-content .contact-form .form-clt input,
.contact-wrapper .contact-content .contact-form .form-clt textarea {
  border-radius: 10px;
  border: none;
  background-color: var(--white);
  border: 1px solid rgba(47, 47, 47, 0.1);
  line-height: 1;
  padding: 18px 25px;
  width: 100%;
  text-transform: capitalize;
  color: var(--text);
  outline: none;
}

.contact-wrapper .contact-content .contact-form .form-clt textarea {
  padding-bottom: 0px;
  resize: none;
}

.contact-wrapper .contact-map iframe {
  width: 100%;
  /* height: 575px; */
  height: 400px;
  border-radius: 10px;
}

@media (max-width: 1399px) {
  .contact-wrapper .contact-map iframe {
    height: 575px;
  }
}

@media (max-width: 991px) {
  .contact-wrapper .contact-map iframe {
    height: 450px;
  }
}

@media (max-width: 575px) {
  .contact-wrapper .contact-map iframe {
    height: 350px;
  }
}

.contact-section {
  position: relative;
}

.contact-section .left-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (max-width: 1600px) {
  .contact-section .left-shape {
    display: none;
  }
}

.contact-section .maize-shape {
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 1600px) {
  .contact-section .maize-shape {
    display: none;
  }
}

.cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 75px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: -140px;
  z-index: 999;
}

@media (max-width: 1399px) {
  .cta-wrapper {
    margin-bottom: 100px;
  }
}

@media (max-width: 991px) {
  .cta-wrapper {
    margin-bottom: 80px;
  }
}

.cta-wrapper .tomato {
  position: absolute;
  top: 0;
  right: 360px;
}

.cta-wrapper .tomato img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1399px) {
  .cta-wrapper .tomato {
    display: none;
  }
}

.cta-wrapper .cta-shape {
  position: absolute;
  right: 478px;
  bottom: 25px;
}

@media (max-width: 1399px) {
  .cta-wrapper .cta-shape {
    display: none;
  }
}

@media (max-width: 1399px) {
  .cta-wrapper {
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px;
  }
}

@media (max-width: 991px) {
  .cta-wrapper {
    padding: 50px;
  }
}

@media (max-width: 767px) {
  .cta-wrapper {
    padding: 40px;
  }
}

@media (max-width: 575px) {
  .cta-wrapper {
    padding: 20px;
  }
}

.cta-wrapper .cta-content {
  max-width: 670px;
  width: 100%;
}

.cta-wrapper .cta-content h3 {
  color: var(--white);
  margin-bottom: 15px;
}

.cta-wrapper .cta-content form {
  max-width: 691px;
  width: 100%;
}

.cta-wrapper .cta-content .form-clt {
  position: relative;
}

.cta-wrapper .cta-content .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  color: rgb(80, 98, 74);
  line-height: 1;
  padding: 25px 50px;
  border-radius: 10px;
  max-width: 691px;
}

@media (max-width: 470px) {
  .cta-wrapper .cta-content .form-clt input {
    padding: 25px 30px;
  }
}

.cta-wrapper .cta-content .form-clt input::placeholder {
  color: rgb(80, 98, 74);
}

.cta-wrapper .cta-content .form-clt i {
  position: absolute;
  left: 25px;
  top: 28px;
}

@media (max-width: 470px) {
  .cta-wrapper .cta-content .form-clt i {
    left: 10px;
  }
}

.cta-wrapper .cta-content .form-clt .theme-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgb(47, 47, 47);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

@media (max-width: 470px) {
  .cta-wrapper .cta-content .form-clt .theme-btn {
    padding: 10px 20px 10px;
  }
}

.cta-wrapper .icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cta-wrapper .icon-item .icon {
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  background-color: var(--white);
  border-radius: 100px;
  color: rgb(200, 67, 58);
}

.cta-wrapper .icon-item h3 {
  font-weight: 600;
}

.cta-wrapper .icon-item h3 a {
  color: var(--white);
}

.cta-section {
  position: relative;
  z-index: 99999;
}

@media (max-width: 1399px) {
  .cta-section {
    overflow: hidden;
  }
}

.faq-wrapper-2 .faq-content .progress-wrap {
  margin-top: 30px;
}

.faq-wrapper-2 .faq-content .progress-wrap .pro-items {
  width: 100%;
}

.faq-wrapper-2 .faq-content .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 30px;
}

.faq-wrapper-2 .faq-content .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.faq-wrapper-2 .faq-content .progress-wrap .pro-items .pro-head .title {
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  text-transform: capitalize;
  font-family: "Instrument Sans", sans-serif;
}

.faq-wrapper-2 .faq-content .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  font-weight: 700;
  color: var(--theme2);
}

.faq-wrapper-2 .faq-content .progress-wrap .pro-items .progress {
  background-color: var(--white);
  justify-content: flex-start;
  align-items: center;
  position: relative;
  display: flex;
  height: 10px;
  width: 100%;
  border-radius: 100px;
}

.faq-wrapper-2 .faq-content .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 100px;
  background: var(--theme2);
  height: 10px;
  width: 0;
}

.faq-wrapper-2 .faq-content .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}

.faq-wrapper-2 .faq-content .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}

@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 69%;
  }
}

@keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 80%;
  }
}

@keyframes load3 {
  0% {
    width: 0;
  }

  100% {
    width: 98%;
  }
}

.faq-wrapper-2 .faq-box {
  margin-left: 20px;
  position: relative;
  z-index: 9;
}

.faq-wrapper-2 .faq-box::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(250, 247, 240, 0.2);
  top: 20px;
  left: initial;
  right: -20px;
  border-radius: 10px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .faq-wrapper-2 .faq-box::before {
    display: none;
  }
}

.faq-wrapper-2 .faq-box::after {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(250, 247, 240, 0.2);
  top: 10px;
  left: initial;
  right: -10px;
  border-radius: 10px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .faq-wrapper-2 .faq-box::after {
    display: none;
  }
}

@media (max-width: 1399px) {
  .faq-wrapper-2 .faq-box {
    margin-left: 0;
  }
}

.faq-wrapper-2 .faq-box .faq-items {
  background-color: rgb(250, 247, 240);
  border-radius: 10px;
  padding: 30px;
}

@media (max-width: 1399px) {
  .faq-wrapper-2 .faq-box .faq-items {
    padding: 20px;
  }
}

.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-item {
  border: none;
  margin-bottom: 25px;
  background: var(--white);
  padding: 0;
  border-radius: 6px !important;
}

.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-item h2 button {
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  box-shadow: none;
  padding: 24px 20px;
  font-family: "Instrument Sans", sans-serif;
  color: var(--header);
  text-transform: capitalize;
}

@media (max-width: 1399px) {
  .faq-wrapper-2 .faq-box .faq-items .accordion .accordion-item h2 button {
    font-size: 18px;
    padding: 24px 16px;
  }
}

@media (max-width: 575px) {
  .faq-wrapper-2 .faq-box .faq-items .accordion .accordion-item h2 button {
    font-size: 16px;
    padding: 24px 16px;
  }
}

.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-item .accordion-body {
  background-color: var(--theme2);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top: 1px solid rgba(47, 47, 47, 0.2);
}

.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-item .accordion-body p {
  color: rgb(80, 98, 74);
  line-height: 32px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
}

@media (max-width: 575px) {
  .faq-wrapper-2 .faq-box .faq-items .accordion .accordion-item .accordion-body p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
  }
}

.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-button {
  background-color: var(--theme2);
  color: var(--header) !important;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-button::after {
  display: none;
}

.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-button::before {
  position: absolute;
  content: "+";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  top: 13px;
  right: 22px;
  font-size: 14px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: var(--theme2);
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 100px;
  text-align: center;
  background-color: rgb(47, 47, 47);
}

@media (max-width: 1399px) {
  .faq-wrapper-2 .faq-box .faq-items .accordion .accordion-button::before {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {
  .faq-wrapper-2 .faq-box .faq-items .accordion .accordion-button::before {
    right: 8px;
    width: 25px;
    height: 25px;
    line-height: 25px;
  }
}

.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-button.collapsed {
  background-color: transparent;
  color: var(--header) !important;
}

.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-button.collapsed::before {
  content: "\f068";
  font-family: "Font Awesome 6 Pro";
  color: var(--header);
  background-color: rgba(245, 216, 62, 0.2);
}

.faq-wrapper-3 .faq-content {
  margin-left: 60px;
}

@media (max-width: 1399px) {
  .faq-wrapper-3 .faq-content {
    margin-left: 0;
  }
}

.faq-wrapper-3 .faq-content .text {
  max-width: 604px;
  margin-top: 15px;
  margin-bottom: 40px;
}

@media (max-width: 1399px) {
  .faq-wrapper-3 .faq-content .text {
    margin-bottom: 30px;
  }
}

.faq-wrapper-3 .faq-content .theme-btn {
  border: 1px solid rgb(17, 162, 27);
  color: var(--theme3);
  background-color: transparent;
}

.faq-wrapper-3 .faq-content .theme-btn::before {
  background-color: var(--theme3);
}

.faq-wrapper-3 .faq-content .theme-btn::after {
  background-color: rgba(17, 162, 27, 0.3);
}

.faq-wrapper-3 .faq-content .theme-btn:hover {
  color: var(--white);
}

.faq-wrapper-3 .faq-contentt {
  margin-left: 40px;
}

@media (max-width: 1399px) {
  .faq-wrapper-3 .faq-contentt {
    margin-left: 0;
  }
}

.faq-wrapper-3 .faq-contentt .faq-image-item {
  display: flex;
  align-items: start;
  gap: 55px;
  margin-top: 50px;
  margin-left: 48px;
}

@media (max-width: 1399px) {
  .faq-wrapper-3 .faq-contentt .faq-image-item {
    margin-left: 0;
    margin-top: 30px;
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .faq-wrapper-3 .faq-contentt .faq-image-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.faq-wrapper-3 .faq-contentt .faq-image-item .faq-image {
  margin-top: 0;
}

@media (max-width: 991px) {
  .faq-wrapper-3 .faq-contentt .faq-image-item .faq-image {
    flex-basis: 100%;
  }
}

.faq-wrapper-3 .faq-contentt .faq-image-item .faq-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.faq-wrapper-3 .faq-contentt .faq-image-item .faq-image.style-2 {
  margin-top: 70px;
}

@media (max-width: 1399px) {
  .faq-wrapper-3 .faq-contentt .faq-image-item .faq-image.style-2 {
    margin-top: 0;
  }
}

.faq-wrapper-3 .faq-box {
  margin-left: 20px;
  position: relative;
  z-index: 9;
}

@media (max-width: 1399px) {
  .faq-wrapper-3 .faq-box {
    margin-left: 0;
  }
}

.faq-wrapper-3 .faq-box.style-inner {
  background-color: rgba(47, 47, 47, 0.2);
  border: 1px solid rgba(47, 47, 47, 0.2);
  border-radius: 10px;
}

.faq-wrapper-3 .faq-box .faq-items {
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  padding: 30px 30px 20px;
}

@media (max-width: 1399px) {
  .faq-wrapper-3 .faq-box .faq-items {
    padding: 20px;
  }
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-item {
  border: none;
  margin-bottom: 15px;
  background: var(--white);
  padding: 0;
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-item.border-none {
  border-bottom: none;
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-item h2 button {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  box-shadow: none;
  padding: 24px 70px 24px 20px;
  font-family: "Instrument Sans", sans-serif;
  color: var(--header);
  text-transform: capitalize;
}

@media (max-width: 1399px) {
  .faq-wrapper-3 .faq-box .faq-items .accordion .accordion-item h2 button {
    font-size: 18px;
    padding: 24px 60px 24px 16px;
  }
}

@media (max-width: 575px) {
  .faq-wrapper-3 .faq-box .faq-items .accordion .accordion-item h2 button {
    font-size: 16px;
    padding: 24px 45px 24px 16px;
    line-height: 130%;
  }
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-item .accordion-body {
  background-color: rgb(47, 47, 47);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-item .accordion-body p {
  color: rgb(255, 255, 255);
  line-height: 32px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
}

@media (max-width: 575px) {
  .faq-wrapper-3 .faq-box .faq-items .accordion .accordion-item .accordion-body p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
  }
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-button {
  background-color: rgb(47, 47, 47);
  color: var(--white) !important;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom: none;
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-button::after {
  display: none;
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-button::before {
  position: absolute;
  content: "\f068";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  top: 50%;
  transform: translateY(-50%);
  right: 22px;
  font-size: 14px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: var(--white);
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 100px;
  text-align: center;
  background-color: var(--theme3);
}

@media (max-width: 1399px) {
  .faq-wrapper-3 .faq-box .faq-items .accordion .accordion-button::before {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {
  .faq-wrapper-3 .faq-box .faq-items .accordion .accordion-button::before {
    right: 8px;
    width: 25px;
    height: 25px;
    line-height: 25px;
  }
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-button.collapsed {
  background-color: transparent;
  color: var(--header) !important;
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-button.collapsed::before {
  content: "+";
  font-family: "Font Awesome 6 Pro";
  color: rgb(17, 162, 27);
  background-color: rgba(17, 162, 27, 0.1);
}

.faq-section-2 {
  position: relative;
}

.faq-section-2 .faq-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}

.faq-section-3 {
  position: relative;
  margin: 0 60px;
  border-radius: 20px;
  margin-top: 120px;
}

@media (max-width: 1399px) {
  .faq-section-3 {
    margin: 0 15px;
    margin-top: 100px;
  }
}

@media (max-width: 991px) {
  .faq-section-3 {
    margin-top: 80px;
  }
}

.faq-section-3 .faq-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 1399px) {
  .faq-section-3 .faq-shape {
    display: none;
  }
}

.faq-section-3 .drone-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 1600px) {
  .faq-section-3 .drone-shape {
    max-width: 500px;
  }

  .faq-section-3 .drone-shape img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 1399px) {
  .faq-section-3 .drone-shape {
    display: none;
  }
}

.faq-inner-section {
  position: relative;
  z-index: 9;
}

.faq-inner-section .faq-shape {
  position: absolute;
  left: -70px;
  z-index: -1;
  bottom: 120px;
}

@media (max-width: 1600px) {
  .faq-inner-section .faq-shape {
    display: none;
  }
}

.faq-itemss {
  margin-top: 30px;
  text-align: center;
}

.faq-itemss .accordion .accordion-item {
  border: none;
  margin-bottom: 25px;
  background: var(--bg3);
  padding: 0;
  border-radius: 8px !important;
}

.faq-itemss .accordion .accordion-item h2 button {
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  box-shadow: none;
  border-top-left-radius: 8px !important;
  border-top-right-radius: 8px !important;
  padding: 24px 20px;
  font-family: "Instrument Sans", sans-serif;
  color: var(--header);
  text-transform: capitalize;
}

@media (max-width: 1399px) {
  .faq-itemss .accordion .accordion-item h2 button {
    font-size: 20px;
    padding: 24px 16px;
  }
}

@media (max-width: 575px) {
  .faq-itemss .accordion .accordion-item h2 button {
    font-size: 16px;
    padding: 24px 16px;
  }
}

.faq-itemss .accordion .accordion-item .accordion-body p {
  color: var(--text);
  line-height: 32px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
}

@media (max-width: 575px) {
  .faq-itemss .accordion .accordion-item .accordion-body p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
  }
}

.faq-itemss .accordion .accordion-button {
  background-color: var(--theme3);
  color: var(--white) !important;
}

.faq-itemss .accordion .accordion-button::after {
  display: none;
}

.faq-itemss .accordion .accordion-button::before {
  position: absolute;
  content: "+";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  top: 13px;
  right: 22px;
  font-size: 14px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: var(--theme3);
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 100px;
  text-align: center;
  background-color: var(--white);
}

@media (max-width: 1399px) {
  .faq-itemss .accordion .accordion-button::before {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}

.faq-itemss .accordion .accordion-button.collapsed {
  background-color: transparent;
  color: var(--header) !important;
}

.faq-itemss .accordion .accordion-button.collapsed::before {
  content: "\f068";
  font-family: "Font Awesome 6 Pro";
  color: var(--white);
  background-color: var(--theme3);
}

.feature-card-item {
  background-color: var(--white);
  border-radius: 20px;
  padding: 30px;
}

.feature-card-item.inner-page {
  background-color: rgb(243, 250, 243);
}

.feature-card-item.inner-page .content .plus-icon::before {
  background-color: var(--white);
}

.feature-card-item .feature-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.feature-card-item .feature-image::before {
  position: absolute;
  top: 0;
  left: -85%;
  z-index: 99;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.7)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.feature-card-item .feature-image .icon {
  width: 94px;
  height: 94px;
  line-height: 94px;
  text-align: center;
  border-radius: 100%;
  background-color: var(--white);
  position: absolute;
  left: 30px;
  bottom: 30px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}

.feature-card-item .feature-image .icon img {
  width: initial;
  height: initial;
  display: initial;
}

.feature-card-item .feature-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: block;
  transform: scale(1);
  transition: transform 1.4s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.feature-card-item .content {
  margin-top: 30px;
}

.feature-card-item .content h3 {
  margin-bottom: 10px;
}

.feature-card-item .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.feature-card-item .content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.feature-card-item .content p {
  max-width: 384px;
  margin-bottom: 30px;
}

.feature-card-item .content .plus-icon {
  position: relative;
  margin-left: 15px;
  color: var(--theme);
}

.feature-card-item .content .plus-icon i {
  position: relative;
  z-index: 999;
}

.feature-card-item .content .plus-icon span {
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  margin-left: 5px;
}

.feature-card-item .content .plus-icon::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 8%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(200, 67, 58, 0.1);
  color: var(--theme);
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
}

.feature-card-item .content .plus-icon:hover {
  color: var(--white);
}

.feature-card-item .content .plus-icon:hover span {
  opacity: 1;
  visibility: visible;
  color: var(--white);
  position: relative;
  z-index: 999;
}

.feature-card-item .content .plus-icon:hover::before {
  width: 150px;
  left: 51%;
  background-color: var(--theme3);
}

.feature-card-item .content .plus-icon.style-theme {
  color: var(--theme3);
}

.feature-card-item .content .plus-icon.style-theme:hover {
  color: var(--white);
}

.feature-card-item:hover .feature-image img {
  transform: scale(1.18);
}

.feature-card-item:hover .feature-image::before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

.feature-card-item:hover .feature-image .icon {
  transform: rotateY(180deg);
  display: inline-block;
}

.feature-card-item:hover .feature-image .icon img {
  transform: scale(initial);
}

.why-choose-us-section {
  position: relative;
  margin: 0 30px;
  border-radius: 20px;
}

.why-choose-us-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(79, 127, 58, 0.8);
  border-radius: 20px;
}

@media (max-width: 1399px) {
  .why-choose-us-section {
    overflow: hidden;
    margin: 0 0;
  }
}

.why-choose-us-section .choose-us-slider {
  margin-right: -410px;
  margin-top: 48px;
  padding-bottom: 60px;
}

@media (max-width: 1399px) {
  .why-choose-us-section .choose-us-slider {
    padding-bottom: 30px;
    margin-top: 30px;
    margin-right: 0;
  }
}

.why-choose-us-section .content-item .content {
  text-align: center;
  margin: 0 auto;
  max-width: 983px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 0;
  position: relative;
}

.why-choose-us-section .content-item .content span {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  position: relative;
  text-align: center;
  margin: 0 auto;
  font-style: italic;
}

@media (max-width: 1399px) {
  .why-choose-us-section .content-item .content span {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .why-choose-us-section .content-item .content span {
    font-size: 16px;
  }
}

.why-choose-us-section .content-item .choose-us-btn-item {
  display: flex;
  align-items: center;
  gap: 44px;
  position: relative;
  justify-content: center;
  margin-top: 60px;
}

@media (max-width: 1399px) {
  .why-choose-us-section .content-item .choose-us-btn-item {
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
  }
}

@media (max-width: 470px) {
  .why-choose-us-section .content-item .choose-us-btn-item {
    flex-wrap: initial;
    gap: 10px;
  }
}

.why-choose-us-section .content-item .choose-us-btn-item .theme-btn {
  border: 1px solid rgb(255, 255, 255);
  background-color: transparent;
}

@media (max-width: 470px) {
  .why-choose-us-section .content-item .choose-us-btn-item .theme-btn {
    padding: 10px 25px 10px;
  }
}

.why-choose-us-section .content-item .choose-us-btn-item .theme-btn::before {
  background-color: var(--white);
}

.why-choose-us-section .content-item .choose-us-btn-item .theme-btn::after {
  background-color: rgba(255, 255, 255, 0.3);
}

.why-choose-us-section .content-item .choose-us-btn-item .theme-btn:hover {
  border: 1px solid var(--white);
  color: var(--theme);
}

.why-choose-us-section .content-item .choose-us-btn-item .icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 470px) {
  .why-choose-us-section .content-item .choose-us-btn-item .icon-item {
    gap: 8px;
  }
}

.why-choose-us-section .content-item .choose-us-btn-item .icon-item .icon {
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  background-color: var(--white);
  border-radius: 100px;
  color: rgb(200, 67, 58);
}

@media (max-width: 470px) {
  .why-choose-us-section .content-item .choose-us-btn-item .icon-item .icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
  }
}

.why-choose-us-section .content-item .choose-us-btn-item .icon-item h3 {
  font-weight: 600;
}

@media (max-width: 470px) {
  .why-choose-us-section .content-item .choose-us-btn-item .icon-item h3 {
    font-size: 16px;
  }
}

.why-choose-us-section .content-item .choose-us-btn-item .icon-item h3 a {
  color: var(--white);
}

.why-choose-us-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  position: relative;
  z-index: 9;
  transition: all 0.4s ease-in-out;
}

.why-choose-us-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme);
  border-radius: 10px;
  z-index: -1;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}

@media (max-width: 1600px) {
  .why-choose-us-card h3 {
    font-size: 20px;
  }
}

.why-choose-us-card p {
  max-width: 330px;
  margin-top: 10px;
}

.why-choose-us-card .shape-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.why-choose-us-card .shape-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.why-choose-us-card:hover::after {
  transform: scale(1, 1);
  transform-origin: top center;
}

.why-choose-us-card:hover h3 {
  color: var(--white);
}

.why-choose-us-card:hover p {
  color: var(--white);
}

.why-choose-us-card:hover .shape-image {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}

.why-choose-us-wrapper-2 .why-choose-us-image {
  position: relative;
  z-index: 9;
  max-width: 628px;
}

@media (max-width: 1399px) {
  .why-choose-us-wrapper-2 .why-choose-us-image {
    max-width: initial;
  }
}

.why-choose-us-wrapper-2 .why-choose-us-image .circle-shape {
  position: absolute;
  left: -80px;
  top: 0;
  z-index: -1;
}

.why-choose-us-wrapper-2 .why-choose-us-image .circle-shape img {
  animation: rotateCircle 10s linear infinite;
}

@media (max-width: 1600px) {
  .why-choose-us-wrapper-2 .why-choose-us-image .circle-shape {
    left: 0;
  }
}

@media (max-width: 1399px) {
  .why-choose-us-wrapper-2 .why-choose-us-image .circle-shape {
    display: none;
  }
}

.why-choose-us-wrapper-2 .why-choose-us-image img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0px 4px 80px rgba(47, 47, 47, 0.3));
}

.why-choose-us-wrapper-2 .why-choose-us-content .text {
  margin-top: 15px;
  max-width: 690px;
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  padding: 20px;
  margin-top: 30px;
  margin-bottom: 50px;
  border: 1px solid var(--white);
}

@media (max-width: 1399px) {
  .why-choose-us-wrapper-2 .why-choose-us-content .choose-us-box {
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
  }
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-box .content h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  text-transform: capitalize;
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-box .content span {
  max-width: 290px;
  display: inline-block;
  margin-top: 5px;
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-box .content.style-2 {
  border-left: 1px solid rgba(47, 47, 47, 0.2);
  padding-left: 30px;
}

@media (max-width: 1399px) {
  .why-choose-us-wrapper-2 .why-choose-us-content .choose-us-box .content.style-2 {
    padding-left: 0;
    border: none;
  }
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item {
  display: flex;
  align-items: center;
  gap: 44px;
  position: relative;
}

@media (max-width: 1399px) {
  .why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item {
    flex-wrap: wrap;
    gap: 25px;
  }
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item .theme-btn {
  border: 1px solid rgb(47, 47, 47);
  background-color: transparent;
  color: rgb(47, 47, 47);
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item .theme-btn:hover {
  border: 1px solid var(--header);
  color: var(--theme2);
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item .icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 470px) {
  .why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item .icon-item {
    gap: 8px;
  }
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item .icon-item .icon {
  width: 47px;
  height: 47px;
  line-height: 47px;
  text-align: center;
  background-color: var(--white);
  border-radius: 100px;
  color: var(--theme2);
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item .icon-item .cont h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item .icon-item .cont h5 {
  font-weight: 700;
  font-size: 16px;
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item .icon-item .cont h5 a {
  color: var(--header);
}

.why-choose-us-section-2 {
  position: relative;
}

.why-choose-us-section-2 .left-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 1399px) {
  .why-choose-us-section-2 .left-shape {
    display: none;
  }
}

.why-choose-us-section-2 .right-shape {
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 1399px) {
  .why-choose-us-section-2 .right-shape {
    display: none;
  }
}

.why-choose-us-section-2 .maize-3 {
  position: absolute;
  bottom: 0;
  left: 430px;
  z-index: 999;
}

@media (max-width: 1600px) {
  .why-choose-us-section-2 .maize-3 {
    left: 205px;
  }
}

@media (max-width: 1399px) {
  .why-choose-us-section-2 .maize-3 {
    display: none;
  }
}

.feature-box-item-2 {
  background: var(--white);
  box-shadow: 0px 4px 60px rgba(79, 127, 58, 0.15);
  border-radius: 10px;
  padding: 30px;
  position: relative;
  z-index: 9;
  transition: all 0.5s ease;
  overflow: hidden;
}

.feature-box-item-2::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transform: scale(1, 0.3);
  background-color: var(--theme2);
  transition: all 0.5s ease;
  z-index: -1;
  border-radius: 8px;
}

.feature-box-item-2.active::before {
  opacity: 1;
  transform: scale(1, 1);
}

.feature-box-item-2.active .maize-shape img {
  filter: initial;
}

.feature-box-item-2.active .masking-shape>img {
  opacity: 0;
  visibility: hidden;
}

.feature-box-item-2.active .masking-shape .masking-2 {
  opacity: 1;
  visibility: visible;
}

.feature-box-item-2.active .masking-shape .icon img {
  filter: brightness(0) invert(1);
}

.feature-box-item-2 .maize-shape {
  position: absolute;
  right: 0;
  top: 0;
}

.feature-box-item-2 .maize-shape img {
  filter: blur(5px);
  transition: all 0.5s ease;
}

@media (max-width: 1399px) {
  .feature-box-item-2 .maize-shape img {
    width: 160px;
  }
}

.feature-box-item-2 .masking-shape {
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  z-index: 5;
}

.feature-box-item-2 .masking-shape>img {
  display: block;
  position: relative;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.feature-box-item-2 .masking-shape .masking-2 {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.feature-box-item-2 .masking-shape .masking-2 img {
  width: 100%;
  height: 100%;
  display: block;
}

.feature-box-item-2 .masking-shape .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.feature-box-item-2 .content p {
  max-width: 390px;
  margin-top: 10px;
}

.feature-section-2 {
  margin-bottom: 60px;
}

@media (max-width: 1399px) {
  .feature-section-2 {
    margin-bottom: 100px;
  }
}

@media (max-width: 991px) {
  .feature-section-2 {
    margin-bottom: 80px;
  }
}

.drone-video-wrapper {
  padding: 435px 60px 60px;
  border-radius: 20px;
  position: relative;
}

@media (max-width: 1399px) {
  .drone-video-wrapper {
    padding: 60px;
  }
}

@media (max-width: 991px) {
  .drone-video-wrapper {
    padding: 50px;
  }
}

@media (max-width: 767px) {
  .drone-video-wrapper {
    padding: 40px;
  }
}

@media (max-width: 575px) {
  .drone-video-wrapper {
    padding: 30px 30px 30px;
  }
}

.drone-video-wrapper .video-btn {
  width: 71px;
  height: 71px;
  line-height: 71px;
  display: inline-block;
  text-align: center;
  border-radius: 100px;
  background-color: var(--theme3);
  color: var(--white);
  position: absolute;
  z-index: 9;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 17px;
}

@media (max-width: 1399px) {
  .drone-video-wrapper .video-btn {
    display: none;
  }
}

@media (max-width: 1399px) {
  .drone-video-wrapper .video-btn.ripple-2::before {
    display: none;
  }

  .drone-video-wrapper .video-btn.ripple-2::after {
    display: none;
  }
}

.drone-video-wrapper .video-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 0.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 118px;
  height: 118px;
  border-radius: 100px;
}

.drone-video-wrapper .video-btn::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 91px;
  height: 91px;
  border-radius: 100px;
}

.drone-video-wrapper .drone-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.drone-video-wrapper .drone-video video {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 20px;
}

.drone-video-wrapper .drone-video-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1399px) {
  .drone-video-wrapper .drone-video-content {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.drone-video-wrapper .drone-video-content .tag-list-item {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  padding: 19px 14px;
  z-index: 9;
  margin-top: 50px;
}

@media (max-width: 1399px) {
  .drone-video-wrapper .drone-video-content .tag-list-item {
    flex-wrap: wrap;
    padding: 0;
  }
}

@media (max-width: 1399px) {
  .drone-video-wrapper .drone-video-content .tag-list-item {
    margin-top: 0;
  }
}

.drone-video-wrapper .drone-video-content .tag-list-item::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgb(17, 162, 27);
  border-radius: 100px 0px 0px 100px;
  z-index: -1;
  width: 461px;
}

@media (max-width: 1399px) {
  .drone-video-wrapper .drone-video-content .tag-list-item::before {
    display: none;
  }
}

.drone-video-wrapper .drone-video-content .tag-list-item span {
  background-color: var(--white);
  color: var(--theme3);
  padding: 2px 10px;
  border-radius: 100px;
  font-weight: 500;
}

.process-card {
  border-radius: 10px;
  padding: 30px 28px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0px 4px 60px rgba(17, 162, 27, 0.12);
  background-color: var(--white);
  margin-top: 30px;
}

.process-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e5c0f;
  border-radius: 10px;
  z-index: -1;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}

.process-card.active::after {
  transform: scale(1, 1);
  transform-origin: top center;
  z-index: 9;
}

.process-card.active .card-icon {
  position: relative;
  z-index: 999;
}

.process-card.active .card-title {
  color: var(--white);
  position: relative;
  z-index: 999;
}

.process-card.active .card-description {
  color: var(--white);
  position: relative;
  z-index: 999;
}

.process-card.card-style {
  margin-top: 120px;
}

@media (max-width: 1399px) {
  .process-card.card-style {
    margin-top: 30px;
  }
}

.process-card .card-icon {
  width: 164px;
  height: 164px;
  line-height: 164px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(17, 162, 27);
  background-color: var(--white);
  margin: 0 auto;
  position: relative;
}

@media (max-width: 1399px) {
  .process-card .card-icon {
    width: 140px;
    height: 140px;
    line-height: 140px;
  }
}

.process-card .card-icon span {
  color: #1e5c0f;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 100px;
  border: 1px solid rgb(17, 162, 27);
  position: absolute;
  left: 8px;
  bottom: 5px;
  background: var(--white);
}

.process-card .card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 20px;
  color: var(--header);
  font-weight: 700;
  /* font-family: "Instrument Sans", sans-serif; */
  font-family: "Cormorant Garamond", serif;
}

.process-card .card-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgb(80, 98, 74);
  margin: 0;
}

.process-card:hover {
  transform: translateY(-10px);
}

.drone-specification-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 60px;
  padding-top: 48px;
  margin-top: 48px;
  height: 570px;
  overflow: hidden;
}

.drone-specification-wrapper .swiper-slide-next .drone-specification-item {
  transform: translateY(160px);
  transition: all 0.4s ease-in-out;
}

.drone-specification-wrapper .swiper-slide-prev .drone-specification-item {
  transform: translateY(160px);
  transition: all 0.4s ease-in-out;
}

.drone-specification-wrapper .arrow-button {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  justify-content: center;
}

.drone-specification-wrapper .arrow-button .array-prev,
.drone-specification-wrapper .arrow-button .array-next {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
  border: 1px solid var(--white);
}

.drone-specification-wrapper .arrow-button .array-prev img,
.drone-specification-wrapper .arrow-button .array-next img {
  transition: all 0.4s ease-in-out;
}

.drone-specification-wrapper .arrow-button .array-prev:hover,
.drone-specification-wrapper .arrow-button .array-next:hover {
  background-color: var(--theme3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.drone-specification-wrapper .arrow-button .array-prev:hover img,
.drone-specification-wrapper .arrow-button .array-next:hover img {
  filter: brightness(0) invert(1);
}

.drone-specification-wrapper .drone-specification-item {
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.4s ease-in-out;
}

.drone-specification-wrapper .drone-specification-item .drone-image {
  max-width: 390px;
}

.drone-specification-wrapper .drone-specification-item .drone-image img {
  width: 100%;
  height: 100%;
}

.drone-specification-wrapper .drone-specification-item .drone-content {
  margin-top: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  height: 0;
}

.drone-specification-wrapper .drone-specification-item .drone-content h3 {
  color: var(--white);
  margin-bottom: 5px;
}

.drone-specification-wrapper .drone-specification-item .drone-content span {
  font-size: 15px;
  color: var(--white);
}

.drone-specification-wrapper .drone-specification-item .drone-content p {
  color: var(--white);
  margin-top: 10px;
  font-weight: 400;
  max-width: 390px;
}

.drone-specification-section .drone-specification-wrapper .swiper-slide.swiper-slide-active .drone-specification-item {
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.drone-specification-section .drone-specification-wrapper .swiper-slide.swiper-slide-active .drone-specification-item .drone-content {
  opacity: 1;
  visibility: visible;
  height: initial;
}

.drone-specification-section .section-title-area .right-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drone-specification-section .section-title-area .right-item .group-image-item {
  display: flex;
  align-items: center;
}

.drone-specification-section .section-title-area .right-item .group-image-item .group-image img {
  margin-left: 0;
  width: initial;
  height: initial;
  border: 3px solid rgb(17, 162, 27);
  border-radius: 100px;
}

.drone-specification-section .section-title-area .right-item .group-image-item .group-image.style-2 {
  margin-left: -30px;
}

.drone-specification-section .section-title-area .right-item .group-image-item .icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  border-radius: 100px;
  color: var(--white);
  border: 3px solid var(--theme3);
  margin-left: -30px;
  background-color: var(--white);
  position: relative;
}

.drone-specification-section .section-title-area .right-item .group-image-item .icon h3 {
  color: rgb(17, 162, 27);
  font-size: 16px;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.drone-specification-section .section-title-area .right-item p {
  color: var(--white);
  font-weight: 500;
  max-width: 136px;
}

.drone-specification-section .gallery-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 60px;
}

@media (max-width: 1399px) {
  .drone-specification-section .gallery-wrapper {
    margin-top: 30px;
  }
}

.drone-specification-section .gallery-wrapper .gallery-track {
  display: flex;
  width: max-content;
  transition: transform 0.2s ease-out;
}

@media (max-width: 1399px) {
  .drone-specification-section .gallery-wrapper .gallery-track {
    width: initial;
  }
}

.drone-specification-section .gallery-wrapper .gallery-track .gallery-item {
  min-width: 250px;
  margin: 0 10px;
}

.drone-specification-section .gallery-wrapper .gallery-track .gallery-item img {
  display: block;
  width: 100%;
  border-radius: 10px;
}

.drone-specification-section .gallery-wrapper .drag-circle {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--white);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: var(--theme3);
}

@media (max-width: 1399px) {
  .drone-specification-section .gallery-wrapper .drag-circle {
    width: 100px;
    height: 100px;
  }
}

.drone-specification-section .gallery-wrapper .drag-circle .arrow {
  position: absolute;
  font-size: 20px;
}

.drone-specification-section .gallery-wrapper .drag-circle .arrow.left {
  left: 15px;
  color: var(--theme3);
}

.drone-specification-section .gallery-wrapper .drag-circle .arrow.right {
  right: 15px;
  color: var(--theme3);
}

.drone-specification-section .gallery-wrapper .drag-circle .text {
  user-select: none;
}

.letter-image {
  background-size: cover;
  background-position: 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-image: url(../img/home-3/text.jpg);
  background-position: 8% 836px;
  background-size: 106% auto;
  font-size: 513px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -9.6px;
  animation-duration: 1500ms;
  -webkit-animation-duration: 1500ms;
  margin-bottom: 30px;
}

@media (max-width: 1899px) {
  .letter-image {
    font-size: 440px;
  }
}

@media (max-width: 1600px) {
  .letter-image {
    font-size: 290px;
  }
}

@media (max-width: 1399px) {
  .letter-image {
    font-size: 250px;
    text-align: center;
    letter-spacing: initial;
  }
}

@media (max-width: 991px) {
  .letter-image {
    font-size: 180px;
  }
}

@media (max-width: 575px) {
  .letter-image {
    font-size: 90px;
  }
}

.letter-image-section {
  margin: 0 50px;
  margin-bottom: -50px;
  position: relative;
  margin-top: 40px;
}

@media (max-width: 1399px) {
  .letter-image-section {
    margin: 0 30px;
    margin-top: 50px;
    margin-bottom: 70px;
  }
}

@media (max-width: 991px) {
  .letter-image-section {
    margin: 0 15px;
    margin-top: 50px;
    margin-bottom: 70px;
  }
}

.letter-image-section .drone-shape {
  position: absolute;
  left: 50%;
  top: 150%;
  transform: translate(-50%, -50%);
  max-width: 856px;
  margin-top: -220px;
  animation: drone-fly-real 4.5s ease-in-out infinite;
}

@media (max-width: 1600px) {
  .letter-image-section .drone-shape {
    top: 173%;
  }
}

@media (max-width: 1399px) {
  .letter-image-section .drone-shape {
    display: none;
  }
}

.letter-image-section .drone-shape img {
  width: 100%;
  height: 100%;
}

.letter-image-section-2 {
  margin: 0 50px;
  margin-top: 50px;
  margin-bottom: 50px;
}

@media (max-width: 1600px) {
  .letter-image-section-2 {
    margin-top: 65px;
    margin-bottom: 65px;
  }
}

@media (max-width: 1399px) {
  .letter-image-section-2 {
    margin: 0 30px;
    margin-top: 70px;
    margin-bottom: 70px;
  }
}

@media (max-width: 991px) {
  .letter-image-section-2 {
    margin: 0 15px;
    margin-top: 70px;
    margin-bottom: 70px;
  }
}

.counter-inner-wrapper .count-wrap {
  display: flex;
  align-items: center;
  align-items: start;
  justify-content: space-between;
  margin-top: 130px;
}

@media (max-width: 1399px) {
  .counter-inner-wrapper .count-wrap {
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .counter-inner-wrapper .count-wrap {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.counter-inner-wrapper .count-wrap .count-item-2 h2 {
  font-weight: 600;
  font-size: 200px;
  color: transparent;
  line-height: 94%;
  -webkit-text-stroke: 1px rgb(17, 162, 27);
}

@media (max-width: 1399px) {
  .counter-inner-wrapper .count-wrap .count-item-2 h2 {
    font-size: 90px;
  }
}

.counter-inner-wrapper .count-wrap .count-item-2 p {
  font-size: 24px;
  font-weight: 400;
  color: rgb(47, 47, 47);
  max-width: 318px;
}

@media (max-width: 1399px) {
  .counter-inner-wrapper .count-wrap .count-item-2 p {
    font-size: 18px;
  }
}

.counter-inner-wrapper .count-wrap .count-item-2:hover h2 {
  color: var(--theme3);
}

.counter-inner-wrapper .count-wrap .count-item-2.style-top {
  margin-top: -100px;
}

@media (max-width: 1399px) {
  .counter-inner-wrapper .count-wrap .count-item-2.style-top {
    margin-top: 0;
  }
}

.counter-inner-wrapper .trac-wrap {
  margin-top: -60px;
}

@media (max-width: 1399px) {
  .counter-inner-wrapper .trac-wrap {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .counter-inner-wrapper .trac-wrap {
    margin-top: 0;
  }
}

.counter-inner-wrapper .trac-wrap .tractor-image {
  text-align: center;
  max-width: 491px;
  margin: 0 auto;
}

@media (max-width: 1399px) {
  .counter-inner-wrapper .trac-wrap .tractor-image {
    display: none;
  }
}

@media (max-width: 575px) {
  .counter-inner-wrapper .trac-wrap .tractor-image {
    max-width: 300px;
    margin-left: -10px;
  }
}

.counter-inner-wrapper .trac-wrap .tractor-image img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0px 4px 100px rgba(17, 162, 27, 0.1));
}

.counter-inner-section {
  position: relative;
}

.counter-inner-section .chili-shape {
  position: absolute;
  bottom: 120px;
  left: 60px;
}

@media (max-width: 1399px) {
  .counter-inner-section .chili-shape {
    display: none;
  }
}

.our-history-wrapper {
  background-color: rgb(245, 246, 244);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 60px;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .our-history-wrapper {
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
  }
}

.our-history-wrapper .history-image {
  position: relative;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .our-history-wrapper .history-image {
    flex-basis: 100%;
  }
}

.our-history-wrapper .history-image::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.our-history-wrapper .history-image .year-list {
  position: absolute;
  right: 0px;
  top: 80px;
  display: grid;
  gap: 135px;
}

@media (max-width: 1600px) {
  .our-history-wrapper .history-image .year-list {
    gap: 105px;
  }
}

@media (max-width: 1399px) {
  .our-history-wrapper .history-image .year-list {
    display: none;
  }
}

.our-history-wrapper .history-image .year-list h2 {
  color: transparent;
  line-height: 94%;
  -webkit-text-stroke: 1px var(--white);
  transform: rotate(-90deg);
}

.our-history-wrapper .history-image .year-list h2:hover {
  color: var(--white);
}

.our-history-wrapper .history-image .year-list h2.active {
  color: var(--white);
  -webkit-text-stroke: 1px var(--white);
}

.our-history-wrapper .history-image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

@media (max-width: 1399px) {
  .our-history-wrapper .history-image img {
    border-radius: 20px;
  }
}

.our-history-wrapper .history-image:hover::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

@media (max-width: 1600px) {
  .our-history-wrapper .our-history-content .section-title h2 {
    font-size: 40px;
  }
}

@media (max-width: 1399px) {
  .our-history-wrapper .our-history-content .section-title h2 {
    font-size: 30px;
  }
}

@media (max-width: 1199px) {
  .our-history-wrapper .our-history-content .section-title h2 {
    font-size: 33px;
  }
}

@media (max-width: 991px) {
  .our-history-wrapper .our-history-content .section-title h2 {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .our-history-wrapper .our-history-content .section-title h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .our-history-wrapper .our-history-content .section-title h2 {
    font-size: 26px;
  }
}

@media (max-width: 470px) {
  .our-history-wrapper .our-history-content .section-title h2 {
    font-size: 26px;
  }
}

.our-history-wrapper .our-history-content .nav {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  margin-top: 30px;
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
}

@media (max-width: 991px) {
  .our-history-wrapper .our-history-content .nav {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.our-history-wrapper .our-history-content .nav li {
  font-size: 16px;
  font-weight: 700;
}

.our-history-wrapper .our-history-content .nav li .nav-link {
  color: rgb(17, 162, 27);
  transition: all 0.4s ease-in-out;
  padding: 18px 32px;
  background-color: var(--white);
  border-radius: 30px;
   font-family: "Cormorant Garamond", serif;
  line-height: 1;
  text-transform: capitalize;
}

@media (max-width: 1199px) {
  .our-history-wrapper .our-history-content .nav li .nav-link {
    padding: 15px 24px;
  }
}

.our-history-wrapper .our-history-content .nav li .nav-link.active {
  position: relative;
  background-color: rgb(17, 162, 27);
  color: var(--white);
}

.our-history-wrapper .our-history-content .tab-content .content h3 {
  font-size: 16px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  margin-bottom: 25px;
}

.our-history-wrapper .our-history-content .tab-content .content p {
  color: rgb(80, 98, 74);
  line-height: 175%;
  font-weight: 400;
  margin-bottom: 20px;
  max-width: 690px;
}

.our-history-section-3 {
  position: relative;
}

@media (max-width: 1399px) {
  .our-history-section-3 {
    overflow: hidden;
  }
}

.our-history-section-3 .cabage-shape {
  position: absolute;
  right: 50px;
  top: -50px;
  z-index: 999;
}

@media (max-width: 1399px) {
  .our-history-section-3 .cabage-shape {
    display: none;
  }
}

.our-statistics-wrapper .our-statistics-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.our-statistics-wrapper .our-statistics-image::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.our-statistics-wrapper .our-statistics-image:hover::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.our-statistics-wrapper .our-statistics-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

@media (min-width: 992px) {
  .our-statistics-wrapper .our-statistics-image {
    max-height: 440px;
  }
}

.our-statistics-wrapper .our-statistics-content .text {
  max-width: 690px;
  margin-top: 15px;
}

.our-statistics-wrapper .our-statistics-content .our-statistics-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1399px) {
  .our-statistics-wrapper .our-statistics-content .our-statistics-card {
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .our-statistics-wrapper .our-statistics-content .our-statistics-card {
    flex-wrap: wrap;
  }
}

.our-statistics-wrapper .our-statistics-content .our-statistics-card .statistics-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 28px;
  margin-top: 20px;
}

@media (max-width: 1399px) {
  .our-statistics-wrapper .our-statistics-content .our-statistics-card .statistics-card {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .our-statistics-wrapper .our-statistics-content .our-statistics-card .statistics-card {
    padding: 28px;
  }
}

@media (max-width: 767px) {
  .our-statistics-wrapper .our-statistics-content .our-statistics-card .statistics-card {
    width: 100%;
  }
}

.our-statistics-wrapper .our-statistics-content .our-statistics-card .statistics-card h3 {
  font-size: 60px;
  font-weight: 700;
  color: transparent;
  line-height: 94%;
  -webkit-text-stroke: 1px rgb(17, 162, 27);
}

.our-statistics-wrapper .our-statistics-content .our-statistics-card .statistics-card p {
  margin-top: 10px;
  max-width: 270px;
  color: rgb(80, 98, 74);
  font-weight: 400;
}

@media (max-width: 1399px) {
  .our-statistics-wrapper .our-statistics-content .our-statistics-card .statistics-card p {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .our-statistics-wrapper .our-statistics-content .our-statistics-card .statistics-card p {
    font-size: 16px;
  }
}

.mask-image-section {
  margin: 0 60px;
}

@media (max-width: 1399px) {
  .mask-image-section {
    margin: 0 30px;
  }
}

@media (max-width: 575px) {
  .mask-image-section {
    margin: 0 15px;
  }
}

.mask-image-section .mask-image img {
  width: 100%;
  height: 100%;
}

.our-impact-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1399px) {
  .our-impact-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.our-impact-wrapper h2 {
  font-size: 40px;
  color: var(--white);
}

@media (max-width: 1399px) {
  .our-impact-wrapper h2 {
    font-size: 35px;
  }
}

@media (max-width: 991px) {
  .our-impact-wrapper h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .our-impact-wrapper h2 {
    font-size: 25px;
  }
}

.our-impact-wrapper .imapct-item {
  display: flex;
  align-items: center;
  gap: 90px;
}

@media (max-width: 1399px) {
  .our-impact-wrapper .imapct-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.our-impact-wrapper .imapct-item .icon-items {
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 90px;
}

@media (max-width: 1399px) {
  .our-impact-wrapper .imapct-item .icon-items {
    border-left: none;
    padding-left: 0;
  }
}

.our-impact-wrapper .imapct-item .icon-items .content {
  margin-top: 15px;
}

.our-impact-wrapper .imapct-item .icon-items .content h3 {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
}

.our-impact-wrapper .imapct-item .icon-items .content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--theme3);
}

.our-imapact-section {
  position: relative;
  z-index: 9;
}

.our-imapact-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(47, 47, 47, 0.9);
  z-index: -1;
}

.why-choose-us-wrapper-4 .why-choose-us-box {
  border: 1px solid var(--header);
  padding: 30px;
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
  position: relative;
}

@media (max-width: 1399px) {
  .why-choose-us-wrapper-4 .why-choose-us-box {
    padding: 22px;
  }
}

@media (max-width: 991px) {
  .why-choose-us-wrapper-4 .why-choose-us-box {
    padding: 30px;
  }
}

.why-choose-us-wrapper-4 .why-choose-us-box::before {
  content: "";
  position: absolute;
  right: 0;
  width: 0;
  height: 100%;
  transition: all ease 0.5s;
  z-index: -1;
  top: 0;
  background: linear-gradient(90deg, var(--theme3) 2.34%, var(--theme3) 100%);
  border-radius: 8px;
}

.why-choose-us-wrapper-4 .why-choose-us-box .top-content {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.why-choose-us-wrapper-4 .why-choose-us-box:hover {
  transform: translateY(-10px);
  border: 1px solid var(--theme3);
}

.why-choose-us-wrapper-4 .why-choose-us-box:hover .top-content .icon img {
  transform: scale(1.15) rotate(5deg);
  filter: brightness(0) invert(1);
}

.why-choose-us-wrapper-4 .why-choose-us-box:hover .top-content h3 {
  color: var(--white);
}

.why-choose-us-wrapper-4 .why-choose-us-box:hover p {
  color: var(--white);
}

.why-choose-us-wrapper-4 .why-choose-us-box:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}

.hero-1 {
  margin: 0 15px;
  border-radius: 10px;
  padding: 190px 0;
  margin-top: 160px;
  position: relative;
}

@media (max-width: 1399px) {
  .hero-1 {
    padding: 150px 0 110px;
    margin-top: 70px;
    margin: 0 0;
  }
}

@media (max-width: 991px) {
  .hero-1 {
    padding: 130px 0 80px;
    margin-top: 0px;
  }
}

@media (max-width: 575px) {
  .hero-1 {
    padding: 130px 0 130px;
    margin-top: 0px;
    background-color: #fff;
  }
}

.hero-1 .container-fluid {
  padding: 0 170px;
}

@media (max-width: 1899px) {
  .hero-1 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1600px) {
  .hero-1 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 1399px) {
  .hero-1 .container-fluid {
    padding: 0 15px;
  }
}

.hero-1 .left-shape {
  position: absolute;
  left: 30px;
  bottom: 0;
}

@media (max-width: 1399px) {
  .hero-1 .left-shape {
    display: none;
  }
}

@media (min-width: 320px) and (max-width: 475px) {
  .hero-1 .left-shape {
    left: 0;
    z-index: 999;
    display: block;
  }
}

.hero-1 .right-shape {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

@media (max-width: 1399px) {
  .hero-1 .right-shape {
    display: none;
  }
}

@media (min-width: 320px) and (max-width: 475px) {
  .hero-1 .right-shape {
    left: initial;
    z-index: 999;
    right: 30px;
    transform: translateX(0);
    display: block;
  }

  .hero-1 .right-shape img {
    width: 90px;
  }
}

.hero-1 .right-shape-2 {
  position: absolute;
  right: 454px;
  bottom: 332px;
}

@media (max-width: 1600px) {
  .hero-1 .right-shape-2 {
    right: 338px;
  }
}

@media (max-width: 1399px) {
  .hero-1 .right-shape-2 {
    display: none;
  }
}

.hero-1 .right-shape-3 {
  position: absolute;
  right: 485px;
  bottom: 145px;
}

@media (max-width: 1600px) {
  .hero-1 .right-shape-3 {
    right: 385px;
  }
}

@media (max-width: 1399px) {
  .hero-1 .right-shape-3 {
    display: none;
  }
}

.hero-1 .right-shape-4 {
  position: absolute;
  right: 70px;
  top: 100px;
}

@media (max-width: 1600px) {
  .hero-1 .right-shape-4 {
    right: 12px;
  }
}

@media (max-width: 1399px) {
  .hero-1 .right-shape-4 {
    display: none;
  }
}

@media (max-width: 575px) {
  .hero-1 .hero-content {
    display: none;
  }
}

.hero-1 .hero-content span {
  color: var(--theme);
  font-weight: 600;
  border-radius: 5px;
  background-color: rgb(255, 255, 255);
  padding: 2px 20px 2px 10px;
  margin-bottom: 15px;
  display: inline-block;
  clip-path: polygon(100% 0, 90% 100%, 0 100%, 0 0);
   font-family: "Cormorant Garamond", serif;
}

@media (max-width: 1399px) {
  .hero-1 .hero-content span {
    margin-bottom: 15px;
  }
}

.hero-1 .hero-content h1 img {
  border-radius: 100px;
}

@media (max-width: 575px) {
  .hero-1 .hero-content h1 img {
    width: 110px;
  }
}

.hero-1 .hero-content .hero-item {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 30px;
}

@media (max-width: 1600px) {
  .hero-1 .hero-content .hero-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.hero-1 .hero-content .hero-item .hero-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.hero-1 .hero-content .hero-item .content p {
  max-width: 593px;
  margin-bottom: 30px;
}

@media (max-width: 1600px) {
  .hero-1 .hero-content .hero-item .content p {
    max-width: 485px;
    font-size: 15px;
  }
}

@media (max-width: 1399px) {
  .hero-1 .hero-content .hero-item .content p {
    max-width: 593px;
    margin-bottom: 30px;
    font-size: 16px;
  }
}

@media (max-width: 1199px) {
  .hero-1 .hero-content .hero-item .content p {
    max-width: 510px;
  }
}

@media (max-width: 991px) {
  .hero-1 .hero-content .hero-item .content p {
    max-width: 593px;
  }
}

.hero-1 .tomato-image {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 50px;
}

@media (max-width: 1600px) {
  .hero-1 .tomato-image {
    right: 20px;
  }
}

@media (max-width: 991px) {
  .hero-1 .tomato-image {
    display: none;
  }
}

.hero-1 .tomato-image img {
  width: 100%;
  height: 100%;
}

.hero-1 .bg-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
}

.hero-1 .bg-2 img {
  width: 100%;
  height: 100%;
}

@media (max-width: 575px) {
  .hero-1 .bg-2 {
    display: block;
  }
}

.hero-1 .hero-main-box {
  position: relative;
  z-index: 9;
  display: none;
}

@media (max-width: 575px) {
  .hero-1 .hero-main-box {
    display: block;
  }
}

.hero-1 .hero-main-box .hero-box {
  padding: 28px 20px;
  position: relative;
  border-radius: 20px;
}

.hero-1 .hero-main-box .hero-box .tomato {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
}

@media (min-width: 320px) and (max-width: 400px) {
  .hero-1 .hero-main-box .hero-box .tomato {
    max-width: 100px;
  }
}

.hero-1 .hero-main-box .hero-box .tomato img {
  width: 100%;
  height: 100%;
}

.hero-1 .hero-main-box .hero-box span {
  color: var(--theme);
  font-weight: 600;
  margin-bottom: 15px;
  display: inline-block;
   font-family: "Cormorant Garamond", serif;
}

@media (max-width: 1399px) {
  .hero-1 .hero-main-box .hero-box span {
    margin-bottom: 15px;
  }
}

.hero-1 .hero-main-box .hero-box h1 {
  font-size: 30px;
  font-weight: 700;
  text-transform: capitalize;
}

.hero-1 .hero-main-box .hero-image {
  margin-top: 20px;
}

.hero-1 .hero-main-box .hero-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.hero-1 .hero-main-box p {
  color: rgb(80, 98, 74);
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
  margin-top: 30px;
}

.hero-1 .hero-main-box .hero-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.hero-1 .hero-main-box .hero-btn .theme-btn.style-border {
  background-color: transparent;
  border: 1px solid var(--theme);
  color: rgb(200, 67, 58);
}

.hero-1 .hero-main-box .hero-btn .theme-btn.style-border::before {
  background-color: var(--theme);
}

.hero-1 .hero-main-box .hero-btn .theme-btn.style-border::after {
  background-color: rgba(200, 67, 58, 0.3);
}

.hero-1 .hero-main-box .hero-btn .theme-btn.style-border:hover {
  color: var(--white);
}

@media (max-width: 575px) {
  .hero-1.bg-cover {
    background-image: none !important;
  }
}

.hero-2 {
  position: relative;
}

@media (max-width: 1899px) {
  .hero-2 {
    height: 950px;
  }
}

@media (max-width: 1600px) {
  .hero-2 {
    height: 900px;
  }
}

@media (max-width: 1399px) {
  .hero-2 {
    height: 670px;
  }
}

@media (max-width: 991px) {
  .hero-2 {
    height: 610px;
  }
}

@media (max-width: 767px) {
  .hero-2 {
    height: 590px;
  }
}

@media (min-width: 400px) and (max-width: 575px) {
  .hero-2 {
    height: 685px;
  }
}

@media (min-width: 320px) and (max-width: 400px) {
  .hero-2 {
    height: 685px;
  }
}

.hero-2 .hero-border-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 0px;
  right: 0;
  bottom: 25px;
  padding-left: 120px;
  padding-right: 120px;
  padding-top: 25px;
  z-index: 999;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 1399px) {
  .hero-2 .hero-border-item {
    display: none;
  }
}

.hero-2 .hero-border-item .hero-bottom-item {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-2 .hero-border-item .hero-bottom-item h2 {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}

.hero-2 .hero-border-item .hero-bottom-item .hero-list {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-2 .hero-border-item .hero-bottom-item .hero-list span {
  color: var(--white);
  position: relative;
}

.hero-2 .hero-border-item .hero-bottom-item .hero-list span::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  background-color: rgba(255, 255, 255, 0.3);
  top: 8px;
  left: -20px;
}

.hero-2 .hero-border-item .hero-bottom-item .hero-list span i {
  margin-right: 10px;
}

@media (max-width: 1399px) {
  .hero-2 .hero-border-item .pagi-item {
    display: none;
  }
}

.hero-2 .hero-border-item .pagi-item .dot-number {
  display: flex;
  gap: 20px;
}

.hero-2 .hero-border-item .pagi-item .dot-number .swiper-pagination-bullet {
  background: none !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  transition: all 0.4s ease-in-out;
  color: var(--white);
}

.hero-2 .hero-border-item .pagi-item .dot-number .swiper-pagination-bullet-active .dot-num span {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
  display: inline-block;
}

.hero-2 .hero-border-item .pagi-item .dot-number .dot-num {
  transition: all 0.4s ease-in-out;
}

.hero-2 .hero-border-item .pagi-item .dot-number .dot-num span {
  font-size: 16px;
  font-weight: 600;
  color: var(--white) !important;
  transition: all 0.4s ease-in-out;
  opacity: 9 !important;
  display: inline-block;
}

.hero-2 .hero-border-item .pagi-item .dot-number .dot-num span.style-2 {
  position: relative;
}

.hero-2 .hero-border-item .pagi-item .dot-number .dot-num span.style-2::before {
  position: absolute;
  content: "";
  top: 14px;
  left: -18px;
  background: rgba(255, 255, 255, 0.5);
  width: 16px;
  height: 1px;
  transform: rotate(-126deg);
}

.hero-2 .hero-portfolio-revealing-slider {
  position: relative;
  height: 100vh;
}

.hero-2 .hero-portfolio-revealing-slider::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(255, 255, 255, 0.2);
  left: 100px;
  width: 1px;
  z-index: 999;
}

@media (max-width: 1600px) {
  .hero-2 .hero-portfolio-revealing-slider::before {
    left: 75px;
  }
}

@media (max-width: 1399px) {
  .hero-2 .hero-portfolio-revealing-slider::before {
    display: none;
  }
}

.hero-2 .hero-portfolio-revealing-slider::after {
  position: absolute;
  height: 100%;
  top: 0;
  bottom: 0;
  content: "";
  background-color: rgba(255, 255, 255, 0.2);
  right: 100px;
  width: 1px;
  z-index: 999;
}

@media (max-width: 1600px) {
  .hero-2 .hero-portfolio-revealing-slider::after {
    right: 82px;
  }
}

@media (max-width: 1399px) {
  .hero-2 .hero-portfolio-revealing-slider::after {
    display: none;
  }
}

.hero-2 .hero-portfolio-revealing-slider-control {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 4%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  margin-left: calc(var(--controlSize) / -2);
  margin-top: calc(var(--controlSize) / -2);
  border-radius: 50%;
  transition: background-color 0.3s;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1600px) {
  .hero-2 .hero-portfolio-revealing-slider-control {
    left: 4.5%;
  }
}

@media (max-width: 1399px) {
  .hero-2 .hero-portfolio-revealing-slider-control {
    display: none;
  }
}

@media (min-width: 400px) and (max-width: 575px) {
  .hero-2 .hero-portfolio-revealing-slider-control {
    left: 48%;
    display: block;
    top: 84%;
  }
}

@media (min-width: 320px) and (max-width: 400px) {
  .hero-2 .hero-portfolio-revealing-slider-control {
    left: 46%;
    display: block;
    top: 84%;
  }
}

.hero-2 .hero-portfolio-revealing-slider-control:hover {
  background-color: var(--theme2);
  border: 1px solid var(--theme2);
}

.hero-2 .hero-portfolio-revealing-slider-control:hover img {
  filter: invert(1) brightness(0);
}

.hero-2 .hero-portfolio-revealing-slider-control-right {
  left: 99%;
}

@media (min-width: 400px) and (max-width: 575px) {
  .hero-2 .hero-portfolio-revealing-slider-control-right {
    left: 66%;
  }
}

@media (min-width: 320px) and (max-width: 400px) {
  .hero-2 .hero-portfolio-revealing-slider-control-right {
    left: 67%;
  }
}

.hero-2 .hero-portfolio-revealing-slider-control-right .hero-portfolio-revealing-slider-control-line {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hero-2 .hero-portfolio-revealing-slider-control-line {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease-in-out;
}

.hero-2 .hero-portfolio-revealing-slide {
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150vmax;
  height: 150vmax;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: clip-path 0s calc(var(--slidingAT) * 0.7);
  clip-path: circle(calc(var(--controlSize) / 2) at 120vw 50%);
}

.hero-2 .hero-portfolio-revealing-slide-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-top: -50vh;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 260px 0 260px;
}

.hero-2 .hero-portfolio-revealing-slide-inner::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 999;
}

@media (max-width: 1600px) {
  .hero-2 .hero-portfolio-revealing-slide-inner {
    padding: 280px 0 330px;
  }
}

@media (max-width: 1399px) {
  .hero-2 .hero-portfolio-revealing-slide-inner {
    padding: 180px 0 130px;
  }
}

@media (max-width: 991px) {
  .hero-2 .hero-portfolio-revealing-slide-inner {
    padding: 150px 0 100px;
  }
}

.hero-2 .hero-portfolio-revealing-slide-content {
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 999;
}

.hero-2 .hero-portfolio-revealing-slide span {
  color: var(--white);
  margin-bottom: 20px;
  margin-top: 10px;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
   font-family: "Cormorant Garamond", serif;
}

.hero-2 .hero-portfolio-revealing-slide-heading {
  color: var(--white);
  line-height: 120%;
}

.hero-2 .hero-portfolio-revealing-slide p {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
  text-transform: capitalize;
}

.hero-2 .hero-portfolio-revealing-slide .hero-button {
  display: flex;
  align-items: center;
  margin-top: 40px;
  gap: 40px;
  justify-content: center;
}

@media (max-width: 1199px) {
  .hero-2 .hero-portfolio-revealing-slide .hero-button {
    margin-top: 30px;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .hero-2 .hero-portfolio-revealing-slide .hero-button {
    justify-content: center;
    margin-bottom: 112px;
  }
}

@media (min-width: 320px) and (max-width: 400px) {
  .hero-2 .hero-portfolio-revealing-slide .hero-button {
    margin-bottom: 75px;
  }
}

@media (max-width: 575px) {
  .hero-2 .hero-portfolio-revealing-slide .hero-button .theme-btn-2 {
    padding: 13px 24px 13px;
  }
}

.hero-2 .hero-portfolio-revealing-slide .hero-button .theme-btn-2.border-btn {
  background-color: rgba(245, 216, 62, 0.12);
  border: 1px solid rgb(245, 216, 62);
  color: rgb(245, 216, 62);
}

.hero-2 .hero-portfolio-revealing-slide .hero-button .theme-btn-2.border-btn::before {
  background-color: var(--theme2);
}

.hero-2 .hero-portfolio-revealing-slide .hero-button .theme-btn-2.border-btn::after {
  background-color: rgba(245, 216, 62, 0.12);
}

.hero-2 .hero-portfolio-revealing-slide .hero-button .theme-btn-2.border-btn:hover {
  color: var(--header);
}

.hero-2 .hero-portfolio-revealing-slide.s-prev {
  clip-path: circle(calc(var(--controlSize) / 2) at 30vw 50%);
}

.hero-2 .hero-portfolio-revealing-slide.s-active {
  z-index: 1;
  transition: clip-path var(--slidingAT);
  clip-path: circle(120vmax at 120vw 50%);
}

.hero-2 .hero-portfolio-revealing-slide.s-active.s-active-prev {
  clip-path: circle(120vmax at 30vw 50%);
}

.hero-3 {
  height: 85vh;
  min-height: 733px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .hero-3 {
    height: 75vh;
    min-height: 550px;
  }
}

@media (max-width: 575px) {
  .hero-3 {
    height: 60vh;
    min-height: 380px;
  }
}

.hero-3 .drone-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-3 .drone-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-3 .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  z-index: -1;
  padding: 0 30px;
}

.hero-3 .hero-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, #2F2F2F 0%, rgba(47, 47, 47, 0) 100%);
}

@media (max-width: 1399px) {
  .hero-3 .hero-image {
    display: none;
  }
}

@media (max-width: 575px) {
  .hero-3 .hero-image {
    display: block;
  }
}

.hero-3 .hero-image .leafs {
  text-align: center;
  position: relative;
  margin-top: 125px;
}

.hero-3 .hero-image p {
  font-weight: 600;
  color: var(--white);
   font-family: "Cormorant Garamond", serif;
  position: relative;
  margin-top: 7px;
  text-align: center;
}

.hero-3 .hero-image p b {
  font-weight: 600;
  color: var(--theme3);
}

.hero-3 .hero-image .hero-boxs {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 30px 0;
  position: relative;
  margin-bottom: 50px;
  margin-top: 160px;
}

.hero-3 .hero-image .hero-boxs p {
  font-weight: 500;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 20px;
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-size: 15px;
}

.hero-3 .hero-image .hero-boxs .icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-left: 30px;
}

.hero-3 .hero-image .hero-boxs .icon-item .icon {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background-color: var(--white);
  border-radius: 100px;
}

.hero-3 .hero-image .hero-boxs .icon-item .cont span {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--white);
  text-transform: capitalize;
}

.hero-3 .hero-image .hero-boxs .icon-item .cont h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}

.hero-3 .hero-image .hero-boxs .icon-item .cont h2 a {
  color: var(--white);
}

.hero-3 .hero-image h1 {
  color: var(--white);
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  text-align: center;
}

@media (max-width: 1399px) {
  .hero-3 {
    padding: 180px 0 100px;
  }
}

@media (max-width: 991px) {
  .hero-3 {
    padding: 120px 0 80px;
  }
}

.hero-3 .container-fluid {
  padding: 0 120px;
}

@media (max-width: 1600px) {
  .hero-3 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .hero-3 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .hero-3 .container-fluid {
    padding: 0 15px;
  }
}

@media (max-width: 575px) {
  .hero-3 .hero-content {
    display: none;
  }
}

.hero-3 .hero-content p {
  font-weight: 600;
  color: var(--white);
   font-family: "Cormorant Garamond", serif;
}

.hero-3 .hero-content p b {
  font-weight: 600;
  color: var(--theme3);
}

.hero-3 .hero-content h1 {
  font-size: 100px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 35px;
}

@media (max-width: 1899px) {
  .hero-3 .hero-content h1 {
    font-size: 66px;
  }
}

@media (max-width: 1399px) {
  .hero-3 .hero-content h1 {
    font-size: 85px;
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .hero-3 .hero-content h1 {
    font-size: 65px;
  }
}

@media (max-width: 767px) {
  .hero-3 .hero-content h1 {
    font-size: 45px;
  }
}

@media (max-width: 575px) {
  .hero-3 .hero-content h1 {
    font-size: 34px;
  }
}

.hero-3 .hero-content h1.text {
  margin-left: 650px;
  margin-top: 5px;
  margin-bottom: 0;
}

@media (max-width: 1399px) {
  .hero-3 .hero-content h1.text {
    margin-left: 0;
  }
}

.hero-3 .hero-content span {
  font-size: 200px;
  font-weight: 700;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-text-stroke: 2px #fff;
  color: transparent;
  color: transparent;
  display: inline-block;
  margin-left: 370px;
  text-transform: uppercase;
}

@media (max-width: 1899px) {
  .hero-3 .hero-content span {
    font-size: 115px;
    margin-left: 250px;
  }
}

@media (max-width: 991px) {
  .hero-3 .hero-content span {
    font-size: 90px;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .hero-3 .hero-content span {
    font-size: 55px;
  }
}

@media (max-width: 575px) {
  .hero-3 .hero-content span {
    font-size: 50px;
  }
}

.hero-3 .hero-content span img {
  border-radius: 100%;
  border: 2.5px solid var(--white);
  margin-top: -30px;
  margin-left: -30px;
  margin-right: -30px;
}

@media (max-width: 1899px) {
  .hero-3 .hero-content span img {
    width: 105px;
  }
}

@media (max-width: 1399px) {
  .hero-3 .hero-content span img {
    margin-top: -15px;
    margin-left: -30px;
    margin-right: -30px;
    width: 90px;
  }
}

@media (max-width: 991px) {
  .hero-3 .hero-content span img {
    margin-top: -15px;
    margin-left: -15px;
    margin-right: -15px;
    width: 80px;
  }
}

@media (max-width: 575px) {
  .hero-3 .hero-content span img {
    margin-top: -15px;
    margin-left: -5px;
    margin-right: -5px;
    width: 40px;
  }
}

.hero-3 .hero-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 30px 0;
  position: absolute;
  right: 120px;
  top: 288px;
  max-width: 341px;
  width: 100%;
}

@media (max-width: 1399px) {
  .hero-3 .hero-box {
    display: none;
  }
}

.hero-3 .hero-box p {
  font-weight: 500;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 30px;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.hero-3 .hero-box .icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-left: 30px;
}

.hero-3 .hero-box .icon-item .icon {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background-color: var(--white);
  border-radius: 100px;
}

.hero-3 .hero-box .icon-item .cont span {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--white);
  text-transform: capitalize;
}

.hero-3 .hero-box .icon-item .cont h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}

.hero-3 .hero-box .icon-item .cont h2 a {
  color: var(--white);
}

.hero-4 {
  padding: 120px 0 0px;
  position: relative;
}

.hero-4::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(2, 2, 2, 0.8);
}

@media (max-width: 1399px) {
  .hero-4 {
    padding-top: 150px;
    padding-bottom: 70px;
  }
}

@media (max-width: 991px) {
  .hero-4 {
    padding-top: 150px;
    padding-bottom: 0;
  }
}

.hero-4 .container-fluid {
  padding: 0 120px;
}

@media (max-width: 1600px) {
  .hero-4 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .hero-4 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .hero-4 .container-fluid {
    padding: 0 15px;
  }
}

.hero-4 .hero-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 1600px) {
  .hero-4 .hero-shape {
    right: -166px;
    bottom: -153px;
  }
}

@media (max-width: 1399px) {
  .hero-4 .hero-shape {
    display: none;
  }
}

.hero-4 .hero-content {
  position: relative;
}

@media (max-width: 767px) {
  .hero-4 .hero-content {
    text-align: center;
  }
}

.hero-4 .hero-content span {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--white);
  display: inline-block;
  border-radius: 6px;
  line-height: 1;
  margin-bottom: 20px;
   font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
}

@media (max-width: 1399px) {
  .hero-4 .hero-content span {
    letter-spacing: initial;
  }
}

.hero-4 .hero-content h1 {
  font-size: 75px;
  margin-bottom: 20px;
  text-transform: initial;
  color: var(--white);
  font-weight: 700;
}

@media (max-width: 1899px) {
  .hero-4 .hero-content h1 {
    font-size: 62px;
  }
}

@media (max-width: 1600px) {
  .hero-4 .hero-content h1 {
    font-size: 60px;
  }
}

@media (max-width: 1399px) {
  .hero-4 .hero-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .hero-4 .hero-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .hero-4 .hero-content h1 {
    font-size: 35px;
  }
}

@media (max-width: 575px) {
  .hero-4 .hero-content h1 {
    font-size: 30px;
  }
}

@media (min-width: 320px) and (max-width: 400px) {
  .hero-4 .hero-content h1 {
    font-size: 27px;
  }
}

.hero-4 .hero-content p {
  max-width: 660px;
  font-size: 18px;
  line-height: 30px;
  color: var(--white);
  margin-bottom: 40px;
}

.hero-4 .hero-content .hero-button {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1399px) {
  .hero-4 .hero-content .hero-button {
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .hero-4 .hero-content .hero-button {
    justify-content: center;
  }
}

.hero-4 .hero-content .hero-button .theme-btn.style-2 {
  background: rgba(245, 216, 62, 0.12);
  border: 1px solid #11A21B;
  color: rgb(17, 162, 27);
}

.hero-4 .hero-content .hero-button .theme-btn.style-2::before {
  background-color: var(--theme3);
}

.hero-4 .hero-content .hero-button .theme-btn.style-2::after {
  background-color: rgba(200, 67, 58, 0.3);
}

.hero-4 .hero-content .hero-button .theme-btn.style-2:hover {
  color: var(--white);
  border: 1px solid var(--theme3);
}

.hero-4 .hero-image {
  position: relative;
  margin-top: 30px;
}

@media (max-width: 1399px) {
  .hero-4 .hero-image {
    margin-top: 0;
  }
}

@media (max-width: 575px) {
  .hero-4 .hero-image {
    margin-top: 0;
    max-width: 320px;
    text-align: center;
    margin: 0 auto;
  }
}

.hero-4 .hero-image img {
  width: 100%;
  height: 100%;
}

.hero-4 .cabage-shape {
  position: absolute;
  left: -40px;
  bottom: -70px;
}

@media (max-width: 1600px) {
  .hero-4 .cabage-shape {
    left: -53px;
    bottom: -115px;
  }
}

@media (max-width: 1399px) {
  .hero-4 .cabage-shape {
    display: none;
  }
}

.hero-4 .chili-shape {
  position: absolute;
  right: 50px;
  top: 330px;
}

.hero-4 .chili-shape img {
  width: 150px;
}

@media (max-width: 1600px) {
  .hero-4 .chili-shape {
    right: 40px;
    top: 220px;
  }
}

@media (max-width: 1399px) {
  .hero-4 .chili-shape {
    display: none;
  }
}

.hero-4 .hero-shape-2 {
  position: absolute;
  left: 0;
  top: 227px;
}

@media (max-width: 1600px) {
  .hero-4 .hero-shape-2 {
    display: none;
  }
}

.hero-4 .hero-shape-3 {
  position: absolute;
  left: 50%;
  top: 345px;
  z-index: 999;
}

@media (max-width: 1600px) {
  .hero-4 .hero-shape-3 {
    display: none;
  }
}

.hero-4 .radius {
  position: absolute;
  right: 0;
  bottom: 0;
  display: none;
}

@media (max-width: 575px) {
  .hero-4 .radius {
    display: block;
  }
}

@media (min-width: 320px) and (max-width: 400px) {
  .hero-4 .radius {
    right: -60px;
  }
}

.hero-4 .shape-5 {
  position: absolute;
  bottom: -30px;
  right: 20px;
}

@media (max-width: 1600px) {
  .hero-4 .shape-5 img {
    width: 100px;
  }
}

@media (max-width: 1399px) {
  .hero-4 .shape-5 {
    display: none;
  }
}

@media (max-width: 991px) {
  .hero-4 .shape-5 {
    width: initial;
    display: block;
    right: 0;
    bottom: 0;
  }

  .hero-4 .shape-5 img {
    width: 75px;
  }
}

@media (min-width: 320px) and (max-width: 400px) {
  .hero-4 .shape-5 {
    display: block;
  }

  .hero-4 .shape-5 img {
    width: 58px;
  }
}

.news-card-item {
  margin-top: 30px;
  background-color: var(--white);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.news-card-item::before,
.news-card-item::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--theme);
  transition: transform 0.6s ease;
  z-index: -1;
}

.news-card-item::before {
  top: 0;
  transform: translateY(-100%);
}

.news-card-item::after {
  bottom: 0;
  transform: translateY(100%);
}

.news-card-item .news-image {
  position: relative;
  overflow: hidden;
}

.news-card-item .news-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: inline-block;
  transition: all 500ms ease;
}

.news-card-item .news-image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.news-card-item .news-content {
  margin-top: 30px;
}

.news-card-item .news-content .tag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.news-card-item .news-content .tag span {
  border: 1px solid rgba(200, 67, 58, 0.2);
  color: rgb(47, 47, 47);
  padding: 2px 10px;
  border-radius: 6px;
}

.news-card-item .news-content .tag span i {
  margin-right: 10px;
  color: rgb(200, 67, 58);
}

.news-card-item .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.news-card-item .news-content h3 a:hover {
  color: var(--white);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.news-card-item .news-content p {
  max-width: 629px;
  color: rgb(80, 98, 74);
  margin-bottom: 30px;
  margin-top: 20px;
}

.news-card-item .news-content .theme-btn {
  border: 1px solid rgba(200, 67, 58, 0.2);
  background-color: transparent;
  color: rgb(200, 67, 58);
  padding: 12px 40px;
}

.news-card-item .news-content .theme-btn::before {
  background-color: var(--theme);
}

.news-card-item .news-content .theme-btn::after {
  background-color: rgba(200, 67, 58, 0.3);
}

.news-card-item .news-content .theme-btn:hover {
  color: var(--white);
}

.news-card-item:hover .news-image {
  position: relative;
  z-index: 9999;
}

.news-card-item:hover .news-image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}

.news-card-item:hover .news-image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.news-card-item:hover .news-content {
  position: relative;
  z-index: 9999;
}

.news-card-item:hover .news-content .tag span {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.news-card-item:hover .news-content .tag span i {
  color: var(--white);
}

.news-card-item:hover .news-content h3 a {
  color: var(--white);
}

.news-card-item:hover .news-content p {
  color: var(--white);
}

.news-card-item:hover .news-content .theme-btn {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.news-card-item:hover .news-content .theme-btn::before {
  background-color: var(--white);
}

.news-card-item:hover .news-content .theme-btn::after {
  background-color: rgba(255, 255, 255, 0.3);
}

.news-card-item:hover .news-content .theme-btn:hover {
  border: 1px solid var(--white);
  color: var(--theme);
}

.news-card-item:hover::before {
  transform: translateY(0);
  z-index: 999;
}

.news-card-item:hover::after {
  transform: translateY(0);
  z-index: 999;
}

.news-section .news-slider {
  margin-left: -450px;
  margin-right: -450px;
}

@media (max-width: 1399px) {
  .news-section .news-slider {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.news-section .swiper-dot {
  text-align: center;
}

@media (max-width: 575px) {
  .news-section .swiper-dot {
    opacity: 1;
    visibility: visible;
  }
}

.news-card-items-2 {
  margin-top: 30px;
}

.news-card-items-2 .news-image {
  position: relative;
  overflow: hidden;
  height: 360px;
  border-radius: 20px;
  line-height: 0;
  font-size: 0;
}

.news-card-items-2 .news-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(47, 47, 47, 0) 0%, #2F2F2F 100%);
  border-radius: 10px;
  z-index: 999;
}

.news-card-items-2 .news-image .theme-btn-2 {
  position: absolute;
  top: 45px;
  left: -45px;
  z-index: 999;
  padding: 10px 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1399px) {
  .news-card-items-2 .news-image .theme-btn-2 {
    left: -20px;
    top: 20px;
  }
}

.news-card-items-2 .news-image .news-content {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 9999;
}

@media (max-width: 1399px) {
  .news-card-items-2 .news-image .news-content {
    left: 20px;
    bottom: 20px;
  }
}

@media (max-width: 991px) {
  .news-card-items-2 .news-image .news-content h3 {
    font-size: 20px;
  }
}

.news-card-items-2 .news-image .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--white);
}

.news-card-items-2 .news-image .news-content h3 a:hover {
  color: var(--theme2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme2) 0%, var(--theme2) 100%);
}

.news-card-items-2 .news-image .news-content p {
  font-weight: 500;
  color: rgb(255, 255, 255);
  margin-top: 0;
  max-width: 390px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  height: 0;
}

@media (max-width: 991px) {
  .news-card-items-2 .news-image .news-content p {
    max-width: 305px;
  }
}

@media (max-width: 767px) {
  .news-card-items-2 .news-image .news-content p {
    max-width: 300px;
  }
}

.news-card-items-2 .news-image .news-content .tag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}

@media (max-width: 1399px) {
  .news-card-items-2 .news-image .news-content .tag {
    flex-wrap: wrap;
  }
}

.news-card-items-2 .news-image .news-content .tag span {
  border: 1px solid rgba(245, 216, 62, 0.2);
  color: var(--white);
  padding: 2px 10px;
  border-radius: 6px;
}

.news-card-items-2 .news-image .news-content .tag span i {
  margin-right: 10px;
  color: var(--theme2);
}

.news-card-items-2 .news-image img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.7s ease;
}

.news-card-items-2:hover .news-image .theme-btn-2 {
  opacity: 1;
  visibility: visible;
  left: 45px;
}

@media (max-width: 1399px) {
  .news-card-items-2:hover .news-image .theme-btn-2 {
    left: 20px;
    top: 20px;
  }
}

.news-card-items-2:hover .news-image .news-content p {
  display: block;
  opacity: 1;
  visibility: visible;
  margin-top: 10px;
  padding-bottom: 20px;
  height: 110px;
}

.news-card-items-2.style-inner {
  margin-top: 0 !important;
}

.news-card-items-2.style-inner .news-image .news-content h3 a {
  color: var(--white);
  font-weight: 700;
}

.news-card-items-2.style-inner .news-image .news-content h3 a:hover {
  color: #fff;
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
}

.news-card-items-2.style-inner .news-image .news-content .tag span {
  border: 1px solid rgba(245, 216, 62, 0.2);
  color: var(--white);
}

.news-card-items-2.style-inner .news-image .news-content .tag span i {
  margin-right: 10px;
  color: var(--theme3);
}

.cards-wrapper {
  overflow: hidden;
  margin-top: 48px;
}

.cards-wrapper .blog-card {
  background: rgb(245, 246, 244);
  border-radius: 10px;
  padding: 25px;
}

.cards-wrapper .blog-card .card-image {
  width: 100%;
  overflow: hidden;
  height: 170px;
  transition: height 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  border-radius: 10px;
}

.cards-wrapper .blog-card .card-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.cards-wrapper .card-content {
  margin-top: 30px;
}

.cards-wrapper .card-content .card-meta {
  margin-bottom: 20px;
}

.cards-wrapper .card-content .card-meta span {
  border: 1px solid rgba(17, 162, 27, 0.2);
  color: var(--theme3);
  padding: 0px 10px;
  border-radius: 6px;
  display: inline-block;
}

.cards-wrapper .card-content .card-meta i {
  margin-right: 5px;
}

.cards-wrapper .card-content .card-meta.style-2 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cards-wrapper .card-content .card-meta.style-2 h3 {
  border: 1px solid rgba(17, 162, 27, 0.2);
  color: var(--theme3);
  padding: 5px 10px;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
}

.cards-wrapper .card-content h3 {
  margin-top: 10px;
}

.cards-wrapper .card-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.cards-wrapper .card-content h3 a:hover {
  color: var(--theme3);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
}

.cards-wrapper .card-content p {
  color: rgb(80, 98, 74);
  margin-top: 10px;
  margin-bottom: 30px;
}

.cards-wrapper .card-content .theme-btns {
  position: relative;
  margin-left: 15px;
}

.cards-wrapper .card-content .theme-btns span {
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  margin-left: 5px;
  color: rgb(245, 246, 244);
}

.cards-wrapper .card-content .theme-btns::before {
  position: absolute;
  content: "";
  top: 54%;
  left: 10%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background-color: rgba(17, 162, 27, 0.1);
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
}

.cards-wrapper .card-content .theme-btns:hover {
  color: var(--white);
}

.cards-wrapper .card-content .theme-btns:hover img {
  filter: brightness(0) invert(1);
}

.cards-wrapper .card-content .theme-btns:hover span {
  opacity: 1;
  visibility: visible;
  color: var(--white);
  position: relative;
  z-index: 999;
}

.cards-wrapper .card-content .theme-btns:hover::before {
  width: 150px;
  left: 54%;
  background-color: var(--theme3);
}

.news-section-3 .section-title-area .theme-btn {
  border: 1px solid rgb(17, 162, 27);
  color: var(--theme3);
  background-color: transparent;
}

.news-section-3 .section-title-area .theme-btn::before {
  background-color: var(--theme3);
}

.news-section-3 .section-title-area .theme-btn::after {
  background-color: rgba(17, 162, 27, 0.3);
}

.news-section-3 .section-title-area .theme-btn:hover {
  color: var(--white);
}

.news-standard-wrapper .news-standard-items .news-card-items-4 {
  margin-bottom: 30px;
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-image {
  overflow: hidden;
  border-radius: 12px;
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-image img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
  border-radius: 12px;
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .date-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 15px;
}

@media (max-width: 1199px) {
  .news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .date-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .date-list li i {
  margin-right: 10px;
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content h2 {
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .news-standard-wrapper .news-standard-items .news-card-items-4 .news-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .news-standard-wrapper .news-standard-items .news-card-items-4 .news-content h2 {
    font-size: 25px;
  }
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content h2 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content h2 a:hover {
  color: var(--theme3);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .theme-btn {
  margin-top: 24px;
  background-color: transparent;
  color: var(--theme3);
  border: 1px solid var(--theme3);
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .theme-btn::before {
  background-color: var(--theme3);
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .theme-btn::after {
  background-color: rgba(17, 162, 27, 0.3);
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .theme-btn:hover {
  color: var(--white);
}

.news-standard-wrapper .news-standard-items .news-card-items-4:hover .news-image img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.main-sideber .single-sideber-widget {
  margin-bottom: 30px;
  background-color: var(--bg3);
  padding: 30px;
  border-radius: 8px;
}

@media (max-width: 1399px) {
  .main-sideber .single-sideber-widget {
    padding: 25px;
  }
}

.main-sideber .single-sideber-widget .search-widget form {
  width: 100%;
  position: relative;
}

.main-sideber .single-sideber-widget .search-widget form input {
  background-color: var(--white);
  font-size: 18px;
  font-weight: 400;
  padding: 16px 20px;
  width: 100%;
  border: none;
  color: var(--text);
  border-radius: 6px;
}

.main-sideber .single-sideber-widget .search-widget form button {
  position: absolute;
  right: -2px;
  top: 0;
  width: 58px;
  border-radius: 6px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme3);
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.main-sideber .single-sideber-widget .search-widget form button:hover {
  background-color: var(--header);
}

.main-sideber .single-sideber-widget .widget-title {
  margin-bottom: 20px;
}

.main-sideber .single-sideber-widget .widget-title h3 {
  font-weight: 600;
  font-size: 22px;
}

.main-sideber .single-sideber-widget .amenities-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}

.main-sideber .single-sideber-widget .amenities-list li:not(:last-child) {
  margin-bottom: 20px;
}

.main-sideber .single-sideber-widget .category-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  background-color: var(--white);
  padding: 22px 25px;
   font-family: "Cormorant Garamond", serif;
  line-height: 1;
  text-transform: capitalize;
  border-radius: 8px;
}

.main-sideber .single-sideber-widget .category-list li a {
  color: var(--header);
}

.main-sideber .single-sideber-widget .category-list li i {
  transition: all 0.4s ease-in-out;
  color: var(--header);
}

.main-sideber .single-sideber-widget .category-list li:not(:last-child) {
  margin-bottom: 20px;
}

.main-sideber .single-sideber-widget .category-list li span b {
  font-weight: 400;
  color: var(--theme);
}

.main-sideber .single-sideber-widget .category-list li:hover,
.main-sideber .single-sideber-widget .category-list li.active {
  background-color: var(--theme3);
}

.main-sideber .single-sideber-widget .category-list li:hover a,
.main-sideber .single-sideber-widget .category-list li.active a {
  color: var(--white);
}

.main-sideber .single-sideber-widget .category-list li:hover i,
.main-sideber .single-sideber-widget .category-list li.active i,
.main-sideber .single-sideber-widget .category-list li:hover span,
.main-sideber .single-sideber-widget .category-list li.active span {
  color: var(--white);
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-thumb img {
  border-radius: 8px;
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items:not(:last-child) {
  margin-bottom: 20px;
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content h4 {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  font-family: "Inter", sans-serif;
}

@media (max-width: 1399px) {
  .main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content h4 {
    font-size: 16px;
  }
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content h4 a:hover {
  color: var(--theme3);
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content ul li {
  color: var(--text);
  font-weight: 500;
}

.main-sideber .single-sideber-widget .tagcloud a {
  display: inline-block;
  padding: 12px 18px;
  line-height: 1;
  font-weight: 600;
  background: var(--white);
   font-family: "Cormorant Garamond", serif;
  margin-right: 10px;
  margin-bottom: 10px;
  text-transform: capitalize;
  border-radius: 4px;
}

.main-sideber .single-sideber-widget .tagcloud a:last-child {
  margin-right: 0;
}

.main-sideber .single-sideber-widget .tagcloud a:hover {
  background-color: var(--theme3);
  color: var(--white);
}

.news-details-area .blog-post-details .single-blog-post .post-featured-thumb {
  border-radius: 10px;
}

.news-details-area .blog-post-details .single-blog-post .post-featured-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.news-details-area .blog-post-details .single-blog-post .post-content {
  margin-top: 30px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .post-list {
  gap: 30px;
  margin-bottom: 10px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .post-list li {
  font-size: 14px;
  font-weight: 500;
}

.news-details-area .blog-post-details .single-blog-post .post-content .post-list li i {
  color: var(--theme3);
  margin-right: 5px;
}

.news-details-area .blog-post-details .single-blog-post .post-content h2 {
  margin-bottom: 20px;
  font-size: 42px;
}

@media (max-width: 1399px) {
  .news-details-area .blog-post-details .single-blog-post .post-content h2 {
    font-size: 35px;
  }
}

@media (max-width: 991px) {
  .news-details-area .blog-post-details .single-blog-post .post-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .news-details-area .blog-post-details .single-blog-post .post-content h2 {
    font-size: 21px;
  }
}

.news-details-area .blog-post-details .single-blog-post .post-content h2 a:hover {
  color: var(--theme);
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
  border-left: 4px solid var(--theme3);
  padding: 40px;
  background-color: var(--bg3);
  border-radius: 8px;
}

@media (max-width: 1399px) {
  .news-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
    padding: 30px;
  }
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text p {
  max-width: 700px;
  font-weight: 500;
  text-transform: capitalize;
  font-style: italic;
  line-height: 26px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text .icon {
  float: right;
  margin-top: -30px;
  color: var(--theme3);
  font-size: 40px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.news-details-area .blog-post-details .tag-share-wrap {
  border-top: 1px solid rgba(2, 6, 10, 0.08);
  border-bottom: 1px solid rgba(2, 6, 10, 0.08);
  padding: 30px 0;
}

.news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
  display: inline-block;
  padding: 12px 26px;
  line-height: 1;
  background: var(--bg3);
  margin-right: 8px;
  text-transform: capitalize;
  font-weight: 500;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 4px;
}

@media (max-width: 1399px) {
  .news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
    padding: 12px 20px;
  }
}

@media (max-width: 575px) {
  .news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
    margin-bottom: 5px;
  }
}

.news-details-area .blog-post-details .tag-share-wrap .tagcloud a:hover {
  background-color: var(--theme3);
  color: var(--white);
}

.news-details-area .blog-post-details .tag-share-wrap .social-share span {
  font-size: 18px;
  color: var(--header);
  font-weight: 600;
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a {
  font-size: 18px;
  color: var(--header);
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a:not(:last-child) {
  margin-right: 10px;
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a:hover {
  color: var(--theme3);
}

.news-details-area .blog-post-details .comments-area {
  margin-top: 40px;
  padding: 50px 40px;
  background-color: var(--bg3);
  border-radius: 8px;
}

@media (max-width: 1399px) {
  .news-details-area .blog-post-details .comments-area {
    padding: 50px 30px;
  }
}

.news-details-area .blog-post-details .comments-area .comments-heading {
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .news-details-area .blog-post-details .comments-area .comments-heading {
    margin-bottom: 20px;
  }
}

.news-details-area .blog-post-details .comments-area .comments-heading h3 {
  font-size: 32px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .news-details-area .blog-post-details .comments-area .comments-heading h3 {
    font-size: 28px;
  }
}

.news-details-area .blog-post-details .comments-area .blog-single-comment {
  border-bottom: 1px solid #e5e5e5;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment.bb-none {
  border: none;
}

@media (max-width: 575px) {
  .news-details-area .blog-post-details .comments-area .blog-single-comment {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con h4 {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 20px;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .star i {
  color: var(--theme3);
  font-size: 14px;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .reply {
  border-radius: 30px;
  padding: 5px 15px;
  font-weight: 400;
  background-color: var(--white);
  color: var(--theme3);
}

.news-details-area .comment-form-wrap {
  background-color: var(--bg3);
  border-radius: 8px;
  padding: 50px 40px;
  margin-top: 40px;
}

.news-details-area .comment-form-wrap h3 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .news-details-area .comment-form-wrap h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.news-details-area .comment-form-wrap .form-clt input,
.news-details-area .comment-form-wrap .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  border: none;
  padding: 16px 20px;
  font-weight: 500;
  border-radius: 5px;
}

.news-details-area .comment-form-wrap .form-clt input::placeholder,
.news-details-area .comment-form-wrap .form-clt textarea::placeholder {
  color: var(--text);
}

.news-details-area .comment-form-wrap .form-clt textarea {
  padding-bottom: 100px;
}

.news-card-wrapper {
  margin-top: 18px;
}

.news-card-wrapper .news-card-items-5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(47, 47, 47, 0.2);
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
  padding: 30px 0;
  margin-top: 30px;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .news-card-wrapper .news-card-items-5 {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 1399px) {
  .news-card-wrapper .news-card-items-5 .news-image {
    flex-basis: 100%;
  }
}

.news-card-wrapper .news-card-items-5 .news-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.news-card-wrapper .news-card-items-5 .post-date {
  width: 180px;
  height: 150px;
  background-color: var(--theme3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.news-card-wrapper .news-card-items-5 .post-date h3 {
  font-size: 50px;
  font-weight: 600;
  color: var(--white);
}

.news-card-wrapper .news-card-items-5 .post-date p {
  color: var(--white);
}

.news-card-wrapper .news-card-items-5 .content span {
  color: var(--theme3);
}

.news-card-wrapper .news-card-items-5 .content h4 {
  font-size: 30px;
}

@media (max-width: 991px) {
  .news-card-wrapper .news-card-items-5 .content h4 {
    font-size: 20px;
  }

  .news-card-wrapper .news-card-items-5 .content h4 br {
    display: none;
  }
}

.news-card-wrapper .news-card-items-5 .content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.news-card-wrapper .news-card-items-5 .content h4 a:hover {
  color: var(--theme3);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
}

.news-card-wrapper .news-card-items-5 .arrow-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--header);
  color: var(--white);
  font-size: 25px;
  transition: all 0.4s ease-in-out;
}

.news-card-wrapper .news-card-items-5 .arrow-icon:hover {
  background-color: var(--theme3);
}

.pricing-box-items {
  margin-top: 30px;
  border-radius: 8px;
  background-color: var(--bg3);
  padding: 50px 30px;
  position: relative;
  z-index: 9;
}

.pricing-box-items .nexella-hover-bx {
  background: var(--theme3);
  height: 100%;
  top: 0;
  opacity: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 25%;
  z-index: -1;
}

.pricing-box-items .hover-bx {
  left: 0;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.pricing-box-items .hover-bx2 {
  left: 25%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.pricing-box-items .hover-bx3 {
  left: 50%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.pricing-box-items .hover-bx4 {
  left: 75%;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.pricing-box-items .pricing-header {
  margin-bottom: 30px;
}

.pricing-box-items .pricing-header span {
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  display: inline-block;
  margin-bottom: 20px;
  color: var(--white);
}

.pricing-box-items .pricing-header h3 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
  margin-bottom: 25px;
}

@media (max-width: 1399px) {
  .pricing-box-items .pricing-header h3 {
    font-size: 55px;
  }
}

.pricing-box-items .pricing-header h3 sub {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: initial;
  margin-left: -12px;
}

.pricing-box-items .pricing-header p {
  color: var(--white);
}

.pricing-box-items .theme-btn {
  background-color: var(--theme3);
  width: 100%;
  color: var(--white);
  display: inline-block;
  border-radius: 8px;
}

@media (max-width: 1399px) {
  .pricing-box-items .theme-btn {
    margin-top: 30px;
  }
}

.pricing-box-items .theme-btn::before {
  background-color: var(--white);
  border-radius: 8px;
}

.pricing-box-items .theme-btn:after {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 8px;
}

.pricing-box-items .theme-btn:hover {
  color: var(--theme3);
}

.pricing-box-items .pricing-list {
  margin-top: 30px;
}

.pricing-box-items .pricing-list span {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

@media (max-width: 1199px) {
  .pricing-box-items .pricing-list span {
    letter-spacing: inherit;
  }
}

.pricing-box-items .pricing-list ul {
  margin-top: 20px;
}

.pricing-box-items .pricing-list ul li {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 162.5%;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-box-items .pricing-list ul li i {
  font-size: 18px;
  color: var(--theme3);
}

.pricing-box-items .pricing-list ul li:not(:last-child) {
  margin-bottom: 15px;
}

.pricing-box-items:hover .nexella-hover-bx {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.pricing-box-items:hover .pricing-header span {
  color: var(--white);
}

.pricing-box-items:hover .pricing-header h3 {
  color: var(--white);
}

.pricing-box-items:hover .pricing-header h3 sub {
  color: var(--white);
}

.pricing-box-items:hover .pricing-header p {
  color: var(--white);
}

.pricing-box-items:hover .theme-btn {
  background-color: var(--header);
}

.pricing-box-items:hover .pricing-list span {
  color: var(--white);
}

.pricing-box-items:hover .pricing-list ul li {
  color: var(--white);
}

.pricing-box-items:hover .pricing-list ul li i {
  color: var(--white);
}

.marquee {
  position: relative;
  --duration: 30s;
  --gap: 0px;
  display: flex;
  overflow: visible;
  user-select: none;
  gap: 0;
  margin-bottom: 120px;
}

.marquee .image-trail-images {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.marquee .image-trail-images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 230px;
  aspect-ratio: 1;
  opacity: 0;
  pointer-events: none;
  border-radius: 10px;
  will-change: transform, opacity;
}

@media (max-width: 1399px) {
  .marquee {
    margin-bottom: 100px;
    margin-top: -20px;
  }
}

@media (max-width: 991px) {
  .marquee {
    margin-bottom: 80px;
    margin-top: 0;
  }
}

.marquee .marquee-group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
  min-width: 100%;
  animation: scroll var(--duration) linear infinite;
}

.marquee .text {
  color: rgb(80, 98, 74);
  font-size: 200px;
  font-weight: 700;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 50px;
  line-height: 75%;
}

@media (max-width: 1399px) {
  .marquee .text {
    gap: 30px;
    font-size: 150px;
    line-height: 115%;
  }
}

@media (max-width: 575px) {
  .marquee .text {
    gap: 20px;
    font-size: 100px;
  }
}

.marquee.style-2 {
  margin-top: 80px;
}

@media (max-width: 1399px) {
  .marquee.style-2 {
    margin-top: 100px;
  }
}

@media (max-width: 991px) {
  .marquee.style-2 {
    margin-top: 80px;
  }
}

.marquee.style-2 .text {
  font-size: 27px;
  font-weight: 700;
  color: #000;
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
}




.marquee-section {
  position: relative;
}

.marquee-section .image-trail-images {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.marquee-section .image-trail-images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 230px;
  aspect-ratio: 1;
  opacity: 0;
  pointer-events: none;
  border-radius: 10px;
  will-change: transform, opacity;
}

.project-section {
  margin: 0 30px;
}

@media (max-width: 1399px) {
  .project-section {
    margin: 0 15px;
  }
}

.project-wrapper {
  margin-top: 48px;
}

.project-wrapper .main-box {
  padding: 0;
  gap: 30px;
  display: flex;
  align-items: center;
}

@media (max-width: 1399px) {
  .project-wrapper .main-box {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}

.project-wrapper .main-box .box-2 {
  background-image: url(../img/home-1/project/04.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  width: 210px !important;
  height: 641px;
  position: relative;
  overflow: hidden;
  list-style: none;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  border-radius: 10px;
}

@media (max-width: 1399px) {
  .project-wrapper .main-box .box-2 {
    width: 570px !important;
  }
}

@media (max-width: 575px) {
  .project-wrapper .main-box .box-2 {
    height: 350px;
    object-fit: cover;
  }

  .project-wrapper .main-box .box-2 .project-content {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
  }
}

.project-wrapper .main-box .box-2 .project-content {
  position: absolute;
  bottom: -100px;
  left: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  background-color: var(--white);
  padding: 20px 25px;
  right: 30px;
  border-radius: 10px;
}

@media (max-width: 1600px) {
  .project-wrapper .main-box .box-2 .project-content {
    left: 20px;
    right: 20px;
    padding: 20px 20px;
  }
}

@media (max-width: 1600px) {
  .project-wrapper .main-box .box-2 .project-content h3 {
    font-size: 20px;
  }
}

.project-wrapper .main-box .box-2 .project-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.project-wrapper .main-box .box-2 .project-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.project-wrapper .main-box .box-2 .project-content .tag-list {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 20px;
}

@media (max-width: 1600px) {
  .project-wrapper .main-box .box-2 .project-content .tag-list {
    font-size: 15px;
    gap: 10px;
  }
}

@media (max-width: 1399px) {
  .project-wrapper .main-box .box-2 .project-content .tag-list {
    font-size: 16px;
  }
}

@media (max-width: 1399px) {
  .project-wrapper .main-box .box-2 .project-content .tag-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.project-wrapper .main-box .box-2 .project-content .tag-list span {
  border: 1px solid rgba(200, 67, 58, 0.2);
  color: rgb(200, 67, 58);
  padding: 2px 10px;
  border-radius: 6px;
}

.project-wrapper .main-box .box-2.bg-1 {
  background-image: url(../img/home-1/project/01.jpg);
}

.project-wrapper .main-box .box-2.bg-2 {
  background-image: url(../img/home-1/project/02.jpg);
}

.project-wrapper .main-box .box-2.bg-3 {
  background-image: url(../img/home-1/project/03.jpg);
}

.project-wrapper .main-box .box-2.bg-4 {
  background-image: url(../img/home-1/project/05.jpg);
}

.project-wrapper .main-box .box-2.bg-5 {
  background-image: url(../img/home-1/project/06.jpg);
}

.project-wrapper .main-box .box-2.active {
  width: 690px !important;
}

.project-wrapper .main-box .box-2.active .project-content {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}

.project-wrapper-2 {
  margin-top: 48px;
}

@media (max-width: 575px) {
  .project-wrapper-2 {
    margin-top: 30px;
  }
}

.project-wrapper-2 .project-left-item {
  position: relative;
}

.project-wrapper-2 .project-left-item .project-image {
  position: relative;
  border-radius: 10px;
  margin-bottom: 20px;
}

.project-wrapper-2 .project-left-item .project-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(47, 47, 47, 0.7);
  border-radius: 10px;
}

.project-wrapper-2 .project-left-item .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.project-wrapper-2 .project-left-item .project-image .project-content {
  position: absolute;
  left: 30px;
  bottom: 30px;
}

@media (max-width: 1399px) {
  .project-wrapper-2 .project-left-item .project-image .project-content {
    left: 20px;
    bottom: 20px;
  }
}

.project-wrapper-2 .project-left-item .project-image .project-content span {
  display: inline-block;
  background-color: var(--white);
  border-radius: 100px;
  width: 10px;
  height: 10px;
}

.project-wrapper-2 .project-left-item .project-image .project-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 10px;
}

@media (max-width: 1399px) {
  .project-wrapper-2 .project-left-item .project-image .project-content h3 {
    font-size: 20px;
  }
}

.project-wrapper-2 .project-left-item .project-image .project-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--white);
}

.project-wrapper-2 .project-left-item .project-image .project-content h3 a:hover {
  color: var(--theme2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme2) 0%, var(--theme2) 100%);
}

.project-wrapper-2 .project-left-item .project-image .project-content .tag {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.project-wrapper-2 .project-left-item .project-image .project-content .tag h4 {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
}

.project-wrapper-2 .project-thumb-item {
  position: relative;
}

.project-wrapper-2 .project-thumb-item .project-thumb {
  position: relative;
  max-width: 930px;
  height: 735px;
  overflow: visible;
  border-radius: 10px;
  width: 100%;
}

@media (max-width: 1399px) {
  .project-wrapper-2 .project-thumb-item .project-thumb {
    height: 608px;
  }
}

@media (max-width: 1199px) {
  .project-wrapper-2 .project-thumb-item .project-thumb {
    height: 635px;
  }
}

@media (max-width: 991px) {
  .project-wrapper-2 .project-thumb-item .project-thumb {
    height: 450px;
  }
}

@media (max-width: 767px) {
  .project-wrapper-2 .project-thumb-item .project-thumb {
    height: 400px;
  }
}

.project-wrapper-2 .project-thumb-item .project-thumb h2 {
  font-size: 50px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgb(79, 127, 58);
  position: absolute;
  right: 40px;
  top: 40px;
}

@media (max-width: 1399px) {
  .project-wrapper-2 .project-thumb-item .project-thumb h2 {
    display: none;
  }
}

.project-wrapper-2 .project-thumb-item .project-thumb .thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 10px;
}

.project-wrapper-2 .project-thumb-item .project-thumb .thumb-img.active {
  opacity: 1;
}

.project-card-items-4 .project-image {
  height: 500px;
  position: relative;
  overflow: hidden;
}

.project-card-items-4 .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.project-card-items-4 .project-image .content {
  border-radius: 4px;
  background: var(--theme3);
  padding: 20px 24px;
  display: inline-block;
  position: absolute;
  bottom: -100px;
  left: 20px;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
  .project-card-items-4 .project-image .content {
    text-align: center;
    right: 0;
    width: calc(100% - 40px);
  }
}

.project-card-items-4 .project-image .content p {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.project-card-items-4 .project-image .content h2 {
  font-weight: 700;
  font-size: 24px;
  margin-top: 5px;
}

.project-card-items-4 .project-image .content h2 a {
  color: var(--white);
}

.project-card-items-4:hover .project-image .content {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

.project-details-wrapper .project-details-image {
  margin-bottom: 30px;
  border-radius: 20px;
  overflow: hidden;
}

.project-details-wrapper .project-details-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.project-details-wrapper .project-details-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .project-details-wrapper .project-details-content h2 {
    font-size: 28px;
  }
}

.project-details-wrapper .project-details-content .thumb {
  border-radius: 10px;
  overflow: hidden;
}

.project-details-wrapper .project-details-content .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.project-details-wrapper .project-information {
  background-color: var(--bg3);
  padding: 30px;
  border-radius: 10px;
}

@media (max-width: 1399px) {
  .project-details-wrapper .project-information {
    padding: 22px;
  }
}

.project-details-wrapper .project-information .information-list {
  margin-top: 20px;
}

.project-details-wrapper .project-information .information-list li {
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
}

@media (max-width: 1199px) {
  .project-details-wrapper .project-information .information-list li {
    gap: 14px;
  }
}

.project-details-wrapper .project-information .information-list li:not(:last-child) {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
  padding-bottom: 15px;
}

.project-details-wrapper .project-information .information-list li span {
  color: var(--header);
  font-size: 18px;
}

@media (max-width: 1199px) {
  .project-details-wrapper .project-information .information-list li span {
    font-size: 16px;
  }
}

.our-project-wrapper .project-thumb {
  position: relative;
}

.our-project-wrapper .project-thumb::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(17, 162, 27, 0) 50%, #11A21B 90%);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.our-project-wrapper .project-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.our-project-wrapper .project-thumb .content {
  position: absolute;
  left: 25px;
  bottom: -25px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.our-project-wrapper .project-thumb .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--white);
}

.our-project-wrapper .project-thumb .content h3 a:hover {
  color: var(--white);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.our-project-wrapper .project-thumb .content p {
  color: var(--white);
  max-width: 400px;
  margin-top: 10px;
}

.our-project-wrapper .project-thumb:hover::before {
  opacity: 1;
  visibility: visible;
}

.our-project-wrapper .project-thumb:hover .content {
  opacity: 1;
  visibility: visible;
  bottom: 25px;
}

.our-project-wrapper .drone-thumb img {
  width: 100%;
  height: 100%;
}

.service-top-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 60px;
  margin-bottom: 60px;
}

@media (max-width: 1399px) {
  .service-top-item {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}

.service-top-item .count-item h2 {
  font-weight: 600;
  font-size: 200px;
  color: rgba(255, 255, 255, 0.2);
  line-height: 94%;
}

@media (max-width: 1399px) {
  .service-top-item .count-item h2 {
    font-size: 90px;
  }
}

.service-top-item .count-item p {
  font-size: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.2);
  max-width: 318px;
}

@media (max-width: 1399px) {
  .service-top-item .count-item p {
    font-size: 18px;
  }
}

.service-top-item .count-item.style-2 {
  margin-top: 90px;
}

@media (max-width: 1399px) {
  .service-top-item .count-item.style-2 {
    margin-top: 0;
  }
}

.service-top-item .count-item.active h2 {
  color: var(--white);
}

.service-top-item .count-item.active p {
  color: var(--white);
}

.service-top-item .tomato-image {
  margin-top: -120px;
}

@media (max-width: 1399px) {
  .service-top-item .tomato-image {
    display: none;
  }
}

.service-top-item .tomato-image img {
  width: 100%;
  height: 100%;
}

.service-main-box {
  background-color: var(--white);
  border-radius: 20px;
}

.service-main-box .service-item {
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
  padding: 40px 0;
  position: relative;
}

.service-main-box .service-item .text {
  display: flex;
  gap: 40px;
  align-items: start;
  margin-left: 40px;
}

@media (max-width: 1399px) {
  .service-main-box .service-item .text {
    gap: 20px;
    margin-left: 20px;
  }
}

.service-main-box .service-item .text span {
  font-weight: 600;
  color: var(--theme);
  font-size: 20px;
   font-family: "Cormorant Garamond", serif;
  display: inline-block;
}

.service-main-box .service-item .text h3 {
  font-size: 100px;
}

@media (max-width: 1399px) {
  .service-main-box .service-item .text h3 {
    font-size: 60px;
  }
}

@media (max-width: 991px) {
  .service-main-box .service-item .text h3 {
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .service-main-box .service-item .text h3 {
    font-size: 30px;
  }
}

.service-main-box .service-item .hover-image {
  width: 287px;
  height: 228px;
  position: absolute;
  top: 50%;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 75%;
  border-radius: 30px;
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  margin: -200px 0 0 -50px;
  overflow: hidden;
  pointer-events: none;
  z-index: 99;
  visibility: hidden;
  will-change: transform;
  filter: drop-shadow(0px 4px 150px #C8433A);
}

@media (max-width: 991px) {
  .service-main-box .service-item .hover-image {
    display: none !important;
  }
}

.service-main-box .service-item:hover .text h3 a {
  color: var(--theme);
}

.service-section {
  position: relative;
  z-index: 9;
}

.service-section .section-title-area {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 60px;
  margin-bottom: 60px !important;
}

@media (max-width: 1399px) {
  .service-section .section-title-area {
    padding-bottom: 30px;
    margin-bottom: 30px !important;
  }
}

@media (max-width: 1399px) {
  .service-section .section-title-area p {
    max-width: 600px;
  }
}

@media (max-width: 1199px) {
  .service-section .section-title-area p {
    max-width: 415px;
  }
}

@media (max-width: 991px) {
  .service-section .section-title-area p {
    max-width: initial;
  }
}

.service-section .tree-image {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.service-section .tree-image img {
  width: 100%;
  height: 100%;
}

.service-bg-item {
  position: relative;
  border-radius: 10px;
  height: 487px;
}

@media (max-width: 767px) {
  .service-bg-item {
    height: 430px;
  }
}

@media (max-width: 991px) {
  .service-bg-item {
    height: 506px;
  }
}

.service-bg-item::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(47, 47, 47, 0) 0%, #2F2F2F 100%);
  border-radius: 10px;
}

.service-bg-item .service-cont {
  position: absolute;
  left: 40px;
  bottom: 40px;
}

@media (max-width: 1399px) {
  .service-bg-item .service-cont {
    left: 30px;
    bottom: 30px;
  }
}

.service-bg-item .service-cont .theme-btn-2 {
  margin-top: 30px;
  border: 1px solid var(--theme2);
}

.service-bg-item .service-cont .theme-btn-2:hover {
  color: var(--theme2);
}

.service-card-items-2 {
  border-radius: 10px;
  background-color: rgb(250, 247, 240);
  padding: 30px;
  position: relative;
}

@media (max-width: 1399px) {
  .service-card-items-2 {
    padding: 24px;
  }
}

.service-card-items-2.style-2 {
  background-color: #F3FAF3;
}

.service-card-items-2.style-2::before {
  background-color: var(--theme3);
}

.service-card-items-2.style-2 h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  text-transform: capitalize;
}

@media (max-width: 1399px) {
  .service-card-items-2.style-2 h2 {
    font-size: 20px;
  }
}

@media (max-width: 1199px) {
  .service-card-items-2.style-2 h2 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .service-card-items-2.style-2 h2 {
    font-size: 20px;
  }
}

.service-card-items-2.style-2:hover .top-content .tag-list span {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-card-items-2.style-2:hover .top-content p {
  color: var(--white);
}

.service-card-items-2.style-2:hover h2 {
  position: relative;
}

.service-card-items-2.style-2:hover h2 a {
  color: var(--white);
}

.service-card-items-2::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 31px;
  background-color: var(--theme2);
  border-radius: 0px 100px 100px 0px;
  bottom: 30px;
  left: 0;
  transition: all 0.4s ease-in-out;
}

.service-card-items-2 .top-content .tag-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .service-card-items-2 .top-content .tag-list {
    flex-wrap: wrap;
  }
}

.service-card-items-2 .top-content .tag-list span {
  border: 1px solid rgba(47, 47, 47, 0.2);
  font-weight: 500;
  color: rgb(47, 47, 47);
  border-radius: 100px;
  padding: 3px 10px;
}

.service-card-items-2 .top-content p {
  max-width: 376px;
}

.service-card-items-2 .service-image {
  margin-top: 30px;
  margin-bottom: 30px;
  overflow: hidden;
}

.service-card-items-2 .service-image img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.service-card-items-2 .service-image::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

@media (max-width: 1399px) {
  .service-card-items-2 h3 {
    font-size: 20px;
  }
}

@media (max-width: 1199px) {
  .service-card-items-2 h3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .service-card-items-2 h3 {
    font-size: 20px;
  }
}

.service-card-items-2 h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.service-card-items-2 h3 a:hover {
  color: var(--header);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--header) 0%, var(--header) 100%);
}

.service-card-items-2:hover::before {
  width: 100%;
  height: 100%;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  border-radius: 10px;
}

.service-card-items-2:hover .service-image {
  position: relative;
  z-index: 999;
}

.service-card-items-2:hover .service-image::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.service-card-items-2:hover .top-content {
  position: relative;
  z-index: 999;
}

.service-card-items-2:hover h3 {
  position: relative;
  z-index: 999;
}

.service-card-items-2:hover h2 {
  position: relative;
  z-index: 999;
}

.service-card-items-2:hover .products-read-more-btn {
  position: relative;
  z-index: 1000;
}

.service-image-item {
  position: relative;
}

.service-image-item .slider-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.service-image-item .swiper-dot4 {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

.service-section-2 {
  position: relative;
  padding-top: 460px;
}

@media (max-width: 1600px) {
  .service-section-2 {
    padding-top: 400px;
  }
}

@media (max-width: 1399px) {
  .service-section-2 {
    padding-top: 100px;
  }
}

@media (max-width: 991px) {
  .service-section-2 {
    padding-top: 80px;
  }
}

.service-section-2 .mask-image {
  position: absolute;
  left: 60px;
  right: 60px;
  top: 110px;
}

@media (max-width: 1399px) {
  .service-section-2 .mask-image {
    display: none;
  }
}

.service-section-2 .mask-image img {
  width: 100%;
  height: 100%;
}

.service-box-itemss-3 {
  padding: 30px;
  border-radius: 10px;
  background-color: var(--white);
  border: none;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

@media (max-width: 1399px) {
  .service-box-itemss-3 {
    padding: 25px;
  }
}

.service-box-itemss-3 .service-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 10px;
}

.service-box-itemss-3 .service-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: inline-block;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  object-fit: cover;
}

.service-box-itemss-3 .service-image img:first-child {
  display: none !important;
}

.service-box-itemss-3 .content {
  margin-top: 30px;
}

.service-box-itemss-3 .content h3 {
  margin-bottom: 15px;
}

@media (max-width: 1399px) {
  .service-box-itemss-3 .content h3 {
    font-size: 20px;
  }
}

.service-box-itemss-3 .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  font-family: "Cormorant Garamond", serif;
}

.service-box-itemss-3 .content h3 a:hover {
  color: var(--theme3);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
}

.service-box-itemss-3 .content p {
  margin-bottom: 30px;
}

.service-box-itemss-3 .content .theme-btns {
  position: relative;
  margin-left: 15px;
}

.service-box-itemss-3 .content .theme-btns span {
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  margin-left: 5px;
}

.service-box-itemss-3 .content .theme-btns::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 8%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background-color: rgba(17, 162, 27, 0.1);
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
}

.service-box-itemss-3 .content .theme-btns:hover {
  color: var(--white);
}

.service-box-itemss-3 .content .theme-btns:hover img {
  filter: brightness(0) invert(1);
}

.service-box-itemss-3 .content .theme-btns:hover span {
  opacity: 1;
  visibility: visible;
  color: var(--white);
  position: relative;
  z-index: 999;
}

.service-box-itemss-3 .content .theme-btns:hover::before {
  width: 189px;
  left: 51%;
  background-color: var(--theme3);
}

.service-box-itemss-3 .content .tag-list {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 35px;
}

@media (max-width: 1399px) {
  .service-box-itemss-3 .content .tag-list {
    flex-wrap: wrap;
  }
}

.service-box-itemss-3 .content .tag-list span {
  border: 1px solid rgba(47, 47, 47, 0.2);
  font-weight: 500;
  color: rgb(142, 142, 142);
  border-radius: 100px;
  padding: 3px 15px;
  font-size: 15px;
  line-height: 1.6;
  white-space: nowrap;
}

.service-box-itemss-3 .content .tag-list a {
  text-decoration: none !important;
}

.service-box-itemss-3 .content .tag-list a span {
  transition: all 0.3s ease;
  display: inline-block;
}

.service-box-itemss-3 .content .tag-list a:hover span {
  background-color: var(--theme3);
  border-color: var(--theme3);
  color: var(--white) !important;
}

.service-box-itemss-3:hover {
  border: none;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(24, 76, 50, 0.08) !important;
}

.service-box-itemss-3:hover .service-image img {
  transform: scale(1.08);
}

/* Category Icon Badge — FA icon overlay on card image */
.category-icon-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--theme3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(17, 162, 27, 0.35);
  z-index: 3;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.category-icon-badge i {
  font-size: 22px;
  color: #fff;
  line-height: 1;
}

.service-box-itemss-3:hover .category-icon-badge {
  transform: scale(1.12) rotate(-8deg);
  box-shadow: 0 8px 24px rgba(17, 162, 27, 0.5);
}

/* Inline icon before the product name heading */
.cat-name-icon {
  font-size: 16px;
  /* color: var(--theme3); */
  color: #6f9139;
  margin-right: 4px;
  vertical-align: middle;
  transition: color 0.3s ease;
}

.service-box-itemss-3 .content h3 a:hover .cat-name-icon {
  color: var(--theme);
}

.service-content-3 {
  margin-left: 15px;
}

@media (max-width: 1399px) {
  .service-content-3 {
    margin-left: 0;
  }
}

.service-content-3 .text {
  max-width: 450px;
  margin-top: 15px;
}

.service-content-3 .arrow-button {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}

.service-content-3 .arrow-button .array-prev,
.service-content-3 .arrow-button .array-next {
  width: 48px;
  height: 48px;
  line-height: 35px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
}

.service-content-3 .arrow-button .array-prev img,
.service-content-3 .arrow-button .array-next img {
  transition: all 0.4s ease-in-out;
}

.service-content-3 .arrow-button .array-prev:hover,
.service-content-3 .arrow-button .array-next:hover {
  background-color: var(--theme3);
}

.service-content-3 .arrow-button .array-prev:hover img,
.service-content-3 .arrow-button .array-next:hover img {
  filter: brightness(0) invert(1);
}

.service-section-3 {
  position: relative;
}

.service-section-3 .service-slider {
  margin-left: -520px;
}

@media (max-width: 1399px) {
  .service-section-3 .service-slider {
    margin-left: 0;
  }
}

.service-section-3 .drone {
  position: absolute;
  bottom: 240px;
  right: 45px;
}

@media (max-width: 1600px) {
  .service-section-3 .drone {
    width: 280px;
  }
}

@media (max-width: 1399px) {
  .service-section-3 .drone {
    display: none;
  }
}

@keyframes borderRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.service-box-items-3 {
  background-color: transparent;
  border-radius: 10px;
  border: none;
  transition: all 0.4s ease-in-out;
  position: relative;
  padding: 30px;
  overflow: hidden;
  z-index: 1;
}

.service-box-items-3::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 70%, var(--theme3) 90%, var(--theme3) 100%);
  animation: borderRotate 3s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  z-index: 1;
}

.service-box-items-3::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--white);
  border: 3px solid #D9D9D9;
  border-radius: 10px;
  z-index: 2;
  box-sizing: border-box;
  transition: all 0.4s ease-in-out;
}

.service-box-items-3 h2 {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 60px;
  font-weight: 700;
  color: transparent;
  line-height: 94%;
  -webkit-text-stroke: 1px rgb(217, 217, 217);
  transition: all 0.4s ease-in-out;
  font-family: "Inter", sans-serif;
  z-index: 3;
}

.service-box-items-3 .icon {
  width: 90px;
  height: 90px;
  border-radius: 100px;
  background-color: var(--theme3);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.service-box-items-3 .icon i {
  font-size: 32px;
  color: var(--white);
}

.service-box-items-3 h3 {
  font-size: 24px;
  font-weight: 700;
  position: relative;
  z-index: 3;
}

.service-box-items-3 h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.service-box-items-3 h3 a:hover {
  color: var(--theme3);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
}

.service-box-items-3 p {
  max-width: 270px;
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
  z-index: 3;
}

.service-box-items-3 .plus-icon {
  position: relative;
  margin-left: 15px;
  color: var(--theme);
  z-index: 3;
}

.service-box-items-3 .plus-icon i {
  position: relative;
  z-index: 999;
}

.service-box-items-3 .plus-icon span {
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  margin-left: 5px;
}

.service-box-items-3 .plus-icon::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 8%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  border-radius: 50%;
  background-color: rgb(255, 246, 245);
  color: rgb(200, 67, 58);
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
}

.service-box-items-3 .plus-icon:hover {
  color: var(--white);
}

.service-box-items-3 .plus-icon:hover span {
  opacity: 1;
  visibility: visible;
  color: var(--white);
  position: relative;
  z-index: 999;
}

.service-box-items-3 .plus-icon:hover::before {
  width: 150px;
  left: 51%;
  background-color: var(--theme3);
}

.service-box-items-3:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0px 10px 40px rgba(75, 175, 71, 0.2);
}

.service-box-items-3:hover::before {
  opacity: 1;
}

.service-box-items-3:hover::after {
  inset: 4px;
  border-color: transparent;
  border-radius: 6px;
}

.service-box-items-3:hover .icon img,
.service-box-items-3:hover .icon i {
  animation: jello 1s;
}

.service-box-items-3:hover h2 {
  -webkit-text-stroke: 1px var(--theme3);
  color: var(--theme3);
}

.service-details-wrapper .service-top-img {
  border-radius: 12px;
}

.service-details-wrapper .service-top-img img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.service-details-wrapper .service-details-content {
  margin-top: 30px;
}

.service-details-wrapper .service-details-content h3 {
  font-size: 32px;
  font-weight: 600;
  margin-top: 30px;
}

.service-details-wrapper .service-details-content .service-list-items {
  display: flex;
  gap: 60px;
  margin-top: 30px;
}

@media (max-width: 1199px) {
  .service-details-wrapper .service-details-content .service-list-items {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.service-details-wrapper .service-details-content .service-list-items ul li {
  font-weight: 500;
}

.service-details-wrapper .service-details-content .service-list-items ul li i {
  color: var(--theme3);
  margin-right: 10px;
}

.service-details-wrapper .service-details-content .service-list-items ul li:not(:last-child) {
  margin-bottom: 15px;
}

.service-details-wrapper .service-details-content .service-box-area {
  margin-top: 40px;
}

.service-details-wrapper .service-details-content .service-box-area .service-box-items {
  background-color: var(--bg3);
  border-radius: 10px;
  padding: 30px 20px;
}

.service-details-wrapper .service-details-content .service-box-area .service-box-items .number {
  width: 38px;
  height: 38px;
  line-height: 38px;
  border-radius: 50%;
  background-color: var(--theme3);
  color: var(--white);
  font-size: 16px;
  display: block;
  text-align: center;
  font-weight: 700;
}

.service-details-wrapper .service-details-content .service-box-area .service-box-items h4 {
  font-size: 18px;
  font-weight: 500;
  max-width: 190px;
  margin-top: 20px;
}

.service-details-wrapper .service-details-content .service-box-area .service-box-items p {
  margin-top: 10px;
}

.service-details-wrapper .service-details-sidebar {
  margin-top: 30px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget {
  padding: 40px 35px;
  border-radius: 10px;
  background-color: var(--bg3);
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .service-details-wrapper .service-details-sidebar .sidebar-widget {
    padding: 30px;
  }
}

.service-details-wrapper .service-details-sidebar .sidebar-widget .sideber-title {
  margin-bottom: 25px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget .sideber-title h3 {
  font-size: 24px;
  font-weight: 500;
  display: inline-block;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget .sideber-title h3 i {
  color: var(--theme3);
  font-size: 16px;
  margin-right: 7px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image {
  position: relative;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(2, 2, 2, 0.4);
  border-radius: 8px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content {
  position: absolute;
  padding: 25px;
  bottom: 25px;
  left: 25px;
  right: 25px;
}

@media (max-width: 1399px) {
  .service-details-wrapper .service-details-sidebar .sidebar-widget-image .content {
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 20px;
  }
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content .icon {
  font-size: 70px;
  color: var(--white);
  margin-bottom: 35px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content h4 {
  margin-top: 15px;
  color: var(--white);
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
}

@media (max-width: 1399px) {
  .service-details-wrapper .service-details-sidebar .sidebar-widget-image .content h4 {
    font-size: 24px;
  }
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content .theme-btn {
  margin-top: 30px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content .theme-btn::before {
  background-color: var(--white);
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content .theme-btn::after {
  background: rgba(255, 255, 255, 0.3);
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content .theme-btn:hover {
  color: var(--theme3);
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .white-logo {
  position: absolute;
  top: 50px;
  left: 50px;
}

.service-details-wrapper .service-details-sidebar .service-list-item li {
  font-size: 16px;
  font-weight: 600;
   font-family: "Cormorant Garamond", serif;
}

.service-details-wrapper .service-details-sidebar .service-list-item li:not(:last-child) {
  margin-bottom: 10px;
}

.service-details-wrapper .service-details-sidebar .service-list-item li a {
  color: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  padding: 20px 24px;
  line-height: 1;
  border-radius: 8px;
}

.service-details-wrapper .service-details-sidebar .service-list-item li a:hover {
  background-color: var(--theme3);
  color: var(--white);
}

.services-card-items-4 {
  background-color: var(--white);
  margin-top: 30px;
  border-radius: 12px;
  border-top: 6px solid var(--theme3);
}

.services-card-items-4 .service-content {
  padding: 40px 40px 60px;
}

.services-card-items-4 .service-content h3 {
  margin-bottom: 15px;
}

@media (max-width: 1399px) {
  .services-card-items-4 .service-content h3 {
    font-size: 20px;
  }
}

.services-card-items-4 .service-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.services-card-items-4 .service-content h3 a:hover {
  color: var(--theme3);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
}

.services-card-items-4 .service-content p {
  margin-bottom: 30px;
}

.services-card-items-4 .service-content .plus-icon {
  position: relative;
  margin-left: 15px;
  color: var(--white);
}

.services-card-items-4 .service-content .plus-icon i {
  position: relative;
  z-index: 999;
}

.services-card-items-4 .service-content .plus-icon span {
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  margin-left: 5px;
}

.services-card-items-4 .service-content .plus-icon::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 8%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme3);
  color: var(--white);
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
}

.services-card-items-4 .service-content .plus-icon:hover {
  color: var(--white);
}

.services-card-items-4 .service-content .plus-icon:hover span {
  opacity: 1;
  visibility: visible;
  color: var(--white);
  position: relative;
  z-index: 999;
}

.services-card-items-4 .service-content .plus-icon:hover::before {
  width: 150px;
  left: 51%;
  background-color: var(--theme3);
}

.services-card-items-4 .service-image {
  position: relative;
  overflow: hidden;
}

.services-card-items-4 .service-image::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.services-card-items-4 .service-image img {
  width: 100%;
  height: 100%;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.services-card-items-4:hover .service-image::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.shop-card-items {
  margin-top: 30px;
  background-color: var(--bg3);
  border-radius: 10px;
}

.shop-card-items .shop-image {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.shop-card-items .shop-image img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.shop-card-items .shop-image .shop-icon {
  gap: 10px;
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  visibility: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s ease-in-out;
}

.shop-card-items .shop-image .shop-icon li a,
.shop-card-items .shop-image .shop-icon li button {
  background-color: var(--white);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 100px;
  display: inline-block;
  color: var(--theme3);
  text-align: center;
  transition: all 0.4s ease-in-out;
}

.shop-card-items .shop-image .shop-icon li a:hover,
.shop-card-items .shop-image .shop-icon li button:hover {
  background-color: var(--theme3);
  color: var(--white);
}

.shop-card-items .shop-image .discount {
  display: inline-block;
  padding: 6px 8px;
  line-height: 1;
  background-color: var(--theme3);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
   font-family: "Cormorant Garamond", serif;
  position: absolute;
  top: 16px;
  left: 16px;
  border-radius: 4px;
}

.shop-card-items .shop-content {
  padding: 30px 24px;
  padding-top: 24px;
  text-align: center;
}

.shop-card-items .shop-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.shop-card-items .shop-content h3 a:hover {
  color: var(--theme3);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
}

.shop-card-items .shop-content .price {
  font-weight: 500;
  color: var(--theme3);
}

.shop-card-items .shop-content .price .prev-price {
  color: var(--header);
  text-decoration: line-through;
  margin-right: 5px;
}

.shop-card-items:hover .shop-image .shop-icon {
  top: 50%;
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.shop-card-items:hover .shop-image img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.shop-section .shop-notices-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .shop-section .shop-notices-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.shop-section .shop-notices-wrapper .shop-showing p {
  color: var(--header);
  text-transform: uppercase;
}

.shop-section .shop-notices-wrapper .form .single-select {
  padding: 16px 20px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
  line-height: 1;
  height: initial;
  border: 1px solid rgba(47, 47, 47, 0.2);
  background: var(--bg);
  color: var(--header);
  border-radius: 6px;
}

.shop-section .shop-notices-wrapper .form .single-select::after {
  right: 20px;
  border-bottom: 2px solid var(--border);
  border-right: 2px solid var(--border);
  margin-top: -5px;
  width: 8px;
  height: 8px;
}

.shop-section .shop-notices-wrapper .form .single-select .option {
  color: var(--text);
}

.shop-section .shop-notices-wrapper .form .list {
  width: 100%;
}

.shop-section .shop-notices-wrapper .form-clt {
  max-width: 300px;
  width: 100%;
}

.shop-details-wrapper .shop-details-image {
  position: relative;
}

.shop-details-wrapper .shop-details-image .nav {
  display: flex;
  align-items: center;
  gap: 33px;
  margin-top: 20px;
}

.shop-details-wrapper .shop-details-image .nav img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.shop-details-wrapper .shop-details-image .nav .nav-link {
  padding: 0;
  max-width: 109px;
}

.shop-details-wrapper .shop-details-image .shop-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.shop-details-wrapper .product-details-content {
  margin-left: 60px;
}

@media (max-width: 1399px) {
  .shop-details-wrapper .product-details-content {
    margin-left: 30px;
  }
}

@media (max-width: 991px) {
  .shop-details-wrapper .product-details-content {
    margin-left: 0;
  }
}

.shop-details-wrapper .product-details-content h2 {
  font-size: 30px;
  font-weight: 500;
}

.shop-details-wrapper .product-details-content .star a {
  color: var(--theme3);
  font-size: 16px;
  font-weight: 600;
}

.shop-details-wrapper .product-details-content .star span {
  margin-left: 10px;
}

.shop-details-wrapper .product-details-content .price-list {
  gap: 20px;
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
  padding-bottom: 30px;
}

.shop-details-wrapper .product-details-content .price-list h3 {
  font-size: 22px;
  font-weight: 500;
}

.shop-details-wrapper .product-details-content .cart-wrp {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity {
  padding-right: 15px;
  margin-right: 15px;
}

.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity input {
  width: 50px;
  height: 38px;
  text-align: center;
  background-color: transparent;
  border: 1px solid rgba(47, 47, 47, 0.2);
  color: var(--header);
  transition: all 0.4s ease-in-out;
  margin-top: 2px;
  border-radius: 4px;
}

.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity input:hover {
  background: var(--theme3);
  color: var(--white);
  border-color: var(--theme3);
}

.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity .minus {
  color: var(--header);
  font-weight: 700;
}

.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity .plus {
  color: var(--header);
}

.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity .qty {
  color: var(--header);
}

.shop-details-wrapper .product-details-content .cart-wrp .icon {
  width: 50px;
  height: 40px;
  text-align: center;
  background-color: transparent;
  border: 1px solid rgba(47, 47, 47, 0.2);
  color: var(--header);
  line-height: 40px;
  border-radius: 4px;
}

.shop-details-wrapper .product-details-content .cart-wrp .icon:hover {
  background: var(--theme3);
  color: var(--white);
  border-color: var(--theme3);
}

.shop-details-wrapper .product-details-content .cart-wrp .social-profile {
  z-index: 2;
  display: flex;
  overflow: hidden;
  align-items: center;
}

.shop-details-wrapper .product-details-content .cart-wrp .social-profile ul {
  transform: translateX(-100px);
  transition: all 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
  display: flex;
}

.shop-details-wrapper .product-details-content .cart-wrp .social-profile ul li a {
  width: 50px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: block;
  background: transparent;
  border: 1px solid rgba(47, 47, 47, 0.2);
  border-left: 0 px solid var(--border);
  color: var(--header);
  transition: all 0.4s ease-in-out;
  text-align: center;
  margin: 0 auto;
  font-size: 12px;
  border-radius: 4px;
}

.shop-details-wrapper .product-details-content .cart-wrp .social-profile ul li a:hover {
  color: var(--white);
  background-color: var(--theme3);
}

.shop-details-wrapper .product-details-content .cart-wrp .social-profile .plus-btn {
  width: 50px;
  height: 40px;
  text-align: center;
  background-color: transparent;
  border: 1px solid rgba(47, 47, 47, 0.2);
  color: var(--header);
  line-height: 40px;
  cursor: pointer;
  border-radius: 4px;
}

.shop-details-wrapper .product-details-content .cart-wrp .social-profile:hover ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.shop-details-wrapper .product-details-content .cart-wrp .theme-btn {
  padding: 20px 35px;
}

@media (max-width: 575px) {
  .shop-details-wrapper .product-details-content .cart-wrp .theme-btn {
    padding: 15px 40px;
  }
}

.shop-details-wrapper .product-details-content .shop-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.shop-details-wrapper .product-details-content .shop-btn .theme-btn {
  padding: 14px 35px;
}

.shop-details-wrapper .product-details-content .shop-btn .theme-btn:nth-child(2) {
  background-color: transparent;
  background-color: transparent;
  color: var(--theme3);
  border: 1px solid var(--theme3);
}

.shop-details-wrapper .product-details-content .shop-btn .theme-btn:nth-child(2)::before,
.shop-details-wrapper .product-details-content .shop-btn .theme-btn:nth-child(2)::after {
  background-color: var(--theme3);
}

.shop-details-wrapper .product-details-content .shop-btn .theme-btn:nth-child(2):hover {
  color: var(--white);
}

.shop-details-wrapper .product-details-content .details-info {
  position: relative;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 600;
}

.shop-details-wrapper .product-details-content .details-info span {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  margin-right: 5px;
  font-family: "Inter", sans-serif;
}

.shop-details-wrapper .product-details-content .details-info a {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  text-transform: capitalize;
}

.shop-details-wrapper .product-details-content .details-info.style-2 a b {
  border: 1px solid #e6e6e6;
  padding: 4px 12px 6px;
  font-weight: 400;
  font-size: 14px;
  border-radius: 5px;
  transition: all 0.4s ease-in-out;
  text-transform: uppercase;
}

.shop-details-wrapper .product-details-content .details-info.style-2 a b:hover {
  background-color: var(--theme3);
  color: var(--white);
}

.single-tab {
  padding-top: 80px;
}

@media (max-width: 575px) {
  .single-tab {
    padding-top: 50px;
  }
}

.single-tab .nav {
  justify-content: center;
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
  padding-bottom: 20px;
}

.single-tab .nav .nav-link h3 {
  font-size: 16px;
  font-weight: 600;
}

.single-tab .nav .nav-link.active {
  position: relative;
}

.single-tab .nav .nav-link.active h3 {
  color: var(--theme3);
  font-size: 16px;
  font-weight: 600;
}

.single-tab .nav .nav-link.active::before {
  position: absolute;
  bottom: -21px;
  left: 0;
  height: 2px;
  width: 100%;
  content: "";
  background: var(--theme3);
  transition: 0.3s;
}

@media (max-width: 575px) {
  .single-tab .nav .nav-link.active::before {
    display: none;
  }
}

.single-tab .description-items .description-content {
  margin-right: 50px;
}

@media (max-width: 1399px) {
  .single-tab .description-items .description-content {
    margin-right: 30px;
  }
}

@media (max-width: 991px) {
  .single-tab .description-items .description-content {
    margin-right: 0;
  }
}

.single-tab .description-items .description-content h3 {
  margin-bottom: 15px;
}

.single-tab .description-items .description-content .description-list-items {
  margin-top: 30px;
}

@media (max-width: 575px) {
  .single-tab .description-items .description-content .description-list-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.single-tab .description-items .description-content .description-list-items .description-list li {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--theme3);
  font-weight: 500;
}

.single-tab .description-items .description-content .description-list-items .description-list li span {
  color: var(--text);
  font-weight: 400;
}

.single-tab .description-items .description-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .single-tab .review-items .admin-items {
    justify-content: center;
    gap: 30px;
  }
}

.single-tab .review-items .admin-items .admin-img {
  width: 100px;
  height: 100px;
}

.single-tab .review-items .admin-items .admin-img img {
  border-radius: 50%;
}

.single-tab .review-items .admin-items .content {
  position: relative;
  border: 1px solid rgba(47, 47, 47, 0.2);
}

.single-tab .review-items .admin-items .content::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background-color: var(--white);
  border-left: 1px solid rgba(47, 47, 47, 0.2);
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
  transform: rotate(45deg);
  top: 40%;
  left: -16px;
}

@media (max-width: 575px) {
  .single-tab .review-items .admin-items .content::before {
    display: none;
  }
}

.single-tab .review-items .admin-items .content .head-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: start;
}

@media (max-width: 1399px) {
  .single-tab .review-items .admin-items .content .head-content {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.single-tab .review-items .admin-items .content .head-content .content1 {
  margin-bottom: 10px;
}

.single-tab .review-items .admin-items .content .head-content .content1 h4 {
  font-size: 18px;
  font-weight: 700;
}

.single-tab .review-items .admin-items .content .head-content .content1 .star {
  margin-top: 5px;
}

.single-tab .review-items .admin-items .content .head-content .content1 .star i {
  font-size: 16px;
  color: var(--theme3);
}

.single-tab .review-items .admin-items .content .head-content span {
  font-size: 14px;
  margin-left: 30px;
}

.single-tab .review-title .rate-now {
  margin-top: 15px;
  gap: 15px;
}

.single-tab .review-title .rate-now p {
  font-size: 16px;
  text-transform: uppercase;
}

.single-tab .review-title .rate-now i {
  font-size: 16px;
  color: #ff9200;
}

.single-tab .review-form {
  margin-top: 40px;
}

.single-tab .review-form .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  padding: 18px 35px;
  color: var(--text);
  background-color: rgb(245, 245, 245);
  font-size: 14px;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .single-tab .review-form .form-clt input {
    padding: 15px 20px;
  }
}

.single-tab .review-form .form-clt-big textarea {
  padding: 18px 35px 170px;
  width: 100%;
  outline: none;
  color: var(--text);
  background-color: rgb(245, 245, 245);
  font-size: 14px;
  border: none;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .single-tab .review-form .form-clt-big textarea {
    padding: 15px 20px;
  }
}

.cart-list-area .coupon-items input {
  background: #F5F6FA;
  border: none;
  padding: 18px 30px;
  color: var(--text);
  line-height: 1;
  border-radius: 6px;
}

.cart-list-area .top-content {
  margin-bottom: 60px;
}

.cart-list-area .top-content .list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
}

.cart-list-area .top-content .list li {
  position: relative;
}

.cart-list-area .top-content .list li:not(:last-child)::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  left: 50px;
  top: 13px;
  border-radius: 30px;
  background-color: #A8ACB0;
}

.cart-list-area .common-table {
  min-width: -moz-max-content;
  min-width: max-content;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.cart-list-area .common-table .cart-item-thumb {
  width: 86px;
}

@media (max-width: 1399px) {
  .cart-list-area .common-table .cart-item-thumb {
    flex-wrap: wrap;
  }
}

.cart-list-area .common-table .cart-item-thumb .head {
  color: var(--header);
  font-size: 20px;
  text-transform: capitalize;
   font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

.cart-list-area .common-table .price-usd {
  font-size: 16px;
  font-weight: 500;
  color: #666C78;
}

.cart-list-area .common-table tr {
  border-bottom: 1px solid #E4E4E5;
}

.cart-list-area .common-table thead,
.cart-list-area .common-table tbody {
  width: 100%;
}

.cart-list-area .common-table thead tr,
.cart-list-area .common-table tbody tr {
  width: 100%;
  display: flex;
  box-sizing: border-box;
}

.cart-list-area .common-table thead tr th,
.cart-list-area .common-table thead tr td,
.cart-list-area .common-table tbody tr th,
.cart-list-area .common-table tbody tr td {
  width: 100%;
  box-sizing: border-box;
}

.cart-list-area .common-table thead tr {
  color: #1B1F2A;
  border-bottom: unset;
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid #E4E4E5;
}

.cart-list-area .common-table thead tr th {
  background: unset;
  color: unset;
  border: unset;
  font-size: 16px;
  padding-bottom: 16px;
  text-transform: capitalize;
}

.cart-list-area .common-table tbody tr td {
  background: transparent;
  color: unset;
  box-sizing: border-box;
  border-bottom: unset;
}

.cart-list-area .quantity button i {
  font-size: 16px;
}

.cart-list-area .quantity .quantityValue {
  width: 40px;
  text-align: center;
  padding: 0;
  color: #000;
  border: unset;
}

.checkout-single-wrapper .checkout-single h2 {
  color: var(--header);
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 20px;
}

.checkout-single-wrapper .checkout-single h3 {
  font-size: 20px;
  font-weight: 700;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single input {
  width: 100%;
  outline: none;
  box-shadow: none;
  border: 1px solid rgba(47, 47, 47, 0.2);
  padding: 12px 24px;
  color: var(--header);
  text-transform: capitalize;
  font-weight: 400;
  background-color: transparent;
  border-radius: 6px;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single label {
  color: var(--text);
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 10px;
  font-weight: 500;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single ::placeholder {
  color: var(--text);
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .single-select {
  border: 1px solid rgba(47, 47, 47, 0.2);
  border-radius: 6px;
  color: var(--text);
  background-color: transparent;
  padding: 4px 15px;
  height: 50px;
  font-weight: 400;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .single-select .list {
  width: 100%;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .payment {
  color: var(--header);
  margin-bottom: 12px;
  text-transform: capitalize;
}

.checkout-single-wrapper .boxshado-single {
  margin-bottom: 24px;
}

.checkout-single-wrapper .checkout-single-bg .theme-btn {
  border-radius: 8px;
}

.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single input {
  border: 1px solid rgba(47, 47, 47, 0.2);
  background: transparent;
  text-transform: capitalize;
}

.checkout-single-wrapper .checkout-single-bg .payment-save {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.checkout-single-wrapper .checkout-single-bg .payment-save .form-check-input {
  width: 24px;
  height: 24px;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid rgba(47, 47, 47, 0.2);
}

.checkout-single-wrapper .checkout-single-bg .payment-save .form-check-input:checked {
  background-color: var(--theme3);
}

.checkout-single-wrapper .checkout-single-bg .payment-save .form-check-input {
  transition: background-color 0.3s ease;
}

.checkout-single-wrapper .checkout-single-bg .payment-save label {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.checkout-radio .primary-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 16px;
  color: var(--header);
  text-transform: capitalize;
}

.checkout-radio h4 {
  color: var(--header);
  margin-bottom: 16px;
  font-weight: 600;
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single .form-check-input {
  background-color: transparent;
  border: 1px solid rgba(47, 47, 47, 0.2);
  border-radius: 100px;
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single .form-check-input:checked {
  background-color: var(--theme3);
  border-color: var(--theme3);
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single .form-check-input:focus {
  border-color: none;
  outline: 0;
  box-shadow: none;
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single label {
  color: var(--text);
  text-transform: capitalize;
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single:not(:last-child) {
  margin-bottom: 12px;
}

.shop-grid-section .shop-notices-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .shop-grid-section .shop-notices-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.shop-grid-section .shop-notices-wrapper .shop-showing p {
  color: var(--header);
  text-transform: uppercase;
}

.shop-grid-section .shop-notices-wrapper .form .single-select {
  padding: 16px 20px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
  line-height: 1;
  height: initial;
  border: 1px solid var(--theme);
  background: var(--bg);
  color: var(--header);
  border-radius: 0;
}

.shop-grid-section .shop-notices-wrapper .form .single-select::after {
  right: 20px;
  border-bottom: 2px solid var(--border);
  border-right: 2px solid var(--border);
  margin-top: -5px;
  width: 8px;
  height: 8px;
}

.shop-grid-section .shop-notices-wrapper .form .single-select .option {
  color: var(--text);
}

.shop-grid-section .shop-notices-wrapper .form .list {
  width: 100%;
}

.shop-grid-section .shop-notices-wrapper .form-clt {
  max-width: 300px;
  width: 100%;
}

.team-section {
  position: relative;
}

.team-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(47, 47, 47, 0.9);
}

.team-section .section-title-area {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 48px;
  margin-bottom: 48px !important;
}

@media (max-width: 1399px) {
  .team-section .section-title-area {
    padding-bottom: 30px;
    padding-bottom: 30px !important;
  }
}

.team-section .section-title-area .arrow-button {
  display: flex;
  align-items: center;
  gap: 12px;
}

.team-section .section-title-area .arrow-button .array-prev,
.team-section .section-title-area .arrow-button .array-next {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
}

.team-section .section-title-area .arrow-button .array-prev img,
.team-section .section-title-area .arrow-button .array-next img {
  transition: all 0.4s ease-in-out;
}

.team-section .section-title-area .arrow-button .array-prev:hover,
.team-section .section-title-area .arrow-button .array-next:hover {
  background-color: var(--theme3);
}

.team-section .section-title-area .arrow-button .array-prev:hover img,
.team-section .section-title-area .arrow-button .array-next:hover img {
  filter: brightness(0) invert(1);
}

.team-section .team-slider {
  margin-right: -450px;
}

@media (max-width: 1600px) {
  .team-section .team-slider {
    margin-right: -200px;
  }
}

@media (max-width: 1399px) {
  .team-section .team-slider {
    margin-right: 0;
  }
}

.team-card-item .team-image {
  position: relative;
  overflow: hidden;
}

.team-card-item .team-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(17, 162, 27, 0) 50%, #11A21B 90%);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.team-card-item .team-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.team-card-item .team-image .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  bottom: -150px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.team-card-item .team-image .social-icon a {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 100px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.team-card-item .team-image .social-icon a:hover {
  background-color: var(--theme3);
  border: 1px solid var(--theme3);
}

.team-card-item .team-image .team-content {
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  bottom: -30px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.team-card-item .team-image .team-content h3 {
  margin-bottom: 5px;
}

@media (max-width: 1399px) {
  .team-card-item .team-image .team-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .team-card-item .team-image .team-content h3 {
    font-size: 20px;
  }
}

.team-card-item .team-image .team-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--white);
}

.team-card-item .team-image .team-content h3 a:hover {
  color: var(--white);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.team-card-item .team-image .team-content p {
  color: rgb(255, 255, 255);
  font-weight: 500;
}

.team-card-item:hover .team-image::before {
  opacity: 1;
  visibility: visible;
}

.team-card-item:hover .team-image .social-icon {
  bottom: 150px;
  opacity: 1;
  visibility: visible;
}

.team-card-item:hover .team-image .team-content {
  bottom: 30px;
  opacity: 1;
  visibility: visible;
}

.team-card-items-2 {
  border: 1px solid #D9D9D9;
  text-align: center;
  padding: 30px;
  margin-top: 30px;
  overflow: hidden;
  border-radius: 10px;
}

.team-card-items-2 .team-image {
  position: relative;
  overflow: hidden;
}

.team-card-items-2 .team-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(17, 162, 27, 0) 50%, #11A21B 90%);
  border-radius: 1000px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.team-card-items-2 .team-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.team-card-items-2 .team-image .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  bottom: -100px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.team-card-items-2 .team-image .social-icon a {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 100px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.team-card-items-2 .team-image .social-icon a:hover {
  background-color: var(--theme3);
  border: 1px solid var(--theme3);
}

.team-card-items-2 .team-content {
  margin-top: 30px;
  text-align: center;
}

.team-card-items-2 .team-content h3 {
  margin-bottom: 5px;
}

@media (max-width: 1399px) {
  .team-card-items-2 .team-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .team-card-items-2 .team-content h3 {
    font-size: 20px;
  }
}

.team-card-items-2 .team-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.team-card-items-2 .team-content h3 a:hover {
  color: var(--white);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.team-card-items-2 .team-content p {
  font-weight: 500;
}

.team-card-items-2:hover .team-image::before {
  opacity: 1;
  visibility: visible;
}

.team-card-items-2:hover .team-image .social-icon {
  bottom: 100px;
  opacity: 1;
  visibility: visible;
}

.team-details-wrapper .team-details-image {
  overflow: hidden;
  border-radius: 12px;
}

.team-details-wrapper .team-details-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.team-details-wrapper .team-details-content {
  margin-left: 30px;
  background-color: var(--bg3);
  border-radius: 10px;
  padding: 45px 40px;
}

@media (max-width: 1199px) {
  .team-details-wrapper .team-details-content {
    margin-left: 0;
  }
}

.team-details-wrapper .team-details-content .offer {
  background-color: var(--theme3);
  color: var(--white);
  padding: 8px 10px;
  border-radius: 6px;
}

.team-details-wrapper .team-details-content h2 {
  margin-top: 30px;
}

.team-details-wrapper .team-details-content .team-infrom {
  margin-top: 30px;
}

.team-details-wrapper .team-details-content .team-infrom li {
  display: flex;
  gap: 100px;
  align-items: center;
  color: var(--header);
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 1199px) {
  .team-details-wrapper .team-details-content .team-infrom li {
    display: grid;
    gap: 20px;
  }
}

.team-details-wrapper .team-details-content .team-infrom li span {
  color: var(--header);
  font-size: 16px;
  font-weight: 500;
  flex-basis: 28%;
}

.team-details-wrapper .team-details-content .team-infrom li:not(:last-child) {
  margin-bottom: 12px;
}

.team-details-wrapper .team-details-content h3 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 60px;
}

.team-details-wrapper .team-details-content .social-icon {
  display: flex;
  margin-top: 30px;
  gap: 15px;
}

.team-details-wrapper .team-details-content .social-icon a {
  color: var(--theme);
  background: var(--white);
  width: 48px;
  height: 48px;
  line-height: 48px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
}

.team-details-wrapper .team-details-content .social-icon a:hover {
  background-color: var(--theme3);
  color: var(--white);
}

.team-details-wrapper .team-middle-items .team-skill-area {
  margin-top: 60px;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content {
  margin-right: 60px;
}

@media (max-width: 1199px) {
  .team-details-wrapper .team-middle-items .team-skill-area .skill-content {
    margin-right: 0;
  }
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items {
  width: 100%;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 30px;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .pro-head .title {
  color: var(--header);
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color: var(--header);
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .progress {
  background-color: rgba(17, 162, 27, 0.5);
  justify-content: flex-start;
  align-items: center;
  position: relative;
  display: flex;
  height: 6px;
  width: 100%;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme3);
  height: 6px;
  width: 0;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}

@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 69%;
  }
}

@keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 80%;
  }
}

@keyframes load3 {
  0% {
    width: 0;
  }

  100% {
    width: 98%;
  }
}

.team-details-wrapper .team-middle-items .team-skill-area .career-content h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.team-details-wrapper .team-middle-items .team-skill-area .career-content ul li {
  display: flex;
  gap: 20px;
}

.team-details-wrapper .team-middle-items .team-skill-area .career-content ul li:not(:last-child) {
  margin-bottom: 20px;
}

.team-details-wrapper .team-bottom-items {
  margin-top: 120px;
  border-radius: 10px;
  background: var(--bg3);
  padding: 80px 60px;
}

@media (max-width: 1199px) {
  .team-details-wrapper .team-bottom-items {
    margin-top: 100px;
    padding: 50px;
  }
}

@media (max-width: 991px) {
  .team-details-wrapper .team-bottom-items {
    margin-top: 80px;
  }
}

@media (max-width: 767px) {
  .team-details-wrapper .team-bottom-items {
    padding: 40px 30px;
  }
}

@media (max-width: 575px) {
  .team-details-wrapper .team-bottom-items {
    padding: 30px;
  }
}

.team-details-wrapper .team-bottom-items .team-left-items p {
  margin-top: 20px;
}

.team-details-wrapper .team-bottom-items .team-left-items .phone-icon {
  display: flex;
  gap: 10px;
  border-radius: 70px;
  border: 1px solid #3D4857;
  display: inline-flex;
  padding: 20px;
  font-weight: 600;
  line-height: 1;
  margin-top: 30px;
}

.team-details-wrapper .team-bottom-items .team-left-items .phone-icon .icon {
  color: var(--header);
}

.team-details-wrapper .team-bottom-items .team-right-items {
  margin-left: 80px;
}

@media (max-width: 1199px) {
  .team-details-wrapper .team-bottom-items .team-right-items {
    margin-left: 0;
  }
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box {
  margin-top: 30px;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt input,
.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt textarea {
  outline: none;
  width: 100%;
  color: var(--header);
  padding-bottom: 20px;
  border: none;
  background: transparent;
  border-bottom: 1px solid rgba(15, 23, 42, 0.2);
  text-transform: capitalize;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt input::placeholder,
.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt textarea::placeholder {
  color: var(--header);
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt textarea {
  padding-bottom: 120px;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select {
  border: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.2);
  background-color: transparent;
  width: 100%;
  height: initial;
  line-height: initial;
  text-transform: capitalize;
  color: var(--header);
  padding-bottom: 20px;
  border-radius: 0;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select .current {
  color: var(--header);
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select::after {
  border-bottom: 2px solid var(--header);
  border-right: 2px solid var(--header);
  width: 8px;
  height: 8px;
  right: 12px;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select .list {
  width: 100%;
}

.team-card-items-4 {
  margin-top: 30px;
  position: relative;
  z-index: 9;
  transition: all 0.4s ease-in-out;
  padding-bottom: 50px;
}

.team-card-items-4::before {
  position: absolute;
  content: "";
  border: 1px solid var(--theme3);
  border-radius: 10px;
  top: -15px;
  left: -12px;
  width: 100%;
  height: 80%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1399px) {
  .team-card-items-4::before {
    display: none;
  }
}

.team-card-items-4 .team-image {
  position: relative;
  overflow: hidden;
}

.team-card-items-4 .team-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.team-card-items-4 .team-image .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  bottom: -50px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.team-card-items-4 .team-image .social-icon a {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 100px;
  color: var(--white);
  background-color: var(--header);
  text-align: center;
}

.team-card-items-4 .team-image .social-icon a:hover {
  background-color: var(--theme3);
}

.team-card-items-4 .team-content {
  margin-top: 30px;
  text-align: center;
}

.team-card-items-4 .team-content h3 {
  margin-bottom: 5px;
}

@media (max-width: 1399px) {
  .team-card-items-4 .team-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .team-card-items-4 .team-content h3 {
    font-size: 20px;
  }
}

.team-card-items-4 .team-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.team-card-items-4 .team-content h3 a:hover {
  color: var(--theme3);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
}

.team-section-4 {
  border-radius: 20px;
  margin: 0 80px;
  position: relative;
}

@media (max-width: 1600px) {
  .team-section-4 {
    margin: 0 50px;
  }
}

@media (max-width: 1399px) {
  .team-section-4 {
    margin: 0 30px;
  }
}

@media (max-width: 575px) {
  .team-section-4 {
    margin: 0 15px;
  }
}

.team-section-4 .arrow-button {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 999;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 100px;
  right: 100px;
  transform: translateY(-50%);
  z-index: 99;
}

@media (max-width: 1399px) {
  .team-section-4 .arrow-button {
    display: none;
  }
}

.team-section-4 .arrow-button .array-prev,
.team-section-4 .arrow-button .array-next {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 100px;
  border: 1px solid var(--theme3);
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 999;
  display: inline-block;
}

.team-section-4 .arrow-button .array-prev img,
.team-section-4 .arrow-button .array-next img {
  transition: all 0.4s ease-in-out;
}

.team-section-4 .arrow-button .array-prev:hover,
.team-section-4 .arrow-button .array-next:hover {
  background-color: var(--theme3);
}

.team-section-4 .arrow-button .array-prev:hover img,
.team-section-4 .arrow-button .array-next:hover img {
  filter: brightness(0) invert(1);
}

.team-section-4 .swiper-slide.swiper-slide-active .team-card-items-4 {
  transform: translateY(50px);
}

.team-section-4 .swiper-slide.swiper-slide-active .team-card-items-4::before {
  opacity: 1;
  visibility: visible;
}

.team-section-4 .swiper-slide.swiper-slide-active .team-card-items-4 .team-image .social-icon {
  opacity: 1;
  visibility: visible;
  bottom: 50px;
}

.testimonial-box-item {
  background-color: var(--bg);
  position: relative;
  text-align: center;
  padding: 30px;
  border-radius: 24px;
}

@media (max-width: 1600px) {
  .testimonial-box-item {
    padding: 20px;
  }
}

@media (max-width: 1399px) {
  .testimonial-box-item {
    padding: 30px;
  }
}

.testimonial-box-item::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  transform: scale(0.1, 1);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  background-color: var(--theme);
  border-radius: 12px;
}

.testimonial-box-item .content {
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.testimonial-box-item .content .client-image {
  transition: all 0.4s ease-in-out;
}

.testimonial-box-item .content h4 {
  margin-top: 10px;
}

.testimonial-box-item .content span {
  font-weight: 500;
  color: rgb(80, 98, 74);
}

.testimonial-box-item p {
  margin: 0 auto;
  font-style: italic;
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
}

@media (max-width: 1600px) {
  .testimonial-box-item p {
    font-size: 16px;
  }
}

@media (max-width: 1399px) {
  .testimonial-box-item p {
    font-size: 14px;
  }
}

@media (max-width: 1199px) {
  .testimonial-box-item p {
    font-size: 16px;
  }
}

.testimonial-box-item .star {
  color: rgb(255, 127, 34);
  margin-top: 10px;
  font-size: 20px;
}

.testimonial-box-item .star i {
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonial-box-item:hover:before {
  opacity: 1;
  transform: scale(1, 1);
}

.testimonial-box-item:hover .content {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
}

.testimonial-box-item:hover .content .client-image {
  transform: rotateY(180deg);
  display: inline-block;
}

.testimonial-box-item:hover .content h4 {
  color: var(--white);
}

.testimonial-box-item:hover .content span {
  color: var(--white);
}

.testimonial-box-item:hover p {
  color: var(--white);
  position: relative;
}

.testimonial-box-item:hover .star {
  color: var(--white);
  position: relative;
}

.testimonial-box-item-bg {
  background-color: rgb(79, 127, 58);
  padding: 25px;
  border-radius: 24px;
}

@media (max-width: 1600px) {
  .testimonial-box-item-bg .section-title h2 {
    font-size: 40px;
  }
}

@media (max-width: 1399px) {
  .testimonial-box-item-bg .section-title h2 {
    font-size: 35px !important;
  }
}

@media (max-width: 991px) {
  .testimonial-box-item-bg .section-title h2 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .testimonial-box-item-bg .section-title h2 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .testimonial-box-item-bg .section-title h2 {
    font-size: 30px;
  }
}

@media (max-width: 470px) {
  .testimonial-box-item-bg .section-title h2 {
    font-size: 30px;
  }
}

.testimonial-box-item-bg .text {
  max-width: 340px;
  margin-top: 10px;
}

.testimonial-box-item-bg .test-button {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

@media (max-width: 1600px) {
  .testimonial-box-item-bg .test-button {
    gap: 9px;
  }
}

@media (max-width: 1199px) {
  .testimonial-box-item-bg .test-button {
    flex-wrap: wrap;
  }
}

.testimonial-box-item-bg .test-button .theme-btn {
  background-color: rgb(200, 67, 58);
}

@media (max-width: 1600px) {
  .testimonial-box-item-bg .test-button .theme-btn {
    padding: 15px 20px 15px;
  }
}

@media (max-width: 1399px) {
  .testimonial-box-item-bg .test-button .theme-btn {
    padding: 15px 10px 15px;
  }
}

@media (max-width: 1199px) {
  .testimonial-box-item-bg .test-button .theme-btn {
    padding: 15px 20px 15px;
  }
}

.testimonial-box-item-bg .test-button .theme-btn::before {
  background-color: var(--white);
}

.testimonial-box-item-bg .test-button .theme-btn::after {
  background: rgba(255, 255, 255, 0.3);
}

.testimonial-box-item-bg .test-button .theme-btn:hover {
  color: var(--theme);
}

.testimonial-box-item-bg .test-button .theme-btn.style-2 {
  background-color: var(--white);
  color: var(--theme);
}

.testimonial-box-item-bg .test-button .theme-btn.style-2::before {
  background-color: var(--theme);
}

.testimonial-box-item-bg .test-button .theme-btn.style-2::after {
  background-color: var(--theme);
}

.testimonial-box-item-bg .test-button .theme-btn.style-2:hover {
  color: var(--white);
}

.testimonial-section {
  position: relative;
}

.testimonial-section .right-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 1600px) {
  .testimonial-section .right-shape {
    right: -115px;
  }
}

@media (max-width: 1399px) {
  .testimonial-section .right-shape {
    display: none;
  }
}

.testimonial-wrapper-2 {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px;
  margin-top: 48px;
}

@media (max-width: 575px) {
  .testimonial-wrapper-2 {
    margin-top: 30px;
  }
}

.testimonial-wrapper-2 .testimonial-card-item-2 {
  position: relative;
  text-align: center;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgb(245, 216, 62);
}

@media (max-width: 1600px) {
  .testimonial-wrapper-2 .testimonial-card-item-2 {
    padding: 20px;
  }
}

@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-card-item-2 {
    padding: 30px;
  }
}

.testimonial-wrapper-2 .testimonial-card-item-2::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  transform: scale(0.1, 1);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  background-color: var(--theme2);
  border-radius: 20px;
}

.testimonial-wrapper-2 .testimonial-card-item-2 .content {
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.testimonial-wrapper-2 .testimonial-card-item-2 .content .client-image {
  transition: all 0.4s ease-in-out;
}

.testimonial-wrapper-2 .testimonial-card-item-2 .content h3 {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  text-transform: capitalize;
}

.testimonial-wrapper-2 .testimonial-card-item-2 .content span {
  font-weight: 500;
  color: rgb(80, 98, 74);
}

.testimonial-wrapper-2 .testimonial-card-item-2 p {
  margin: 0 auto;
  font-style: italic;
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
}

@media (max-width: 1600px) {
  .testimonial-wrapper-2 .testimonial-card-item-2 p {
    font-size: 18px;
  }
}

@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-card-item-2 p {
    font-size: 14px;
  }
}

@media (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonial-card-item-2 p {
    font-size: 16px;
  }
}

.testimonial-wrapper-2 .testimonial-card-item-2 .star {
  color: rgb(255, 127, 34);
  margin-top: 10px;
  font-size: 20px;
}

.testimonial-wrapper-2 .testimonial-card-item-2 .star i {
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonial-wrapper-2 .testimonial-card-item-2:hover:before {
  opacity: 1;
  transform: scale(1, 1);
}

.testimonial-wrapper-2 .testimonial-card-item-2:hover .content {
  position: relative;
}

.testimonial-wrapper-2 .testimonial-card-item-2:hover .content .client-image {
  transform: rotateY(180deg);
  display: inline-block;
}

.testimonial-wrapper-2 .testimonial-card-item-2:hover p {
  position: relative;
}

.testimonial-wrapper-2 .testimonial-card-item-2:hover .star {
  position: relative;
  color: var(--header);
}

.testimonial-section-2 {
  position: relative;
  z-index: 9;
  padding-top: 240px !important;
}

@media (max-width: 1399px) {
  .testimonial-section-2 {
    padding-top: 100px !important;
  }
}

@media (max-width: 991px) {
  .testimonial-section-2 {
    padding-top: 80px !important;
  }
}

.testimonial-section-2 .client-man {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: -1;
}

@media (max-width: 1600px) {
  .testimonial-section-2 .client-man {
    height: 885px;
  }

  .testimonial-section-2 .client-man img {
    object-fit: cover;
  }
}

@media (max-width: 1399px) {
  .testimonial-section-2 .client-man {
    display: none;
    height: 885px;
  }
}

.testimonial-section-2 .client-man img {
  width: 100%;
  height: 100%;
}

.testimonial-section-2 .testimonial-top-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .testimonial-section-2 .testimonial-top-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.testimonial-section-2 .testimonial-top-item .right-item {
  display: flex;
  align-items: center;
  gap: 60px;
}

@media (max-width: 1199px) {
  .testimonial-section-2 .testimonial-top-item .right-item {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.testimonial-section-2 .testimonial-top-item .right-item .arrow-button {
  display: flex;
  align-items: center;
  gap: 20px;
  border-left: 1px solid rgba(47, 47, 47, 0.2);
  padding-left: 50px;
}

@media (max-width: 1199px) {
  .testimonial-section-2 .testimonial-top-item .right-item .arrow-button {
    padding-left: 0;
    border-left: none;
  }
}

.testimonial-section-2 .testimonial-top-item .right-item .arrow-button .array-prev {
  background-color: var(--header);
  width: 60px;
  height: 60px;
  border-radius: 100px;
  line-height: 60px;
  color: var(--theme);
  font-size: 18px;
  z-index: 9;
  transition: all 0.4s ease-in-out;
}

.testimonial-section-2 .testimonial-top-item .right-item .arrow-button .array-prev img {
  transition: all 0.4s ease-in-out;
}

.testimonial-section-2 .testimonial-top-item .right-item .arrow-button .array-prev:hover {
  color: var(--header);
  background-color: var(--theme2);
}

.testimonial-section-2 .testimonial-top-item .right-item .arrow-button .array-prev:hover img {
  filter: grayscale(100%) brightness(0.3) contrast(1.2);
}

.testimonial-section-2 .testimonial-top-item .right-item .arrow-button .array-next {
  z-index: 999;
  transition: all 0.4s ease-in-out;
  background-color: var(--header);
  width: 60px;
  height: 60px;
  border-radius: 100px;
  line-height: 60px;
}

.testimonial-section-2 .testimonial-top-item .right-item .arrow-button .array-next img {
  filter: brightness(0) invert(1);
  transition: all 0.4s ease-in-out;
}

.testimonial-section-2 .testimonial-top-item .right-item .arrow-button .array-next:hover {
  background-color: var(--theme2);
}

.testimonial-section-2 .testimonial-top-item .right-item .arrow-button .array-next:hover img {
  filter: grayscale(100%) brightness(0.3) contrast(1.2);
}

.testimonial-wrapper-3 {
  margin-top: 48px;
}

@media (max-width: 575px) {
  .testimonial-wrapper-3 {
    margin-top: 30px;
  }
}

.testimonial-wrapper-3 .testimonial-bg-box {
  padding: 30px 70px 0;
  border-radius: 10px;
  position: relative;
  z-index: 9;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-bg-box {
    padding: 30px 30px 0;
  }
}

.testimonial-wrapper-3 .testimonial-bg-box .testimonial-man img {
  width: 100%;
  height: 100%;
}

.testimonial-wrapper-3 .testimonial-bg-box .shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-bg-box .shape {
    display: none;
  }
}

.testimonial-wrapper-3 .testimonial-box {
  border-radius: 24px;
  background-color: var(--white);
  padding: 30px;
  position: relative;
  height: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(46, 189, 55, 0.08);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.testimonial-wrapper-3 .testimonial-box:hover {
  box-shadow: 0 30px 60px rgba(17, 162, 27, 0.08);
  border-color: rgba(46, 189, 55, 0.2);
}

.testimonial-wrapper-3 .testimonial-box .arrow-button {
  display: flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  right: 30px;
  bottom: 25px;
  z-index: 9999;
  background-color: var(--white);
}

.testimonial-wrapper-3 .testimonial-box .arrow-button .array-prev,
.testimonial-wrapper-3 .testimonial-box .arrow-button .array-next {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 100px;
  background-color: rgba(17, 162, 27, 0.1);
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 999;
}

.testimonial-wrapper-3 .testimonial-box .arrow-button .array-prev img,
.testimonial-wrapper-3 .testimonial-box .arrow-button .array-next img {
  transition: all 0.4s ease-in-out;
}

.testimonial-wrapper-3 .testimonial-box .arrow-button .array-prev:hover,
.testimonial-wrapper-3 .testimonial-box .arrow-button .array-next:hover {
  background-color: var(--theme3);
}

.testimonial-wrapper-3 .testimonial-box .arrow-button .array-prev:hover img,
.testimonial-wrapper-3 .testimonial-box .arrow-button .array-next:hover img {
  filter: brightness(0) invert(1);
}

.testimonial-wrapper-3 .testimonial-box .content .info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-wrapper-3 .testimonial-box .content .info-item .info-text .client-image {
  max-width: 100%;
  margin-bottom: 10px;
}

.testimonial-wrapper-3 .testimonial-box .content .info-item .info-text h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  text-transform: capitalize;
}

.testimonial-wrapper-3 .testimonial-box .content p {
  border-top: 1px solid rgba(47, 47, 47, 0.2);
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
  margin-bottom: 35px;
  padding-bottom: 28px;
  padding-top: 25px;
  margin-top: 25px;
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: var(--header);
  max-width: 630px;
  line-height: 190%;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-box .content p {
    font-size: 16px;
  }
}

.testimonial-wrapper-3 .testimonial-box .content .star {
  color: rgb(255, 127, 34);
}

/* Bulletproof layout and alignment fix for Client Testimonials slider */
.testimonial-wrapper-3 .testimonial-box .swiper,
.testimonial-wrapper-3 .testimonial-box .swiper-wrapper,
.testimonial-wrapper-3 .testimonial-box .swiper-slide {
  height: auto !important;
  min-height: auto !important;
}

.testimonial-wrapper-3 .testimonial-box .content {
  display: block !important;
  height: auto !important;
}

.testimonial-wrapper-3 .testimonial-box .content p {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #2F2F2F !important;
}

.testimonial-wrapper-3 .testimonial-box .content .star {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.testimonial-wrapper-3 .testimonial-box .arrow-button {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 9999 !important;
}

.testimonial-section-3 {
  background-color: rgba(17, 162, 27, 0.05);
  position: relative;
  overflow: hidden !important;
}

.testimonial-section-3 .cabage-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}

/* Custom premium botanical shapes at corners */
.testimonial-corner-shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-corner-shape.corner-left {
  top: 30px;
  left: 30px;
  bottom: auto;
  width: 260px;
  mix-blend-mode: multiply;
  opacity: 0.08;
  transform: rotate(-12deg);
  animation: botanical-float-sketch 12s ease-in-out infinite;
}

.testimonial-corner-shape.corner-left img {
  width: 100%;
  height: auto;
  display: block;
}

.testimonial-corner-shape.corner-right {
  top: 20px;
  right: 20px;
  bottom: auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid var(--white);
  box-shadow: 0 15px 35px rgba(24, 76, 50, 0.12);
  overflow: hidden;
  opacity: 0.9;
  z-index: 9;
  animation: botanical-circular-color 25s linear infinite;
}

.testimonial-corner-shape.corner-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Subtle interactive response on section hover */
.testimonial-section-3:hover .testimonial-corner-shape.corner-left {
  opacity: 0.14;
  transform: scale(1.05) rotate(-8deg);
}

.testimonial-section-3:hover .testimonial-corner-shape.corner-right {
  box-shadow: 0 20px 45px rgba(24, 76, 50, 0.18);
}

.testimonial-section-3:hover .testimonial-corner-shape.corner-right img {
  transform: scale(1.1);
}

/* Animations with smooth keyframes */
@keyframes botanical-float-sketch {
  0% {
    transform: translateY(0) rotate(-12deg) scale(1);
  }

  50% {
    transform: translateY(-20px) translateX(10px) rotate(-6deg) scale(1.06);
  }

  100% {
    transform: translateY(0) rotate(-12deg) scale(1);
  }
}

@keyframes botanical-circular-color {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 991px) {
  .testimonial-corner-shape {
    display: none !important;
  }
}

@media (max-width: 1399px) {
  .testimonial-section-3 .cabage-shape {
    display: none;
  }
}

.testimonial-wrapper-4 {
  margin-top: 48px;
}

.testimonial-wrapper-4 .testimonial-image {
  position: relative;
  z-index: 9;
}

.testimonial-wrapper-4 .testimonial-image::before {
  position: absolute;
  content: "";
  border: 1px solid var(--theme3);
  border-radius: 10px;
  top: -8px;
  right: -12px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-4 .testimonial-image::before {
    display: none;
  }
}

.testimonial-wrapper-4 .testimonial-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.testimonial-wrapper-4 .testimonial-box-items-4 {
  background-color: var(--bg3);
  padding: 70px 60px;
  border-radius: 10px;
  margin-left: 30px;
  position: relative;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-4 .testimonial-box-items-4 {
    margin-left: 0;
    padding: 30px;
  }
}

.testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 999;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: -20px;
  right: -20px;
  transform: translateY(-50%);
  z-index: 99;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button {
    display: none;
  }
}

.testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button .array-prev,
.testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button .array-next {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--bg);
  border: 1px solid var(--theme3);
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 999;
  display: inline-block;
}

.testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button .array-prev img,
.testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button .array-next img {
  transition: all 0.4s ease-in-out;
}

.testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button .array-prev:hover,
.testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button .array-next:hover {
  background-color: var(--theme3);
}

.testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button .array-prev:hover img,
.testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button .array-next:hover img {
  filter: brightness(0) invert(1);
}

.testimonial-wrapper-4 .testimonial-box-items-4 .content h3 {
  font-size: 32px;
  margin-bottom: 15px;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-4 .testimonial-box-items-4 .content h3 {
    font-size: 25px;
  }
}

.testimonial-wrapper-4 .testimonial-box-items-4 .content p {
  margin: 0;
  font-size: 20px;
  line-height: 2;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-4 .testimonial-box-items-4 .content p {
    font-size: 16px;
  }
}

.testimonial-wrapper-4 .testimonial-box-items-4 .content .testi-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  align-items: center;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-4 .testimonial-box-items-4 .content .testi-bottom {
    flex-wrap: wrap;
    gap: 25px;
  }
}

.testimonial-wrapper-4 .testimonial-box-items-4 .content .testi-bottom .cont h4 {
  font-size: 28px;
  margin-bottom: 5px;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-4 .testimonial-box-items-4 .content .testi-bottom .cont h4 {
    font-size: 22px;
  }
}

.array-button {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 999;
}

.array-button .array-prev {
  border-radius: 100px;
  border: 1px solid #E6E8EB;
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 50%;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.array-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}

.array-button .array-next {
  border-radius: 100px;
  background-color: var(--theme);
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 50%;
  color: var(--white);
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.array-button .array-next:hover {
  background-color: var(--header);
}

.swiper-dot {
  position: relative;
  text-align: center;
  margin-top: 45px;
}

@media (max-width: 1399px) {
  .swiper-dot {
    margin-top: 30px;
  }
}

.swiper-dot .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  background-color: var(--header);
  opacity: 1;
  border-radius: 10px;
}

.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 100px;
  border: 1px solid var(--theme);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--bg);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

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

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.brand-slide-element {
  width: auto;
  display: inline-block;
}

.p-relative {
  position: relative;
}

.ripple {
  position: relative;
}

.ripple::before,
.ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70px;
  height: 70px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}

.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.ripple-2 {
  position: relative;
}

.ripple-2::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 60%;
  height: 60%;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-animation: borderanimate2 2s linear infinite;
  animation: borderanimate2 2s linear infinite;
  z-index: -1;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.ripple-2::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 60%;
  height: 60%;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-animation: borderanimate2 2s linear infinite;
  animation: borderanimate2 2s linear infinite;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.page-nav-wrap {
  margin-top: 60px;
}

.page-nav-wrap ul li {
  display: inline-block;
}

.page-nav-wrap ul li.active .page-numbers {
  background-color: var(--theme3);
  color: var(--white);
}

.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  border-radius: 0;
  background: var(--header);
  color: var(--white);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border-radius: 50%;
   font-family: "Cormorant Garamond", serif;
}

.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme3);
  color: var(--white);
}

@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}

.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}

.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme3);
  color: var(--white);
}

.page-nav-wrap ul li .page-numbers:hover i {
  color: var(--white);
}

.actually-area .bg-area {
  position: absolute;
  top: 40%;
  left: 51%;
  transform: translate(-50%, -50%) scale(0);
  background-color: var(--header);
  width: 250px;
  height: 250px;
  border-radius: 50%;
}

.tilt_scale {
  transition: transform 0.2s ease;
  display: inline-block;
}

.no-break {
  white-space: nowrap;
  /* Keeps "My Background and Expertise" together */
}

/* Optional: styling for words split animation */
.split-word {
  display: inline-block;
  /* Required for animation */
  opacity: 0;
}

.reveal-img {
  opacity: 0;
  /* start invisible */
  transform: translateX(-600px);
  /* start left */
}

.arrow-path {
  width: 220px;
  height: 130px;
  color: black;
  stroke-dasharray: 1000;
  animation: draw 10s linear infinite;
}

@keyframes draw {
  0% {
    stroke-dashoffset: 1000;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

.image-wrapper {
  position: relative;
  transition: all 0.8s cubic-bezier(0.55, 0.085, 0, 0.99);
}

.animated-image {
  display: block;
  transform: translateY(100%);
  opacity: 0;
}

/* preloader শেষ হলে active class যোগ হবে */
.image-wrapper.active .animated-image {
  transform: translateY(0);
  opacity: 1;
}

/* Ensure the link inherits styles from its parent */
.wt-about-title2 a {
  display: inline-block;
  /* Needed for transform animations */
  color: inherit;
  text-decoration: inherit;
}

.project-section-3 .line-ani {
  margin-top: -25px;
}

@media (max-width: 1399px) {
  .project-section-3 .line-ani {
    display: none;
  }
}

.brand-container {
  max-width: 1660px;
  margin: 0 auto;
}

.gt-text-scale-anim {
  white-space: pre-wrap;
  transform-origin: top left;
}

.gt-letter-span {
  display: inline-block;
}

.gt-word-span {
  display: inline-block;
}

.p-relative {
  position: relative;
  z-index: 99;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.custom-container {
  max-width: 1800px;
  margin: 0 auto;
}

.custom-container-2 {
  max-width: 1752px;
  margin: 0 auto;
}

.custom-container-3 {
  max-width: 1635px;
  margin: 0 auto;
}

.p-relative {
  position: relative;
}

.tp-clip-anim {
  position: relative;
  overflow: hidden;
}

.tp-clip-anim .mask {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  opacity: 0;
  animation: reveal 1s forwards;
}

.tp-clip-anim .mask-1 {
  clip-path: inset(0 88.8% 0 0%);
  animation-delay: 0.1s;
}

.tp-clip-anim .mask-2 {
  clip-path: inset(0 77.7% 0 11.1%);
  animation-delay: 0.2s;
}

.tp-clip-anim .mask-3 {
  clip-path: inset(0 66.6% 0 22.2%);
  animation-delay: 0.3s;
}

.tp-clip-anim .mask-4 {
  clip-path: inset(0 55.5% 0 33.3%);
  animation-delay: 0.4s;
}

.tp-clip-anim .mask-5 {
  clip-path: inset(0 44.4% 0 44.4%);
  animation-delay: 0.5s;
}

.tp-clip-anim .mask-6 {
  clip-path: inset(0 33.3% 0 55.5%);
  animation-delay: 0.6s;
}

.tp-clip-anim .mask-7 {
  clip-path: inset(0 22.2% 0 66.6%);
  animation-delay: 0.7s;
}

.tp-clip-anim .mask-8 {
  clip-path: inset(0 11.1% 0 77.7%);
  animation-delay: 0.8s;
}

.tp-clip-anim .mask-9 {
  clip-path: inset(0 0% 0 88.8%);
  animation-delay: 0.9s;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: scale(1.2);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.swiper-dot4 {
  text-align: center;
}

.swiper-dot4 .swiper-pagination-bullet {
  width: 22px;
  height: 10px;
  transition: 0.6s;
  background-color: var(--theme2);
  border-radius: 100px !important;
  position: relative;
  opacity: 1;
}

.swiper-dot4 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme2);
  transition: 0.6s;
  position: relative;
  width: 47px;
  border-radius: 100px !important;
}

.drone-water {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  height: 650px;
  pointer-events: none;
  z-index: 1;
}

.drone-water .spray {
  position: absolute;
  top: 90px;
  width: 6px;
  height: 480px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  filter: blur(1px);
  animation: waterFall 1.5s linear infinite;
  opacity: 0.85;
}

.drone-water .spray::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: -14px;
  width: 35px;
  height: 35px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.45), transparent 70%);
  filter: blur(6px);
}

.drone-water .spray.left {
  left: 150px;
}

.drone-water .spray.left-2 {
  left: 190px;
  animation-delay: 0.3s;
}

.drone-water .spray.right {
  right: 150px;
}

.drone-water .spray.right-2 {
  right: 190px;
  animation-delay: 0.5s;
}

.hero-portfolio-revealing-slider {
  --controlSize: 120px;
  --slidingAT: 1.3s;
}

.image-trail-animation {
  width: 100%;
  position: relative;
}

.bg-2-color {
  color: var(--bg2);
}

.radius {
  border-radius: 4px;
}

/* Who We Serve Section Styling */
.who-we-serve-section {
  position: relative;
  background: linear-gradient(135deg, #1b3820 0%, #2a4c30 100%);
  overflow: hidden;
  z-index: 1;
}

.who-we-serve-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(142, 179, 135, 0.1) 0%, transparent 40%);
  pointer-events: none;
  z-index: -1;
}

.who-we-serve-shape-1 {
  position: absolute;
  top: 10%;
  left: -50px;
  pointer-events: none;
  z-index: -1;
  animation: floatUpDown 8s ease-in-out infinite;
}

.who-we-serve-shape-2 {
  position: absolute;
  bottom: 10%;
  right: -50px;
  pointer-events: none;
  z-index: -1;
  animation: floatUpDown 10s ease-in-out infinite alternate;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.serve-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.serve-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(245, 216, 62, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.serve-card:hover {
  transform: translateY(-8px);
  border-color: var(--theme2);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(245, 216, 62, 0.15);
}

.serve-card:hover::before {
  opacity: 1;
}

.serve-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--theme2);
  transition: all 0.4s ease;
}

.serve-card:hover .serve-icon {
  background: var(--theme2);
  color: #1b3820;
  transform: scale(1.1) rotate(10deg);
}

.serve-title {
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.serve-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Private People Banner Styling */
.serve-banner {
  background: linear-gradient(135deg, rgba(245, 216, 62, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px dashed rgba(245, 216, 62, 0.4);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.serve-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 216, 62, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.serve-banner:hover {
  border-style: solid;
  border-color: var(--theme2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.serve-banner .banner-icon {
  width: 80px;
  height: 80px;
  background: rgba(245, 216, 62, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--theme2);
  flex-shrink: 0;
  animation: heartPulse 2.5s infinite;
}

@keyframes heartPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

.serve-banner .banner-content h3 {
  color: var(--theme2);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.serve-banner .banner-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .serve-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .serve-banner .banner-icon {
    margin: 0 auto;
  }
}



.footer-section-3 .footer-top-item-3 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 15px 0 !important;
  /* Increased padding top/bottom to increase height of text section */
  margin-bottom: 10px !important;
  margin-top: 0 !important;
}

/* Footer Logo White Box Styling */
.footer-logo {
  background-color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block !important;
  /* Always show logo on all screens */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  margin-bottom: 0 !important;
}

.footer-logo img {
  max-height: 100px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block;
}

.footer-section-3 .footer-top-item-3 .left-content {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  text-align: left !important;
}

.footer-section-3 .footer-top-item-3 .left-content p {
  max-width: 1000px !important;
  margin: 0 !important;
  line-height: 1.8 !important;
  /* Increased line-height from 1.6 to 1.8 to increase height of text section */
  font-size: 15px !important;
  color: #fff !important;
  text-transform: none !important;
  text-align: left !important;
  margin-top: 0 !important;
}

@media (max-width: 1399px) {
  .footer-section-3 .footer-top-item-3 {
    padding: 25px 0 !important;
    /* Consistent with desktop height */
  }

  .footer-section-3 .footer-top-item-3 .left-content {
    max-width: 100%;
    width: 100%;
  }

  .footer-section-3 .footer-top-item-3 .left-content .footer-logo {
    flex-shrink: 0;
  }

  .footer-section-3 .footer-top-item-3 .left-content p {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .footer-section-3 .footer-top-item-3 .left-content {
    flex-direction: column;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 15px;
  }

  .footer-section-3 .footer-top-item-3 .left-content p {
    margin-top: 10px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
  }
}

.footer-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.footer-logo img {
  /* max-width: 170px; */
  max-width: 200px;
  height: auto;
  display: block;
}

/*---------------------------------------
XX. Custom What We Do & Core Values Parallax Section
---------------------------------------*/
.what-we-do-section {
  position: relative;
  background-color: var(--bg);
  overflow: hidden;
  z-index: 1;
}

.wwd-shape-1 {
  position: absolute;
  top: 8%;
  left: 3%;
  width: 80px;
  opacity: 0.12;
  z-index: -1;
  pointer-events: none;
}

.wwd-shape-2 {
  position: absolute;
  bottom: 15%;
  right: 3%;
  width: 120px;
  opacity: 0.12;
  z-index: -1;
  pointer-events: none;
}

.parallax-3d-wrapper {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: auto;
  aspect-ratio: 1 / 1;
  perspective: 1200px;
  transform-style: preserve-3d;
}

@media (max-width: 991px) {
  .parallax-3d-wrapper {
    height: auto;
    margin-top: 30px;
  }
}

.parallax-3d-card {
  --norm-x: 0;
  --norm-y: 0;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.3, 1), box-shadow 0.5s ease, border-color 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: #2f2f2f;
  transform: translateY(0);
}

.parallax-3d-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 35px 70px rgba(17, 162, 27, 0.25), 0 0 30px rgba(17, 162, 27, 0.15);
}

.parallax-3d-card .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate3d(calc(var(--norm-x) * -4px), calc(var(--norm-y) * -4px), 0) scale(1);
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.3, 1), filter 0.5s ease;
  z-index: 1;
}

.parallax-3d-card:hover .card-bg {
  transform: translate3d(calc(var(--norm-x) * -4px), calc(var(--norm-y) * -4px), 0) scale(1);
  filter: brightness(0.95);
}

.parallax-3d-card .card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 60%);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.parallax-3d-card:hover .card-glow {
  opacity: 1;
}

.parallax-3d-card .card-floating-layer {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.3, 1), opacity 0.5s ease;
}

.parallax-3d-card .layer-1 {
  width: 80px;
  top: 15%;
  right: 12%;
  transform: translate3d(calc(var(--norm-x) * 20px), calc(var(--norm-y) * 20px), 0) rotate(0deg) scale(1);
}

.parallax-3d-card:hover .layer-1 {
  transform: translate3d(calc(var(--norm-x) * 35px + 15px), calc(var(--norm-y) * 35px - 15px), 0) rotate(15deg) scale(1.1);
}

.parallax-3d-card .layer-2 {
  width: 130px;
  bottom: 12%;
  left: 6%;
  opacity: 0.9;
  transform: translate3d(calc(var(--norm-x) * 30px), calc(var(--norm-y) * 30px), 0) rotate(0deg) scale(1);
}

.parallax-3d-card:hover .layer-2 {
  transform: translate3d(calc(var(--norm-x) * 55px - 15px), calc(var(--norm-y) * 55px + 15px), 0) rotate(-10deg) scale(1.08);
}

.parallax-3d-card .card-floating-layer img {
  width: 100%;
  height: auto;
}

.parallax-3d-card .card-content-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  width: calc(100% - 48px);
  padding: 24px;
  background: rgba(15, 35, 12, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: var(--white);
  z-index: 4;
  transform: translate3d(calc(var(--norm-x) * 8px), calc(var(--norm-y) * 8px + 15px), 0);
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.3, 1), background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
  pointer-events: none;
}

.parallax-3d-card:hover .card-content-overlay {
  transform: translate3d(calc(var(--norm-x) * 12px), calc(var(--norm-y) * 12px), 0);
  background: rgba(15, 35, 12, 0.82);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.parallax-3d-card .card-content-overlay .badge {
  display: inline-block;
  background-color: var(--theme3);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.parallax-3d-card .card-content-overlay h4 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

.parallax-3d-card .card-content-overlay p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
  text-transform: none;
}

.mv-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(80, 98, 74, 0.12);
  border-radius: 24px;
  padding: 45px 40px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  z-index: 1;
  height: 100%;
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(17, 162, 27, 0.14);
  border-color: rgba(17, 162, 27, 0.3);
}

.mv-card .mv-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--theme3) 0%, #0d8214 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 26px;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(17, 162, 27, 0.25);
  transition: transform 0.4s ease;
}

.mv-card:hover .mv-icon-box {
  transform: scale(1.1) rotate(5deg);
}

.mv-card .mv-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--header);
}

.mv-card .mv-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin: 0;
  text-transform: none;
}

.mv-card-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(17, 162, 27, 0.09) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: -1;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}

.mv-card:hover .mv-card-glow {
  transform: scale(1.5);
}

.value-card {
  background: var(--white);
  border: 1px solid rgba(80, 98, 74, 0.1);
  border-radius: 20px;
  padding: 35px 30px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.015);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--theme3) 0%, var(--theme2) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 2;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
  border-color: rgba(17, 162, 27, 0.22);
}

.value-card .value-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(17, 162, 27, 0.08);
  color: var(--theme3);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.value-card:hover .value-icon {
  background: var(--theme3);
  color: var(--white);
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 6px 15px rgba(17, 162, 27, 0.2);
}

.value-card .value-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--header);
  font-family: "Cormorant Garamond", serif;
}

.value-card .value-desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
  text-transform: none;
}

/* Special 3D Hover & Image Display Effect for Foundation Value Cards */
.value-3d-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.2s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.value-3d-card::before {
  display: none !important;
  /* Hide default green top border on hover as it conflicts with custom 3D card layout */
}

.value-3d-card .card-bg-3d {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateZ(-20px) scale(1.15);
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 0;
  pointer-events: none;
}

.value-3d-card .card-bg-3d::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
}

.value-3d-card .card-glow-3d {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 65%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-3d-card .card-content-3d {
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
  transform: translateZ(30px);
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}

/* Hover States */
.value-3d-card:hover {
  border-color: rgba(17, 162, 27, 0.4) !important;
  box-shadow: 0 25px 55px rgba(17, 162, 27, 0.18) !important;
}

.value-3d-card:hover .card-bg-3d {
  opacity: 1;
}

.value-3d-card:hover .card-glow-3d {
  opacity: 1;
}

.value-3d-card .value-title,
.value-3d-card .value-desc {
  transition: color 0.4s ease, text-shadow 0.4s ease;
}

.value-3d-card:hover .value-title {
  color: var(--white) !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
}

.value-3d-card:hover .value-desc {
  color: #ffffff !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.95);
}

.value-3d-card .value-icon {
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.value-3d-card:hover .value-icon {
  background: var(--theme3) !important;
  color: var(--white) !important;
  transform: translateZ(50px) scale(1.15) rotate(8deg) !important;
  box-shadow: 0 8px 25px rgba(17, 162, 27, 0.35) !important;
}


/* Custom Permanent 2-Column Submenu with Animated Drawing Border & Leaf Theme */
@media (min-width: 1200px) {
  .plants-grid-submenu {
    min-width: 350px !important;
    padding: 10px 5px !important;
    display: block !important;
    position: absolute;
    left: 50% !important;
    inset-inline-start: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(-10px) !important;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    background-color: var(--white);
    border-radius: 16px;
    border-top: none !important;
    overflow: visible !important;
    transition: min-width 0.3s ease, transform 0.4s ease-in-out, opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
  }

  .plants-grid-submenu br {
    display: none !important;
  }

  .header-main .main-menu ul li:hover>.plants-grid-submenu {
    transform: translateX(-40%) translateY(0px) !important;
  }

  /* Dropdown icon rotation */
  li.has-dropdown:hover>a>i.fa-chevron-down {
    transform: rotate(180deg);
  }

  .plants-grid-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .plants-grid-submenu li {
    width: 100% !important;
    display: block !important;
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
  }

  /* Watermark background icon (related to plants) */
  .submenu-watermark {
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 110px;
    color: var(--theme3);
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
    transform: rotate(25deg);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
  }

  li.has-dropdown:hover .submenu-watermark,
  li.has-dropdown:focus-within .submenu-watermark {
    transform: rotate(45deg) scale(1.15);
    opacity: 0.05;
  }

  /* Bullet Leaf Icons */
  .plants-grid-submenu li a .menu-leaf-icon,
  .services-submenu li a .menu-leaf-icon {
    font-size: 11px !important;
    color: var(--theme3) !important;
    float: none !important;
    position: static !important;
    margin-right: 10px !important;
    margin-left: 0 !important;
    display: inline-block !important;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease !important;
  }

  .plants-grid-submenu li a {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: left !important;
    white-space: nowrap !important;
    width: 100% !important;
    padding: 8px 15px !important;
    position: relative !important;
    border-radius: 8px !important;
    background-color: transparent !important;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  }

  .plants-grid-submenu li.has-dropdown-sub>a {
    align-items: center !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    white-space: nowrap !important;
  }

  .plants-grid-submenu>li {
    border-bottom: 1px solid rgba(46, 125, 50, 0.08) !important;
  }

  .plants-grid-submenu>li:last-child {
    border-bottom: none !important;
  }

  .services-submenu {
    min-width: 310px !important;
    padding: 10px 5px !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06) !important;
    background-color: var(--white) !important;
  }

  .services-submenu li {
    border-bottom: 1px solid rgba(46, 125, 50, 0.08) !important;
  }

  .services-submenu li:last-child {
    border-bottom: none !important;
  }

  .services-submenu li a {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: left !important;
    white-space: nowrap !important;
    width: 100% !important;
    padding: 8px 15px !important;
    position: relative !important;
    border-radius: 8px !important;
    background-color: transparent !important;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #3d4c38 !important;
  }

  .services-submenu li a::before {
    content: '' !important;
    position: absolute !important;
    left: 4px !important;
    top: 25% !important;
    bottom: 25% !important;
    width: 3px !important;
    background: linear-gradient(to bottom, var(--theme3), #2ebd37) !important;
    border-radius: 4px !important;
    transform: scaleY(0) !important;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  }

  .services-submenu li a:hover {
    padding-left: 22px !important;
    background-color: rgba(46, 189, 55, 0.06) !important;
    color: var(--theme3) !important;
  }

  .services-submenu li a:hover::before {
    transform: scaleY(1) !important;
  }

  .services-submenu li a:hover .menu-leaf-icon {
    transform: rotate(20deg) scale(1.3) !important;
    color: var(--theme2) !important;
  }

  /* Vertical growing indicator bar on hover */
  .plants-grid-submenu li a::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 25%;
    bottom: 25%;
    width: 3px;
    background: linear-gradient(to bottom, var(--theme3), #2ebd37);
    border-radius: 4px;
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .plants-grid-submenu li a:hover {
    padding-left: 22px !important;
    background-color: rgba(46, 189, 55, 0.06) !important;
    color: var(--theme3) !important;
  }

  .plants-grid-submenu li:hover>a {
    color: var(--theme3) !important;
  }

  .plants-grid-submenu li a:hover::before {
    transform: scaleY(1);
  }

  .plants-grid-submenu li a:hover .menu-leaf-icon {
    transform: rotate(20deg) scale(1.3);
    color: var(--theme2) !important;
  }

  /* Animated border line layout and animation sequence */
  .plants-grid-submenu .submenu-border {
    position: absolute;
    background: linear-gradient(90deg, var(--theme3), #2ebd37);
    transition: all 0.25s ease-in-out;
    z-index: 99;
  }

  /* Top Border: draws left-to-right */
  .plants-grid-submenu .border-top {
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    transition-delay: 0s;
  }

  /* Right Border: draws top-to-bottom */
  .plants-grid-submenu .border-right {
    top: 0;
    right: 0;
    width: 3px;
    height: 0;
    transition-delay: 0.12s;
  }

  /* Bottom Border: draws right-to-left */
  .plants-grid-submenu .border-bottom {
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    transition-delay: 0.24s;
  }

  /* Left Border: draws bottom-to-top */
  .plants-grid-submenu .border-left {
    bottom: 0;
    left: 0;
    width: 3px;
    height: 0;
    transition-delay: 0.36s;
  }

  /* Active/Hover states to trigger drawing */
  li.has-dropdown:hover .plants-grid-submenu .border-top,
  li.has-dropdown:focus-within .plants-grid-submenu .border-top {
    width: 100%;
  }

  li.has-dropdown:hover .plants-grid-submenu .border-right,
  li.has-dropdown:focus-within .plants-grid-submenu .border-right {
    height: 100%;
  }

  li.has-dropdown:hover .plants-grid-submenu .border-bottom,
  li.has-dropdown:focus-within .plants-grid-submenu .border-bottom {
    width: 100%;
  }

  li.has-dropdown:hover .plants-grid-submenu .border-left,
  li.has-dropdown:focus-within .plants-grid-submenu .border-left {
    height: 100%;
  }
}

@media (max-width: 1199px) {
  .plants-grid-submenu {
    min-width: 100% !important;
    padding: 15px !important;
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
  }

  .plants-grid-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .plants-grid-submenu li {
    width: 100%;
  }

  .plants-grid-submenu .submenu-border,
  .plants-grid-submenu .submenu-watermark {
    display: none;
  }

  .menu-leaf-icon {
    font-size: 10px;
    margin-right: 8px;
    color: var(--theme3);
  }
}

/* Custom Nested Flyout Submenu styling (Right Side Flyout with Clean Symmetrical Layout) */
.plants-grid-submenu li.has-dropdown-sub {
  position: relative;
}

.plants-grid-submenu li.has-dropdown-sub {
  position: relative;
}

.plants-grid-submenu li.has-dropdown-sub .sub-submenu {
  position: absolute !important;
  left: calc(100% + 10px) !important;
  /* Flyout to the right side with spacing */
  right: auto !important;
  top: 0 !important;
  min-width: 260px !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  background: rgba(255, 255, 255, 0.98) !important;
  /* Semi-translucent premium background */
  backdrop-filter: blur(12px) !important;
  /* Glassmorphism blur */
  box-shadow: 0 15px 35px rgba(24, 76, 50, 0.12) !important;
  /* Botanical shadow tint */
  border-radius: 14px !important;
  padding: 12px 8px !important;
  opacity: 0;
  visibility: hidden;
  transform: translateX(0px) scale(0.97) !important;
  /* Start slightly scaled down */
  transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1),
    visibility 0.35s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;
  z-index: 999999 !important;
  list-style: none !important;
  margin: 0 !important;
  border: 1px solid rgba(46, 125, 50, 0.15) !important;
  /* Harmonious green border */
}

.plants-grid-submenu li.has-dropdown-sub:hover .sub-submenu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(10px) scale(1) !important;
  /* Slide right and scale up on hover */
}

/* Explicit styles for sub-submenu items for neat visibility and premium layout */
.plants-grid-submenu li.has-dropdown-sub .sub-submenu li {
  width: 100% !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
}

.plants-grid-submenu li.has-dropdown-sub .sub-submenu li a {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #3d4c38 !important;
  /* Premium dark botanical text */
  padding: 8px 12px !important;
  line-height: 1.4 !important;
  width: 100% !important;
  background-color: transparent !important;
  border-radius: 8px !important;
  position: relative !important;
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.plants-grid-submenu li.has-dropdown-sub .sub-submenu li a::before {
  display: none !important;
  /* Remove the vertical line hover effect for nested submenus */
}

.plants-grid-submenu li.has-dropdown-sub .sub-submenu li a:hover {
  background-color: rgba(46, 189, 55, 0.08) !important;
  color: var(--theme3) !important;
  padding-left: 15px !important;
  /* Neat micro-movement on hover */
}

/* Align lower sub-menus (items 6-10) to the bottom to avoid page bottom/screen cutoff */
@media (min-width: 1200px) {
  .plants-grid-submenu>li.has-dropdown-sub:nth-of-type(n+6) .sub-submenu {
    top: auto !important;
    bottom: 0 !important;
  }
}

.plants-grid-submenu li.has-dropdown-sub .flyout-arrow {
  transition: transform 0.3s ease, color 0.3s ease;
}

.plants-grid-submenu li.has-dropdown-sub:hover .flyout-arrow {
  transform: translateX(3px);
  color: var(--theme3);
}

/* Styled ➢ Arrow Bullets for sub-submenu items */
.submenu-bullet-arrow {
  display: inline-block !important;
  margin-right: 8px !important;
  color: #8fa882 !important;
  /* Soft sage green bullet */
  font-size: 11px !important;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease !important;
}

.plants-grid-submenu li.has-dropdown-sub .sub-submenu li a:hover .submenu-bullet-arrow {
  transform: translateX(3px) scale(1.1);
  color: var(--theme3) !important;
}

@media (max-width: 1199px) {
  .plants-grid-submenu li.has-dropdown-sub .sub-submenu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
    /* padding: 5px 0 5px 20px !important; */
    padding: 5px 0 5px 5px !important;
    box-shadow: none !important;
    border: none !important;
    width: 100% !important;
    background: transparent !important;
    transform: none !important;
    transition: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .plants-grid-submenu li.has-dropdown-sub .flyout-arrow {
    transform: rotate(90deg);
  }

  .plants-grid-submenu li.has-dropdown-sub .flyout-arrow.active-up {
    transform: rotate(270deg);
  }
}

/* Show mobile expand buttons inside the mobile mean-container */
.mean-container .mean-expand {
  display: block !important;
}

/* Hide redundant mean-expand buttons on nested submenus to avoid overlap and use custom chevron flyout-arrow */
.mean-container .mean-nav ul li .submenu li a.mean-expand {
  display: none !important;
}



.footer-section-3 .container {
  overflow: visible !important;
}



.footer-section-3 .footer-bottom {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  overflow: visible !important;
  margin-top: 20px !important;
  padding-top: 20px !important;
}

/* Footer Rotating Product Animation */
@keyframes spinProduct {
  from {
    transform: rotateY(0deg);
  }

  to {
    transform: rotateY(-360deg);
  }
}

.footer-rotating-product-container {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  transition: transform 0.3s ease;
  perspective: 1000px;
}

.footer-rotating-product-container:hover {
  transform: translateX(-50%) scale(1.15);
}

.footer-rotating-product {
  width: 130px;
  height: auto;
  animation: spinProduct 12s linear infinite;
  cursor: pointer;
  filter: drop-shadow(0 5px 12px rgba(1, 40, 4, 0.15));
  transition: filter 0.3s ease;
}

.footer-rotating-product:hover {
  filter: drop-shadow(0 10px 22px rgba(1, 40, 4, 0.35));
}

/* Premium Curved Client Testimonial Image Styles & Animation */
.testimonial-client-image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  perspective: 1000px;
}

.testimonial-client-card {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(46, 189, 55, 0.15);
  background: var(--white);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.3, 1), box-shadow 0.6s ease, border-color 0.6s ease;
  z-index: 2;
}

@media (min-width: 992px) {
  .testimonial-client-image-wrapper {
    height: 100%;
  }

  .testimonial-client-card {
    height: 100%;
  }
}

@media (max-width: 991px) {
  .testimonial-client-image-wrapper {
    height: auto;
    aspect-ratio: 4 / 3;
    margin-bottom: 30px;
  }

  .testimonial-client-card {
    height: 100%;
  }
}

.testimonial-client-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.3, 1), filter 0.8s ease;
}

.testimonial-client-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, var(--theme3) 0%, var(--theme2) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.15;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.testimonial-client-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  border-color: rgba(46, 189, 55, 0.35);
  box-shadow: 0 30px 60px rgba(17, 162, 27, 0.12), 0 0 30px rgba(17, 162, 27, 0.08);
}

.testimonial-client-card:hover img {
  transform: scale(1.06);
}

.testimonial-client-card:hover::after {
  opacity: 0.85;
}

/* Floating leaf decoration under the card to match plant website aesthetic */
.testimonial-client-image-wrapper .floating-leaf-decor {
  position: absolute;
  width: 60px;
  height: auto;
  pointer-events: none;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.3, 1);
}

.testimonial-client-image-wrapper .leaf-top-right {
  top: 10px;
  right: 15px;
  transform: rotate(45deg);
  opacity: 0.8;
}

.testimonial-client-image-wrapper .leaf-bottom-left {
  bottom: 0px;
  left: 10px;
  transform: rotate(-135deg) scaleX(-1);
  width: 70px;
  opacity: 0.8;
}

.testimonial-client-image-wrapper:hover .leaf-top-right {
  transform: rotate(60deg) translate(8px, -8px) scale(1.1);
  opacity: 1;
}

.testimonial-client-image-wrapper:hover .leaf-bottom-left {
  transform: rotate(-120deg) translate(-8px, 8px) scale(1.1) scaleX(-1);
  opacity: 1;
}

@media (max-width: 991px) {
  .testimonial-client-image-wrapper {
    padding: 20px;
    margin-bottom: 30px;
  }
}

/* Footer Floating Pot Plant Styles */
.footer-pot-section {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 !important;
  padding: 0 !important;
  z-index: 100;
  width: auto;
  height: auto;
}

.footer-pot-section .footer-pot-shape {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  max-width: 140px !important;
  margin: 0 !important;
  margin-top: 0 !important;
  animation: drone-fly-real 4.5s ease-in-out infinite !important;
  display: block !important;
}

.footer-pot-section .footer-pot-shape img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(1, 40, 4, 0.15));
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.3, 1), filter 0.4s ease;
}

.footer-pot-section:hover .footer-pot-shape img {
  transform: scale(1.08) translateY(-4px);
  filter: drop-shadow(0 14px 28px rgba(1, 40, 4, 0.28));
}

@media (max-width: 1399px) {
  .footer-pot-section .footer-pot-shape {
    display: block !important;
    /* Prevent parent class hiding this on tablet/mobile screens */
  }
}

@media (max-width: 767px) {
  .footer-pot-section .footer-pot-shape {
    max-width: 100px !important;
  }
}

.sub-submenu li {
  width: 100% !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: 1px solid rgba(46, 125, 50, 0.08) !important;
}

.sub-submenu li:last-child {
  border-bottom: none !important;
}

.sub-submenu li a {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: var(--header) !important;
  padding: 6px 15px !important;
  border-radius: 8px !important;
  width: 100% !important;
  background-color: transparent !important;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  line-height: 1.5 !important;
  white-space: nowrap !important;
}

.sub-submenu li a:hover {
  background-color: rgba(46, 189, 55, 0.06) !important;
  color: var(--theme3) !important;
  padding-left: 20px !important;
}

.sub-submenu li a .submenu-bullet-arrow {
  margin-right: 8px !important;
  color: var(--theme3) !important;
  font-size: 12px !important;
  transition: transform 0.3s ease, color 0.3s ease !important;
}

.sub-submenu li a:hover .submenu-bullet-arrow {
  transform: translateX(3px) scale(1.1);
  color: var(--theme2) !important;
}

/* Premium Enquiry Pop-up Modal Styling */
.enquiry-modal-overlay {
  position: fixed !important;
  inset: 0 !important;
  background-color: rgba(17, 30, 20, 0.65) !important;
  /* Muted dark green-tinted backdrop overlay */
  backdrop-filter: blur(8px) !important;
  z-index: 9999999 !important;
  /* Sit on top of everything, including header */
  display: flex !important;
  justify-content: center !important;
  align-items: flex-start !important;
  /* Allow scroll from top on small screens */
  overflow-y: auto !important;
  /* Scrollable overlay container */
  padding: 30px 15px !important;
  /* Padding for mobile breathing room */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease !important;
}

.enquiry-modal-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.enquiry-modal-card {
  background: #fcfdfb !important;
  /* Very soft botanical off-white */
  width: 92% !important;
  max-width: 480px !important;
  padding: 35px 30px !important;
  border-radius: 20px !important;
  border: 1px solid rgba(46, 125, 50, 0.18) !important;
  box-shadow: 0 25px 60px rgba(17, 40, 25, 0.25) !important;
  position: relative !important;
  perspective: 1000px !important;
  /* Enable 3D perspective */
  margin: auto !important;
  /* Smart vertical/horizontal flex centering with overflow support */
  transform: translateY(-80px) rotateX(-20deg) scale(0.9) !important;
  transform-origin: top center !important;
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease !important;
}

.enquiry-modal-overlay.active .enquiry-modal-card {
  transform: translateY(0) rotateX(0deg) scale(1) !important;
  opacity: 1 !important;
}

/* Modal Close Button */
.enquiry-modal-close {
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background-color: rgba(46, 189, 55, 0.08) !important;
  border: none !important;
  color: var(--theme3) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  font-size: 16px !important;
}

.enquiry-modal-close:hover {
  background-color: var(--theme3) !important;
  color: var(--white) !important;
  transform: rotate(90deg) scale(1.1) !important;
}

/* Modal Header Content */
.enquiry-modal-header {
  text-align: center !important;
  margin-bottom: 25px !important;
}

.enquiry-modal-logo {
  max-width: 170px !important;
  height: auto !important;
  margin-bottom: 12px !important;
}

.enquiry-modal-title {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #2b3a24 !important;
  margin: 0 !important;
  letter-spacing: -0.5px !important;
}

.enquiry-modal-subtitle {
  font-size: 13px !important;
  color: #6a7d65 !important;
  margin-top: 5px !important;
  margin-bottom: 0 !important;
}

/* Form Styling - labels, inputs, selects, buttons */
.enquiry-form-group {
  margin-bottom: 18px !important;
  text-align: left !important;
}

.enquiry-form-group label {
  display: block !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #3d4c38 !important;
  /* Sage/botanical dark label */
  margin-bottom: 6px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.enquiry-form-input,
.enquiry-form-select,
.enquiry-form-textarea {
  width: 100% !important;
  background-color: var(--white) !important;
  border: 1px solid rgba(80, 98, 74, 0.2) !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  color: #2d3829 !important;
  outline: none !important;
  transition: all 0.25s ease !important;
}

.enquiry-form-input:focus,
.enquiry-form-select:focus,
.enquiry-form-textarea:focus {
  border-color: var(--theme3) !important;
  box-shadow: 0 0 0 3px rgba(46, 189, 55, 0.12) !important;
}

.enquiry-form-select {
  appearance: none !important;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233d4c38' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 15px !important;
  padding-right: 40px !important;
  cursor: pointer !important;
}

.enquiry-form-textarea {
  resize: vertical !important;
  min-height: 80px !important;
}

.enquiry-submit-btn {
  width: 100% !important;
  padding: 12px 25px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--white) !important;
  background-color: var(--theme3) !important;
  border: none !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 5px 15px rgba(46, 189, 55, 0.2) !important;
  margin-top: 10px !important;
}

.enquiry-submit-btn:hover {
  background-color: var(--theme2) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(46, 189, 55, 0.3) !important;
}

.enquiry-submit-btn:active {
  transform: translateY(0) !important;
}

/* Success State Styles */
.enquiry-success-view {
  text-align: center !important;
  padding: 20px 10px !important;
  display: none;
}

.enquiry-success-icon {
  width: 70px !important;
  height: 70px !important;
  background-color: rgba(46, 189, 55, 0.1) !important;
  color: var(--theme3) !important;
  border-radius: 50% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  font-size: 32px !important;
  margin: 0 auto 20px auto !important;
  animation: scaleSuccessIcon 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
}

@keyframes scaleSuccessIcon {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.enquiry-success-title {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #2b3a24 !important;
  margin-bottom: 10px !important;
}

.enquiry-success-desc {
  font-size: 15px !important;
  color: #6a7d65 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

/* Premium Animated Botanical Decorations */
.testimonial-section-3 {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  /* Create local stacking context to keep z-index: -1 elements above section background but behind everything else */
}

.premium-botanical-decor {
  position: absolute;
  pointer-events: auto;
  /* Allow hover interaction */
  z-index: -1;
  /* Render behind the image and other card contents */
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Individual positions */
.premium-botanical-decor.decor-top-left {
  top: 40px;
  left: 20px;
  width: 90px;
  height: 90px;
  animation: floatSway1 10s ease-in-out infinite;
}

.premium-botanical-decor.decor-bottom-left {
  bottom: 40px;
  left: 20px;
  width: 110px;
  height: 110px;
  animation: floatSway2 14s ease-in-out infinite;
}

.premium-botanical-decor.decor-top-right {
  top: 30px;
  right: 20px;
  width: 100px;
  height: 100px;
  animation: floatSway3 12s ease-in-out infinite;
}

.premium-botanical-decor.decor-bottom-right {
  bottom: 50px;
  right: 20px;
  width: 95px;
  height: 95px;
  animation: floatSway4 16s ease-in-out infinite;
}

/* Base SVG styling for soft blend and premium look */
.premium-botanical-decor svg {
  width: 100%;
  height: 100%;
  opacity: 0.18;
  filter: drop-shadow(0 8px 16px rgba(27, 94, 32, 0.08));
  transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
}

.premium-botanical-decor:hover svg {
  opacity: 0.6;
  filter: drop-shadow(0 12px 24px rgba(27, 94, 32, 0.25));
  transform: scale(1.15) rotate(8deg);
}

/* Interactive Hover Reactions */
.premium-botanical-decor.decor-top-left:hover {
  animation-play-state: paused;
}

.premium-botanical-decor.decor-bottom-left:hover {
  animation-play-state: paused;
}

.premium-botanical-decor.decor-top-right:hover {
  animation-play-state: paused;
}

.premium-botanical-decor.decor-bottom-right:hover {
  animation-play-state: paused;
}

/* Premium smooth keyframes for organic plant floating */
@keyframes floatSway1 {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(-15px) translateX(10px) rotate(8deg) scale(1.05);
  }

  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

@keyframes floatSway2 {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(-25px) translateX(-8px) rotate(-12deg) scale(0.95);
  }

  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

@keyframes floatSway3 {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(-18px) translateX(-12px) rotate(10deg) scale(1.03);
  }

  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

@keyframes floatSway4 {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(-20px) translateX(15px) rotate(-6deg) scale(1.08);
  }

  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

@media (max-width: 991px) {
  .premium-botanical-decor {
    display: none !important;
  }
}

/*# sourceMappingURL=main.css.map */
.sticky-icon {
  position: fixed !important;
  right: 25px !important;
  bottom: 25px !important;
  z-index: 999999 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
}

.sticky-icon a.whatsapp {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 60px !important;
  height: 60px !important;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 15px rgba(18, 140, 126, 0.4) !important;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  text-decoration: none !important;
  border: 2px solid #ffffff !important;
}

.sticky-icon a.whatsapp i {
  font-size: 30px !important;
  transition: transform 0.3s ease !important;
}

.sticky-icon a.whatsapp:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 8px 25px rgba(18, 140, 126, 0.6) !important;
  color: #ffffff !important;
}

.sticky-icon a.whatsapp:hover i {
  transform: rotate(15deg) scale(1.1) !important;
}

/* Pulsing animated outer ring */
.sticky-icon::after {
  content: '';
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: -4px;
  right: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .sticky-icon {
    right: 15px !important;
    bottom: 15px !important;
  }

  .sticky-icon a.whatsapp {
    width: 50px !important;
    height: 50px !important;
  }

  .sticky-icon a.whatsapp i {
    font-size: 24px !important;
  }
}

/* ==========================================================================
   Hero Banner Responsive Styles (Preserve Aspect Ratio & Avoid Compression)
   ========================================================================== */
.hero-3 {
  height: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  margin-top: 95px !important;
  /* Clears absolute header on desktop */
}

.hero-banner-image-container {
  position: relative;
  width: 100%;
  height: auto !important;
  overflow: hidden;
}

.hero-banner-img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

.hero-banner-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 1199px) {
  .hero-3 {
    height: auto !important;
    min-height: auto !important;
    padding: 0 !important;
    margin-top: 85px !important;
    /* Clears header on small screens/tablets */
  }

  .hero-banner-img {
    width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 991px) {
  .hero-3 {
    height: auto !important;
    min-height: auto !important;
    padding: 0 !important;
    margin-top: 80px !important;
    /* Clears header on mobile */
  }

  .hero-banner-img {
    width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 767px) {
  .hero-3 {
    height: auto !important;
    min-height: auto !important;
    padding: 0 !important;
    margin-top: 80px !important;
  }

  .hero-banner-img {
    width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 575px) {
  .hero-3 {
    height: auto !important;
    min-height: auto !important;
    padding: 0 !important;
    margin-top: 80px !important;
  }

  .hero-banner-img {
    width: 100% !important;
    height: auto !important;
  }
}

/* about page section section css  */
.sectors-serve-section {
  background: linear-gradient(180deg, #f7f9f7 0%, #eef3ef 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.sectors-serve-section .sector-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(58, 127, 62, 0.15);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  height: 100%;
  z-index: 1;
}

.sectors-serve-section .sector-card::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3a7f3e 0%, #1c4d20 100%);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
}

.sectors-serve-section .sector-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(58, 127, 62, 0.18);
  border-color: transparent;
}

.sectors-serve-section .sector-card:hover::before {
  top: 0;
}

.sectors-serve-section .sector-card:hover .sector-title {
  color: #ffffff;
}

.sectors-serve-section .sector-card:hover .sector-desc {
  color: rgba(255, 255, 255, 0.9);
}

.sectors-serve-section .sector-card:hover .sector-icon {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.sectors-serve-section .sector-card:hover .sector-icon svg {
  transform: scale(1.12) rotate(5deg);
  filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.3));
}

.sectors-serve-section .sector-card:hover .sector-icon svg path {
  stroke: #ffffff;
}

.sectors-serve-section .sector-card:hover .sector-icon svg circle {
  stroke: #ffffff;
}

.sectors-serve-section .sector-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 15px;
  background: rgba(58, 127, 62, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.sectors-serve-section .sector-icon svg {
  width: 28px;
  height: 28px;
  transition: all 0.4s ease;
}

.sectors-serve-section .sector-icon svg path {
  stroke: #3a7f3e;
  transition: all 0.4s ease;
}

.sectors-serve-section .sector-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.sectors-serve-section .sector-desc {
  font-size: 13px;
  color: #555555;
  line-height: 1.45;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.sectors-serve-section .sector-cta-card {
  background: linear-gradient(135deg, rgba(58, 127, 62, 0.02) 0%, rgba(27, 94, 32, 0.06) 100%);
  border: 2px dashed rgba(58, 127, 62, 0.35);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
  height: 100%;
}

.sectors-serve-section .sector-cta-card:hover {
  border-color: #3a7f3e;
  background: linear-gradient(135deg, rgba(58, 127, 62, 0.06) 0%, rgba(27, 94, 32, 0.12) 100%);
  transform: translateY(-4px);
}

.sectors-serve-section .sector-cta-icon {
  font-size: 32px;
  color: #3a7f3e;
  margin-bottom: 12px;
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.sectors-serve-section .sector-cta-title {
  font-size: 18px;
  font-weight: 700;
  color: #1c4d20;
  margin-bottom: 8px;
}

.sectors-serve-section .sector-cta-desc {
  font-size: 13px;
  color: #555555;
  margin-bottom: 18px;
  line-height: 1.4;
}

.sectors-serve-section .sector-cta-btn {
  background: #3a7f3e;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 12px rgba(58, 127, 62, 0.15);
  display: inline-block;
}

.sectors-serve-section .sector-cta-btn:hover {
  background: #1c4d20;
  box-shadow: 0 5px 15px rgba(27, 94, 32, 0.3);
  transform: translateY(-2px);
}

/*---------------------------------------
Ornamental Trees Page Styles
---------------------------------------*/
.ornamental-trees-section {
  position: relative;
  padding: 100px 0;
  background-color: #fcfdfc;
}

.tree-showcase-title {
  max-width: 800px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.tree-showcase-title .sub-title-3 {
  display: inline-block;
  color: #82b440;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.tree-showcase-title h2 {
  color: #1c4d20;
  font-weight: 700;
  font-size: 45px;
  line-height: 1.2;
}

.tree-product-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid #f0f3f0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Anchor offset for sticky header */
#tabebuia,
#cassia-fistula,
#gulmohar,
#millingtonia,
#rain-tree,
#copper-pod,
#lagerstroemia,
#jacaranda,
#plant-sourcing,
#landscape-solutions,
#commercial-solutions,
#indoor-solutions,
#herbal-specialty,
#plantation-avenue,
#project-supply {
  scroll-margin-top: 140px;
}

.tree-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(28, 77, 32, 0.08);
  border-color: rgba(58, 127, 62, 0.2);
}

.tree-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 260px;
  background-color: #f7f9f7;
}

.tree-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.tree-product-card:hover .tree-img-wrapper img {
  transform: scale(1.08);
}

.tree-badge-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

.tree-badge {
  background: rgba(28, 77, 32, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tree-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tree-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1c4d20;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.tree-product-card:hover .tree-content h3 {
  color: #3a7f3e;
}

.tree-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.feature-pill {
  background: #f4f9f4;
  color: #3a7f3e;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(58, 127, 62, 0.1);
}

.tree-desc {
  color: #666666;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.tree-specs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  font-size: 13.5px;
  color: #555555;
  border-top: 1px dashed #e3ede3;
  padding-top: 18px;
}

.tree-specs-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.tree-specs-list li:last-child {
  margin-bottom: 0;
}

.tree-specs-list i {
  font-size: 14px;
  width: 20px;
  color: #3a7f3e;
  margin-right: 8px;
}

.tree-btn-group {
  margin-top: auto;
}

.tree-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 25px;
  background: #3a7f3e;
  color: #ffffff;
  font-weight: 600;
  font-size: 13.5px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tree-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.tree-btn:hover {
  background: #1c4d20;
  color: #ffffff;
}

.tree-btn:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   Botanical Gallery Stylesheet
   ========================================================================== */
.gallery-section {
  padding: 80px 0 0 0;
  background-color: #f7faf8;
}

.gallery-intro-text {
  margin-bottom: 50px;
}

.gallery-intro-text h2 {
  color: #1c4d20;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 15px;
}

.gallery-intro-text p {
  color: #555555;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Fluid container to align and constrain the grid */
.gallery-fluid-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px 80px 15px;
  overflow: hidden;
}

/* Grid layout with 3 images in a row and gap spacing */
.gallery-grid {
  display: grid;
  /* grid-template-columns: repeat(3, 1fr); */
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  width: 100%;
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* Grid item container */
.gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
}

/* Inner rounded container with border for the image section */
.gallery-item-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 2px solid rgba(28, 77, 32, 0.12);
  /* Border for the image section card */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Image stretches to fill the inner card fully - cover mode removes all gaps */
.gallery-item-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

/* Bottom sliding details card overlay */
.gallery-info-overlay {
  position: absolute;
  bottom: -70px;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(28, 77, 32, 0) 0%, rgba(13, 44, 15, 0.95) 80%);
  padding: 25px 15px 15px;
  text-align: center;
  box-sizing: border-box;
  transition: bottom 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
  z-index: 2;
}

.gallery-info-overlay h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px 0;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

.gallery-info-overlay span {
  color: #a4d2ac;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Elegant watermark leaf showing up on hover */
.gallery-card-leaf {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
  color: #a4d2ac;
  opacity: 0;
  transform: translateY(-10px) rotate(-15deg);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 3;
}

/* Hover transitions for high visual quality */
.gallery-item:hover {
  z-index: 10;
}

.gallery-item:hover .gallery-item-inner {
  border-radius: 35px;
  border-color: #3a7f3e;
  /* Highlights border color on hover */
  box-shadow: 0 15px 35px rgba(28, 77, 32, 0.25);
  transform: scale(0.96);
}

.gallery-item:hover .gallery-item-inner img {
  transform: scale(1.12);
}

.gallery-item:hover .gallery-info-overlay {
  bottom: 0;
}

.gallery-item:hover .gallery-card-leaf {
  opacity: 0.8;
  transform: translateY(0) rotate(0deg);
}

/* ==========================================================================
   Ornamental Trees Catalog - Custom Styles (Popup & Button Heights)
   ========================================================================== */

/* Disable card description overlay/shift effects */
.news-card-items-2 .news-image .news-content p,
.news-card-items-2:hover .news-image .news-content p {
  display: none !important;
  height: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.news-card-items-2 .news-image .theme-btn-2,
.news-card-items-2:hover .news-image .theme-btn-2,
.news-card-items-2 .theme-btn-3 {
  display: none !important;
}

/* Hover zoom on catalog card images */
.news-card-items-2:hover .news-image img {
  transform: scale(1.06);
}

/* Equal-height card rows in catalog sections */
.news-section-2 .row {
  align-items: stretch;
}

.news-section-2 .row>[class*="col-"] {
  display: flex;
  flex-direction: column;
}

.news-section-2 .news-card-items-2 {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-section-2 .news-card-items-2 .news-image {
  flex: 1;
}

/* Style the Read More tag-button with custom height & padding */
.read-more-btn {
  border: 1px solid var(--theme3) !important;
  background-color: var(--theme3) !important;
  color: var(--white) !important;
  padding: 0 24px !important;
  height: 42px !important;
  line-height: 42px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  cursor: pointer !important;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  outline: none !important;
  text-transform: uppercase !important;
  vertical-align: middle !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.read-more-btn:hover {
  background-color: var(--white) !important;
  border-color: var(--white) !important;
  color: var(--theme3) !important;
}

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

/* Popup Modal Styles */
.product-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.product-popup-card {
  position: fixed;
  top: 5vh;
  left: 50%;
  transform: translate(-50%, 0) scale(0.95);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  /* Limits popup card height to fit inside any viewport size */
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  z-index: 10001;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-popup-card.active {
  transform: translate(-50%, 0) scale(1);
  opacity: 1;
  visibility: visible;
}

.popup-header {
  flex: 0 0 auto;
  position: relative;
  width: 100%;
  height: 220px;
}

.popup-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  z-index: 10;
}

.popup-close-btn:hover {
  background: var(--theme3);
  transform: scale(1.1);
  color: #fff;
}

.popup-body {
  flex: 1 1 auto;
  padding: 25px;
  max-height: calc(90vh - 290px) !important;
  /* Forces scroll bar on small viewports */
  overflow-y: auto !important;
}

/* Custom Scrollbar for popup body */
.popup-body::-webkit-scrollbar {
  width: 6px;
}

.popup-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.popup-body::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.popup-body::-webkit-scrollbar-thumb:hover {
  background: var(--theme3);
}

.popup-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.popup-tags span {
  border: 1px solid var(--theme3);
  color: var(--theme3);
  padding: 3px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(17, 162, 27, 0.05);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.popup-body h3 {
  font-size: 26px;
  color: #2F2F2F;
  margin-bottom: 12px;
  font-weight: 700;
}

.popup-body p {
  font-size: 15px;
  line-height: 1.6;
  color: #50624A;
  margin-bottom: 15px;
}

.popup-body p:last-child {
  margin-bottom: 0;
}

.popup-footer {
  flex: 0 0 auto;
  padding: 15px 25px;
  background: #F5F6F4;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  border-top: 1px solid #e5e6e4;
}

.popup-close-text-btn {
  background-color: transparent;
  color: #50624A;
  border: 1px solid #ccc;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.popup-close-text-btn:hover {
  background-color: #e5e6e4;
  color: #2F2F2F;
}

.popup-enquire-btn {
  background-color: var(--theme3);
  color: #fff !important;
  border: 1px solid var(--theme3);
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.popup-enquire-btn:hover {
  background-color: var(--header);
  border-color: var(--header);
}

/* Media query adjustments for alignment on small screens, tablets & ipads */
@media (max-width: 991px) {
  .product-popup-card {
    max-width: 500px;
  }

  .popup-header {
    height: 180px;
  }

  .popup-body {
    padding: 20px;
    max-height: calc(85vh - 240px) !important;
  }

  .popup-body h3 {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .product-popup-card {
    width: 95%;
    max-height: 90vh;
  }

  .popup-header {
    height: 150px;
  }

  .popup-body {
    padding: 15px;
    max-height: calc(90vh - 200px) !important;
  }

  .popup-body h3 {
    font-size: 18px;
  }

  .popup-body p {
    font-size: 13px;
    line-height: 1.5;
  }

  .popup-footer {
    padding: 10px 15px;
  }

  .popup-close-text-btn,
  .popup-enquire-btn {
    padding: 6px 14px;
    font-size: 13px;
  }
}

/* Catalog Image Styles */
.catalog-img {
  width: 100% !important;
  height: 360px !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* Popup Enquiry Form Styles */
.popup-form-header {
  padding: 20px 25px;
  background: #F5F6F4;
  border-bottom: 1px solid #e5e6e4;
  flex: 0 0 auto;
}

.popup-form-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #2F2F2F;
  margin: 0;
}

.popup-form-header h3 span {
  color: var(--theme3);
}

.popup-form-body {
  padding: 25px;
  overflow-y: auto;
}

.popup-form-body .form-clt {
  margin-bottom: 15px;
}

.popup-form-body .form-clt:last-child {
  margin-bottom: 0;
}

.popup-form-body .form-clt label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #50624A;
  margin-bottom: 6px;
}

.popup-form-body .form-clt input,
.popup-form-body .form-clt textarea {
  width: 100%;
  background: #F5F6F4;
  border: 1px solid #e5e6e4;
  color: #2F2F2F !important;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.popup-form-body .form-clt input::placeholder,
.popup-form-body .form-clt textarea::placeholder {
  color: #999;
}

.popup-form-body .form-clt input:focus,
.popup-form-body .form-clt textarea:focus {
  background: #fff;
  border-color: var(--theme3);
  box-shadow: 0 0 0 3px rgba(17, 162, 27, 0.1);
  outline: none;
  color: #2F2F2F !important;
}

.popup-form-body .form-clt textarea {
  height: 120px;
  resize: vertical;
}

@media (max-width: 575px) {
  .popup-form-header {
    padding: 15px;
  }

  .popup-form-header h3 {
    font-size: 16px;
  }

  .popup-form-body {
    padding: 15px;
  }

  .popup-form-body .form-clt label {
    font-size: 13px;
  }

  .popup-form-body .form-clt input,
  .popup-form-body .form-clt textarea {
    padding: 8px 12px;
    font-size: 13px;
  }

  .popup-form-body .form-clt textarea {
    height: 100px;
  }
}

/* =====================================================
   Products Page — "View Products" Read More Button
   ===================================================== */
.products-read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 22px;
  background-color: var(--theme3);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  z-index: 1000;
  border: 2px solid transparent;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(17, 162, 27, 0.25);
  letter-spacing: 0.3px;
}

.products-read-more-btn i:first-child {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.products-read-more-btn i:last-child {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.products-read-more-btn:hover {
  background-color: #155d1a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(17, 162, 27, 0.35);
  text-decoration: none;
}

.products-read-more-btn:hover i:last-child {
  transform: translateX(4px);
}

/* On card hover — white button with green border so it stands out against green background */
.service-card-items-2.style-2:hover .products-read-more-btn {
  background-color: #ffffff;
  color: #1c6b21;
  border-color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.service-card-items-2.style-2:hover .products-read-more-btn:hover {
  background-color: #f0f9f0;
  color: #155d1a;
  transform: translateY(-2px);
}

.form-clt input,
.form-clt textarea {
  border: 2px solid #3a7f3e !important;
  /* Premium thick green border matching theme */
  border-radius: 8px !important;
  padding: 10px 16px !important;
  transition: all 0.3s ease !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #1c4d20 !important;
  background-color: #fcfdfc !important;
}

.form-clt input::placeholder,
.form-clt textarea::placeholder {
  color: #8c9c89 !important;
  opacity: 0.8 !important;
}

.form-clt input:focus,
.form-clt textarea:focus {
  border-color: #82b440 !important;
  /* Theme accent green color on focus */
  background-color: #ffffff !important;
  box-shadow: 0 0 10px rgba(130, 180, 64, 0.2) !important;
  outline: none !important;
}

.form-clt span {
  font-weight: 700 !important;
  color: #1c4d20 !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 4px !important;
  display: inline-block !important;
}

/* ============================================================
   Category Intro Section — Full-Width Editorial Strip
   ============================================================ */
@keyframes introBorderGrow {
  from {
    transform: scaleX(0);
    opacity: 0;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes introFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.category-intro-section {
  background: #ffffff;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(46, 125, 50, 0.18);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(46, 125, 50, 0.06);
}

.category-intro-section .intro-top-border {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #2e7d32 0%, #66bb6a 35%, #a5d6a7 65%, transparent 100%);
  transform-origin: left center;
  transform: scaleX(0);
  animation: introBorderGrow 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

.category-intro-section .intro-bottom-border {
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, #2e7d32 0%, #66bb6a 35%, #a5d6a7 65%, transparent 100%);
  transform-origin: right center;
  transform: scaleX(0);
  animation: introBorderGrow 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.35s both;
}

.category-intro-section .intro-inner {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 28px 3% 28px;
  width: 100%;
  box-sizing: border-box;
}

.category-intro-section .intro-accent-bar {
  flex-shrink: 0;
  width: 4px;
  height: 150px;
  background: linear-gradient(180deg, #2e7d32, #81c784);
  border-radius: 4px;
  margin-top: 2px;
  animation: introFadeUp 0.9s ease 0.55s both;
}

.category-intro-section .intro-text-block {
  flex: 1;
  animation: introFadeUp 0.9s ease 0.6s both;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-intro-section .intro-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: bold;
  /* letter-spacing: 0.14em; */
  color: #2e7d32;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", serif;
}

.category-intro-section .intro-paragraph {
  font-size: 1.07rem;
  line-height: 1.88;
  color: #4a5568;
  margin: 0;
  font-weight: 400;
  max-width: 1260px;
}

/* Responsive */
@media (max-width: 991px) {
  .category-intro-section .intro-inner {
    padding: 40px 5% 36px;
    gap: 22px;
  }

  .category-intro-section .intro-accent-bar {
    height: 68px;
  }

  .category-intro-section .intro-paragraph {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .category-intro-section .intro-inner {
    padding: 32px 5% 28px;
    gap: 16px;
  }

  .category-intro-section .intro-accent-bar {
    height: 56px;
    width: 3px;
  }

  .category-intro-section .intro-paragraph {
    font-size: 0.95rem;
    line-height: 1.78;
  }
}

/* ========================================
   Category Intro Section
======================================== */

.category-intro-section {
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 20px;
}

.intro-top-border {
  width: 60px;
  height: 4px;
  background: #2e7d32;
  border-radius: 5px;
  margin-bottom: 20px;
}

.intro-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.intro-accent-bar {
  width: 4px;
  min-height: 100px;
  background: #2e7d32;
  border-radius: 10px;
  flex-shrink: 0;
}

.intro-text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #2e7d32;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.intro-label svg {
  width: 16px;
  height: 16px;
}

.intro-paragraph {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  margin: 0;
  text-align: justify;
}

/* ========================================
   Large Desktop
======================================== */



/* ========================================
   Tablet
======================================== */

@media (max-width: 991px) {
  .category-intro-section {
    padding: 40px 40px;
  }

  .intro-paragraph {
    font-size: 16px;
    line-height: 1.8;
  }
}

/* ========================================
   Mobile
======================================== */

@media (max-width: 767px) {
  .category-intro-section {
    padding: 30px 20px;
  }

  .intro-inner {
    flex-direction: column;
    gap: 15px;
  }

  .intro-accent-bar {
    width: 60px;
    height: 4px;
    min-height: auto;
  }

  .intro-label {
    font-size: 13px;
  }

  .intro-paragraph {
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
  }
}

/* ==========================================================================
   Consolidated Sticky Icons & Get a Quote Modal
   ========================================================================== */

/* Sticky Icons Group */
.sticky-icons-group {
  position: fixed !important;
  right: 25px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 999999 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transition: all 0.4s ease-in-out !important;
}

.sticky-icon-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 55px !important;
  height: 55px !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  text-decoration: none !important;
  border: 2px solid #ffffff !important;
  cursor: pointer !important;
  position: relative !important;
}

.sticky-icon-btn i {
  font-size: 24px !important;
  transition: transform 0.3s ease !important;
}

/* WhatsApp - Green gradient */
.sticky-icon-btn.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
  box-shadow: 0 4px 15px rgba(18, 140, 126, 0.4) !important;
}

.sticky-icon-btn.whatsapp:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 8px 25px rgba(18, 140, 126, 0.6) !important;
}

/* Call Now - Premium Blue gradient */
.sticky-icon-btn.call-now {
  background: linear-gradient(135deg, #134792 0%, #0d3269 100%) !important;
  box-shadow: 0 4px 15px rgba(19, 71, 146, 0.4) !important;
}

.sticky-icon-btn.call-now:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 8px 25px rgba(19, 71, 146, 0.6) !important;
}

/* Get a Quote - Dark Green matching theme */
.sticky-icon-btn.get-quote {
  background: linear-gradient(135deg, #3a7f3e 0%, #204c23 100%) !important;
  box-shadow: 0 4px 15px rgba(58, 127, 62, 0.4) !important;
}

.sticky-icon-btn.get-quote:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 8px 25px rgba(58, 127, 62, 0.6) !important;
}

.sticky-icon-btn:hover i {
  transform: rotate(15deg) scale(1.1) !important;
}

/* Tooltips */
.sticky-icon-btn::before {
  content: attr(title);
  position: absolute;
  right: 70px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.sticky-icon-btn:hover::before {
  opacity: 1;
  visibility: visible;
  right: 65px;
}

/* Pulsing effect */
.sticky-icon-btn.whatsapp::after {
  content: '';
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: -4px;
  right: -4px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  background: rgba(37, 211, 102, 0.35);
  animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .sticky-icons-group {
    right: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    bottom: auto !important;
    gap: 8px !important;
  }

  .sticky-icon-btn {
    width: 48px !important;
    height: 48px !important;
  }

  .sticky-icon-btn i {
    font-size: 20px !important;
  }

  .sticky-icon-btn::before {
    display: none !important;
  }
}

/* ==========================================================================
   Get a Quote Modal Popup Styles
   ========================================================================== */
.quote-modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(8px) !important;
  z-index: 1000000 !important;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease !important;
}

.quote-modal {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(0.9) !important;
  width: 90% !important;
  max-width: 600px !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  background: #ffffff !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
  z-index: 1000001 !important;
  display: none;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  padding: 35px !important;
  box-sizing: border-box !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Custom Scrollbar for the scrollable modal */
.quote-modal::-webkit-scrollbar {
  width: 6px !important;
}

.quote-modal::-webkit-scrollbar-track {
  background: #f1f1f1 !important;
  border-radius: 10px !important;
}

.quote-modal::-webkit-scrollbar-thumb {
  background: #c1c1c1 !important;
  border-radius: 10px !important;
}

.quote-modal::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8 !important;
}

.quote-modal-overlay.show,
.quote-modal.show {
  display: block !important;
}

.quote-modal-overlay.animate,
.quote-modal.animate {
  opacity: 1 !important;
}

.quote-modal.animate {
  transform: translate(-50%, -50%) scale(1) !important;
}

.quote-modal-close {
  position: absolute !important;
  top: 20px !important;
  right: 20px !important;
  font-size: 24px !important;
  background: none !important;
  border: none !important;
  color: #333333 !important;
  cursor: pointer !important;
  line-height: 1 !important;
  transition: color 0.2s ease, transform 0.2s ease !important;
  z-index: 10 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background-color: #f5f5f5 !important;
}

.quote-modal-close:hover {
  color: #d32f2f !important;
  transform: rotate(90deg) !important;
  background-color: #ffebee !important;
}

.quote-modal-content {
  text-align: center !important;
}

.quote-modal-logo-container {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-bottom: 20px !important;
}

.quote-modal-logo {
  max-height: 75px !important;
  width: auto !important;
}

.quote-modal-title {
  font-size: 26px !important;
  color: #3a7f3e !important;
  /* Deep Green matching theme */
  margin-bottom: 8px !important;
  font-weight: 700 !important;
}

.quote-modal-subtitle {
  font-size: 14px !important;
  color: #666666 !important;
  margin-bottom: 25px !important;
}

.quote-form-row {
  display: flex !important;
  gap: 20px !important;
  margin-bottom: 18px !important;
}

.quote-form-group {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  text-align: left !important;
}

.quote-form-group.full-width {
  margin-bottom: 25px !important;
}

.quote-form-group label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #333333 !important;
  margin-bottom: 6px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.quote-form-group label .required {
  color: #d32f2f !important;
}

.quote-form-input,
.quote-form-textarea {
  width: 100% !important;
  padding: 12px 16px !important;
  border: 1px solid #dcdcdc !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  color: #333333 !important;
  outline: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
  background-color: #fafafa !important;
  box-sizing: border-box !important;
}

.quote-form-input:focus,
.quote-form-textarea:focus {
  border-color: #3a7f3e !important;
  background-color: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(58, 127, 62, 0.15) !important;
}

.quote-form-textarea {
  resize: vertical !important;
  min-height: 100px !important;
}

.quote-submit-btn {
  width: 100% !important;
  padding: 14px !important;
  background: linear-gradient(135deg, #3a7f3e 0%, #204c23 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  box-shadow: 0 4px 15px rgba(58, 127, 62, 0.2) !important;
}

.quote-submit-btn:hover {
  background: linear-gradient(135deg, #449448 0%, #275d2b 100%) !important;
  box-shadow: 0 6px 20px rgba(58, 127, 62, 0.3) !important;
}

.quote-submit-btn:active {
  transform: scale(0.98) !important;
}

.quote-form-status {
  padding: 12px 15px !important;
  border-radius: 8px !important;
  margin-bottom: 20px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.quote-form-status.success {
  background-color: #e8f5e9 !important;
  color: #2e7d32 !important;
  border: 1px solid #c8e6c9 !important;
}

.quote-form-status.error {
  background-color: #ffebee !important;
  color: #c62828 !important;
  border: 1px solid #ffcdd2 !important;
}

@media (max-width: 575px) {
  .quote-modal {
    padding: 25px 20px !important;
    width: 95% !important;
  }

  .quote-form-row {
    flex-direction: column !important;
    gap: 15px !important;
    margin-bottom: 15px !important;
  }

  .quote-modal-title {
    font-size: 22px !important;
  }
}


.off_canvas_text_headi{
  font-family: "Cormorant Garamond", serif;
}