@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --normal-font: 16px;
  --para-head: 20px;
  --big-head: 40px;
  --small-link: 14px;
  --padding: 5vw;
}
*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none !important;
}

body {
  font-family: 'Poppins', sans-serif;
}

button:focus {
  outline: none;
}
input,
textarea,
button {
  font-family: inherit;
}
a,
button {
  color: inherit;
  text-decoration: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: normal;
  line-height: auto;
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* head word press */

.head-list .current_page_item.active a,
.m-list .current_page_item.active a {
  color: #01a532;
}

/* head word press */
/* nav-icon */
#nav-icon1 {
  display: none;
  width: 35px;
  height: 25px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  /* bottom: 10px; */
  /* margin-left: 5px; */
}
#nav-icon1 span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: rgb(0, 0, 0);
  border-radius: 6px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 12px;
}

#nav-icon1 span:nth-child(3) {
  top: 24px;
}

#nav-icon1.open span:nth-child(1) {
  top: 12px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3) {
  top: 12px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/* nav-icon end */

/* mobile */

/* Mobile */
.mobile.m-show {
  top: 100px;
  visibility: visible;
  /* opacity: 1; */
  transition: all 300ms;
  z-index: 100;
}
.mobile {
  visibility: hidden;
  position: fixed;
  z-index: 10;
  top: -100%;
  right: 0;
  width: 100%;
  text-align: right;
  padding: 2rem;
  /* height: 100vh; */
  background-color: white;
  transition: all 300ms;
  /* opacity: 0; */
}
.m-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.m-list > li:nth-last-child(1) {
  margin-top: 2rem;
}
.m-list > li:nth-last-child(1) a {
  color: #fff;
  font-family: Poppins;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 6px;
  background: #01a532;
  padding: 12px 21px;
}
.m-list li a {
  color: #000;
  font-family: Poppins;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
/* mobile */

/* header */

.head {
  position: fixed;
  width: 100%;
  display: flex;
  height: 100px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 var(--padding);
  background: rgba(255, 255, 255, 0.82);
  z-index: 100;
  gap: 1rem;
}
.head > a:hover {
  border: 1px solid #01a532;
  background-color: transparent;
  color: black;
}
.head > a {
  color: #fff;
  font-family: Poppins;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 6px;
  background: #01a532;
  border: 1px solid #01a532;

  padding: 12px 21px;
  transition: all 300ms;
}
.head-list {
  display: flex;
  gap: 3rem;
  /* margin-left: auto; */
}
.head-list li a:hover {
  color: #01a532;
}
.head-list li a {
  color: #000;
  font-family: Poppins;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.logo img {
  width: 196px;
  height: 87px;
}

.head-list .dropdown-menu.show li:nth-child(1),
.m-list .dropdown-menu.show li:nth-child(1) {
  padding-bottom: 1rem;
}
.head-list .dropdown-menu.show li a,
.m-list .dropdown-menu.show li a {
  font-size: 14px;
  padding: 0.5rem 0;
  white-space: no-wrap;
}
.head-list .dropdown-menu.show,
.m-list .dropdown-menu.show {
  padding: 0.5rem;
}
/* header end */

/* home */
.float-social {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: white;
  z-index: 2;
  display: flex;
  flex-direction: column;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background: #b5b5b5;
  overflow: hidden;
  gap: 1px;
  border: 1px solid #b5b5b5;
  border-right: none;
}
.float-social a:hover {
  color: #01a532;
}
.float-social a {
  padding: 10px;
  font-size: 22px;
  background: white;
}

.home-banner {
  position: relative;
  height: 100vh;
  width: 100%;
}
.home-banner img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.home-det {
  padding: 0 var(--padding);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.home-det h1 {
  color: #fff;
  text-align: center;
  text-shadow: 0px 4px 7px rgba(0, 0, 0, 0.43);
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.home-det h4 {
  color: #fff;
  font-family: Poppins;
  font-size: var(--para-head);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
}
.home-det a:hover {
  background-color: white;
  color: black;
}
.home-det a {
  border: 1px solid #01a532;
  color: #fff;
  font-family: Poppins;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: inline-flex;
  padding: 9px 13px;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  background: #01a532;
  margin-top: 2rem;
  transition: all 300ms;
}
.home-about {
  position: relative;
}
.home-a-contain {
  padding: 5rem var(--padding);
  display: flex;
  gap: 100px;
}
.home-about > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hac-left {
  width: 520px;
  height: 520px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: -10px 10px #01a532;
  z-index: 1;
}
.hac-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hac-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.hac-right h5 {
  color: #01a532;
  font-family: Poppins;
  font-size: var(--para-head);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}
.hac-right h3 {
  color: #000;
  font-family: Poppins;
  font-size: var(--big-head);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.hac-right p {
  color: #000;
  font-family: Poppins;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: 185%; /* 29.6px */
  text-transform: capitalize;
}
.hac-right a:hover {
  background-color: #01a532;
  color: #fff;
}
.hac-right a {
  color: #000;
  font-family: Poppins;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 9px 13px;
  border-radius: 5px;
  border: 1px solid #01a532;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 300ms;
}

.home-service {
  padding: 2rem var(--padding);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-service h3 {
  color: #01a532;
  font-family: Poppins;
  font-size: var(--big-head);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.home-service p {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: 185%; /* 29.6px */
  text-transform: capitalize;
  max-width: 1032px;
}
.hs-group {
  padding: 2rem 0;
  display: flex;
  gap: 1rem;
}
.hs-item {
  width: 242px;
  height: 242px;
  border-radius: 50%;
  /* border-radius: 125px; */
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
}
.hs-item h6 {
  color: #000;
  font-family: Poppins;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.hs-logo {
}
.hs-logo img {
  width: 69px;
  height: 69px;
}
.looking {
  position: relative;
}
.looking::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  z-index: -1;
}
.looking img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.looking-det {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem var(--padding);
  gap: 0.5rem;
}
.looking-det h3 {
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: var(--big-head);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  max-width: 665px;
}
.looking-det p {
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: 185%; /* 29.6px */
  text-transform: capitalize;
  max-width: 772px;
}
.looking-det a:hover {
  background-color: #01a532;
  color: #fff;
}
.looking-det a {
  color: #fff;
  font-family: Poppins;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 12px 21px;
  border-radius: 6px;
  border: 1px solid #fff;
  width: fit-content;
  margin-top: 1rem;
  transition: all 300ms;
}

.home-product {
  padding: 3rem var(--padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hp-top {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 3rem 0;
}
.hp-top h3 {
  color: #01a532;
  font-family: Poppins;
  font-size: var(--big-head);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.hp-group-contain {
  width: 100%;
}
.hp-group {
  justify-content: space-between;
}
.hp-item:hover .hp-det {
  background: rgba(0, 166, 50, 0.72);
  color: #fff;
}
.hp-item {
  position: relative;
  width: 300px;
  height: 294px;
  flex-shrink: 0;
  display: flex;
}
.hp-item a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.hp-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}
.hp-det {
  width: 100%;
  min-height: 60px;
  height: fit-content;
  background: #d9d9d9b8;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  color: #000;
  transition: all 300ms;
}
.hp-det h6 {
  font-family: Poppins;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.hp-top .custom-nav {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  display: flex;
  justify-content: space-between;
}
.custom-nav button:hover {
  color: #01a532;
}
.custom-nav button {
  border: none;
  background-color: transparent;
}

.feedback {
  position: relative;
  display: flex;
  padding: 3rem var(--padding);
  gap: 1rem;
}
.feedback::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  letter-spacing: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.feedback img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  top: 0;
  left: 0;
}
.feed-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 30%;
}
.feed-left h3 {
  color: #fff;
  font-family: Poppins;
  font-size: var(--big-head);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  max-width: 360px;
}
.feed-left p {
  color: #fff;
  font-family: Poppins;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: 185%; /* 29.6px */
  text-transform: capitalize;
  max-width: 360px;
}
.feed-left .custom-nav2 {
  display: flex;
  gap: 2rem;
}
.feed-left .custom-nav2 button:hover {
  color: #01a532;
}
.feed-left .custom-nav2 button {
  border: none;
  background: transparent;
  color: #fff;
}
.feed-right {
  width: 70%;
}
.feedback-item {
  /* width: 442px; */
  /* height: 282px; */
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
}
.feedback-item p {
  color: #fff;
  font-family: Poppins;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: 185%; /* 29.6px */
  text-transform: capitalize;
}
.feedback-item h5 {
  color: #fff;
  font-family: Poppins;
  font-size: var(--para-head);
  font-style: normal;
  font-weight: 500;
  line-height: 185%; /* 37px */
  text-transform: capitalize;
  margin-top: 1rem;
}
.feedback-item h6 {
  color: #fff;
  font-family: Poppins;
  font-size: var(--small-link);
  font-style: normal;
  font-weight: 400;
  line-height: 185%; /* 25.9px */
  text-transform: capitalize;
}

.home-partner {
  padding: 3rem var(--padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.home-partner h3 {
  color: #01a532;
  font-family: Poppins;
  font-size: var(--big-head);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.hpart-group {
  display: flex;
  gap: 2rem;
}
.hpart-item {
  width: 227px;
  height: 107px;
  padding: 24px 18px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.12);
}
.hpart-item img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.need-help {
  background: #f8f8f8;
  display: flex;
  align-items: center;
}
.nh-left {
  width: 50%;
  padding: 3rem;
  padding-left: var(--padding);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.nh-left h3 {
  color: #01a532;
  font-family: Poppins;
  font-size: var(--big-head);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.nh-left form {
  display: flex;
  /* flex-direction: column; */
  gap: 1rem;
  flex-wrap: wrap;
}
.nh-left form > span:nth-child(4),
.nh-left form > span:nth-child(6) {
  width: 100%;
}
.nh-left form input::placeholder,
.nh-left form textarea::placeholder {
  color: #000;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 15px */
}
.nh-left form > span {
  width: calc(50% - 0.5rem);
}
.nh-left form input {
  width: 100%;
  height: 56px;
  border-radius: 5px;
  background: rgba(214, 214, 214, 0.56);
  outline: none;
  border: none;
  padding: 0 20px;
}
.nh-left form textarea {
  border-radius: 5px;
  background: rgba(214, 214, 214, 0.56);
  outline: none;
  border: none;
  max-height: 137px;
  resize: none;
  padding: 20px 20px;

  width: 100%;
}
.nh-left form > input:hover {
  background-color: #01a532;
  color: #fff;
}
.nh-left form > input {
  color: #000;
  font-family: Poppins;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 6px;
  border: 1px solid #01a532;
  background: transparent;
  padding: 12px 21px;
  margin-top: 1rem;
  width: fit-content;
  height: fit-content;
  transition: all 300ms;
}
.nh-right {
  width: 50%;
  height: 100%;
  z-index: 1;
}
.nh-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 641px;
}
/* home end */
/* footer */
footer {
  position: relative;
}
footer::after {
  content: '';
  background: hsla(138, 99%, 33%, 0.9);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
footer > img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}
.foot {
  display: flex;
  padding: 3rem var(--padding);
  gap: 4rem;
  justify-content: space-between;
}

.foot-det p {
  color: #fff;
  font-family: Poppins;
  font-size: var(--small-link);
  font-style: normal;
  font-weight: 400;
  line-height: 185%; /* 25.9px */
  text-transform: capitalize;
}
.foot-det img {
  width: 165.053px;
  height: 70.737px;
  margin-bottom: 1rem;
}
.foot-det {
  width: calc(30% - 2rem);
}
.foot-company {
  width: calc(15% - 2rem);
}
.foot-company {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.foot-company li a {
  color: #fff;
  font-family: Poppins;
  font-size: var(--small-link);
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 14px */
}
.foot-company li h4 {
  color: #fff;
  font-family: Poppins;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.foot-contact {
  width: calc(25% - 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.fc-add {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.fc-add a {
  color: #fff;
  font-family: Poppins;
  font-size: var(--small-link);
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 14px */
}
.fc-add h4 {
  color: #fff;
  font-family: Poppins;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.fc-add h6 {
  color: #fff;
  font-family: Poppins;
  font-size: var(--small-link);
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 14px */
}
.fc-connect {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.fc-connect h4 {
  color: #fff;
  font-family: Poppins;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-top: 1rem;
}
.fc-connect a .iconify {
  width: 18px;
  height: 18px;
  color: white;
}
.fc-icons {
  display: flex;
  gap: 1rem;
}

.foot-map iframe {
  border-radius: 8px;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.13);
  width: 100%;
  height: 100%;
}
.foot-map {
  width: calc(30% - 2rem);
}
.copy-right {
  text-align: center;
  padding: 3rem 0;
  border-top: 0.6px solid#FFF;
}
.copy-right h5 {
  color: #fff;
  font-family: Poppins;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

/* footer end */

/* about-us */
.small-banner {
  width: 100%;
  height: 60vh;
  min-height: 582px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.small-banner h1 {
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.small-banner img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.about-profile {
  padding: 3rem var(--padding);
}
.ap-contain {
  display: flex;
  background: #f8f8f8;
  align-items: center;
  gap: 2rem;
}
.apc-left {
  width: 60%;
  padding: 0 4rem;
  /* display: flex; */
}
.apc-left h3 {
  color: #01a532;
  font-family: Poppins;
  font-size: var(--big-head);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.apc-left p {
  color: #000;
  font-family: Poppins;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: 185%; /* 29.6px */
  text-transform: capitalize;
}
.apc-right {
  width: 40%;
  position: relative;
  min-height: 465px;
}
.apc-right img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.about-mission {
  padding: 3rem var(--padding);
}
.am-head {
  text-align: center;
  padding-bottom: 4rem;
}
.am-head h3 {
  color: #01a532;
  font-family: Poppins;
  font-size: var(--big-head);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.am-head h6 {
  color: #000;
  font-family: Poppins;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: 185%; /* 29.6px */
  text-transform: capitalize;
}
.am-group {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
.vision {
  width: 632px;
  background: #f8f8f8;
}
.vision img {
  width: 100%;
  object-fit: cover;
  max-height: 268px;
}
.vision-det {
  padding: 2rem;
}
.am-group h4 {
  color: #01a532;
  font-family: Poppins;
  font-size: var(--big-head);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.am-group p {
  color: #000;
  font-family: Poppins;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: 185%; /* 29.6px */
  text-transform: capitalize;
}

/* about-us */

/* product */

.product-items {
  padding: 5rem var(--padding);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, max-content));
  grid-gap: 1rem;
  justify-content: center;
}
/* product end */
/* product inner */
.product-inner {
  padding: 3rem var(--padding);
}
.pi-contain {
  display: flex;
  gap: 4rem;
}
.pi-left {
  width: 60%;
}
.pi-left h3 {
  color: #01a532;
  font-family: Poppins;
  font-size: var(--big-head);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.pi-left p {
  color: #000;
  font-family: Poppins;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: 185%; /* 29.6px */
  text-transform: capitalize;
}
.pi-right {
  width: 40%;
}
.pi-right img {
  max-height: 310px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.image-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(208px, max-content));
  gap: 3rem;
  justify-content: left;
  padding: 4rem 0;
}
.image-group img {
  width: 208px;
  height: 208px;
  flex-shrink: 0;
  object-fit: cover;
}
/* product end */

/* service */

.service {
  padding: 3rem var(--padding);
}
.service-det {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 3rem;
}
.service-det h3 {
  color: #01a532;
  font-family: Poppins;
  font-size: var(--big-head);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.service-det p {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: 185%; /* 29.6px */
  text-transform: capitalize;
  max-width: 1025px;
}
.service-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.service-item {
  width: 632px;
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.service-item img {
  width: 69px;
  height: 69px;
  margin-bottom: 2rem;
}
.service-item h5 {
  color: #01a532;
  font-family: Poppins;
  font-size: var(--para-head);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.service-item p {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: 185%; /* 29.6px */
  text-transform: capitalize;
}
/* service end */

/* gallery */
.gallery {
  padding: 3rem var(--padding);
}
.gallery-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 28px;
  border: 1px solid #00a532;
  width: fit-content;
  margin: 0 auto;
}
.gallery-btn button.active {
  background: #00a532;
  color: #fff;
}
.gallery-btn button {
  padding: 8px 10px;
  border: none;
  font-family: Poppins;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  border-radius: 22px;
  background: transparent;
  transition: all 300ms;
}
.gallery .tab-content {
}
.image-conatin {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, max-content));
  gap: 1.5rem;
  justify-content: center;
  padding: 3rem 0;
}
.g-img {
}
.g-img img {
  width: 300px;
  height: 300px;
}

.video-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(632px, max-content));
  gap: 1.5rem;
  justify-content: center;
  padding: 3rem 0;
}
.video-item {
}
.video-item iframe {
  width: 632px;
  height: 362px;
}
/* gallery end */

/* contact */
.contact-contain {
  padding: 3rem var(--padding);
}
.conatct-form {
  display: flex;
  background: #f8f8f8;
  box-shadow: 0px 0px 22px 1px rgba(0, 0, 0, 0.11);
  gap: 6rem;
  padding: 3rem;
}
.cf-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 60%;
}
.cf-left h3 {
  color: #01a532;
  font-family: Poppins;
  font-size: var(--big-head);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 2rem;
}
.cf-left form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.cf-left form > span:nth-child(4),
.cf-left form > span:nth-child(6) {
  width: 100%;
}
.cf-left form > span {
  width: calc(50% - 0.5rem);
}
.wpcf7-spinner {
  width: 24px !important;
}
.cf-left form input {
  width: 100%;
  border-radius: 5px;
  background: rgba(214, 214, 214, 0.56);
  border: none;
  outline: transparent;
  height: 56px;
  padding: 0 20px;
}
.cf-left form textarea {
  border-radius: 5px;
  background: rgba(214, 214, 214, 0.56);
  border: none;
  outline: transparent;
  height: 137px;
  padding: 15px 20px;
  resize: none;
  width: 100%;
}
.cf-left form > input:hover {
  background-color: #01a532;
  color: #fff;
}
.cf-left form > input {
  width: fit-content;
  height: fit-content;
  color: #000;
  font-family: Poppins;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 6px;
  border: 1px solid #01a532;
  background: transparent;
  padding: 12px 21px;
  transition: all 300ms;

  margin-top: 1rem;
}

.cf-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
}
.cfr-item {
  min-width: 326px;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.cfr-icon {
  width: 73px;
  height: 73px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #01a532;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cfr-icon img {
  width: 40px;
  height: 40px;
  /* color: white; */
}
.cfr-det {
  display: flex;
  flex-direction: column;
}
.cfr-det h5 {
  color: #000;
  font-family: Poppins;
  font-size: var(--para-head);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0.5rem;
}
.cfr-det p,
.cfr-det a {
  color: #000;
  font-family: Poppins;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* contact end */

/* new pop */
/* new pop */
/* new pop */

.f-social-mob {
  display: none;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  flex-direction: column;
  justify-content: center;
  align-items: end;
}
.social-links.vis {
  visibility: visible;
  opacity: 1;
}
.social-links a {
  background: white;
  padding: 0.5rem;
}
.social-links a:hover {
  color: #01a532;
}
.social-links {
  visibility: hidden;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  display: flex;
  flex-direction: column;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background: #b5b5b5;
  overflow: hidden;
  gap: 1px;
  border: 1px solid #b5b5b5;
  border-right: none;
  transition: all 300ms;
}
.mobpop-btn .iconify {
  width: 100%;
  height: 100%;
  color: #01a532;
}
.mobpop-btn.rot {
  transform: rotate(180deg);
}
.mobpop-btn {
  transition: all 300ms;
  display: flex;
  width: 20px;
  height: 20px;
  padding: 0;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #b5b5b5;
  border-radius: 50%;
  margin-top: 0.5rem;
  /* transform:rotate(45deg) ; */
}

/* new pop */
/* new pop */
/* new pop */

/* home-banner-video */
/* home-banner-video */
.home-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  position: absolute;
  /* object-position: left; */
}

/* home-banner-video */
/* home-banner-video */

section.home-service.home-quality-text {
  background: #f7f7f7;
  padding: 3rem var(--padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

section.home-service.home-quality-text .hs-group {
  width: 100%;
  margin: 0 auto;
}

section.home-service.home-quality-text .hs-group ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
  list-style: none;
  text-align: left;
}

section.home-service.home-quality-text .hs-group ul li {
  width: 32.333%;
  padding: 20px;
  border: 1px solid #eaeaea;
  background: #fff;
  margin-top: 12px;
  border-radius: 5px;
  text-align: left;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.12);
}

section.home-service.home-quality-text .hs-group ul li h5 {
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 5px;
}

section.home-service.home-quality-text .hs-group ul li p {
  text-align: left;
}
a.glink.nturl.notranslate.gt-current-lang {
  display: none;
}

.head .glink {
  display: flex;
  flex-direction: row-reverse;
  gap: 5px !important;
  align-items: center !important;

}

@media (max-width: 767px) {
  section.home-service.home-quality-text .hs-group ul li {
    width: 49%;
  }
  /* section.home-service.home-quality-text {
    padding: 30px 15px 40px;
} */

  section.home-service.home-quality-text .hs-group {
    padding: 0;
  }
}

@media (max-width: 575px) {
  section.home-service.home-quality-text .hs-group ul li {
    width: 100%;
  }

  section.home-service.home-quality-text .hs-group ul {
    gap: 0;
  }
}
