



/*=============== GOOGLE FONTS ===============*/

@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/

:root {

  --header-height: 3.5rem;

  /*========== Colors ==========*/

  /*Color mode HSL(hue, saturation, lightness)*/

  --first-color: hsl(230, 75%, 56%);

  --title-color: hsl(230, 75%, 15%);

  --text-color: hsl(230, 12%, 40%);

  --body-color: hsl(230, 100%, 98%);

  --container-color: hsl(230, 100%, 97%);

  --border-color: hsl(230, 25%, 80%);

  /*========== Font and typography ==========*/

  /*.5rem = 8px | 1rem = 16px ...*/

  --body-font: "Syne", sans-serif;

  --h2-font-size: 1.25rem;

  --normal-font-size: 0.938rem;

  /*========== Font weight ==========*/

  --font-regular: 400;

  --font-medium: 500;

  --font-semi-bold: 600;

  /*========== z index ==========*/

  --z-fixed: 100;

  --z-modal: 1000;

}



/*========== Responsive typography ==========*/

@media screen and (min-width: 1023px) {

  :root {

    --h2-font-size: 1.5rem;

    --normal-font-size: 1rem;

  }

}

/*=============== BASE ===============*/

* {

  box-sizing: border-box;

  padding: 0;

  margin: 0;

}



html {

  scroll-behavior: smooth;

}



body,

input,

button {

  /* font-family: "Poppins", sans-serif;: var(--body-font); */

  /* font-size: var(--normal-font-size); */

}



body {

  background-color: #fff;

  color: var(--text-color);

  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"!important;

}

h2 {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}
h3 {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}
input,

button {

  border: none;

  outline: none;

}



ul {

  list-style: none;

}



a {

  text-decoration: none;

}



.nav__logo img {

  max-width: 200px; /* Set the maximum width of the logo */

  height: auto; /* Maintain the aspect ratio */

}



/*=============== REUSABLE CSS CLASSES ===============*/

.container {

  /* max-width: 1120px; */

  margin: 0 auto;

  /* padding: 0 15px; */

}



.main {

  position: relative;

  height: 100vh;

}



.main__bg {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  -o-object-fit: cover;

  object-fit: cover;

  -o-object-position: center;

  object-position: center;

  z-index: -1;

}



.search,

.login {

  position: fixed;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  z-index: var(--z-modal);

  background-color: hsla(230, 75%, 15%, 0.1);

  -webkit-backdrop-filter: blur(24px);

  backdrop-filter: blur(24px);

  padding: 8rem 1.5rem 0;

  opacity: 0;

  pointer-events: none;

  transition: opacity 0.2s;

}

.sub-menu{

  padding: 10px 10px;
  border-radius:5px;
  }

.search__close,

.login__close {

  position: absolute;

  top: 2rem;

  right: 2rem;

  font-size: 1.5rem;

  color: var(--title-color);

  cursor: pointer;

}



/*=============== HEADER & NAV ===============*/

/*=============== HEADER & NAV ===============*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--body-color);
  box-shadow: 0 2px 16px hsla(230, 75%, 32%, 0.15);
  z-index: var(--z-fixed);
  padding: 7px 5px 10px 7px;
}


.nav {

  height: var(--header-height);

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: nowrap;

  padding: 0 0rem; /* Added padding for spacing */

}



.nav__logo {

  display: flex;

  justify-content: flex-start;

  width: 20%;

}



.nav__menu {

  /* display: flex; */ /* Ensure the menu is flex for desktop view */

}



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

  .nav__menu {

    position: fixed;

    top: -100%;

    left: 0;

    background-color: var(--body-color);

    box-shadow: 0 8px 16px hsla(230, 75%, 32%, 0.15);

    width: 100%;

    padding-block: 4.5rem 4rem;

    transition: top 0.2s;

    flex-direction: column; /* Stack items vertically for mobile */

    align-items: center; /* Center items */

  }

.nav__list {

    display: flex;

    flex-direction: column !important;

    row-gap: 2.5rem;

    margin-bottom: 0;

    text-align: center;

    padding-left: 0;

}

}



.nav__list {

  display: flex;

  flex-direction: row; /* Default to row for desktop */

  row-gap: 2.5rem;

  margin-bottom: 0;

  text-align: center;

  padding-left: 0;

}



.nav__item {

  list-style: none; /* Ensure list items don't have bullets */

}



.nav__link {

  color: var(--title-color);

  font-weight: var(--font-semi-bold);

  transition: color 0.2s;

  padding: 0rem 0rem; /* Added padding for better clickable area */

}



.nav__close {

  position: absolute;

  top: 1.15rem;

  right: 1.5rem;

}



.nav__actions {

  display: flex;

  align-items: center;

  gap: 1rem; /* Unified gap property for spacing */

  /* display: none; */

}



.nav__search,

.nav__login,

.nav__toggle,

.nav__close {

  font-size: 1.25rem;

  color: var(--title-color);

  cursor: pointer;

  transition: color 0.2s;

}



:is(.nav__logo, .nav__search, .nav__login, .nav__toggle, .nav__link):hover {

  color: hsl(169.26deg 87.16% 21.37%);

}



/* Show menu */

.show-menu {

  top: 0;

}



/*=============== SEARCH ===============*/

.search__form {

  display: flex;

  align-items: center;

  gap: 0.5rem; /* Unified gap property for spacing */

  background-color: var(--container-color);

  box-shadow: 0 8px 32px hsla(230, 75%, 15%, 0.2);

  padding: 0 1rem;

  border-radius: 0.5rem;

  transform: translateY(-1rem);

  transition: transform 0.2s;

}



.search__icon {

  font-size: 1.25rem;

  color: var(--title-color);

}



.search__input {

  width: 100%;

  padding: 1rem; /* Uniform padding */

  background-color: var(--container-color);

  color: var(--text-color);

}



.search__input::placeholder {

  color: var(--text-color);

}



/* Show search */

.show-search {

  opacity: 1;

  pointer-events: initial;

}



.show-search .search__form {

  transform: translateY(0);

}



/*=============== LOGIN ===============*/

.login__form {

  display: grid;

  background-color: var(--container-color);

  padding: 2rem 1.5rem 2.5rem;

  box-shadow: 0 8px 32px hsla(230, 75%, 15%, 0.2);

  border-radius: 1rem;

  row-gap: 1.25rem;

  text-align: center;

  transform: translateY(-1rem);

  transition: transform 0.2s;

  /* width: 75%; */

  display: flex;

  flex-direction: column;

  justify-content: end;

  margin: 0px auto;

}




.login__title {
  font-size: 25px;
  color: #283734;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  padding-bottom: 10px;
}


.login__group {
  display: grid
;
  row-gap: 0rem;
}



.login__label {

  display: block;

  text-align: initial;

  color: hsl(168deg 15.79% 18.63%);

  font-weight: 500;

  margin-bottom: 0.8rem;

}

.from-row {

    display: flex;

   gap: 10px;

}

.login__input {

  width: 100%;

  background-color: var(--container-color);

  border: 2px solid var(--border-color);

  padding: 1rem;

  border-radius: 0.5rem;

  color: var(--text-color);

}



.login__input::placeholder {

  color: var(--text-color);

}



.login__signup {

  margin-bottom: 0.5rem;

}



.login__signup a {

  color: #283734;

  font-weight: 600;

}



.login__forgot {

  display: inline-block;

  color: #283734;

  margin-bottom: 1.25rem;

}



.login__button {

  display: inline-block;

  background-color: #283734;



  color: #fff;

  font-weight: var(--font-semi-bold);

  padding: 1rem;

  border-radius: 0.5rem;

  cursor: pointer;

  transition: box-shadow 0.4s;

}



.login__button:hover {

  /* box-shadow: 0 4px 24px hsla(230, 75%, 40%, 0.4); */

  background: #fbd45a;

  color: #000;

}



/* Show login */

.show-login {

  opacity: 1;

  pointer-events: initial;

}



.show-login .login__form {

  transform: translateY(0);

}



/*=============== BREAKPOINTS ===============*/

/* For medium devices */

@media screen and (min-width: 576px) {

  .search,

  .login {

    padding-top: 10rem;

  }

  

  .search__form {

    max-width: 450px;

    margin-inline: auto;

  }



  .search__close,

  .login__close {

    width: max-content;

    top: 5rem;

    left: 0;

    right: 0;

    margin-inline: auto;

    font-size: 2rem;

    color: #ffffff;

  }



 

}



/* For large devices */

@media screen and (min-width: 1023px) {

  .nav {

    height: calc(var(--header-height) + 2rem);

    gap: 2rem; /* Unified gap property for spacing */

  }



  .nav__close,

  .nav__toggle {

    display: none;

  }



  .nav__menu {

    margin-left: auto;

  }



  .nav__list {

    flex-direction: row; /* Default to row for desktop */

    gap: 2rem; /* Unified gap property for spacing */

  }




    .login__form {
      padding: 2rem 1rem 2.5rem;
    }
  
}

a.nav__link.active {

    color: hsl(169.26deg 87.16% 21.37%);

    border-bottom: 2px solid;

}

@media screen and (min-width: 1150px) {

  .container {

    margin-inline: auto;

  }

}







/* banner css start Now */





/*--------------------------------------------------------------

# Main Slider

--------------------------------------------------------------*/





.main-slider {

  position: relative;

  display: block;

  z-index: 91;

  /* min-height: 100vh; */

  overflow: hidden;

}



.thm-swiper__slider .swiper-slide {

  position: relative;

  background-color: #283734;

}

.brand-carousel h2 {

    color: #000;

    font-size: 20px;

    text-align: center;

    padding: 0px 0px 20px;

}

.main-slider .container {

  position: relative;

  padding-top: 175px;

  padding-bottom: 50px;

  z-index: 30;

}



.main-slider .image-layer {

  position: absolute;

  top: 0;

  /* right: -100px; */

  bottom: 0;

  width: 100%;

  mix-blend-mode: luminosity;

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center;

  /* -webkit-transform: scale(1); */

  /* transform: scale(1); */

  /* -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease; */

  /* transition: opacity 1500ms ease-in, transform 7000ms ease; */

  /* transition: transform 7000ms ease, opacity 1500ms ease-in; */

  /* transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease; */

  z-index: 1;

  /* filter: brightness(.25); */

}

.main-slider .image-layer::after {

    content: "";

    width: 100%;

    height: 100%;

    position: absolute;

    background-image: linear-gradient(to left, rgb(33 44 87 / 71%) 0, #181e31 100%);

    top: 0;

    left: 0

}

.brand-carousel.main-slider__btn-box {

  margin-top: 17px;

}



.thm-swiper__slider .brand-carousel .swiper-slide {

  background: none !important;

  

  

}

.main-slider .swiper-slide-active .image-layer {

  -webkit-transform: scale(1.15);

  /* transform: scale(1.15); */

}



.main-slider-shape-1 {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  opacity: 0.02;

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  /* z-index: -1; */

}



.main-slider-shape-2 {

  position: absolute;

  bottom: -68px;

  left: 30px;

  opacity: 0.07;

  z-index: 4;

}



.main-slider-shape-2 img {

  width: auto;

}



.main-slider__content {

  position: relative;

  /* display: flex; */

  /* text-align: left; */

  /* flex-direction: column; */

  align-items: center;

  /* justify-content: left; */

  /* margin-top: 42px; */

}



.main-slider__content .main-slider__sub-title {

  font-size: 20px;

  color: #fbd45a;

  font-weight: 700;

  line-height: 40px;

  font-family: "Poppins", sans-serif;

  opacity: 0;

  visibility: hidden;

  transform: translateY(-120px);

  transition: opacity 2s ease, transform 2s ease, visibility 0s 2s;

  margin-bottom: -1rem;

}



.main-slider__title {

  position: relative;

  font-size: 27px;

  color: #ffff;

  font-weight: 900;

  line-height: 35px;

  letter-spacing: -0.04em;

  font-family: "Poppins", sans-serif !important;

  margin-top: 22px;

  margin-bottom: 26px;

  opacity: 0;

  visibility: hidden;

  transform: translateY(-120px);

  transition: opacity 2s ease, transform 2s ease, visibility 0s 2s;

}



.main-slider__btn-box {

  position: relative;

  display: block;

  opacity: 0;

  visibility: hidden;

  transform: translateY(120px);

  transition: opacity 2s ease, transform 2s ease, visibility 0s 2s;

  margin: 30px 0 0;

}



.main-slider__btn:hover {

  color: #00715d;

}



.main-slider__btn:before {

  background-color: #fff;

}



/* Active slide animations */

.main-slider .swiper-slide-active .main-slider__title,

.main-slider .swiper-slide-active .main-slider__sub-title,

.main-slider .swiper-slide-active .main-slider__btn-box {

  visibility: visible;

  opacity: 1;

  transform: translateY(0);

  transition: opacity 1s ease, transform 1s ease;

}





.main-slider__nav {

  position: absolute;

  top: 42%;

  left: 0px;

  z-index: 100;

  transform: translateY(-50%) translateX(0%);

  display: flex;

  align-items: flex-start;

  flex-direction: column;

  max-width: 1200px;

  width: 100%;

  padding: 0 15px;

  height: 0;

  line-height: 0;

}





.main-slider__nav .swiper-button-next,

.main-slider__nav .swiper-button-prev {

  position: relative;

  top: auto;

  left: auto;

  right: auto;

  bottom: auto;

  z-index: 100;

  width: 50px;

  height: 50px;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 18px;

  color: #ffffff33;

  border: 2px solid #ffffff33;

  border-radius: 50%;

  margin: 0;

  text-align: center;

  transition: all 500ms ease;

  padding: 23px 0;

}



.main-slider__nav .swiper-button-next:hover,

.main-slider__nav .swiper-button-prev:hover {

  color: rgba(var(--oxpins-white-rgb), 1);

  border: 2px solid rgba(var(--oxpins-white-rgb), 1);

}



.main-slider__nav .swiper-button-next::after,

.main-slider__nav .swiper-button-prev::after {

  display: none;

}



.main-slider__nav .swiper-button-prev {

  margin-bottom: 10px;

}

.main-slider .swiper-slide-active .image-layer {

  /* -webkit-transform: scale(1.15); */

  /* transform: scale(1.15); */

}







.main-slider .swiper-slide-active .image-layer {

  /* transform: scale(1.15); */

}



.thm-btn {

  position: relative;

  display: inline-block;

  vertical-align: middle;

  -webkit-appearance: none;

  appearance: none;

  outline: none !important;

  background-color: #fbd45a; /* Original button color */

  color: #000;

  font-size: 14px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0;

  border-radius: 30px;

  padding: 20px 49px; /* Removed redundant padding */

  transition: color 0.5s linear; /* Transition for text color */

  overflow: hidden;

  z-index: 1;

  text-decoration: none; /* Remove underline from link */

}



/* Change button text color on hover */

.thm-btn:hover {

  color: #00715d;

}

p.text-wrapper {

  font-size: 25px;

  color: #fff;

  display: flex;

  justify-content: center;

  margin: 0px auto;

  padding-right: 35px;

}

/* Add hover effect for the :before pseudo-element */

.thm-btn:before {

  transition-duration: 800ms;

  position: absolute;

  width: 200%;

  height: 200%;

  content: "";

  top: -230%;

  left: 50%;

  transform: translateX(-50%);

  border-radius: 50%;

  z-index: -1; /* Behind the button text */

  background-color: #283734; /* Background color for the hover effect */

}



/* Move the :before element on hover */

.thm-btn:hover:before {

  top: -40%; /* Move it upwards on hover */

  background-color: #fff;



}





/***

=============================================

    Float Bob X Animation Css

=============================================

***/

@-webkit-keyframes float-bob-x {

  0% {

    transform: translateX(-30px);

  }



  50% {

    transform: translateX(-10px);

  }



  100% {

    transform: translateX(-30px);

  }

}



@keyframes float-bob-x {

  0% {

    transform: translateX(-30px);

  }



  50% {

    transform: translateX(-10px);

  }



  100% {

    transform: translateX(-30px);

  }

}



.float-bob-x {

  -webkit-animation-name: float-bob-x;

  animation-name: float-bob-x;

  -webkit-animation-duration: 2s;

  animation-duration: 2s;

  -webkit-animation-iteration-count: infinite;

  animation-iteration-count: infinite;

  -webkit-animation-timing-function: linear;

  animation-timing-function: linear;

}







/* banner css design end  */





/*--------------------------------------------------------------

# Feature Two

--------------------------------------------------------------*/

.feature-two {

  position: relative;

  display: block;

  padding: 60px 0 115px;

}



.feature-two .container {

  max-width: 1440px;

}



.feature-two__single {

    position: relative;

    display: block;

    margin-bottom: 45px;

    z-index: 1;

    transition: box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effect */

}



/* Hover effect with box-shadow */

.feature-two__single:hover {

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Adjust shadow size and opacity */

    transform: translateY(-5px); /* Optional: slight lift effect */

}





.feature-two__single-inner {

  position: relative;

  display: block;

  background-color: #84b57f;

  padding: 50px 30px 50px;

  border-radius: 15px;

  overflow: hidden;

  z-index: 1;

  min-height: 230px;

}



.feature-two-shape-1 {

  position: absolute;

  top: 0;

  right: 0;

  bottom: 0;

  width: 235px;

  z-index: -1;

  background-repeat: no-repeat;

}



.feature-two__content-box {

  position: relative;

  display: flex;

  /* justify-content: space-between; */

}



.feature-two__content-left {

  position: relative;

  display: block;

}



.feature-two__tagline {

  font-size: 20px !important;

  color: #fbd45a !important;

  font-family: "Poppins", sans-serif !important;

  font-weight: 700 !important;

  line-height: 24px  !important;

  width: 100%  !important;

  text-align: left !important;

  display: flex !important;

  justify-content: left !important;

}



.feature-two__title {

  font-size: 15px;

  /* font-weight: 900; */

  line-height: 25px;

  letter-spacing: -0.04em;

  margin-top: 8px;

}



.feature-two__title a {

  color: #ffffff;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.feature-two__title a:hover {

  color: #fbd45a;

}



.feature-two__icon {

  position: relative;

  display: flex;

  top: 3px;

}



.feature-two__icon span {

  position: relative;

  display: inline-block;

  font-size: 65px;

  color: #fbd45a;

  transition: all 500ms linear;

  transition-delay: 0.1s;

  transform: scale(1);

}



.feature-two__single:hover .feature-two__icon span {

  transform: scale(1.2);

}



.feature-two__arrow {

  position: absolute;

  right: 50px;

  bottom: -25px;

  z-index: 2;

}



.feature-two__arrow a {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  height: 50px;

  width: 50px;

  border-radius: 50%;

  background-color: rgb(255, 255, 255);

  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.15);

  font-size: 15px;

  color: #283734;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.feature-two__single:hover .feature-two__arrow a {

  background-color: #fbd45a;

  color: #00715d;

}



/* feature css design end */



/* about css design start */





.about {

  position: relative;

  overflow-x: hidden;

  padding: 50px 0px 50px;

}

.about__layer {

  background: linear-gradient(88deg, #F2F8F7 0%, rgba(242, 248, 247, 0) 100%);

  width: 41%;

  height: 100%;

  position: absolute;

  left: 0;

}

.about__heading {

  margin: 0 0 24px 0;

}

.about__desc {

  font-size: 16px;

  line-height: 28px !important;

}

.about__list {

  margin: 15px 0 0 0;

  padding-left: 0;

  display: grid;

  grid-template-columns: 1fr 1fr;

}

.about__list li:nth-child(2) {

  margin: 5px 0;

}

.about__list li i {

  padding: 8px !important;

  margin: 0 9px 0 0;

  background: #00715d;

  border: 2pxoslid #00715d;

  border-radius: 30px;

  color: #fff;

}

.about__list li i:hover{

  background: transparent;

  color: #00715d;

}

.about__list li span {

  font-size: 16px !important;

  font-weight: 500 !important;

}

.about__image img {

  /* border-radius: 20px; */

}

.about__image:first-child img {

  /* -webkit-transform: translate(0, -40px); */

  transform: translate(0, 100px);

}

.about__image2 img {

  border-radius: 55px;

  -webkit-transform: rotateY(10deg);

          transform: rotateY(10deg);

}

.about-one__image {

  /* padding-left: 100px; */

}



.about-one__image__inner {

  position: relative;

  display: table;

}

.about-one__image__inner img {

  max-width: 100%;

  height: auto;

}

.about-one__image__with-border {

  position: absolute;

  right: -100px;

  bottom: 50px;

  z-index: 1;

  border: 10px solid var(--easilon-white, #ffffff);

  filter: drop-shadow(0px 4px 60px rgba(117, 165, 67, 0.12));

  animation: moveHorizontal2 2s linear infinite;

}



.about-one__image__shape {

  position: absolute;

  top: 30px;

  right: -93px;

  animation: zumpBottom 2s linear infinite;

}



.about-one__experience {

  position: relative;

  position: absolute;

  top: 50px;

  left: -98px;

  padding: 34px 26px 19px;

  text-align: center;

  background-color: var(--easilon-base, #00715d);

  z-index: 2;

}



.about-one__experience::before {

  content: "";

  width: 100px;

  height: 67px;

  background-color: var(--easilon-black, #283734);

  position: absolute;

  left: 0;

  bottom: -67px;

  clip-path: polygon(0 0, 100% 100%, 100% 0);

}



.about-one__experience__bg {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background-repeat: no-repeat;

  background-position: center center;

  background-size: cover;

  mix-blend-mode: multiply;

  opacity: 0.25;

}

.about-one__experience__year {

  margin-bottom: 3px;

  font-weight: 700;

  font-size: 45px;

  line-height: 1.22;

  color: #f4d15a;

  letter-spacing: var(--easilon-letter-space-xl, -0.03em);

  text-transform: capitalize;

}

.about-one__experience__title {

  margin: 0;

  font-weight: 600;

  font-size: 16px;

  line-height: 1.375;

  color: #fff;

  letter-spacing: var(--easilon-letter-space-xl, -0.03em);

  text-transform: capitalize;

}

.about-one__experience__content {

  position: relative;

  z-index: 1;

}



h3.sub-title {

    color: #00715d;

    font-size: 20px;

}

.main_btn-box {

  margin-top: 30px;

  margin-bottom: 30px;

}



a.thn-btn.main__btn {position: relative;display: inline-block;vertical-align: middle;-webkit-appearance: none;appearance: none;outline: none !important;background-color: #00715d; /* Original button color */color: #fff;font-size: 14px;font-weight: 800;text-transform: uppercase;letter-spacing: 0;border-radius: 30px;padding: 20px 49px; /* Removed redundant padding */transition: color 0.5s linear; /* Transition for text color */overflow: hidden;z-index: 1;text-decoration: none; /* Remove underline from link */}



/* Change button text color on hover */

a.thn-btn.main__btn:hover {color: #fff;}

/* Add hover effect for the :before pseudo-element */

a.thn-btn.main__btn:before {

transition-duration: 800ms;

position: absolute;

width: 200%;

height: 200%;

content: "";

top: -230%;

left: 50%;

transform: translateX(-50%);

border-radius: 50%;

z-index: -1; /* Behind the button text */

background-color: #283734; /* Background color for the hover effect */

}



/* Move the :before element on hover */

a.thn-btn.main__btn:hover:before {top: -40%; /* Move it upwards on hover */background-color: #000;}

/* about css design end */



/* service section design  */

.bg-img {

  background-color: #f3f3f3;

  background-size: cover;

  padding: 70px 0px 50px;

}

.service-custom-row {

  display: -webkit-box;

  display: -webkit-flex;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-pack: end;

  -webkit-justify-content: flex-end;

  -ms-flex-pack: end;

  justify-content: center;

  padding-left: 0px;

  -webkit-box-align: center;

  -webkit-align-items: center;

  -ms-flex-align: center;

  align-items: center;

  column-gap: 31px;

  padding-top: 50px;

}

.service-content h4 {

    font-size: 18px;

    color: #000;

}

.service-col-01 {

  /* width: 100%; */

  padding-left: 0px;

  padding-right: 0px;

  /* -webkit-flex-basis: 22%; */

  -ms-flex-preferred-size: 22%;

  flex-basis: 100%;

  display: -webkit-box;

  display: -webkit-flex;

  display: -ms-flexbox;

  display: flex;

  justify-content: center;

  margin: 0px auto;

  text-align: center;

}

.section-sub-title {
	color: #117a68;
	/* letter-spacing: 2px; */
	line-height: 1.43;
	margin-top: -5px;
	margin-bottom: 5px;
	font-size: 20px;
}

h2.mb-20.section-heading {

    color: #000;

}







a.ht-btn {position: relative;display: inline-block;vertical-align: middle;-webkit-appearance: none;appearance: none;outline: none !important;background-color: #00715d; /* Original button color */color: #fff;font-size: 14px;font-weight: 800;text-transform: uppercase;letter-spacing: 0;border-radius: 30px;padding: 20px 49px; /* Removed redundant padding */transition: color 0.5s linear; /* Transition for text color */overflow: hidden;z-index: 1;text-decoration: none; /* Remove underline from link */}



/* Change button text color on hover */

a.ht-btn:hover {color: #fff;}

/* Add hover effect for the :before pseudo-element */

a.ht-btn:before {

transition-duration: 800ms;

position: absolute;

width: 200%;

height: 200%;

content: "";

top: -230%;

left: 50%;

transform: translateX(-50%);

border-radius: 50%;

z-index: -1; /* Behind the button text */

background-color: #283734; /* Background color for the hover effect */

}

a.ht-btn:hover:before {top: -40%; /* Move it upwards on hover */background-color: #000;}

/* Move the :before element on hover */

.ht-service-icon.style-01 .service-icon img {

    width: 20%;

}



.service-content h4 {

    font-size: 18px;

    color: #000;

}



.section-title-wrap {

    display: flex;

    flex-direction: column;

}



.section-title-wrap .service-btn-box {

    margin-top: 26px;

}



.section-title-wrap p {

    margin-bottom: 0;

    width: 65%;

    text-align: center;

    display: flex;

    justify-content: center;

    margin: 0px auto;

}

.section-space--pb_60 {

  padding-bottom: 50px;

}

.section-space--pt_100 {

  padding-top: 51px;

}



.service-col-02 .row {

  display: flex; /* Use flexbox for alignment */

  flex-wrap: wrap; /* Allow wrapping of columns */

  margin: 0 -15px; /* Negative margin for gutter spacing */

}



.service-col-02 .col-xl-2, .col-lg-2, .col-md-2 {

  padding: 0 10px; /* Padding for columns */

  flex: 0 0 20%; /* Flex-grow and flex-basis for 5 columns */

  max-width: 20%; /* Ensure maximum width of each column */

}



.service-col-02 .feature-two__single {

  background-color: #c1dec3; /* Background color for individual feature boxes */

  border-radius: 10px; /* Rounded corners */

  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */ /* Shadow for depth */

  transition: transform 0.3s; /* Smooth transition on hover */

  width: 100%;

}



.feature-two__single:hover {

  transform: translateY(-5px); /* Slight lift effect on hover */

}



.service-col-02 .feature-two__content-box {

  /* padding: 20px; */ /* Padding inside content box */

}



/* Ensure text is centered within the box */

.service-col-02.feature-two__tagline,

.feature-two__title {

  /* text-align: center; */ /* Center text */

}



.service-col-02 .feature-two__icon {

  display: flex;

  justify-content: center; /* Center icon horizontally */

  margin-top: 10px; /* Space between text and icon */

}



.service-col-02 .feature-two__arrow {

  display: flex;

  justify-content: center; /* Center arrow horizontally */

  /* margin-top: 10px; */ /* Space between content and arrow */

}



@media (max-width: 992px) {

 .service-col-02  .col-xl-2, .col-lg-2, .col-md-2 {

    flex: 0 0 50%; /* On medium screens, make columns take 50% width */

    max-width: 50%;

  }

}

.brand-carousel {

  padding-bottom: 50px;

  padding-top: 50px;

}

@media (max-width: 768px) {

 .service-col-02 .col-xl-2, .col-lg-2, .col-md-2 {

    flex: 0 0 100% !important; /* On small screens, make columns take full width */

    max-width: 100% !important;;

  }

}





.ht-service-icon.style-01.single-svg-icon-box.animated.visible:hover {

  margin-top: -10px;

  transition: all 0.5s ease 0s;

  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);

  background: #fff;

  /* padding: 20px 20px; */

}



.ht-service-icon.style-01 .service-icon {

  margin-bottom: 8px;

}

.section-title {

  color: #283734;

  font-size: 24px;

}

.ht-service-icon.style-01 .service-content p {

  font-size: 16px;

    line-height: 28px !important;

}







/* Fade-in from left */

@keyframes fadeInLeft {

  from {

      opacity: 0;

      transform: translateX(-100px);

  }

  to {

      opacity: 1;

      transform: translateX(0);

  }

}



/* Fade-in from right */

@keyframes fadeInRight {

  from {

      opacity: 0;

      transform: translateX(100px);

  }

  to {

      opacity: 1;

      transform: translateX(0);

  }

}



/* Fade-in from bottom */

@keyframes fadeInUp {

  from {

      opacity: 0;

      transform: translateY(100px);

  }

  to {

      opacity: 1;

      transform: translateY(0);

  }

}



/* Fade-in from top */

@keyframes fadeInDown {

  from {

      opacity: 0;

      transform: translateY(-100px);

  }

  to {

      opacity: 1;

      transform: translateY(0);

  }

}



/* Classes to trigger animation */

.fadeInLeft { animation-name: fadeInLeft; }

.fadeInRight { animation-name: fadeInRight; }

.fadeInUp { animation-name: fadeInUp; }

.fadeInDown { animation-name: fadeInDown; }



/* Fade-in from Down (Moves up into view) */

@keyframes fadeInUp {

  from {

    opacity: 0;

    transform: translateY(100px); /* Starts below */

  }

  to {

    opacity: 1;

    transform: translateY(0); /* Ends in original position */

  }

}



/* Fade-in from Up (Moves down into view) */

@keyframes fadeInDown {

  from {

    opacity: 0;

    transform: translateY(-100px); /* Starts above */

  }

  to {

    opacity: 1;

    transform: translateY(0); /* Ends in original position */

  }

}



/* Generic classes to apply animations */

.fade-in-up {

  opacity: 0; /* Hidden by default */

  animation: fadeInUp 1.5s ease-out forwards; /* 1.5s duration, smooth easing */

}



.fade-in-down {

  opacity: 0; /* Hidden by default */

  animation: fadeInDown 1.5s ease-out forwards; /* 1.5s duration, smooth easing */

}



@keyframes moveHorizontal {

  0% {

    -webkit-transform: translateZ(0);

    transform: translateZ(0);

  }

  50% {

    -webkit-transform: translate3d(10px, 0, 0);

    transform: translate3d(10px, 0, 0);

  }

  100% {

    -webkit-transform: translateZ(0);

    transform: translateZ(0);

  }

}

@keyframes moveHorizontal2 {

  0% {

    -webkit-transform: translateZ(0);

    transform: translateZ(0);

  }

  50% {

    -webkit-transform: translate3d(-10px, 0, 0);

    transform: translate3d(-10px, 0, 0);

  }

  100% {

    -webkit-transform: translateZ(0);

    transform: translateZ(0);

  }

}





@keyframes zumpBottom {

  0% {

    -webkit-transform: translateZ(0);

    transform: translateZ(0);

  }

  50% {

    -webkit-transform: translate3d(0, 10px, 0);

    transform: translate3d(0, 10px, 0);

  }

  100% {

    -webkit-transform: translateZ(0);

    transform: translateZ(0);

  }

}





/*  */

.section-py {

  padding: 70px 0px;

}

/*--------------------------------------

/*  Brand Css Start

----------------------------------------*/

.single-brand {

  text-align: center;

}

.single-brand .thumb {

  display: block;

}

.single-brand .thumb img{

  /* width: 29%; */

}



.brand-section {

  padding: 60px 0;

}



.single-brand {

  text-align: center;

}



.single-brand .thumb img {

  max-width: 65%;

  height: auto;

  display: inline-block;

  /* background-color: #fff; */

  /* padding: 10px 10px 4px; */

  /* filter: brightness(1.20); */

  /* filter: invert(1); */

}



.swiper-container {

  width: 100%;

  padding: 20px 0;

}



.swiper-button-next, .swiper-button-prev {

  color: #000;

}



.swiper-pagination-bullet-active {

  background: #000;

}

/* 

/*--------------------------------------/ */



.section-pb {

  padding-bottom: 70px;

}

.path-img {

  position: absolute;

  left: 0;

  bottom: 150px;

  z-index: -1;

}



.title-section .sub-title {

  font-family: "Poppins", sans-serif !important;

  color: #f0fff4;

  display: block;

  font-weight: 600;

  text-transform: uppercase;

  line-height: 35px;

  /* margin-bottom: 0.125rem; */

  font-size: 18px;

}



.sub-section-title .title {

  font-weight: 600;

  font-size: 24px;

  margin-bottom: 30px;

}



.title-section .title {

  color: #fff;

  font-weight: 700;

  line-height: 40px;

  font-size: 28px;

  margin-bottom: 0.6rem;

}

.title-section.mb-3.text-center p {

    color: #fff;

    font-size: 16px;

    margin-bottom: 19px;

}

span.text-primary {

  color: #fbd45a !important;

}

.btn-hover-dark:before{

  transition-duration: 800ms;

  position: absolute;

  width: 200%;

  height: 200%;

  content: "";

  top: -230%;

  left: 50%;

  transform: translateX(-50%);

  border-radius: 50%;

  z-index: -1; /* Behind the button text */

  background-color: #283734; /* Background color for the hover effect */

}

.btn-hover-dark {

  position: relative;

  display: inline-block;

  vertical-align: middle;

  -webkit-appearance: none;

  appearance: none;

  outline: none !important;

  background-color: #fbd45a; /* Original button color */

  color: #000;

  font-size: 14px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0;

  border-radius: 30px;

  padding: 17px 44px; /* Removed redundant padding */

  transition: color 0.5s linear; /* Transition for text color */

  overflow: hidden;

  z-index: 1;

  text-decoration: none; /* Remove underline from link */

}

.btn-hover-dark:hover:before {

  top: -40%; /* Move it upwards on hover */

  background-color: #fff;



}

.btn-hover-dark:hover {

 color: #00715d;

}

.grid {

  display: flex;

  flex-wrap: wrap;

  row-gap: 28px;

  column-gap: 27px;

}

.grid-item {

  float: left;

  width: 30.333%;

}

.grid-item .feature-card {

  position: relative;

  overflow: hidden;

  padding: 2.8125rem 0.875rem;

  border-radius: 6px;

  -webkit-transition: all 0.5s ease-in-out;

  transition: all 0.5s ease-in-out;

  background: #f6f6f9 !important;

}



.card-shape {

  position: absolute;

  display: block;

  width: 170px;

  height: 170px;

  border-radius: 50%;

}

.grid-item .feature-card:hover .tp-service-item-number span{

  color: #d9bc53;

}

.feature-card.bg-light.active .tp-service-item-number span {

    color: #d9bc53;

}

.tp-service-item-number {

    position: absolute;

    top: 5px;

    right: 25px;

    z-index: 999;

}

.tp-service-item-number span {

    display: inline-block;

    font-weight: 600;

    font-size: 50px;

    letter-spacing: -3px;

    color: #0b7c684f;

    /* opacity: 0.08; */

    z-index: 99;

}

.card-shape-light {

  background: #a6fabc;

  top: -100%;

  right: -100%;

  z-index: 1;

  -webkit-transition: ease-in-out 0.5s;

  transition: ease-in-out 0.5s;

}

.card-shape-dark {

  top: -100%;

  right: -100%;

  background: #00705e;

  z-index: 2;

  -webkit-transition: ease-in-out 0.8s;

  transition: ease-in-out 0.8s;

}

.grid-item .feature-card.bg-light:hover, .grid-item .feature-card.bg-light.active {

  background-color: #f0fff4 !important;

  -webkit-box-shadow: 0px 16px 27px 0px rgba(0, 0, 0, 0.08);

          box-shadow: 0px 16px 27px 0px rgba(0, 0, 0, 0.08);

}

.grid-item .feature-card .title {

  color: #181c51;

  text-transform: capitalize;

  font-weight: 600;

  line-height: 1.25;

  font-size: 24px;

}

.grid-item .feature-card .title a {

  color: inherit;

}



.grid-item .feature-card:hover .card-shape-light, .grid-item .feature-card.active .card-shape-light {

  top: -50px;

  right: -50px;

}

.grid-item .feature-card:hover .card-shape-dark, .grid-item .feature-card.active .card-shape-dark {

  top: -65px;

  right: -55px;

}

.help {

  position: relative;

  display: block;

  background-color:#00715d;

  padding: 21px 0 0px;

  z-index: 1;

}

.help {

  position: relative;

  display: block;

  background-color: #00715d;

  padding: 30px 0 230px;

  z-index: 1;

}



.help-bg {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  left: 0;

  background-position: center;

  background-size: cover;

  background-repeat: no-repeat;

  mix-blend-mode: luminosity;

  opacity: 0.1;

  z-index: -1;

}



#jarallax-container-0 {

  clip: rect(0 2543px 512px 0);

  clip: rect(0, 2543px, 512px, 0);

  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);

  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);

}





.urgent-cause {

  position: relative;

  display: block;

  margin-top: -200px;

  margin-bottom: 60px;

  z-index: 1;

}

.help-shape-1 {

 position: absolute;

 bottom: 0;

 left: 0;

 right: 0;

 height: 120px;

 background-repeat: no-repeat;

 background-position: center center;

 background-size: cover;

 z-index: -1;

 width: 100%;

}

.grid-item .feature-card img.logo {

  width: 25%;

  padding-bottom: 15px;

}



/*  */

.pr2-achivement-section {

  padding: 50px 0 60px 0;

  background-color: #f7f8fc;

}



.pr2-title-area {

  margin-bottom: 30px;

}

.pr2-achivement-section .pr2-title-area .pr2-subtitle {

  color: #0c7d69;

}



.pr2-title-area .pr2-subtitle {

  font-size: 18px;

  font-family: "Poppins", sans-serif !important;

  font-weight: 700;

  margin-bottom: 10px;

  display: inline-block;

  display: block;

}

.pr2-headline h2 {

  font-size: 48px;

}



.pr2-headline h1, .pr2-headline h2, .pr2-headline h3, .pr2-headline h4, .pr2-headline h5, .pr2-headline h6 {

  font-family: "Poppins", sans-serif;

  font-weight: 700;

  text-transform: capitalize;

  line-height: 1.25;

  margin-bottom: 0;

  color: #10151f;

}



.pr2-title-area h2 span {

  position: relative;

  display: inline-block;

  z-index: 1;

}

.pr2-title-area h2 span::after {

  content: '';

  position: absolute;

  top: 50%;

  right: -40px;

  -webkit-transform: translateY(-45%);

  -ms-transform: translateY(-45%);

  transform: translateY(-45%);

  width: 150px;

  height: 29px;

  border-radius: 6px;

  background-image: -webkit-linear-gradient(right, #0055ff, rgba(255, 255, 255, 0.11));

  background-image: -o-linear-gradient(right, #0055ff, rgba(255, 255, 255, 0.11));

  background-image: linear-gradient(to left, #00705e, rgb(166 250 188));

  z-index: -1;

  opacity: 0.5;

}

.pr2-title-area .pr2-pera-txt {

  margin-top: 10px;

}



.pr2-pera-txt p {

  color: #666666;

  margin: 0;

}



.pr2-achivement-contents {

  margin-top: 30px;

  position: relative;

  z-index: 1;

}

.pr2-achivement-contents .pr2-circle-shape-2 {

  width: 100px;

  display: inline-block;

  position: absolute;

  top: -50px;

  left: -50px;

  z-index: -1;

}

.row.gap-container {

    margin-top: 40px;

}

.row.gap-container {

    display: flex;

}

.pr2-achivement-contents .pr2-circle-shape-3 {

  width: 120px;

  position: absolute;

  bottom: -10px;

  right: -50px;

  z-index: -1;

}

.pr2-achivement-column {
  text-align: center;
  padding: 23px 10px 0px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 15px 40px 0px rgba(122, 122, 122, 0.1);
  box-shadow: 0px 15px 40px 0px rgba(122, 122, 122, 0.1);
  /* margin-bottom: 30px; */
  min-height: 130px;
  border-radius: 5px;
}

  .pr2-achivement-column .icon-container {

    margin-bottom: 6px;

  }

   

  .pr2-achivement-column .pr2-headline h2 {

    display: inline-block; 

  }

  .pr2-achivement-column .pr2-headline span {

    font-size: 48px;

    font-family: "Poppins", sans-serif !important;

    font-weight: 900;

    color: #10151f; 

  }

  .pr2-achivement-column .icon-container {

    margin-bottom: 5px;

    margin-top: 5px;

}

.pr2-achivement-column .icon-container i {

  font-size: 34px;

  color: #0c7d69;

  display: inline-block;

  line-height: 0;

}



.pr2-achivement-column .pr2-headline h2 {

  display: inline-block;

}



.pr2-headline h2 {

  font-size: 22px;

}

.pr2-achivement-column .pr2-headline span {

  font-size: 22px;

  font-family: "Poppins", sans-serif !important;

  font-weight: 900;

  color: #10151f;

}

.pr2-achivement-column .tagline span {

  font-family: "Poppins", sans-serif;

  font-weight: 600;

  color: #10151f;

  font-size: 14px;

}

.tp-contact-box-2 {

  padding: 60px 60px;

  border-radius: 5px;

  background: #fff;

  margin-top: 50px;

}

.tp-contact-thumb img {

  border-radius: 5px;

  width: 100%;

}

.tp-contact-wrapper-2 {

  padding-left: 70px;

}

.tp-section-title-pre {

  font-family: "Poppins", sans-serif !important;

  font-weight: 700;

  font-size: 18px;

  letter-spacing: 4px;

  text-transform: uppercase;

  background: linear-gradient(90deg, #006f5d 0%, #beecd3 100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

  text-fill-color: transparent;

  display: inline-block;

  margin-bottom: 10px;

}

.tp-section-title {

  font-weight: 600;

  font-size: 40px;

  letter-spacing: -1.92px;

  color: var(--tp-heading-primary);

  line-height: 1.2;

  margin-bottom: 20px;

}

form#contactForm {

    padding-top: 20px;

}

.tp-contact-form-2 input {

  border: 1px solid #fff;

  border-radius: 5px;

  height: 62px;

  background: #f4f5fa;

  font-size: 16px;

  font-weight: 400;



 

}
.wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
  padding-top: 0px;
  padding-bottom: 10px;
}
.tp-contact-form-2 input:focus {

    color: #212529;

    background-color: #e8f7ec;

    border-color: #f4f5fa;

    outline: 0;

    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);

}

.tp-contact-form-2 textarea:focus {

  border: 1px solid #f1f2f7 !important;

  color: #212529;

  border-color: #f4f5fa;

}

.tp-contact-form-2 textarea {

  

  border: 1px solid #e8f7ec;

  width: 100%;

  border: 1px solid #fff;

  border-radius: 5px;

  height: 62px;

  background: #f4f5fa;

  font-size: 16px;

  font-weight: 400;

  margin-bottom: 20px;

  padding: 10px 10px;

}





.ht-btn.ht-btn-sm:hover {
	color: #fff;
	background: #000;
}

.ht-btn.ht-btn-sm {

  position: relative;

  display: inline-block;

  vertical-align: middle;

  -webkit-appearance: none;

  appearance: none;

  outline: none !important;

  background-color: #00715d;

  color: #fff;

  font-size: 14px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0;

  border-radius: 30px;

  padding: 20px 49px;

  transition: color 0.5s linear;

  overflow: hidden;

  z-index: 1;

  text-decoration: none;

}



.ht-btn.ht-btn-sm:hover:before {

  top: -40%;

  background-color: #000;

}



.ht-btn.ht-btn-sm:before {

  transition-duration: 800ms;

  position: absolute;

  width: 200%;

  height: 200%;

  content: "";

  top: -230%;

  left: 50%;

  transform: translateX(-50%);

  border-radius: 50%;

  z-index: -1;

  background-color: #283734;

}



/* testimonial slider design css start  */



.creative-testimonial--slider{

  background: #fff;

  padding: 50px 0px 70px;

}

.creative-testimonial--slider .testimonial-inner {

  max-width: 1240px;

  margin-left: auto;

  margin-right: auto;

  background-repeat: no-repeat;

  background-size: cover;

}

.testimonial-inner .testimonial-heading{

  text-align: center;

  /* max-width: 60%; */

  margin: auto;

  font-size: 45px;

  line-height: 4.125rem;

  letter-spacing: -1px;

  margin-top: 0px;

  margin-bottom: 50px;

  color: #006a57;

}

.testimonial-wrap {

  position: relative;

  overflow: hidden;

  margin-bottom: 0%;

}

.creative-testimonial--slider .swiper-slide .swiper-slide--inner {

  padding-left: 15%;

  padding-right: 15%;

  display: flex;

  align-items: center;

  column-gap: 35px;

  position: relative;

  overflow-x: hidden;

}

.creative-testimonial--slider .swiper-slide--inner .testimonial-detail img{

  height: 35px;

  margin-bottom: 20px;

}

.creative-testimonial--slider .swiper-slide--inner .testimonial-detail p{

  margin: 0px;

  color: #242e45;

  font-size: 20px;

  line-height: 24px;

  font-weight: 500;

  margin-bottom: 10px;

}

.creative-testimonial--slider .swiper-slide--inner .testimonial-detail span{

  color: #006b58;

  font-weight: 800;

  text-transform: uppercase;

  font-size: 15px;

  line-height: normal;

}

.creative-testimonial--slider .company-details--row {

  display: flex;

  flex-wrap: wrap;

  width: 100%;

  justify-content: center;



}

.creative-testimonial--slider .company-details--row .company-box {

  flex: 0 0 auto;

  width: 33.33333333%;

  padding: 0px 15px;

}

.company-details--row .company-box .company-box-inner {

  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, .08);

  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);

  -webkit-transition: all 350ms cubic-bezier(.37,0,.63,1);

  transition: all 350ms cubic-bezier(.37,0,.63,1);

  background: #fff;

  text-align: center;

  border-radius: 6px;

}

.company-box-inner .company-box-top{

  padding-top: 10%;

  padding-bottom: 10%;

  border-bottom: 1px solid #dee2e6;

}

.company-box-inner .company-box-top img{

  height: 40px;

}

.company-box-inner .company-box-bottom{

  padding: 15px;

}

.company-box-inner .company-box-bottom span{

  font-size: 15px;

  color: #878898;

  line-height: 30px;

}

.company-box-inner .company-box-bottom span strong{

  color: #242e45;

}

/* ======== Sticky Footer ========= */

.creative-testimonial--slider .sticky-footer{

     position: fixed;

  width: 100%;

      background: #333;

  z-index: 999;

  bottom: 0;

}

.creative-testimonial--slider .sticky-footer .footer-row{

    display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 8px 10px;

  padding-right: 15px;

}

.creative-testimonial--slider .creditd a {

  color: #fff;

  text-decoration: none;

  font-weight: bold;

      font-size: 16px;

}

.creative-testimonial--slider .social ul{

    display: flex;

  list-style-type: none;

  margin: 0;

  padding: 0px;

  column-gap: 10px;

  align-items: center;

}

.creative-testimonial--slider .social ul li a{

   display: flex;

  background: #fff;

  height: 30px;

  width: 30px;

  border-radius: 4px;

  align-items: center;

  justify-content: center;

}

.creative-testimonial--slider .social ul li a img{

     max-width: 20px;

}

.creative-testimonial--slider .slide-avatar {display: flex;}

.creative-testimonial--slider .slide-avatar img{

 

width: 200px;

 

height: 200px;

 

border-radius:50%;

 

border: 4px solid #00715d;

}

.creative-testimonial--slider .swiper-button-next,.swiper-button-prev {

  position: absolute;

  top: 50%;

  width: calc(var(--swiper-navigation-size)/ 44 * 27);

  height: var(--swiper-navigation-size);

  margin-top: calc(-1 * var(--swiper-navigation-size)/ 2);

  z-index: 10;

  cursor: pointer;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #077461;

}



.creative-testimonial--slider  .swiper-button-prev {

  position: absolute;

  top: 50%;

  width: calc(var(--swiper-navigation-size) / 44* 27);

  height: var(--swiper-navigation-size);

  margin-top: calc(-1* var(--swiper-navigation-size) / 2);

  z-index: 10;

  cursor: pointer;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #006957;

}

.creative-testimonial--slider .swiper-button-next {

  position: absolute;

  top: 50%;

  width: calc(var(--swiper-navigation-size)/ 44 * 27);

  height: var(--swiper-navigation-size);

  margin-top: calc(-1 * var(--swiper-navigation-size)/ 2);

  z-index: 10;

  cursor: pointer;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #167c6a;

}



/* Responsive Ipad */

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



  .creative-testimonial--slider .creative-testimonial--slider{

  padding-left: 10px;

  padding-right: 10px;

}

.creative-testimonial--slider .testimonial-inner .testimonial-heading{

  max-width: 100%;

}

.creative-testimonial--slider .swiper-slide .swiper-slide--inner{

  padding-left: 5%;

  padding-right: 50%;

}

.creative-testimonial--slider  .swiper-slide .swiper-slide--inner {

    /* padding-left: 5%; */

    padding-right: -5%;

    display: flex;

    align-items: center;

    column-gap: 27px;

    position: relative;

    overflow-x: hidden;

}

.creative-testimonial--slider .swiper-button-next.slide-btns, .swiper-button-prev.slide-btns{

  display: block;

}

.creative-testimonial--slider .company-details--row .company-box{

  padding: 0px 5px;

}

}

/* Responsive Ipad */

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

  .testimonial-inner .testimonial-heading{

      font-size: 1.813rem;

      line-height: 2.125rem;

  }

  .creative-testimonial--slider .swiper-slide .swiper-slide--inner {

      flex-direction: column;

      text-align: center;

  }

  .company-details--row{

      justify-content: center;

      flex-direction: column;

  }

  .company-details--row .company-box{

      padding: 0px 0px;

      margin-bottom: 20px;

     

      width: 100%;

  }

}

/* testimonal design css end */





/*--------------------------------------------------------------

# Site Footer

--------------------------------------------------------------*/

.site-footer {

  position: relative;

  display: block;

  background-color: #283734;

  z-index: 1;

}



.site-footer-bg {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  mix-blend-mode: luminosity;

  opacity: 0.03;

  z-index: -1;

}



.footer-widget__title {

  font-size: 20px;

  color: #fff;

  font-weight: 800;

  line-height: 20px;

  margin-bottom: 27px;

  letter-spacing: -0.02em;

}



.site-footer__top {

  position: relative;

  display: block;

  padding: 100px 0 98px;

}



.footer-widget__about {

  position: relative;

  display: block;

  margin-right: 84px;

}



.footer-widget__about-logo {

  position: relative;

  display: block;

}



.footer-widget__about-text-box {

  position: relative;

  display: block;

  padding-top: 16px;

  padding-bottom: 20px;

}

.footer-widget__about-logo a img {

    width: 80%;

}

.footer-widget__about-text {

  color: #98a8a5;

  font-weight: 400;

  margin-bottom: 0;

}



.footer-widget__btn {

  position: relative;

  display: block;

  padding-top: 10px;

}



.footer-widget__btn a {

  position: relative;

  display: inline-block;

  font-size: 14px;

  font-weight: 800;

  color: #283734;

  background-color: #fbd45a;

  padding: 17px 34px 15px;

  text-transform: uppercase;

  border-radius: 25px;

  transition: all 500ms ease;

}



.footer-widget__btn  span {

  position: relative;

  top: 1px;

  padding-right: 9px;

}



.footer-widget__btn a:hover {

  background-color: #fff;

  color: #00715d;

}



.footer-widget__links {

  position: relative;

  display: block;

}



.footer-widget__links-list {

  position: relative;

  display: block;

}



.footer-widget__links-list li {

  position: relative;

  display: block;

}



.footer-widget__links-list li + li {

  margin-top: 11px;

}



.footer-widget__links-list li a {

  position: relative;

  display: inline-block;

  font-size: 15px;

  color: #d4e7e4;

  font-weight: 400;

  transition: all 500ms ease;

}



.footer-widget__links-list li a:hover {

  padding-left: 15px;

  color: #fbd45a;

}



.footer-widget__links-list li a:before {

  position: absolute;

  top: 36%;

  left: 0;

  bottom: 0;

  content: "\f105";

  font-family: "Poppins", sans-serif !important;

  font-weight: 900;

  transform: translateY(-50%);

  opacity: 0;

  transition: all 500ms ease;

  font-size: 15px;

  color: var(--oxpins-primary);

}



.footer-widget__links-list li a:hover:before {

  opacity: 1;

}



.footer-widget__non-profit {

  position: relative;

  display: block;

  /* padding-top: 35px; */

}



.footer-widget__non-profit-list {

  position: relative;

  display: block;

}



.footer-widget__non-profit-list li {

  position: relative;

  display: block;

}



.footer-widget__non-profit-list li + li {

  margin-top: 11px;

}



.footer-widget__non-profit-list li a {

  position: relative;

  display: inline-block;

  font-size: 15px;

  color: #d4e7e4;

  font-weight: 400;

  transition: all 500ms ease;

}



.footer-widget__non-profit-list li a:hover {

  padding-left: 15px;

  color: #fbd45a;

}



.footer-widget__non-profit-list li a:before {

  position: absolute;

  top: 36%;

  left: 0;

  bottom: 0;

  content: "\f105";
  
  font-family: "Poppins", sans-serif !important;

  font-weight: 900;

  transform: translateY(-50%);

  opacity: 0;

  transition: all 500ms ease;

  font-size: 15px;

  color: var(--oxpins-primary);

}



.footer-widget__non-profit-list li a:hover:before {

  opacity: 1;

}



.footer-widget__contact {

    position: relative;

    display: block;

    margin-left: 100px;

}



.footer-widget__contact-text {

  color: #fff;

  font-weight: 400;

  padding-bottom: 10px;

}



.footer-widget__contact-list {

  position: relative;

  display: block;

}


.footer-widget__contact-list li {
    position: relative;

    display: flex;

    align-items: baseline;
}



.footer-widget__contact-list li .icon {

  position: relative;

  display: flex;

  align-items: center;

}



.footer-widget__contact-list li .icon i {

  position: relative;

  display: inline-block;

  font-size: 18px;

  color: #fbd45a;

}



.footer-widget__contact-list li .text {

  margin-left: 15px;

}



.footer-widget__contact-list li .text p {

  font-weight: 700;

}



.footer-widget__contact-list li .text p a {

  color: #d4e7e4;

  transition: all 500ms ease;

}



.footer-widget__contact-list li .text p a:hover {

  color: #fbd45a;

}



.site-footer__social {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  margin-top: 22px;

}



.site-footer__social a {

  position: relative;

  height: 40px;

  width: 40px;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  text-align: center;

  color: #fff;

  background-color: #212d2b;

  font-size: 18px;

  border-radius: 50%;

  overflow: hidden;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  z-index: 1;

}



.site-footer__social a:hover {

  color: #000;

  background-color: #fbd45a;

}



.site-footer__social a:after {

  position: absolute;

  content: "";

  top: 0;

  left: 0;

  right: 0;

  height: 100%;

  background-color: var(--oxpins-white);

  -webkit-transition-delay: 0.1s;

  transition-delay: 0.1s;

  -webkit-transition-timing-function: ease-in-out;

  transition-timing-function: ease-in-out;

  -webkit-transition-duration: 0.4s;

  transition-duration: 0.4s;

  -webkit-transition-property: all;

  transition-property: all;

  opacity: 1;

  -webkit-transform-origin: top;

  transform-origin: top;

  -webkit-transform-style: preserve-3d;

  transform-style: preserve-3d;

  -webkit-transform: scaleY(0);

  transform: scaleY(0);

  z-index: -1;

}



.site-footer__social a:hover:after {

  opacity: 1;

  -webkit-transform: scaleY(1);

  transform: scaleY(1);

}



.site-footer__social a + a {

  margin-left: 10px;

}



.site-footer__bottom {

  position: relative;

  display: block;

  background-color: #212d2b;

}



.site-footer__bottom-inner {

  position: relative;

  display: block;

  text-align: center;

  padding: 25px 0;

}



.site-footer__bottom-text {

  font-size: 15px;

  color: #98a8a5;

  font-weight: 400;

}



.site-footer__bottom-text a {

  color: #98a8a5;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.site-footer__bottom-text a:hover {

  color: #fff;

}











/* scroll to top */

.scroll-to-top {

  display: inline-block;

  width: 50px;

  height: 50px;

  background:#fbd45a;

  position: fixed;

  bottom: 40px;

  right: 40px;

  z-index: 99;

  text-align: center;

  -webkit-transition: all 0.4s ease;

  transition: all 0.4s ease;

  display: none;

  border-radius: 50%;

  transition: all 0.4s ease;

}



.scroll-to-top i {

  color: #283734;

  font-size: 18px;

  line-height: 50px;

}



.scroll-to-top:hover {

  background-color: #283734;

}



.scroll-to-top:hover i {

  color: #fff;

}

/*---------------- footer css end ---------------- */

/*--------------------------------------------------------------

# Custom Cursor

--------------------------------------------------------------*/









@media (max-width: 1540px) {

  .header {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--body-color);
    box-shadow: 0 2px 16px hsla(230, 75%, 32%, 0.15);
    z-index: var(--z-fixed);
    padding: 15px 10px 20px 5px;

  }

  .pr2-achivement-section {

      padding-bottom: 80px;

  }

  .about-one__image {

    padding-left: 100px;

}

  .nav {

  height: var(--header-height);

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: nowrap;

  padding: 0 0rem; /* Added padding for spacing */

}

  .main-slider__nav {

    position: absolute;

    top: 42%;

    left: 0px;

    z-index: 100;

    transform: translateY(-50%) translateX(0%);

    display: flex;

    align-items: flex-start;

    flex-direction: column;

    max-width: 1200px;

    width: 100%;

    padding: 0 15px;

    height: 0;

    line-height: 0;

}

.creative-testimonial--slider .swiper-slide .swiper-slide--inner {

    padding-left: 15%;

    padding-right: 15%;

    display: flex;

    align-items: center;

    column-gap: 35px;

    position: relative;

    overflow-x: hidden;

}

.from-row {

  display: flex;

  justify-content: space-between;

  gap: 17px;

}

}

@media screen and (min-width: 992px) {

    .card-mt-75 {

        margin-top: 80px;

    }

}

@media screen and (min-width: 576px) {

  .card-mt-75 {

    /* padding-top: 0px; */

  }

}



@media screen and (min-width:768px) and (max-width: 991px) {

  .grid-item {

    width: 48%;

  }

    .card-mt-75 {

    /* margin-top: 80px; */

  }

  .grid {

    display: flex;

    flex-wrap: wrap;

    /* gap: 40px; */

}

.footer-widget__contact {

    position: relative;

    display: block;

    margin-left: 00px;

}

.footer-widget__non-profit {

    position: relative;

    display: block;

    padding-top: 35px;

}

}

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

.footer-widget__non-profit {

    position: relative;

    display: block;

    padding-top: 35px;

}

  .grid-item {

    width: 100%;

  }

 .footer-widget__contact {

   margin-left: 0;

   margin-top: 30px;

   }

}

  .creative-testimonial--slider .slide-avatar img {

    width: 200px;

    height: 200px;

    border-radius: 50%;

    border: 4px solid #00715d;

}





@media screen and (min-width: 992px) and (max-width: 1199px) {

  .grid-item .feature-card {

    padding: 25px;

  }

  .grid-item .feature-card .title {

    font-size: 18px;

  }

}

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

  .service .icon-boxes .col-md-6:nth-child(2) .icon-box, .service .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0px;
} 

  .about__list li:nth-child(2) {
    margin: 0px 0;
}


  .grid-item .feature-card .title {

    font-size: 20px;

  }
  .section-title-wrap p {
    margin-bottom: 0;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 0px auto;
}
.about__list {
  margin: 0px 0 0 0;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.banner-slider .main-slider__title {
  position: relative;
  font-size: 28px;
  color: #ffff;
  font-weight: 900;
  line-height: 45px;
  letter-spacing: -0.04em;
  font-family: "Poppins", sans-serif !important;
  margin-top: 15px;
  margin-bottom: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}
.service-custom-row {

  display: flex;

  flex-direction: column;

  row-gap: 30px;

  padding-left: 12px;

}

}

@media screen and (min-width: 1200px) {

  .section-pb {

    /* padding-bottom: 230px; */

  }

}



/* Media Queries for Responsive Adjustments */

@media (max-width: 1200px) {

  .header {

    position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: var(--body-color);
        box-shadow: 0 2px 16px hsla(230, 75%, 32%, 0.15);
        z-index: var(--z-fixed);
        padding: 10px 10px 10px 5px;

  }

  .main-slider {

    /* min-height: 80vh; */ /* Adjust height for medium screens */

  }

  .main-slider .container {

    padding-top: 5vh; /* Adjust padding for medium screens */

    padding-bottom: 3vh; /* Adjust padding for medium screens */

  }

.pr2-achivement-column .tagline span {

    font-family: "Poppins", sans-serif;

    font-weight: 600;

    color: #10151f;

    font-size: 14px;

}

  .service-col-01 {

    width: 100%;

    padding-left: 40px;

    padding-right: 40px;

    -webkit-flex-basis: 22%;

    -ms-flex-preferred-size: 22%;

    flex-basis: 100%;

    display: -webkit-box;

    display: -webkit-flex;

    display: -ms-flexbox;

    display: flex;

  }

  .section-title-wrap {

    display: flex;

    flex-direction: column;

  }



.service-col-02 {

  padding: 0;

}

.about-one__experience {

  position: relative;

  position: absolute;

  top: 50px;

  left: -68px;

  padding: 7px 6px 9px;

  text-align: center;

  background-color: var(--easilon-base, #00715d);

  z-index: 2;

}

.about-one__experience__year {

  margin-bottom: 3px;

  font-weight: 700;

  font-size: 30px;

  line-height: 1.22;

  color: #f4d15a;

  letter-spacing: var(--easilon-letter-space-xl, -0.03em);

  text-transform: capitalize;

}

.about-one__experience__title {

  margin: 0;

  font-weight: 600;

  font-size: 13px;

  line-height: 1.375;

  color: #fff;

  letter-spacing: var(--easilon-letter-space-xl, -0.03em);

  text-transform: capitalize;

}

.about-one__experience::before {

  content: "";

  width: 80px;

  height: 50px;

  background-color: var(--easilon-black, #283734);

  position: absolute;

  left: 0;

  bottom: -48px;

  clip-path: polygon(0 0, 100% 100%, 100% 0);

}
.single-brand .thumb img {
  width: 100%;
  max-width: 200px !important;
  height: auto;
  display: inline-block;
  object-fit: contain;
  margin: 0 auto;
  background-color: #fff;
  padding: 10px;
}
  p.main-slider__sub-title {

    padding-bottom: 0px;

}
.brand-carousel {padding-bottom: 40px;padding-top: 80px;}

.main-slider__title {

  position: relative;

  width: 100%;

  display: flex;

  justify-content: left;

  margin: 0px auto;

  font-size: 25px;

  color: #ffff;

  line-height: 40px;

  padding-top: 20px;

  padding-bottom: 0px;

}

  .brand-carousel.product-design {

    padding: 20px 0px 0px;

}

p.text-wrapper {

  font-size: 20px;

  width: 100%;

  color: #fff;

  display: flex;

  justify-content: center;

  margin: 0px auto;

}

.about-one__image__with-border {

  position: absolute;

  right: -30px;

  bottom: -18px;

  z-index: 1;

  border: 10px solid var(--easilon-white, #ffffff);

  filter: drop-shadow(0px 4px 60px rgba(117, 165, 67, 0.12));

  animation: moveHorizontal2 2s linear infinite;

}

.feature-two__single-inner {

  /* position: relative; */

  /* display: block; */

  background-color: #86b180;

  /* padding: 50px 20px 50px; */

  border-radius: 15px;

  overflow: hidden;

  z-index: 1;

  min-height: 320px;

  /* width: 100%; */

}

}









@media (max-width: 998px) {
  .brand-carousel {
    padding-bottom: 30px;
    padding-top: 30px;
}

  .grid {

    margin-top: 30px;

  }

 

  .nav__logo img {

    max-width: 150px;

    width: 100%;

    /* height: 62px; */

}

.nav__logo {

  display: flex;

  justify-content: flex-start;

  width: auto;

}

  .nav__list {

    display: flex;

    flex-direction: column;

    row-gap: 2.5rem;

    text-align: center;

}

  .main-slider {

    min-height: unset; /* Adjust height for small screens */

  }

  .main-slider .container {

    padding-top: 5vh; /* Adjust padding for small screens */

    padding-bottom: 5vh; /* Adjust padding for small screens */

  }

  .main-slider__nav {

    position: absolute;

    bottom: 10%;

    left: 0px;

    z-index: 100;

    transform: translateY(-50%) translateX(0%);

    display: none;

    align-items: flex-start;

    justify-content: center;

    flex-direction: row;

    max-width: 1200px;

    width: 100%;

    padding: 0 15px;

    height: 0;

    line-height: 0;

    column-gap: 15px;

  }

  p.text-wrapper {

    font-size: 18px;

    color: #fff;

  }

.main-slider__title {

    position: relative;

    font-size: 30px;

    color: #ffff;

    font-weight: 900;

    line-height: 45px;

    padding-bottom: 0px;

  }

  .main-slider__sub-title {

    font-size: 27px;

    color: #fbd45a;

    font-weight: 700;

    line-height: 40px;

    font-family: "Poppins", sans-serif;

    padding-bottom: 20px;

}

  .main-slider__content {

    position: relative;

    display: block;

    text-align: left;

    padding: 20px 0px 40px;

  }

.login__form {

        max-width: none;

        margin-inline: auto;

    }

 .login__form {

    max-width: none;

    margin-inline: auto;

    margin-top: 10px;

  }

.brand-carousel.main-slider__btn-box {

    margin-top: 0px;

}

  .about-one__image {

    padding-left: 70px;

    padding-bottom: 60px;

}

  .urgent-cause {

    position: relative;

    display: block;

    margin-top: -212px;

    /* margin-bottom: 300px; */

    z-index: 1;

  }

  .gap-container {

    row-gap: 20px;

}

.tp-contact-wrapper-2 {

  padding-left: 0px;

  margin-top: 30px;

}

.tp-contact-box-2 {

  padding: 42px 25px;

  border-radius: 5px;

  background: #fff;

  margin-top: 50px;

}

.tp-section-title {

  font-weight: 600;

  font-size: 35px;

  letter-spacing: -1.92px;

  color: var(--tp-heading-primary);

  line-height: 1.2;

  margin-bottom: 20px;

}

.title-section .title {

  color: #fff;

  font-weight: 700;

  line-height: 32px;

  font-size: 20px;

  margin-bottom: 0.6rem;

}

.title-section.mb-3.text-center p {

    color: #fff;

    font-size: 16px;

    margin-bottom: 18px;

}

.brand-carousel {

  padding-bottom: 0px;

  padding-top: 50px;

}

}

@media (max-width: 1400px) {

  .footer-widget__contact {

    position: relative;

    display: block;

    margin-left: 0px;

    padding-top: 30px;

}



.footer-widget__non-profit {

  position: relative;

  display: block;

  padding-top: 30px;

}

 .about-one__image {

    padding-left: 60px;

}

.service-col-02 .col-xl-2, .col-lg-2, .col-md-2 {

  padding: 0 5px;
  flex: 3 2 16%;
  max-width: 17%;
}

}



@media (max-width: 480px) {

  .main-slider {

    min-height: 60vh; /* Further adjust height for extra small screens */

  }

  .main-slider .container {

    padding-top: 12vh;
        padding-bottom: 5vh;

  }

  .footer-widget__links {

    position: relative;

    display: block;

    padding-top: 30px;

}

.site-footer__top {

  position: relative;

  display: block;

  padding: 50px 0 50px;

}

.about-one__image__shape {

  position: absolute;

  top: 30px;

  right: -30px;

  animation: zumpBottom 2s linear infinite;

}

.about-one__image__with-border {

  position: absolute;
  right: 0px;
  bottom: -25px;
  z-index: 1;
  border: 10px solid var(--easilon-white, #ffffff);
  filter: drop-shadow(0px 4px 60px rgba(117, 165, 67, 0.12));
  animation: moveHorizontal2 2s linear infinite;
}

}

.brand-carousel.product-design {

  padding: 20px 0px 0px;

}

.product-design a.ht-btn {

  padding: 10px 10px;

  font-size: 9px;

  font-weight: 500;

  max-width: 170px;

}



 /* animtion css :start */

.aos-init .aos-animate {

  transition: transform 1s ease, opacity 1s ease;

}



[data-aos="fade-left"] {

  opacity: 0;

  transform: translateX(-50px);

}



[data-aos="fade-right"] {

  opacity: 0;

  transform: translateX(50px);

}



[data-aos="fade-left"].aos-animate, [data-aos="fade-right"].aos-animate {

  opacity: 1;

  transform: translateX(0);

}

/* animation css:end  */

div#nav-toggle {}



i#login-btn {

    display: none;

}

.login__item {

  width: 100%;

}

i#search-btn {

    display: none;

}

.banner-content.scene.banner-img img {

  width: 100%;

}





.product-design .single-brand {

 

display: flex;

 

justify-content: center;

 

/* column-gap: 10px; */

}



.product-design .single-brand .ht-btn {

  display: inline-block;

  width: 100%;

  text-align: center;

  padding: 10px 0;

 

  box-sizing: border-box; /* Ensure padding doesn't affect width */

}



.product-design .swiper-wrapper {

  display: flex;

  justify-content: space-between;

  gap: 10px;

}



.product-design .swiper-slide a {

  width: 100%; /* Make all the anchor tags full-width */

  display: block;

}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {

  pointer-events: unset!important; 

}

.swiper-container-fade .swiper-slide .swiper-slide {

  pointer-events: auto!important;

}

.thm-swiper__slider .brand-carousel .swiper-slide {

  pointer-events: auto!important;

}

.swiper-container-fade .swiper-slide {

  pointer-events: unset!important; 

  transition-property: unset !important;

}

.swiper-container-fade .swiper-slide .swiper-slide {

  pointer-events: auto !important;

}



.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active {

  pointer-events: auto!important;

}
.single-brand .thumb img {
  width: 100%;
  max-width: 235px;
  height: auto;
  display: inline-block;
  object-fit: contain;
  margin: 0 auto;
  padding: 10px;
}

.single-brand .thumb img {
  
  height: 85px;
  display: inline-block;
  background-color: transparent;
 
  
}
.oeiywgwp a {
  color: #fbd45a;
}
.feature-two__single-inner {
  position: relative;
  display: block;
  background-color: #6f946c;
  padding: 50px 30px 50px;
  border-radius: 15px;
  overflow: hidden;
  z-index: 1;
  min-height: 300px;
}
.feature-two-shape-1 {
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 235px;
z-index: -1;
background-repeat: no-repeat;
filter: saturate(0.4);
}
.pre_title.pr2-headline {
  display: flex;
  justify-content: center;
  align-items: baseline;
}

/* .menu-item-has-children .sub-menu li:hover {
  background: #fbd45a;
  color: #000 !important;
} */
a:hover {
}
.menu-item-has-children .sub-menu li a:hover.k {
  color: #000;
}
.sub-menu ul li :hover {
  /! color: black; /
}
.sub-menu ul li:hover a  span{
    color: #007BFF; 
}



.menu-item-has-children .sub-menu {
  display: none; /* Hide the submenu by default  */
  position: absolute;
  background-color: #43524f;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  padding: 10px 10px;
  border-radius: 5px;
  z-index: 9999;
  width: 250px;
  
}


.menu-item-has-children:hover .sub-menu {
    display: block;
}


.menu-item-has-children .sub-menu li {
    list-style: none;
    padding: 5px 0px;
}


.menu-item-has-children .sub-menu li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 8px 10px;
  background: #42514e;
}

ul.sub-menu {
    padding-left: 0;
}

li#menu-item-780 {}

.menu-item-has-children .sub-menu li a span.nav__link {
    color: #fff;
}

.contact-form-area .container {
  padding: 0px 15px;
}
.comment-respond label {
  display: block;
  text-align: initial;
  color: hsl(168deg 15.79% 18.63%);
  font-weight: 500;
  margin-bottom: 0.8rem;
  font-size: 15px;
}
/* Display the submenu on hover or click */
.menu-item-has-children:hover .sub-menu,
.menu-item-has-children.show .sub-menu {
    display: block;
}
.menu-item.dropdown-toggle {
  white-space: nowrap;
  color: #006b58;
  font-size: 15px;
}
.menu-item-has-children .sub-menu li a:hover {
  background-color: #fbd45a; /* Highlight color */
  
}
.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
  display: block;
  text-align: left;
  padding-top: 2px;
}
.login__register {
	display: flex;
	justify-content: left;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
}

.wpcf7-form-control.wpcf7-submit {
  text-align: center; /* Centers text in the button */
}
.wpcf7 form .wpcf7-response-output {
  margin: 1em 0.5em 1em;
  padding: 0.2em 0em;
  border: 2px solid #00a0d2;
   
}
.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required.login__input {
  width: 100%;
  background-color: var(--container-color);
  border: 2px solid var(--border-color);
  padding: 1rem;
  border-radius: 0.5rem;
  color: hsl(231, 11.6%, 66.3%);
}



.login__group {
  display: grid
;
  row-gap: 0rem;
}

.phone-input {
  position: relative;
}

.phone-input span {
  position: absolute;
  left: 18px;
  top: 18px;
  color: hsl(231, 11.6%, 66.3%);
}

input#phone {
  padding-left: 50px;

}

.sub-menu-toggle {
	display: none !important;
}