@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");
@font-face {
  font-family: NewYork;
  src: url("../font/NewYork PERSONAL USE.otf");
}
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

body {
  font-family: Quicksand;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: linear-gradient(180deg, rgba(239, 255, 224, 0) 0%, rgba(239, 255, 224, 0.431372549) 100%);
  position: relative;
}

img {
  max-width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

a,
a:hover {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

li,
ol {
  list-style: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

h1 {
  color: var(--White, #FFF);
  font-family: NewYork;
  font-size: 6.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 6.125rem;
  text-transform: capitalize;
}

h2 {
  color: var(--Dark-Green, #032012);
  font-family: NewYork;
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.75rem;
  text-transform: capitalize;
  margin-bottom: 1.25rem;
}

p {
  color: var(--Paragraph, #505151);
  font-family: Quicksand;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
}

select {
  -webkit-appearance: none;
  /* Removes default appearance in Safari */
  -moz-appearance: none;
  /* Removes default appearance in Firefox */
  appearance: none;
  /* Standard */
  outline: none;
  /* Removes the focus outline */
  box-shadow: none;
  /* Removes the box shadow */
  padding: 16px 10px;
  /* Add padding for better UI */
  background-color: #fff;
  /* Background color */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"><path d="M0 0l5 6 5-6z" fill="%23666"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
}

.help_icon {
  position: fixed;
  width: 4.375rem;
  height: 4.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 10%;
  right: 0;
  z-index: 9;
  background-color: #000;
  border-radius: 50%;
}
.help_icon img {
  width: 2.6875rem;
}
.help_icon .help {
  position: absolute;
  left: -9.8125rem;
  top: 18px;
  padding: 0.25rem 0.75rem;
  width: 9rem;
  border-radius: 0.3125rem;
  border: 2px solid #D9D9D9;
  background-color: #Fff;
  color: var(--Paragraph, #505151);
  text-align: center;
  font-family: Quicksand;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}
.help_icon .help::before {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -16px;
  background-image: url(../images/triangle.png);
  width: 30px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: cover;
}

button:focus {
  outline: none !important;
}

.glb_btn {
  color: var(--Dark, #010B06);
  font-family: Quicksand;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 0.88rem 1.88rem;
  border-radius: 3.125rem;
  background: #fff;
  display: block;
  border: 1px solid #fff;
  width: -moz-max-content;
  width: max-content;
  transition: all 0.5s ease;
}
.glb_btn:hover {
  color: #000;
  background-color: transparent;
}
.glb_btn.grn {
  background-color: #032012;
  border: 1px solid #032012;
  color: #fff;
}

header {
  width: 100%;
  z-index: 9;
  position: absolute;
  left: 0;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header .top {
  padding: 0.81rem 8.13rem;
  background-color: #000;
}
header .top ul {
  display: flex;
  align-items: center;
  gap: 3.12rem;
}
header .top ul li {
  color: var(--White, #FFF);
  font-family: Quicksand;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.175rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
header .top ul li img {
  width: 1.5rem;
  height: 1.5rem;
}
header .menu_area {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.55rem 0;
}
header .menu_area .main_logo {
  max-width: 13rem;
}
header .menu_area .main_logo img {
  width: 100%;
}
header .menu_area .main_links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
header .menu_area .main_links ul {
  gap: 2rem;
}
header .menu_area .main_links ul li {
  padding: 0;
}
header .menu_area .main_links ul li a {
  color: var(--White, #FFF);
  font-family: Quicksand;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0;
}
header .menu_area .main_links ul li a::before {
  display: none;
}
header .menu_area .main_links ul li a:hover::after, header .menu_area .main_links ul li a.active::after {
  opacity: 1;
}
header .menu_area .main_links ul li.active a::after {
  opacity: 1;
}

.smlTag {
  color: #107C48;
  font-family: NewYork;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1rem;
  position: relative;
  display: block;
  padding-left: 2.6rem;
  padding-right: 2.6rem;
  max-width: -moz-max-content;
  max-width: max-content;
  letter-spacing: 0.1375rem;
}
.smlTag::before, .smlTag::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 8px;
  background-image: url(../images/tag-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.smlTag::after {
  left: unset;
  transform: rotate(180deg);
  right: 0;
  top: 40%;
}
.smlTag.light {
  color: #00BF63;
}
.smlTag.light::before, .smlTag.light::after {
  filter: brightness(0) saturate(100%) invert(45%) sepia(97%) saturate(931%) hue-rotate(116deg) brightness(94%) contrast(104%);
}

.heroSec {
  position: relative;
  background: var(--Gradient, linear-gradient(289deg, #00BF63 0%, #032012 99.4%));
  overflow: hidden;
}
.heroSec::before {
  content: "";
  position: absolute;
  bottom: 1rem;
  right: -6rem;
  width: 54rem;
  height: 54rem;
  border-radius: 50%;
  background: var(--Green, #00BF63);
  filter: blur(135px);
}
.heroSec .smlTag {
  color: #B0F475;
  font-family: Quicksand;
}
.heroSec .smlTag::before, .heroSec .smlTag::after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(21%) saturate(5796%) hue-rotate(36deg) brightness(114%) contrast(92%);
}
.heroSec .bg {
  width: 100%;
  height: 100%;
  max-height: 56.25rem;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.1;
}
.heroSec .dustbin_img {
  position: absolute;
  bottom: -5rem;
  right: -2rem;
  width: 62.375rem;
  height: 30.5rem;
}
.heroSec .top {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 0 0 8.44rem;
  overflow: hidden;
}
.heroSec .top .container {
  position: relative;
  z-index: 2;
}
.heroSec .top .side_man {
  width: 39.4rem;
  height: 44rem;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  right: 3.625rem;
  bottom: 0;
}
.heroSec .top h1 {
  margin-bottom: 1.25rem;
}
.heroSec .top p {
  color: #fff;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 42rem;
}
.heroSec .top .srchFrom {
  max-width: 39rem;
}
.heroSec .top .srchFrom .input {
  width: 100%;
  position: relative;
}
.heroSec .top .srchFrom .input input:not([type=submit]) {
  width: 100%;
  background-color: #fff;
  color: #000;
  font-family: Quicksand;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  padding: 1.25rem 10.85rem 1.25rem 1.25rem;
  border-radius: 3.125rem;
  border: none;
}
.heroSec .top .srchFrom .input input:not([type=submit])::-moz-placeholder {
  color: #032012;
}
.heroSec .top .srchFrom .input input:not([type=submit])::placeholder {
  color: #032012;
}
.heroSec .top .srchFrom .input input[type=submit] {
  position: absolute;
  right: 4px;
  top: 4px;
  padding: 0.88rem 3.08rem;
  background-color: #B0F475;
  border: 1px solid #B0F475;
  color: #107C48;
}

.homeSec2 {
  padding: 6.25em 0 0;
  position: relative;
  background-color: #fff;
  overflow: hidden;
}
.homeSec2 .video {
  position: absolute;
  right: 0;
  top: 6.25rem;
  width: 65rem;
  height: 43rem;
  padding: 0;
}
.homeSec2 .video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.homeSec2 .lftTxt {
  background-color: #fff;
  padding-bottom: 1.25rem;
}
.homeSec2 .smlTag {
  color: #00BF63;
}
.homeSec2 .smlTag::before, .homeSec2 .smlTag::after {
  filter: brightness(0) saturate(100%) invert(50%) sepia(59%) saturate(2044%) hue-rotate(115deg) brightness(94%) contrast(102%);
}
.homeSec2 h2 {
  max-width: 25rem;
}
.homeSec2 .ratingdv {
  display: flex;
  align-items: center;
  gap: 0.31rem 0.25rem;
  flex-wrap: wrap;
  margin-bottom: 14.69rem;
}
.homeSec2 .ratingdv .imgs {
  display: flex;
  align-items: center;
}
.homeSec2 .ratingdv .imgs img {
  width: 2.25rem;
  height: 2.25rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: -15px;
  position: relative;
}
.homeSec2 .ratingdv .imgs img:first-child {
  margin-left: 0;
}
.homeSec2 .ratingdv .imgs img:nth-child(1) {
  z-index: 4;
}
.homeSec2 .ratingdv .imgs img:nth-child(2) {
  z-index: 3;
}
.homeSec2 .ratingdv .imgs img:nth-child(3) {
  z-index: 2;
}
.homeSec2 .ratingdv .imgs img:nth-child(4) {
  z-index: 1;
}
.homeSec2 .ratingdv .rating {
  display: flex;
  align-items: center;
  gap: 0.38rem;
}
.homeSec2 .ratingdv .rating .stars img {
  width: 1.25rem;
  height: 1.25rem;
}
.homeSec2 .ratingdv .rating span {
  color: var(--Paragraph, #505151);
  font-family: Quicksand;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: block;
}
.homeSec2 .ratingdv p.gryTxt {
  width: 100%;
  font-weight: 500;
  margin-bottom: 0;
}
.homeSec2 .qoutDv p {
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.homeSec2 .qoutDv .title {
  position: relative;
  position: relative;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-left: auto;
  margin-right: 50px;
}
.homeSec2 .qoutDv .title::before {
  content: "";
  position: absolute;
  left: -58px;
  top: 50%;
  width: 42px;
  height: 2px;
  background-color: #505151;
}
.homeSec2 .qoutDv .title h5 {
  color: var(--Paragraph, #505151);
  font-family: Quicksand;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0;
}
.homeSec2 .qoutDv .title span {
  color: var(--Paragraph, #505151);
  font-family: Quicksand;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: block;
}

.homeSec3 {
  position: relative;
  padding: 11.81rem 0 7.43rem;
  overflow: hidden;
}
.homeSec3 .dustbin_img {
  position: absolute;
  bottom: -3rem;
  left: 0;
  width: 18.3125rem;
  height: 9.75rem;
}
.homeSec3 .smlTag {
  margin: 0 auto;
  margin-bottom: 0.62rem;
}
.homeSec3 h2 {
  text-align: center;
}
.homeSec3 p {
  text-align: center;
}
.homeSec3 .fullMap {
  position: relative;
  padding-bottom: 3.7rem;
}
.homeSec3 .fullMap .container {
  max-width: 98.375rem;
}
.homeSec3 .fullMap .fullinfos {
  display: flex;
  align-items: center;
}
.homeSec3 .fullMap .fullinfos .col-lg-3:first-child .info {
  margin-top: 3rem;
}
.homeSec3 .fullMap .fullinfos .col-lg-3:nth-child(2) .info {
  margin-top: 7.2rem;
}
.homeSec3 .fullMap .fullinfos .col-lg-3:nth-child(2) .info::before {
  bottom: 15px;
  left: 45%;
}
.homeSec3 .fullMap .fullinfos .col-lg-3:nth-child(3) .info {
  margin-top: 13.2rem;
}
.homeSec3 .fullMap .fullinfos .col-lg-3:nth-child(3) .info::before {
  bottom: 10px;
  left: 54%;
}
.homeSec3 .fullMap .fullinfos .col-lg-3:nth-child(4) .info {
  margin-top: 23rem;
}
.homeSec3 .fullMap .fullinfos .col-lg-3:nth-child(4) .info::before {
  left: 56%;
  bottom: 8px;
}
.homeSec3 .fullMap .fullinfos .info {
  width: 100%;
  text-align: center;
  position: relative;
  padding-bottom: 10.5rem;
}
.homeSec3 .fullMap .fullinfos .info::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 150px;
  width: 14px;
  height: 130px;
  background-image: url(../images/bullet.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 2;
}
.homeSec3 .fullMap .fullinfos .info p {
  max-width: 21rem;
  margin: 0 auto;
  font-weight: 500;
}
.homeSec3 .fullMap .fullinfos .info .icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border: 1px solid #00BF63;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto 0.62rem;
}
.homeSec3 .fullMap .fullinfos .info .icon:first-child {
  margin-top: 3.06rem;
}
.homeSec3 .fullMap .fullinfos .info .icon::before {
  content: "";
  position: absolute;
  background-color: #00BF63;
  width: 2.56rem;
  height: 2.56rem;
  border-radius: 50%;
}
.homeSec3 .fullMap .fullinfos .info .icon img {
  width: 1.125rem;
  height: 1.125rem;
  position: relative;
  z-index: 1;
}
.homeSec3 .fullMap .fullinfos .info h5 {
  color: var(--Black, #2E2B2B);
  text-align: center;
  font-family: Quicksand;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0.38rem;
}
.homeSec3 .fullMap .img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.homeSec3 .fullMap .img img {
  width: 100%;
  height: 545px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.homeSec4 {
  background-color: #032012;
  padding: 6.25rem 0;
}
.homeSec4 .row {
  row-gap: 1.88rem;
}
.homeSec4 .smlTag {
  margin: 0 auto 0.63rem;
}
.homeSec4 h2,
.homeSec4 p {
  color: #fff;
  max-width: 52rem;
  text-align: center;
  margin: 0 auto;
}
.homeSec4 h2 {
  margin-bottom: 0.75rem;
}
.homeSec4 p {
  margin-bottom: 0.62rem;
}
.homeSec4 .whoCard {
  padding: 1.875rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  border-radius: 0.625rem;
  background: var(--White, #FFF);
  width: 100%;
  height: 100%;
}
.homeSec4 .whoCard .img {
  max-width: 178px;
  margin-bottom: 1.31rem;
}
.homeSec4 .whoCard h5 {
  color: var(--Dark, #010B06);
  text-align: center;
  font-family: Quicksand;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 0.25rem;
}

.rltv {
  position: relative;
}

.homeSec5 {
  padding: 6.25rem 0;
}
.homeSec5 .row {
  align-items: center;
}
.homeSec5 .lists {
  margin-top: 2.5rem;
}
.homeSec5 .lists li {
  margin-bottom: 2.2rem;
  color: var(--Dark, #010B06);
  font-family: Quicksand;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.75rem;
  padding-left: 3.5rem;
  position: relative;
}
.homeSec5 .lists li:last-child {
  margin-bottom: 0;
}
.homeSec5 .lists li .icon {
  position: absolute;
  left: 0;
  top: -0.5625rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--Green, #00BF63);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.homeSec5 .lists li .icon img {
  width: 1.8rem;
}
.homeSec5 h2 {
  margin-bottom: 2.5rem;
}
.homeSec5 .txt p {
  margin-bottom: 1.875rem;
}
.homeSec5 .txt p:last-child {
  margin-bottom: 0;
}
.homeSec5 .fullImg {
  width: 100%;
  max-width: 41rem;
  margin-left: auto;
  position: relative;
  padding-bottom: 3.44rem;
}
.homeSec5 .fullImg .bigImg {
  max-width: 37rem;
  width: 100%;
  border-radius: 0.375rem;
  margin-left: auto;
  display: block;
}
.homeSec5 .fullImg .abs {
  width: 16rem;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0.375rem;
  display: block;
  border: 5px solid #FFF;
}
.homeSec5 .outline {
  position: absolute;
  left: -1.875rem;
  bottom: 0;
}
.homeSec5 .outline img {
  width: 13.7rem;
}

.homeSec6 {
  padding: 4.69rem 0 4.62rem;
  background-color: #032012;
}
.homeSec6 h2 {
  color: #fff;
  margin-bottom: 1.88rem;
  max-width: 40rem;
}
.homeSec6 p {
  color: #fff;
  font-weight: 300;
}
.homeSec6 .ratingdv {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  flex-wrap: wrap;
  margin: 1.19rem 0 1.88rem;
}
.homeSec6 .ratingdv .imgs {
  display: flex;
  align-items: center;
}
.homeSec6 .ratingdv .imgs img {
  width: 3.75rem;
  height: 3.75rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: -15px;
  position: relative;
}
.homeSec6 .ratingdv .imgs img:first-child {
  margin-left: 0;
}
.homeSec6 .ratingdv .imgs img:nth-child(1) {
  z-index: 4;
}
.homeSec6 .ratingdv .imgs img:nth-child(2) {
  z-index: 3;
}
.homeSec6 .ratingdv .imgs img:nth-child(3) {
  z-index: 2;
}
.homeSec6 .ratingdv .imgs img:nth-child(4) {
  z-index: 1;
}
.homeSec6 .ratingdv .rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.38rem;
}
.homeSec6 .ratingdv .rating .stars img {
  width: 1.25rem;
  height: 1.25rem;
}
.homeSec6 .ratingdv .rating span {
  color: #fff;
  font-family: Quicksand;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: block;
}
.homeSec6 .ratingdv .rating p {
  width: 100%;
  color: #fff;
  margin-bottom: 0;
}
.homeSec6 .smlTag {
  margin-bottom: 0.63rem;
}
.homeSec6 ul.lists {
  max-width: 32rem;
  margin-left: auto;
}
.homeSec6 ul.lists li {
  background-color: #fff;
  padding: 1.25rem;
  position: relative;
  padding-left: 6.64rem;
  border-radius: 0.625rem;
  background-color: #fff;
  margin-bottom: 1.25rem;
  min-height: 7rem;
}
.homeSec6 ul.lists li:last-child {
  margin-bottom: 0;
}
.homeSec6 ul.lists li span.icon {
  position: absolute;
  left: 1.3rem;
  top: 1.3rem;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background-color: #00BF63;
  display: flex;
  align-items: center;
  justify-content: center;
}
.homeSec6 ul.lists li span.icon img {
  width: 2.25rem;
}
.homeSec6 ul.lists li p {
  color: var(--Paragraph, #505151);
  font-family: Quicksand;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  max-width: 23rem;
}
.homeSec6 ul.lists li h5 {
  color: var(--Dark, #010B06);
  font-family: Quicksand;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 0.25rem;
}

.homeSec7 {
  padding: 6.25rem 0;
}
.homeSec7 .lft_img {
  width: 100%;
  border-radius: 0.625rem;
}
.homeSec7 .smlTag {
  margin-bottom: 0.62rem;
}
.homeSec7 .srchFrom {
  width: 100%;
  padding-top: 6.05rem;
  margin-bottom: 1.31rem;
}
.homeSec7 .srchFrom .input {
  width: 100%;
  position: relative;
}
.homeSec7 .srchFrom .input input:not([type=submit]) {
  width: 100%;
  background-color: #fff;
  color: #000;
  font-family: Quicksand;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  padding: 1.25rem 13.85rem 1.25rem 1.25rem;
  border-radius: 3.125rem;
  border: 1px solid #bfbfbf;
}
.homeSec7 .srchFrom .input input:not([type=submit])::-moz-placeholder {
  color: #505151;
}
.homeSec7 .srchFrom .input input:not([type=submit])::placeholder {
  color: #505151;
}
.homeSec7 .srchFrom .input input[type=submit] {
  position: absolute;
  right: 6px;
  top: 6px;
  padding: 0.832rem 1.88rem;
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
  font-weight: 500;
}
.homeSec7 .srvc_lction {
  width: 100%;
  border-radius: 0.625rem;
  border: 2px solid rgba(0, 191, 99, 0.1411764706);
  background: #F5FFFA;
  overflow: hidden;
}
.homeSec7 .srvc_lction .top {
  border-radius: 0.625rem 0.625rem 0 0;
  border-top: 1px solid #00BF63;
  border-right: 1px solid #00BF63;
  border-left: 1px solid #00BF63;
  background: #00BF63;
  margin-bottom: 1.87rem;
}
.homeSec7 .srvc_lction .top p {
  text-align: center;
  padding: 1rem;
  font-size: 1.375rem;
  color: #fff;
}
.homeSec7 .srvc_lction p {
  color: var(--Dark, #010B06);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  padding: 0 3.81rem 4.94rem 1.25rem;
}
.homeSec7 .srvc_lction p span {
  color: #00BF63;
}

.homeSec8 {
  padding-bottom: 6.25rem;
}
.homeSec8 span {
  margin: 0 auto 0.63rem;
}
.homeSec8 h2 {
  max-width: 40rem;
  margin: 0 auto;
  margin-bottom: 1.87rem;
  text-align: center;
}
.homeSec8 p {
  text-align: center;
  margin: 0;
}
.homeSec8 .row {
  row-gap: 2.11rem;
}
.homeSec8 .col-lg-3:nth-child(2) .testimoni_card {
  margin-top: -4.94rem;
}
.homeSec8 .col-lg-3:last-child .testimoni_card {
  margin-top: -4.94rem;
}
.homeSec8 .testimoni_card {
  border-radius: 0.375rem;
  background: #FFF;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
  padding: 1.88rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 24.3rem;
}
.homeSec8 .testimoni_card .top .rtings {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 0.53rem;
}
.homeSec8 .testimoni_card .top .rtings img {
  width: 1.56rem;
}
.homeSec8 .testimoni_card .top p {
  text-align: left;
}
.homeSec8 .testimoni_card .prfl {
  display: flex;
  align-items: center;
  gap: 0.31rem;
}
.homeSec8 .testimoni_card .prfl img {
  width: 2.56rem;
  height: 2.56rem;
  border-radius: 50%;
}
.homeSec8 .testimoni_card .prfl span {
  color: var(--Medium-Green, #107C48);
  font-family: NewYork;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.25rem;
  display: block;
  margin: 0;
}

.homeSec9 {
  background-color: #032012;
  padding: 6.25rem 0;
  overflow: hidden;
}
.homeSec9 h2 {
  color: #fff;
}
.homeSec9 p {
  color: #fff;
  margin-bottom: 1.19rem;
  font-weight: 300;
}
.homeSec9 .dgrn_dustbin {
  position: absolute;
  bottom: -1.35rem;
  left: 50%;
  transform: translateX(-50%);
  width: 216px;
}
.homeSec9 .ratingdv {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  flex-wrap: wrap;
  margin: 1.19rem 0 1.88rem;
}
.homeSec9 .ratingdv .imgs {
  display: flex;
  align-items: center;
}
.homeSec9 .ratingdv .imgs img {
  width: 3.75rem;
  height: 3.75rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: -15px;
  position: relative;
}
.homeSec9 .ratingdv .imgs img:first-child {
  margin-left: 0;
}
.homeSec9 .ratingdv .imgs img:nth-child(1) {
  z-index: 4;
}
.homeSec9 .ratingdv .imgs img:nth-child(2) {
  z-index: 3;
}
.homeSec9 .ratingdv .imgs img:nth-child(3) {
  z-index: 2;
}
.homeSec9 .ratingdv .imgs img:nth-child(4) {
  z-index: 1;
}
.homeSec9 .ratingdv .rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.38rem;
}
.homeSec9 .ratingdv .rating .stars img {
  width: 1.25rem;
  height: 1.25rem;
}
.homeSec9 .ratingdv .rating span {
  color: #fff;
  font-family: Quicksand;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: block;
}
.homeSec9 .ratingdv .rating p {
  width: 100%;
  color: #fff;
  margin-bottom: 0;
}
.homeSec9 .fullbillingDv .top {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 30rem;
  margin: 0 auto;
  gap: 0.63rem;
}
.homeSec9 .fullbillingDv .top .dscount {
  border-radius: 0.3125rem;
  background: rgba(0, 191, 99, 0.1);
  width: 7rem;
  color: #FFF;
  font-family: Quicksand;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 0.375rem 0.625rem;
}
.homeSec9 .fullbillingDv ul.tabs {
  display: flex;
  justify-content: center;
  gap: 0.66rem;
  align-items: center;
}
.homeSec9 .fullbillingDv ul.tabs li {
  color: #fff;
  font-family: Quicksand;
  font-size: 1.125rem;
  font-style: normal;
  cursor: pointer;
  font-weight: 600;
  line-height: 1.625rem;
}
.homeSec9 .fullbillingDv ul.tabs li.active {
  color: #00BF63;
}
.homeSec9 .fullbillingDv ul.tabs li .form-check {
  height: 41px;
  width: 84px;
  padding: 0;
}
.homeSec9 .fullbillingDv ul.tabs li .form-check input[type=checkbox] {
  float: unset;
  width: 100%;
  cursor: pointer;
  height: 100%;
  margin: 0;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e") no-repeat left center, linear-gradient(289deg, #00BF63 0%, #032012 99.4%);
  border: none;
}
.homeSec9 .fullbillingDv ul.tabs li .form-check input[type=checkbox]:focus {
  border: none;
}
.homeSec9 .fullbillingDv ul.tabs li .form-check input[type=checkbox]:checked {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e") no-repeat right center, linear-gradient(289deg, #032012 0%, #00BF63 99.4%);
}
.homeSec9 .fullbillingDv ul.tabs li .form-check input[type=checkbox]:focus {
  box-shadow: none;
}
.homeSec9 .fullbillingDv .tab_container {
  width: 100%;
}
.homeSec9 .fullbillingDv .tab_container .tab_content {
  padding: 20px;
  display: none;
}
.homeSec9 .fullbillingDv .tab_container .tab_content .billingDv {
  border-radius: 0.625rem;
  padding: 1.25rem;
  border: 2px solid transparent;
  background: linear-gradient(#032012, #032012) padding-box, linear-gradient(-117deg, #00BF63, #032012) border-box;
  border-right: none;
}
.homeSec9 .fullbillingDv .tab_container .tab_content .billingDv .fullPlan {
  border-radius: 0.625rem;
  border: 1px solid rgba(0, 191, 99, 0.1);
  background: #032C18;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  background-image: url(../images/bg2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.homeSec9 .fullbillingDv .tab_container .tab_content .billingDv .fullPlan h5 {
  color: var(--White, #FFF);
  font-family: Quicksand;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0.63rem;
}
.homeSec9 .fullbillingDv .tab_container .tab_content .billingDv .fullPlan p {
  margin-bottom: 1.25em;
}
.homeSec9 .fullbillingDv .tab_container .tab_content .billingDv .fullPlan .prc {
  color: var(--White, #FFF);
  font-family: NewYork;
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}
.homeSec9 .fullbillingDv .tab_container .tab_content .billingDv .fullPlan .prc span {
  font-size: 1.125rem;
}
.homeSec9 .fullbillingDv .tab_container .tab_content .billingDv .list {
  margin-bottom: 1.25rem;
}
.homeSec9 .fullbillingDv .tab_container .tab_content .billingDv .list li {
  color: var(--White, #FFF);
  font-family: Quicksand;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.625rem;
  margin-bottom: 0.94rem;
  padding-left: 2.31rem;
  position: relative;
}
.homeSec9 .fullbillingDv .tab_container .tab_content .billingDv .list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.37rem;
  height: 1.37rem;
  background-image: url(../images/tick.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.homeSec9 .fullbillingDv .tab_container .tab_content .billingDv .glb_btn {
  width: 100%;
  text-align: center;
  margin-bottom: 0.75rem;
}
.homeSec9 .fullbillingDv .tab_container .tab_content .billingDv .glb_btn:hover {
  color: #fff;
}
.homeSec9 .fullbillingDv .tab_container .tab_content .billingDv .sml_link {
  color: var(--White, #FFF);
  text-align: center;
  font-family: Quicksand;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  display: block;
}
.homeSec9 .fullbillingDv .tab_drawer_heading {
  display: none;
}

footer {
  position: relative;
  background-color: #032012;
}
footer .btmPart {
  padding: 18.63rem 0 0;
  display: flex;
  justify-content: space-between;
}
footer .btmPart .footer_logo {
  width: 25.8%;
}
footer .btmPart .footer_logo .logo {
  width: 12rem;
  margin-bottom: 5.94rem;
}
footer .btmPart .footer_logo p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.625rem;
  margin: 0;
  font-weight: 300;
}
footer .links {
  display: flex;
  flex-wrap: wrap;
  width: 51.7%;
  gap: 5.625rem;
}
footer .links .link h5 {
  color: var(--White, #FFF);
  font-family: NewYork;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  position: relative;
}
footer .links .link h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.5rem;
  height: 2px;
  background-color: #00BF63;
}
footer .links ul li {
  margin-bottom: 0.9375rem;
}
footer .links ul li:last-child {
  margin-bottom: 0;
}
footer .links ul li a {
  color: var(--White, #FFF);
  font-family: Quicksand;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: capitalize;
}
footer .foot_btm {
  border-top: 1px solid #354D41;
  padding: 1.88rem 0;
  margin-top: 3.75rem;
}
footer .foot_btm .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .foot_btm .wrap p {
  color: var(--White, #FFF);
  font-size: 1.125rem;
  line-height: 1.625rem;
  margin-bottom: 0;
}
footer .foot_btm .wrap .social_links {
  display: flex;
  align-items: center;
  gap: 0.62rem;
}
footer .foot_btm .wrap .social_links li a {
  width: 1.875em;
  height: 1.875em;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #032012;
  transition: all 0.4s ease;
}
footer .foot_btm .wrap .social_links li a:hover {
  background-color: #00BF63;
  color: #fff;
}

.CurbonRisk {
  padding: 0 0 6.25rem;
}
.CurbonRisk .sideImg {
  border-radius: 10px;
  padding-top: 3rem;
}
.CurbonRisk ul {
  width: 100%;
  margin-bottom: 2.5rem;
}
.CurbonRisk ul li {
  margin-bottom: 2.19rem;
  display: flex;
  align-items: center;
  gap: 2.19rem;
}
.CurbonRisk ul li:last-child {
  margin-bottom: 0;
}
.CurbonRisk ul li:last-child .bullt::before {
  display: none;
}
.CurbonRisk ul li .bullt {
  width: 1.25rem;
  height: 1.25rem;
  background-color: #107C48;
  border-radius: 50%;
  position: relative;
}
.CurbonRisk ul li .bullt::before {
  content: "";
  width: 1px;
  height: 104px;
  border: 1px dashed #107c48;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.CurbonRisk ul li:first-child .bullt::after {
  content: "";
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  border: 1px dashed #107c48;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.CurbonRisk ul li .txt {
  width: calc(100% - 4.24rem);
}
.CurbonRisk ul li span.grn {
  color: var(--Medium-Green, #107C48);
  font-family: Quicksand;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: block;
  margin-bottom: 0.62rem;
}
.CurbonRisk ul li p {
  color: #2E2E2E;
  font-size: 1rem;
  line-height: 1.5rem;
}
.CurbonRisk ul li p span {
  color: #010B06;
  font-weight: 700;
}
.CurbonRisk .glb_btn {
  width: 100%;
  text-align: center;
  background-color: #032012;
  color: #fff;
}

.faqSec {
  background-color: #032012;
  padding: 6.25rem 0;
}
.faqSec .smlTag {
  margin: 0 auto 0.75rem;
}
.faqSec h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 2.5rem;
}
.faqSec .accordian {
  counter-reset: my-counter;
}
.faqSec .accordian li {
  border-radius: 0.625rem;
  border: 1px solid var(--Green, #00BF63);
  background: var(--Dark-Green, #032012);
  margin-bottom: 1.12rem;
}
.faqSec .accordian li:last-child {
  margin-bottom: 0;
}
.faqSec .accordian li h5 {
  color: var(--White, #FFF);
  font-family: NewYork;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  position: relative;
  padding: 1.13rem;
  cursor: pointer;
  counter-increment: my-counter;
  padding-left: 3.6rem;
}
.faqSec .accordian li h5::before {
  content: counter(my-counter, decimal-leading-zero) ".";
  position: absolute;
  left: 21px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--Green, #00BF63);
  font-family: Quicksand;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.faqSec .accordian li .content {
  display: none;
  padding: 0 1.13rem 1.13rem;
}
.faqSec .accordian li .content p {
  margin-bottom: 0;
  color: #fff;
}
.faqSec .accordian li h5::after {
  content: "";
  width: 1.6rem;
  position: absolute;
  background-repeat: no-repeat !important;
  background-size: contain;
  height: 1.6rem;
  top: 1.22rem;
  right: 1.22rem;
  background-image: url("../images/plus.png");
  background-position: center;
}
.faqSec .accordian li.active h5::after {
  background-image: url("../images/minus.png");
}

.lastSec {
  position: relative;
}
.lastSec .mid_part {
  position: absolute;
  z-index: 9;
  left: 50%;
  bottom: -70%;
  transform: translate(-50%, -50%);
  width: 80rem;
  background-color: #00BF63;
  border-radius: 0.625rem;
  padding: 5rem 0;
  background-image: url(../images/mid_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.lastSec .mid_part .smlTag {
  margin: 0 auto;
  color: #032012;
  margin-bottom: 0.63rem;
}
.lastSec .mid_part .smlTag::before, .lastSec .mid_part .smlTag::after {
  filter: brightness(0) saturate(100%) invert(10%) sepia(58%) saturate(536%) hue-rotate(98deg) brightness(95%) contrast(102%);
}
.lastSec .mid_part h2 {
  color: #032012;
  max-width: 39rem;
  margin: 0 auto 1.88rem;
  text-align: center;
}
.lastSec .mid_part p {
  color: #032012;
  margin: 0 auto 1.28rem;
  text-align: center;
}
.lastSec .mid_part .glb_btn {
  margin: 0 auto;
}
.lastSec .fullBg {
  width: 100%;
  background-color: #fff;
}
.lastSec .fullBg img {
  width: 100%;
}

.aboutSec2 {
  padding: 6.25rem 0;
  position: relative;
  overflow: hidden;
}
.aboutSec2 .bg {
  position: absolute;
  left: 0;
  top: 23%;
  width: 100%;
}
.aboutSec2 .txt {
  margin: 0 auto;
  text-align: center;
  max-width: 77rem;
  padding: 22.57rem 0 0;
  position: relative;
  z-index: 2;
}
.aboutSec2 .txt .smlTag {
  margin: 0 auto 0.62rem;
}
.aboutSec2 .txt h2 {
  margin-bottom: 1.87rem;
}
.aboutSec2 .midMan {
  position: absolute;
  left: 50%;
  top: 6.25rem;
  transform: translateX(-50%);
  width: 100%;
}
.aboutSec2 .midMan::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -21rem;
  transform: translateX(-50%);
  width: 57rem;
  height: 43rem;
  background-color: #fff;
  filter: blur(60px);
}
.aboutSec2 .midMan img {
  width: 30rem;
  height: 42rem;
  margin: 0 auto;
  display: block;
}

.aboutSec3 {
  background-color: #F5FFEC;
  padding: 6.25rem 0;
}
.aboutSec3 h2 {
  margin-bottom: 2.5rem;
}
.aboutSec3 .taskCard {
  border-radius: 0.625rem;
  background: var(--White, #FFF);
  padding: 1.25rem;
  height: 100%;
}
.aboutSec3 .taskCard span.icon {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: #D2E3C3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.aboutSec3 .taskCard span.icon img {
  width: 2.5rem;
  height: 2.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.aboutSec3 .taskCard h5 {
  color: var(--Dark, #010B06);
  font-family: Quicksand;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1.25rem;
}
.aboutSec3 .taskCard p {
  margin-bottom: 0;
}

.aboutSec4 {
  padding: 6.25rem 0;
}
.aboutSec4 .sideimg {
  border-radius: 0.625rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutSec4 ul {
  margin-top: 2rem;
}
.aboutSec4 ul li {
  position: relative;
  padding-left: 4.9rem;
  margin-bottom: 2rem;
}
.aboutSec4 ul li:last-child {
  margin-bottom: 0;
}
.aboutSec4 ul li span.icon {
  position: absolute;
  left: 0;
  top: -5px;
  background-color: #00BF63;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aboutSec4 ul li span.icon img {
  width: 1.5rem;
}
.aboutSec4 ul li p {
  color: var(--Paragraph, #505151);
  margin-bottom: 1.25rem;
}
.aboutSec4 ul li p:last-child {
  margin-bottom: 0;
}
.aboutSec4 ul li p span {
  color: var(--Dark, #010B06);
  font-style: normal;
  font-weight: 600;
}
.aboutSec4 .smlTag {
  padding-left: 2.3rem;
  padding-right: 2.3rem;
}

.aboutSec5 {
  padding: 6.25rem 0;
}
.aboutSec5 .row {
  align-items: center;
}
.aboutSec5 .sideImg {
  width: 100%;
  height: 100%;
  border-radius: 0.625rem;
}
.aboutSec5 h2 {
  margin-bottom: 2rem;
}
.aboutSec5 .smlTag::before, .aboutSec5 .smlTag::after {
  top: 9px;
}
.aboutSec5 ul.listing li {
  color: var(--Paragraph, #505151);
  font-family: Quicksand;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 1.25rem;
  position: relative;
  padding: 0.47rem 0;
  padding-left: 1.25rem;
  transition: all 0.5s ease;
}
.aboutSec5 ul.listing li:hover {
  padding: 0.31rem 0;
  padding-left: 1.25rem;
}
.aboutSec5 ul.listing li:hover span {
  margin-bottom: 0.94rem;
}
.aboutSec5 ul.listing li:hover::before {
  background-color: #00BF63;
}
.aboutSec5 ul.listing li:hover p {
  opacity: 1;
  height: auto;
  visibility: visible;
}
.aboutSec5 ul.listing li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #E2EFE9;
  height: 100%;
  width: 3px;
  border-radius: 10px;
  transition: all 0.5s ease;
}
.aboutSec5 ul.listing li p {
  opacity: 0;
  height: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  margin: 0;
}
.aboutSec5 ul.listing li span {
  color: var(--Dark, #010B06);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0;
  display: block;
}

.aboutSec6 {
  background-color: #107C48;
  padding: 6.25rem 0;
}
.aboutSec6 .smlTag {
  color: #fff;
}
.aboutSec6 .smlTag::before, .aboutSec6 .smlTag::after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7473%) hue-rotate(352deg) brightness(112%) contrast(102%);
  top: 13px;
}
.aboutSec6 h2 {
  color: #fff;
}
.aboutSec6 p {
  color: #fff;
  max-width: 47rem;
}
.aboutSec6 .rfer {
  max-width: 34rem;
}
.aboutSec6 .rfer h5 {
  color: var(--White, #FFF);
  font-family: Quicksand;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 1.25rem;
}
.aboutSec6 .rfer p {
  color: #fff;
  margin-bottom: 1.25rem;
}

.heroSec.innerbanner:before {
  bottom: -530px;
  right: -30px;
  width: 54rem;
  height: 54rem;
  filter: blur(135px);
}
.heroSec.innerbanner .side_man {
  max-width: 22.5625rem;
  height: unset;
  right: 8.125rem;
}
.heroSec.innerbanner .garbageman {
  max-width: 25.3625rem;
}
.heroSec.innerbanner h1 {
  color: var(--White, #fff);
  font-family: NewYork;
  font-size: 3.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 4.375rem;
  /* 116.667% */
}
.heroSec.innerbanner .bg {
  max-height: none;
  position: absolute;
}
.heroSec.innerbanner .top {
  padding-bottom: 0;
  position: static;
  padding-top: 15rem;
}
.heroSec.innerbanner .top p {
  max-width: 44rem;
  font-weight: 400;
}
.heroSec.innerbanner .smlTag {
  padding-left: 2.3rem;
  padding-right: 2.3rem;
}
.heroSec.innerbanner.pricing .top {
  padding-bottom: 5.5rem;
}
.heroSec.innerbanner.pricing .top p {
  margin-bottom: 0;
}
.heroSec.innerbanner.how_work .top {
  padding-bottom: 4rem;
}
.heroSec.innerbanner.how_work .top p {
  margin-bottom: 0;
}
.heroSec.innerbanner.about .top {
  padding-bottom: 6.25rem;
}
.heroSec.innerbanner.about .top p {
  margin-bottom: 0;
}
.heroSec.innerbanner.about .top .side_man {
  bottom: -6rem;
  max-width: unset;
  width: 42rem;
}
.heroSec.innerbanner.contct .top {
  padding-bottom: 3.9rem;
}
.heroSec.innerbanner.rfral .top {
  padding-bottom: 5.5rem;
}
.heroSec.innerbanner.rfral .top p {
  max-width: 43rem;
  margin-bottom: 0;
}
.heroSec.innerbanner.career .top {
  padding-bottom: 6.25rem;
}
.heroSec.innerbanner.career .top p {
  margin-bottom: 0;
  max-width: unset;
}
.heroSec.innerbanner.blg_Dtls .top {
  padding-bottom: 3.91rem;
}

.homeSec3 {
  background: linear-gradient(180deg, rgba(239, 255, 224, 0) 0%, #efffe0 100%);
}
.homeSec3.home3a {
  padding: 6.25rem 0;
}

.what-you-do {
  padding: 6.25rem 0;
}
.what-you-do .text p {
  max-width: 39rem;
}
.what-you-do {
  /* Wrapper for the component */
}
.what-you-do .curbon-comparison-table {
  width: 100%;
  max-width: 800px;
  /* Adjust based on your container */
  background: #f9f9f9;
  /* Light grey bg for the whole block */
  border-radius: 12px;
  overflow: hidden;
  /* Ensures child elements respect border-radius */
  /* Header Styling */
}
.what-you-do .curbon-comparison-table .table-header {
  display: flex;
  border-radius: 0.625rem 0.625rem 0 0;
  background: var(--Medium-Green, #107c48);
  padding: 1.13rem 5.18rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--White, #fff);
  font-family: Quicksand;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  /* Columns alignment in header */
}
.what-you-do .curbon-comparison-table .table-header .col-left {
  flex: 1;
  /* Takes 50% or remaining space */
}
.what-you-do .curbon-comparison-table .table-header .col-right {
  flex: 0.5;
  padding-left: 20px;
  /* Aligns with content below */
}
.what-you-do .curbon-comparison-table {
  /* Body Rows */
}
.what-you-do .curbon-comparison-table .table-body {
  background-color: #ffffff;
}
.what-you-do .curbon-comparison-table .table-body .table-row {
  display: flex;
  align-items: center;
  padding: 1.13rem 5.18rem;
  border-bottom: 1px solid #eef0f2;
  /* Subtle divider */
  background-color: #f6f6f6;
  /* Zebra Striping: Even rows get a light grey background */
}
.what-you-do .curbon-comparison-table .table-body .table-row:nth-child(even) {
  background-color: #fff;
}
.what-you-do .curbon-comparison-table .table-body .table-row {
  /* Last row doesn't need a bottom border */
}
.what-you-do .curbon-comparison-table .table-body .table-row:last-child {
  border-bottom: none;
}
.what-you-do .curbon-comparison-table .table-body .table-row {
  /* Left Column (Features) */
}
.what-you-do .curbon-comparison-table .table-body .table-row .col-left {
  flex: 1;
  color: var(--Dark, #010b06);
  font-family: Quicksand;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.what-you-do .curbon-comparison-table .table-body .table-row {
  /* Right Column (User Actions) */
}
.what-you-do .curbon-comparison-table .table-body .table-row .col-right {
  flex: 0.5;
  color: var(--Paragraph, #505151);
  font-family: Quicksand;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-left: 20px;
  /* Special style for the last 'peace of mind' item */
}
.what-you-do .curbon-comparison-table .table-body .table-row .col-right.highlight {
  color: #7a7a7a;
  /* Slightly darker grey */
}
.what-you-do .curbon-comparison-table {
  /* Footer Text */
}
.what-you-do .curbon-comparison-table .table-footer {
  background-color: #f6f6f6;
  position: relative;
  padding: 1.88rem 0 1.25rem;
  text-align: center;
  color: var(--Dark, #010b06);
  font-family: NewYork;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}
.what-you-do .curbon-comparison-table .table-footer:before {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, rgba(16, 124, 72, 0) 0%, #107c48 50.48%, rgba(16, 124, 72, 0) 100%);
  height: 0.0625rem;
  left: 0;
  right: 0;
  top: 0;
}

.serv-schedule {
  text-align: center;
  padding: 6.25rem 0;
  background: var(--Dark-Green, #032012);
}
.serv-schedule .smlTag {
  margin: 0 auto 0.75rem;
}
.serv-schedule h2 {
  text-align: center;
  color: var(--White, #fff);
  margin-bottom: 2.5rem;
}
.serv-schedule .timebx {
  border-radius: 0.625rem;
  background: var(--White, #fff);
  height: 100%;
  padding: 2.5rem 3.69rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.serv-schedule .timebx .icons {
  max-width: 70px;
}
.serv-schedule .timebx .icons img {
  aspect-ratio: 1/1;
  width: 100%;
}
.serv-schedule .timebx .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;
}
.serv-schedule .timebx h5 {
  color: var(--Dark, #010b06);
  text-align: center;
  font-family: Quicksand;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 0;
}
.serv-schedule .timebx p {
  color: var(--Paragraph, #505151);
  text-align: center;
  font-family: Quicksand;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}

.safe-depend {
  padding: 6.25rem 0;
}
.safe-depend ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  align-self: stretch;
}
.safe-depend ul li {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.safe-depend ul li .icon {
  width: 5rem;
  height: 5rem;
  border-radius: 5rem;
  background: var(--Greenish-Gray, #e2efe9);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 5rem;
  flex: 1 0 5rem;
}
.safe-depend ul li .icon img {
  width: 2.5rem;
  height: 2.5rem;
  aspect-ratio: 1/1;
}
.safe-depend ul li .text h5 {
  color: var(--Dark, #010b06);
  font-family: Quicksand;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 0.6rem;
}
.safe-depend ul li .text p {
  margin-bottom: 0;
  color: var(--Paragraph, #505151);
  font-family: Quicksand;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.625rem;
  /* 162.5% */
}
.safe-depend .text h2 {
  margin-bottom: 2.5rem;
}

.homeSec8.test-edit .testimoni_card {
  min-height: 24.3rem;
  gap: 2rem;
  height: 100%;
}
.homeSec8.test-edit .testimoni_card .prfl {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.homeSec8.test-edit .testimoni_card .prfl span {
  color: var(--Medium-Green, #107c48);
  font-family: NewYork;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.homeSec8.test-edit .testimoni_card .prfl img {
  width: 5.625rem;
  height: 5.625rem;
  aspect-ratio: 1/1;
  border-radius: 5.625rem;
}

.pricing-sec {
  padding: 6.25rem 0;
  background-color: #ffffff;
}
.pricing-sec .row {
  justify-content: center;
}
.pricing-sec span.smlTag {
  margin: 0 auto;
}
.pricing-sec h2 {
  text-align: center;
  text-transform: capitalize;
  margin: 0.62rem 0 1.88rem;
}
.pricing-sec p {
  text-align: center;
  font-weight: 500;
  margin-bottom: 2.5rem;
}
.pricing-sec .pricing-wraper {
  padding: 0.56rem 0.63rem 0.62rem 0.62rem;
  border-radius: 0.625rem;
  background: var(--White, #fff);
  box-shadow: 5px 5px 60px 0 rgba(202, 219, 205, 0.3);
  width: 100%;
  height: 100%;
}
.pricing-sec .pricing-wraper .gradinet-wraper {
  padding: 1.87rem 0;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.pricing-sec .pricing-wraper .gradinet-wraper img.absolute-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  z-index: -1;
}
.pricing-sec .pricing-wraper .gradinet-wraper .plan-details {
  padding: 0 1.87rem;
  padding-bottom: 2.37rem;
  border-bottom: 1px solid #107c48;
}
.pricing-sec .pricing-wraper .gradinet-wraper .plan-details h5 {
  color: var(--Dark-Green, #032012);
  font-family: Quicksand;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0.63rem;
}
.pricing-sec .pricing-wraper .gradinet-wraper .plan-details h5 small {
  font-size: 1.125rem;
}
.pricing-sec .pricing-wraper .gradinet-wraper .plan-details p {
  text-align: left;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.pricing-sec .pricing-wraper .gradinet-wraper .plan-details h4 {
  color: var(--Paragraph, #505151);
  font-family: Quicksand;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.pricing-sec .pricing-wraper .gradinet-wraper .plan-details h4 strong {
  font-size: 2.75rem;
  font-weight: 700;
  background: var(--Gradient, linear-gradient(289deg, #00bf63 0%, #032012 99.4%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-sec .pricing-wraper .gradinet-wraper .plan-facility {
  padding: 0 1.87rem;
  padding-top: 1.88rem;
  border-top: 1px solid #107c48;
}
.pricing-sec .pricing-wraper .gradinet-wraper .plan-facility ul {
  margin-bottom: 2.5rem;
  min-height: 8.5625rem;
}
.pricing-sec .pricing-wraper .gradinet-wraper .plan-facility ul li {
  color: var(--Dark, #010b06);
  font-family: Quicksand;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding-left: 2.19rem;
  margin-bottom: 1rem;
  background-image: url(../images/tick.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 1.25rem 1.225rem;
}
.pricing-sec .pricing-wraper .gradinet-wraper .plan-facility ul li:last-child {
  margin: 0;
}
.pricing-sec .pricing-wraper .gradinet-wraper .plan-facility a.glb_btn {
  width: 100%;
  background: var(--Dark-Green, #032012);
  color: var(--White, #fff);
  text-align: center;
}
.pricing-sec .pricing-wraper .gradinet-wraper .plan-facility h6 {
  color: var(--Paragraph, #505151);
  text-align: center;
  font-family: Quicksand;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 1.25rem 0 0;
}

.serv-schedule.serv-schedule-edit {
  background-color: white;
}
.serv-schedule.serv-schedule-edit .smlTag {
  color: var(--Medium-Green, #107c48);
}
.serv-schedule.serv-schedule-edit h2 {
  color: var(--Dark, #010b06);
}
.serv-schedule.serv-schedule-edit .timebx {
  border-radius: 0.625rem;
  background: var(--White, #fff);
  box-shadow: 5px 5px 60px 0 rgba(202, 219, 205, 0.3);
  overflow: hidden;
  padding: 0;
  gap: 0;
}
.serv-schedule.serv-schedule-edit .timebx .imgs {
  width: 100%;
}
.serv-schedule.serv-schedule-edit .timebx .text {
  padding: 1.87rem 1.25rem;
  text-align: left;
  align-items: flex-start;
}
.serv-schedule.serv-schedule-edit .timebx .text h5 {
  text-align: left;
}
.serv-schedule.serv-schedule-edit .timebx .text p {
  text-align: left;
}
.serv-schedule.include {
  background-color: white;
}
.serv-schedule.include .row {
  row-gap: 2rem;
}
.serv-schedule.include .smlTag {
  margin: 0 0 0.75rem;
}
.serv-schedule.include h2 {
  text-align: left;
  color: var(--Dark, #010b06);
}
.serv-schedule.include .timebx {
  border-radius: 0.625rem;
  background: var(--Greenish-Gray, #e2efe9);
  overflow: hidden;
  padding: 1.87rem 1.25rem;
  align-items: flex-start;
}
.serv-schedule.include .timebx .imgs {
  width: 6.0625rem;
  height: 6.0625rem;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}
.serv-schedule.include .timebx .imgs img {
  width: 2.5rem;
  height: 2.5rem;
  aspect-ratio: 1/1;
}
.serv-schedule.include .timebx .text {
  max-width: 17.25rem;
  text-align: left;
  align-items: flex-start;
}
.serv-schedule.include .timebx .text h5,
.serv-schedule.include .timebx .text p {
  text-align: left;
}

.safe-depend.safe-depend-edit ul {
  gap: 1rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.safe-depend.safe-depend-edit ul li .icon {
  width: unset;
  height: unset;
  border-radius: 5rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: unset;
  flex: 1 0 auto;
}
.safe-depend.safe-depend-edit ul li .icon img {
  width: 1.25rem;
  height: 1.25rem;
  aspect-ratio: 1/1;
}
.safe-depend.safe-depend-edit ul + p {
  color: var(--Paragraph, #505151);
  font-family: Quicksand;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6875rem;
  /* 150% */
  margin-bottom: 0;
}

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

.contactSec2 {
  padding: 6.25rem 0 6.5rem;
  position: relative;
}
.contactSec2 .side_bg {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 33.9rem;
}
.contactSec2 ul.lists {
  margin-top: 2.5rem;
}
.contactSec2 ul.lists li {
  position: relative;
  margin-bottom: 3.45rem;
  padding-left: 6.2rem;
}
.contactSec2 ul.lists li .icon {
  position: absolute;
  left: 0;
  top: -9px;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: #E2EFE9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contactSec2 ul.lists li .icon img {
  width: 1.87rem;
  height: 1.87rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.contactSec2 ul.lists li .txt {
  color: #2E2E2E;
  font-family: Quicksand;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contactSec2 ul.lists li .txt span {
  color: var(--Medium-Green, #107C48);
  font-size: 1.25rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.63rem;
}
.contactSec2 .ques h4 {
  color: var(--Black, #2E2B2B);
  font-family: Quicksand;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1rem;
}
.contactSec2 .ques p {
  margin-bottom: 0;
}
.contactSec2 .full_form {
  border-radius: 0.625rem;
  background: var(--White, #FFF);
  box-shadow: 5px 5px 60px 0 rgba(202, 219, 205, 0.3);
  padding: 1.87rem 1.25rem;
  max-width: 88.3%;
  margin-left: auto;
}
.contactSec2 .full_form h3 {
  color: var(--Dark, #010B06);
  font-family: NewYork;
  font-size: 2.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 2.5rem;
}
.contactSec2 .full_form .inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.contactSec2 .full_form .inputs:last-child {
  margin-bottom: 0;
}
.contactSec2 .full_form .inputs .input {
  width: 48%;
}
.contactSec2 .full_form .inputs:has(input[type=submit]) {
  margin-top: 2.5rem;
}
.contactSec2 .full_form input:not([type=submit]),
.contactSec2 .full_form textarea,
.contactSec2 .full_form select {
  color: #000;
  font-family: Quicksand;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: 100%;
  border-radius: 3.125rem;
  background: #F2F9F5;
  padding: 0.87rem 1.25rem;
  border: none;
}
.contactSec2 .full_form input:not([type=submit])::-moz-placeholder, .contactSec2 .full_form textarea::-moz-placeholder, .contactSec2 .full_form select::-moz-placeholder {
  color: #505151;
}
.contactSec2 .full_form input:not([type=submit])::placeholder,
.contactSec2 .full_form textarea::placeholder,
.contactSec2 .full_form select::placeholder {
  color: #505151;
}
.contactSec2 .full_form select {
  background-image: url(../images/Down_Arrow.png);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: center right 22px;
  padding-right: 3.5rem;
}
.contactSec2 .full_form textarea {
  min-height: 121px;
  resize: none;
  border-radius: 1.25rem;
}
.contactSec2 .full_form .glb_btn {
  background-color: #000;
  color: #fff;
}

.contactSec3 {
  background: #F5FFEC;
  padding: 6.25rem 0;
}
.contactSec3 .top {
  text-align: center;
  margin-bottom: 2.5rem;
}
.contactSec3 .top .smlTag {
  margin: 0 auto 1rem;
}
.contactSec3 .top h2 {
  margin-bottom: 0;
}
.contactSec3 .topicCard {
  border-radius: 0.625rem;
  background: var(--White, #FFF);
  text-align: center;
  padding: 1.88rem;
  height: 100%;
}
.contactSec3 .topicCard .icon {
  margin: 0 auto 2.5rem;
  width: 3.75rem;
}
.contactSec3 .topicCard p {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.625rem;
}

.contactSec4 {
  padding: 6.25rem 0 0;
  background-color: #fff;
}
.contactSec4 .smlTag {
  margin-bottom: 0.8rem;
}
.contactSec4 .sideimg {
  border-radius: 0.625rem;
  width: 100%;
}
.contactSec4 h2 {
  margin-bottom: 2.5rem;
}
.contactSec4 p {
  margin-bottom: 2.5rem;
  font-size: 1.12rem;
}
.contactSec4 span.bold {
  color: var(--Black, #2E2B2B);
  font-family: Quicksand;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: block;
}

.service_area1 {
  padding: 6.25rem 0 0;
}
.service_area1 .top {
  margin-bottom: 6.25rem;
}
.service_area1 .top .smlTag {
  margin: 0 auto 1rem;
}
.service_area1 .top h2 {
  margin-bottom: 2.5rem;
  text-align: center;
}
.service_area1 .top .srch_dv {
  max-width: 52rem;
  margin: 0 auto;
  position: relative;
}
.service_area1 .top .srch_dv input:not([type=submit]) {
  color: var(--Paragraph, #505151);
  font-family: Quicksand;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: 100%;
  border-radius: 3.125rem;
  background: #F2F9F5;
  padding: 0.97rem 15.25rem 0.97rem 1.25rem;
  border: none;
}
.service_area1 .top .srch_dv input[type=submit] {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0.8125rem 2.625rem;
  background-color: #000;
  color: #fff;
  border: none;
}
.service_area1 .full_map {
  width: 100%;
  background-color: #E2EFE9;
  padding: 6.25rem 0;
}
.service_area1 .full_map h2 {
  margin-bottom: 2.5rem;
  font-size: 3.025rem;
  line-height: 3.375rem;
}
.service_area1 .full_map ul.locations {
  margin-bottom: 2.5rem;
}
.service_area1 .full_map ul.locations li {
  color: var(--Dark, #010B06);
  font-family: Quicksand;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 1.06rem;
  margin-bottom: 1.88rem;
}
.service_area1 .full_map ul.locations li:last-child {
  margin-bottom: 0;
}
.service_area1 .full_map ul.locations li img {
  width: 1.875rem;
  height: 1.875rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.service_area1 .full_map ul.points {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.88rem;
}
.service_area1 .full_map ul.points li {
  display: flex;
  padding: 0.3125rem 1.25rem 0.3125rem 0.3125rem;
  align-items: center;
  border-radius: 0.625rem;
  background: #fff;
  gap: 1.25rem;
  color: var(--Dark, #010B06);
  font-family: Quicksand;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.service_area1 .full_map ul.points li .icon {
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E2EFE9;
  border-radius: 0.625rem;
}
.service_area1 .full_map ul.points li .icon img {
  width: 1.5rem;
}
.service_area1 .full_map .map {
  width: 100%;
  max-width: 41rem;
  border-radius: 0.625rem;
  overflow: hidden;
  height: 31rem;
  margin-left: auto;
}
.service_area1 .full_map .map iframe {
  width: 1000%;
  height: 100%;
}

.rfralSec2 {
  padding: 6.25rem 0;
}
.rfralSec2 .smlTag {
  margin: 0 auto 1rem;
}
.rfralSec2 h2 {
  text-align: center;
}
.rfralSec2 .full_wrap {
  margin-top: 3.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.rfralSec2 .full_wrap .wrap {
  width: 22%;
  text-align: center;
}
.rfralSec2 .full_wrap .wrap .icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #00BF63;
  position: relative;
  margin: 0 auto 0.62rem;
}
.rfralSec2 .full_wrap .wrap .icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #00BF63;
  transform: translate(-50%, -50%);
  width: 2.56rem;
  height: 2.56rem;
  border-radius: 50%;
}
.rfralSec2 .full_wrap .wrap .icon img {
  width: 1.125rem;
  z-index: 1;
}
.rfralSec2 .full_wrap .wrap h6 {
  color: var(--Black, #2E2B2B);
  text-align: center;
  font-family: Quicksand;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0.375rem;
}
.rfralSec2 .full_wrap .wrap p {
  margin-bottom: 3.12rem;
  font-weight: 500;
}
.rfralSec2 .full_wrap .wrap .img {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.rfralSec2 .full_wrap .wrap .img img {
  width: 270px;
}
.rfralSec2 .glb_btn {
  margin: 3rem auto 0;
  width: 15rem;
  text-align: center;
}

.service_area2 {
  background-color: #032012;
  padding: 6.25rem 0;
}
.service_area2 .smlTag {
  margin: 0 auto;
}
.service_area2 h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  color: #fff;
}
.service_area2 p {
  text-align: center;
  max-width: 47rem;
  color: #fff;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5625rem;
}
.service_area2 .glb_btn {
  margin: 0 auto;
}
.service_area2 .glb_btn:hover {
  color: #fff;
}

.service_area3 {
  padding: 6.25rem 0 0;
  background-color: #fff;
}
.service_area3 .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service_area3 .fullwrap {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
}
.service_area3 .fullwrap .wrap {
  text-align: center;
  position: relative;
  width: 33.3%;
}
.service_area3 .fullwrap .wrap::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 127px;
  width: 2px;
  background: linear-gradient(0deg, rgba(0, 191, 99, 0) 0%, #00BF63 46.83%, rgba(0, 191, 99, 0) 96.44%);
}
.service_area3 .fullwrap .wrap:last-child {
  padding-right: 0;
}
.service_area3 .fullwrap .wrap:last-child::before {
  display: none;
}
.service_area3 .fullwrap .wrap .icon {
  width: 6.8rem;
  height: 6.8rem;
  background-color: #E2EFE9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.88rem;
}
.service_area3 .fullwrap .wrap .icon img {
  width: 3.125rem;
}
.service_area3 .fullwrap .wrap h6 {
  color: var(--Dark, #010B06);
  font-family: Quicksand;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0.63rem;
}
.service_area3 .fullwrap .wrap h6 span {
  color: #107C48;
}
.service_area3 .fullwrap .wrap p {
  font-size: 1rem;
  line-height: 1.5rem;
}

.rfralSec3 {
  background-color: #032012;
  padding: 6.25rem 0;
}
.rfralSec3 h2 {
  text-align: left;
  color: #fff;
  margin-bottom: 0;
}
.rfralSec3 .cardsWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.31rem;
  justify-content: flex-end;
}
.rfralSec3 .cardsWrap .wrap {
  width: 48.7%;
  border-radius: 0.625rem;
  background: var(--White, #FFF);
  padding: 1.87rem 1.05rem;
}
.rfralSec3 .cardsWrap .wrap h5 {
  color: var(--Dark, #010B06);
  font-family: Quicksand;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1.25rem;
}
.rfralSec3 .cardsWrap .wrap h6 {
  color: var(--Dark, #010B06);
  font-family: Quicksand;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 1.25rem;
  line-height: 1.625rem;
}
.rfralSec3 .cardsWrap .wrap p {
  font-size: 1rem;
  color: #010B06;
}
.rfralSec3 .cardsWrap .wrap ul li {
  color: var(--Paragraph, #505151);
  font-family: Quicksand;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.6rem;
}
.rfralSec3 .cardsWrap .wrap ul li::before {
  content: "\f058";
  font-family: fontAwesome;
  position: absolute;
  left: 0;
  top: 0;
  color: #107C48;
}

.rfralSec4 {
  padding: 6.25rem 0;
}
.rfralSec4 .sideImg {
  border-radius: 0.625rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.rfralSec4 h2 {
  margin-bottom: 2.5rem;
}
.rfralSec4 p {
  margin-bottom: 2.5rem;
}

.rfralSec5.faqSec {
  background-color: #107C48;
}
.rfralSec5.faqSec .smlTag {
  color: #fff;
}
.rfralSec5.faqSec .smlTag::before, .rfralSec5.faqSec .smlTag::after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
.rfralSec5.faqSec .accordian li {
  background-color: #107C48;
  border: 1px solid #fff;
}
.rfralSec5.faqSec .accordian li h5 {
  color: #fff;
}
.rfralSec5.faqSec .accordian li h5::before {
  color: #fff;
}
.rfralSec5.faqSec .accordian li h5::after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.faqSec {
  padding: 4rem 0;
}

.faqSec2.faqSec {
  background-color: #fff;
}
.faqSec2.faqSec h2 {
  color: #000;
}
.faqSec2.faqSec ul.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3.75rem;
}
.faqSec2.faqSec ul.tabs li {
  overflow: hidden;
  position: relative;
  padding: 0.62rem 1.25rem;
  color: var(--Dark-Green, #032012);
  font-family: Quicksand;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  border-radius: 3.125rem;
  background-color: #F2F9F5;
  cursor: pointer;
}
.faqSec2.faqSec ul.tabs li.active {
  background-color: #00BF63;
  color: #fff;
}
.faqSec2.faqSec .tab_container {
  width: 100%;
  background: #fff;
}
.faqSec2.faqSec .tab_content {
  display: none;
}
.faqSec2.faqSec .tab_content h2 {
  color: #000;
}
.faqSec2.faqSec .accordian li {
  border-radius: 0.625rem;
  border: 1px solid #505151;
  background-color: #fff;
  margin-bottom: 1.12rem;
}
.faqSec2.faqSec .accordian li:last-child {
  margin-bottom: 0;
}
.faqSec2.faqSec .accordian li h5 {
  color: var(--Dark, #010B06);
  font-family: NewYork;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}
.faqSec2.faqSec .accordian li h5::after {
  filter: brightness(0) saturate(100%) invert(6%) sepia(81%) saturate(243%) hue-rotate(88deg) brightness(93%) contrast(106%);
}
.faqSec2.faqSec .accordian li .content p {
  color: #505151;
}

.careerSec2 {
  padding: 6.25rem 0 1.2rem;
}
.careerSec2 .smlTag {
  margin: 0 auto;
}
.careerSec2 h2 {
  text-align: center;
}
.careerSec2 .fullForm {
  margin: 2.5rem auto 0;
  padding: 2.5rem 1.5rem;
  border-radius: 0.625rem;
  background: var(--White, #FFF);
  box-shadow: 5px 5px 60px 0 rgba(202, 219, 205, 0.3);
  max-width: 80rem;
}
.careerSec2 .fullForm h4 {
  color: var(--Dark, #010B06);
  text-align: center;
  font-family: NewYork;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1.88rem;
}
.careerSec2 .fullForm .inputs {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.88rem;
  justify-content: space-between;
}
.careerSec2 .fullForm .inputs .input {
  width: 48.6%;
}
.careerSec2 .fullForm .inputs .input input:not([type=submit]),
.careerSec2 .fullForm .inputs .input select,
.careerSec2 .fullForm .inputs .input textarea {
  color: #000;
  font-family: Quicksand;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: 100%;
  border-radius: 3.125rem;
  background: #F2F9F5;
  padding: 0.97rem 1.25rem;
  border: none;
}
.careerSec2 .fullForm .inputs .input input:not([type=submit])::-moz-placeholder, .careerSec2 .fullForm .inputs .input select::-moz-placeholder, .careerSec2 .fullForm .inputs .input textarea::-moz-placeholder {
  color: #505151;
}
.careerSec2 .fullForm .inputs .input input:not([type=submit])::placeholder,
.careerSec2 .fullForm .inputs .input select::placeholder,
.careerSec2 .fullForm .inputs .input textarea::placeholder {
  color: #505151;
}
.careerSec2 .fullForm .inputs .input.file {
  background-color: #F2F9F5;
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 3.05rem 1rem;
}
.careerSec2 .fullForm .inputs .input.file p.fileName {
  font-size: 1rem;
  font-weight: 500;
}
.careerSec2 .fullForm .inputs .input.file p.fileName span {
  color: #BCBCBC;
}
.careerSec2 .fullForm .inputs .input.file input[type=file] {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}
.careerSec2 .fullForm .inputs .input.file .icon {
  width: 1.875rem;
}
.careerSec2 .fullForm .inputs .glb_btn {
  margin: 0 auto;
}

.blogSec1 {
  padding: 6.25rem 0 0;
  background-color: #fff;
}
.blogSec1 .row {
  row-gap: 1.87rem;
}

.blogCard {
  border-radius: 0.625rem;
  background: #F2F9F5;
  padding: 1.25rem;
  height: 100%;
}
.blogCard .img {
  border-radius: 0.625rem;
  overflow: hidden;
  position: relative;
  margin-bottom: 1.88rem;
}
.blogCard .img img {
  width: 100%;
}
.blogCard ul.tags {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  position: absolute;
  left: 0.63rem;
  top: 0.63rem;
}
.blogCard ul.tags li {
  border-radius: 3.125rem;
  background: var(--Flash-Lime, #B0F475);
  color: var(--Dark, #010B06);
  font-family: Quicksand;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 0.31rem 0.94rem;
}
.blogCard h4 {
  color: var(--Dark, #010B06);
  font-family: Quicksand;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 0.94rem;
  transition: all 0.4s ease;
}
.blogCard h4 a {
  color: #010b06;
}
.blogCard h4:hover a {
  color: #107C48;
}
.blogCard h4:last-child {
  margin-bottom: 0;
}
.blogCard p {
  margin-bottom: 1.88rem;
  font-size: 1rem;
  font-weight: 500;
}
.blogCard .rd_btn {
  color: var(--Medium-Green, #107C48);
  font-family: Quicksand;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: underline;
  display: block;
}

.pegination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.31rem;
  margin-top: 3.12rem;
}
.pegination li a {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Medium-Green, #107C48);
  border: 1px solid #107C48;
  background-color: #fff;
  font-family: Quicksand;
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
  transition: all 0.4s ease;
}
.pegination li.active a {
  background-color: #107C48;
  color: #fff;
}
.pegination li.lft {
  margin-right: 1.88rem;
}
.pegination li.lft img {
  width: 1.25rem;
}
.pegination li.rght {
  margin-left: 1.88rem;
}
.pegination li.rght img {
  width: 1.25rem;
  rotate: 180deg;
}

ul.brdcamp {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
ul.brdcamp li {
  color: var(--White, #FFF);
  font-family: Quicksand;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  padding-right: 1.9rem;
}
ul.brdcamp li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  width: 0.85rem;
  height: 0.85rem;
  background-image: url(../images/arrow-brdcamp.png);
  background-repeat: no-repeat;
  background-size: contain;
}
ul.brdcamp li:last-child::before {
  display: none;
}
ul.brdcamp li a {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}

.blgDtls {
  padding: 6.25rem 0;
  background-color: #fff;
}
.blgDtls .dltsImg {
  width: 100%;
  border-radius: 0.625rem;
  margin-bottom: 2.5rem;
}
.blgDtls p {
  margin-bottom: 1.88rem;
}
.blgDtls p.fw-500 {
  font-weight: 500;
  color: #606060;
  line-height: 1.625rem;
}
.blgDtls ul.points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.blgDtls ul.points li {
  position: relative;
  padding: 0.4rem 0.9rem 0.4rem 1.6rem;
  color: #1e7f5c;
  background-color: #fff;
  border: 1px solid #107C48;
  border-radius: 50px;
  color: var(--Medium-Green, #107C48);
  font-family: Quicksand;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.blgDtls ul.points li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.7rem;
  width: 6px;
  height: 6px;
  background-color: #107C48;
  border-radius: 50%;
}
.blgDtls .txt {
  margin-bottom: 2.5rem;
}
.blgDtls .txt p {
  margin-bottom: 1.9rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5625rem;
}
.blgDtls .txt p:last-child {
  margin-bottom: 0;
}
.blgDtls .txt h3 {
  color: var(--Dark, #010B06);
  font-family: Quicksand;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1.88rem;
}
.blgDtls .txt ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.88rem;
  margin-bottom: 1.88rem;
}
.blgDtls .txt ul li {
  color: var(--Dark, #010B06);
  font-family: Quicksand;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  position: relative;
  padding-left: 2.8rem;
}
.blgDtls .txt ul li span {
  display: block;
  color: var(--Paragraph, #505151);
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0.62rem;
}
.blgDtls .txt ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.87rem;
  height: 1.87rem;
  background-image: url(../images/right-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.blgDtls .fullposts {
  border-radius: 0.625rem;
  background: var(--White, #FFF);
  box-shadow: 5px 5px 60px 0 rgba(202, 219, 205, 0.3);
  padding: 1.87rem 1rem 1.88rem 1.25rem;
}
.blgDtls .fullposts h2 {
  margin-bottom: 1.88rem;
}
.blgDtls .fullposts .posts {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.blgDtls .fullposts .posts:last-child {
  margin-bottom: 0;
}
.blgDtls .fullposts .posts .postimg {
  width: 12.5rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
.blgDtls .fullposts .posts .txt {
  width: calc(100% - 13.75rem);
}
.blgDtls .fullposts .posts .txt h4 {
  color: var(--Dark, #010B06);
  font-family: NewYork;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6875rem;
  margin-bottom: 1.2rem;
}
.blgDtls .fullposts .posts .txt h4 a {
  color: #000;
}
.blgDtls .fullposts .posts .txt p {
  color: #606060;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.625rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.blgDtls .fullposts .posts .rd_btn {
  color: var(--Medium-Green, #107C48);
  font-family: Quicksand;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: underline;
  display: block;
}

@media (max-width: 1399px) {
  html {
    font-size: 80%;
  }
}
@media screen and (max-width: 1199px) {
  .homeSec3 .fullMap .fullinfos .info::before {
    height: 128px;
  }
  .homeSec3 .fullMap .fullinfos {
    margin-top: 5rem;
  }
  .homeSec3 .fullMap .fullinfos .col-lg-3:nth-child(3) .info {
    margin-top: 0;
    padding: 0;
    padding-top: 7rem;
  }
  .homeSec3 .fullMap .fullinfos .col-lg-3:nth-child(2) .info,
  .homeSec3 .fullMap .fullinfos .col-lg-3:nth-child(1) .info,
  .homeSec3 .fullMap .fullinfos .col-lg-3:nth-child(4) .info {
    margin-top: 0;
    padding-bottom: 0;
  }
  .homeSec3 .fullMap .fullinfos {
    padding-bottom: 21rem;
  }
  .homeSec3 .fullMap .fullinfos .col-lg-3:nth-child(1) .info::before {
    bottom: -129px;
    left: 111px;
  }
  .homeSec3 .fullMap .fullinfos .col-lg-3:nth-child(2) .info::before {
    bottom: -149px;
  }
  .homeSec3 .fullMap .fullinfos .col-lg-3:nth-child(3) .info::before {
    bottom: -154px;
    left: 49%;
  }
  .homeSec3 .fullMap .fullinfos .col-lg-3:nth-child(4) .info {
    padding-top: 12rem;
  }
  .homeSec3 .fullMap .fullinfos .col-lg-3:nth-child(4) .info::before {
    left: 50%;
    bottom: -141px;
  }
  .heroSec::before {
    width: 36rem;
    height: 36rem;
  }
  .heroSec .bg {
    max-height: 100%;
    position: absolute;
  }
  .heroSec .top {
    padding: 13rem 0 8.44rem;
    position: static;
  }
  .heroSec .top .side_man {
    width: 30rem;
    height: 38rem;
  }
  .heroSec.innerbanner .side_man {
    height: unset;
  }
  .heroSec .dustbin_img {
    width: 48rem;
    height: 27rem;
  }
  .heroSec .top h1 {
    font-size: 4.4rem;
    line-height: normal;
  }
  .aboutSec5 ul.listing li:hover span {
    margin-bottom: 0.14rem;
  }
  .homeSec2 .video {
    width: 49rem;
    height: 40rem;
  }
  .homeSec2 .ratingdv {
    margin-bottom: 9.89rem;
  }
  .lastSec .mid_part {
    position: static;
    transform: none;
    width: 100%;
  }
  footer .btmPart {
    padding: 8.63rem 0 0;
  }
  .heroSec.innerbanner.about .top .side_man {
    width: 32rem;
  }
  .homeSec3 .fullMap .fullinfos .info::before {
    height: 100px;
  }
  .blgDtls .txt ul {
    gap: 1.28rem;
  }
  .blgDtls .fullposts h2 {
    font-size: 2.5rem;
  }
  .blgDtls .fullposts .posts .postimg {
    width: 8.5rem;
  }
  .blgDtls .fullposts .posts .txt {
    width: calc(100% - 9.65rem);
  }
}
@media (max-width: 991px) {
  html {
    font-size: 70%;
  }
  footer .mid_part {
    position: relative;
    left: unset;
    bottom: unset;
    transform: none;
    width: 100%;
  }
  footer .btmPart {
    padding: 6.43rem 0 0;
  }
  footer .links {
    gap: 3rem 5.5rem;
  }
  footer .links .link {
    width: 40%;
  }
  .homeSec9 .fullbillingDv .top {
    max-width: unset;
  }
  .homeSec8 .col-lg-3:nth-child(2) .testimoni_card,
  .homeSec8 .col-lg-3:last-child .testimoni_card {
    margin-top: unset;
  }
  .homeSec6 .row,
  .homeSec5 .row {
    row-gap: 2rem;
  }
  .homeSec6 ul.lists {
    max-width: unset;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .homeSec6 ul.lists li {
    width: 48%;
  }
  .smlTag::before,
  .smlTag::after {
    width: 20px;
  }
  .lastSec .mid_part {
    position: static;
    transform: none;
    width: 100%;
  }
  .CurbonRisk .row {
    row-gap: 2rem;
  }
  header .menu_area .main_links ul li a {
    padding: 1rem;
  }
  .pricing-sec {
    padding: 4rem 0;
  }
  .heroSec.innerbanner .side_man {
    right: 0;
  }
  .CurbonRisk ul li .bullt::before {
    height: 57px;
  }
  .smlTag {
    padding-left: 3.7rem;
    padding-right: 3.7rem;
  }
  .homeSec6 .smlTag {
    margin-bottom: 1rem;
  }
  .homeSec3 .fullMap .fullinfos .info::before {
    display: none;
  }
  .homeSec3 .fullMap .fullinfos {
    padding-bottom: 0;
  }
  .homeSec3 .fullMap .container {
    z-index: 10;
  }
  .homeSec3 {
    background-color: #f5fffa;
    padding: 3.61rem 0 6rem;
  }
  .homeSec3 .fullMap .fullinfos .col-lg-3:nth-child(4) .info,
  .homeSec3 .fullMap .fullinfos .col-lg-3:nth-child(3) .info {
    padding-top: 0;
  }
  .homeSec3 .fullMap .img img {
    height: 410px;
    opacity: 0.3;
  }
  .homeSec2 .video {
    width: 35rem;
    height: 22rem;
  }
  .homeSec2 .ratingdv {
    margin-bottom: 3.09rem;
  }
  .heroSec .top h1 {
    font-size: 3.3rem;
    line-height: normal;
  }
  .heroSec .top .side_man {
    width: 24rem;
    height: 30rem;
  }
  .heroSec.innerbanner .top .side_man {
    height: 200px;
  }
  .heroSec .dustbin_img {
    width: 35rem;
    height: 21rem;
  }
  header .menu_area .main_links {
    flex-direction: row-reverse;
  }
  .homeSec9 .container {
    position: relative;
    z-index: 9;
  }
  .aboutSec3 .row {
    row-gap: 2rem;
  }
  .aboutSec6 h2 {
    font-size: 2.5rem;
    line-height: normal;
  }
  h2 {
    font-size: 2.4rem;
  }
  .homeSec6 .ratingdv .rating {
    justify-content: center;
  }
  .homeSec6 .ratingdv .imgs img {
    width: 3.35rem;
    height: 3.35rem;
  }
  .contactSec2 {
    padding: 4rem 0;
  }
  .contactSec2 .full_form .inputs .input {
    width: 100%;
  }
  .contactSec3 {
    padding: 4rem 0;
  }
  .contactSec4 {
    padding: 4rem 0 0;
  }
  .blgDtls .fullposts .posts .txt h4 {
    font-size: 1.5rem;
  }
  .blgDtls {
    padding: 4rem 0;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 2.2rem;
    line-height: 3rem;
  }
  .glb_btn {
    line-height: 1rem;
  }
  header .menu_area .main_links ul li a {
    padding: 1rem;
  }
  header {
    position: static;
    background-color: #165236;
  }
  header .top {
    padding: 1rem;
  }
  header .top ul {
    flex-wrap: wrap;
    gap: 15px 10px;
    justify-content: center;
  }
  header .top ul li {
    width: 48%;
  }
  header .menu_area .main_logo {
    max-width: 9rem;
  }
  .heroSec .top {
    padding: 4rem 0 0;
    flex-direction: column;
  }
  .heroSec .top .side_man {
    position: static;
    width: 23rem;
    height: 22rem;
    z-index: 2;
  }
  .homeSec2 {
    padding: 3rem 0 0;
  }
  .smlTag {
    text-align: center;
  }
  .heroSec .top .srchFrom .input input:not([type=submit]) {
    padding: 1.45rem 10.85rem 1.45rem 1.45rem;
    font-size: 1.2rem;
  }
  .heroSec .top h1 {
    text-align: center;
  }
  .heroSec .top p {
    text-align: center;
  }
  .homeSec2 h2 {
    max-width: unset;
    text-align: center;
  }
  .homeSec2 .video {
    width: 100%;
    position: static;
    margin-bottom: 2rem;
  }
  .homeSec2 .smlTag {
    margin: 0 auto 1.5rem;
  }
  .homeSec2 .ratingdv {
    justify-content: center;
  }
  .homeSec2 .ratingdv p.gryTxt {
    text-align: center;
  }
  .homeSec2 .qoutDv .title {
    margin-right: unset;
    margin: 0 auto;
  }
  .homeSec2 .qoutDv p {
    text-align: center;
  }
  .homeSec3 .dustbin_img {
    left: 50%;
    transform: translateX(-50%);
  }
  .homeSec4 {
    margin-top: 3rem;
    padding: 3rem 0;
  }
  .homeSec5 {
    padding: 3rem 0;
    text-align: center;
  }
  .homeSec5 .smlTag {
    margin: 0 auto 2rem;
  }
  .homeSec5 h2 {
    text-align: center;
    margin-bottom: 2rem;
  }
  .homeSec5 .lists li {
    text-align: left;
  }
  .homeSec6 ul.lists li {
    width: 100%;
  }
  .homeSec7 .smlTag,
  .homeSec9 .smlTag {
    margin: 0 auto 1.5rem;
  }
  .homeSec6 h2 {
    text-align: center;
  }
  p {
    font-size: 1.325rem;
  }
  .homeSec6 {
    padding: 3rem 0;
  }
  .homeSec6 ul.lists li p {
    text-align: left;
  }
  .homeSec6 .ratingdv {
    flex-direction: column;
  }
  .homeSec6 .glb_btn {
    margin: 0 auto;
  }
  .homeSec6 p {
    text-align: center;
  }
  .homeSec7 {
    padding: 3rem 0;
  }
  .homeSec7 h2 {
    text-align: center;
  }
  .homeSec7 .srchFrom {
    padding-top: 2rem;
  }
  .homeSec7 .srchFrom .input input[type=submit] {
    top: 5px;
    right: 5px;
  }
  .homeSec7 .srvc_lction p {
    padding: 1rem;
    text-align: center;
  }
  .homeSec8 .testimoni_card {
    min-height: 18rem;
  }
  .homeSec8 {
    padding-bottom: 3rem;
  }
  .homeSec9 {
    padding: 3rem 0;
  }
  .homeSec9 h2 {
    text-align: center;
  }
  .homeSec9 p {
    text-align: center;
  }
  .homeSec9 .ratingdv {
    justify-content: center;
  }
  .homeSec9 .ratingdv .rating p {
    text-align: left;
  }
  .homeSec9 .ratingdv .imgs img {
    width: 3rem;
    height: 3rem;
  }
  footer .btmPart {
    flex-wrap: wrap;
    padding: 2rem 0 0;
  }
  footer .btmPart .footer_logo {
    width: 100%;
    margin-bottom: 2rem;
  }
  footer .btmPart .footer_logo .logo {
    margin: 0 auto 2rem;
    display: block;
  }
  footer .btmPart .footer_logo p {
    font-size: 1.2rem;
    text-align: center;
  }
  footer .btmPart .links {
    width: 100%;
    gap: 2rem 3rem;
    justify-content: center;
  }
  footer .btmPart .links .link h5 {
    font-size: 1.45rem;
  }
  footer .links ul li a {
    font-size: 1.3rem;
  }
  footer .foot_btm .wrap p {
    text-align: center;
  }
  footer .foot_btm .wrap {
    flex-direction: column;
    gap: 2rem;
  }
  footer .mid_part {
    padding: 2.9rem 0;
  }
  .homeSec9 .fullbillingDv .top {
    flex-direction: column;
    gap: 1.5rem;
  }
  .homeSec3 .fullMap .fullinfos {
    margin-top: 2rem;
  }
  .homeSec7 .srchFrom .input input:not([type=submit]) {
    font-size: 1.2rem;
    padding: 1.45rem 13.85rem 1.45rem 1.45rem;
  }
  .serv-schedule.include h2 {
    text-align: center;
  }
  .serv-schedule.include .smlTag {
    margin: 0 auto;
  }
  .serv-schedule.include .timebx .imgs {
    margin: 0 auto;
  }
  .serv-schedule.include .timebx .text {
    align-items: center;
    max-width: 100%;
    text-align: center;
  }
  .safe-depend.safe-depend-edit ul + p {
    text-align: center;
  }
  .serv-schedule.serv-schedule-edit .timebx .text {
    align-items: center;
    text-align: center;
  }
  .serv-schedule.serv-schedule-edit .timebx .text p {
    text-align: center;
    font-size: 1.2rem;
  }
  .CurbonRisk h2 {
    text-align: center;
  }
  .CurbonRisk {
    padding: 0 0 4rem;
  }
  .faqSec .accordian li h5 {
    padding-right: 4rem;
  }
  .lastSec .mid_part {
    padding: 2rem;
    border-radius: 0;
  }
  .heroSec.innerbanner.about .top .side_man {
    position: absolute;
  }
  .aboutSec2,
  .aboutSec3,
  .aboutSec4,
  .aboutSec5,
  .aboutSec6,
  .serv-schedule,
  .safe-depend,
  .what-you-do {
    padding: 3rem 0;
  }
  .heroSec.innerbanner.how_work .top {
    padding-bottom: 0;
  }
  .aboutSec3 .taskCard {
    text-align: center;
  }
  .aboutSec3 .taskCard span.icon {
    margin: 0 auto 2rem;
  }
  .aboutSec3 h2,
  .aboutSec5 h2,
  .aboutSec6 h2,
  .aboutSec6 p,
  .aboutSec6 .rfer h5 {
    text-align: center;
  }
  .aboutSec6 .glb_btn {
    margin: 0 auto;
  }
  .aboutSec4 {
    text-align: center;
  }
  .aboutSec4 .row {
    row-gap: 2rem;
  }
  .aboutSec4 ul li {
    text-align: left;
  }
  .homeSec4 .whoCard .img {
    max-width: 123px;
  }
  .aboutSec5 .row {
    row-gap: 2rem;
  }
  .heroSec.innerbanner.about .top {
    padding: 4rem 0;
  }
  .pricing-sec .pricing-wraper .gradinet-wraper .plan-facility h6,
  .pricing-sec .pricing-wraper .gradinet-wraper .plan-facility ul li {
    font-size: 1.3rem;
  }
  .homeSec8 .testimoni_card .top p {
    text-align: center;
  }
  .homeSec8 .testimoni_card .top .rtings,
  .homeSec8 .testimoni_card .prfl {
    justify-content: center;
  }
  .safe-depend ul li .text h5 {
    font-size: 1.35rem;
  }
  .smlTag {
    padding-left: 2.8rem;
    padding-right: 2.8rem;
  }
  .CurbonRisk .sideImg {
    padding-top: 0;
  }
  .smlTag::after {
    top: 30%;
  }
  .heroSec.innerbanner.contct .top {
    padding-bottom: 0;
  }
  .contactSec2 h2 {
    text-align: center;
  }
  .contactSec2 .row {
    row-gap: 2rem;
  }
  .contactSec2 .full_form {
    max-width: 100%;
  }
  .contactSec2 ul.lists {
    padding-left: 3.5rem;
  }
  .contactSec2 ul.lists li {
    padding-left: 4rem;
  }
  .contactSec2 ul.lists li .icon {
    width: 3.4rem;
    height: 3.4rem;
    top: -4px;
  }
  .contactSec2 ul.lists li .icon img {
    width: 1.47rem;
  }
  .contactSec2 ul.lists li .txt {
    font-size: 1.3rem;
  }
  .contactSec2 .ques {
    text-align: center;
  }
  .contactSec4 {
    padding: 4rem 0 0;
  }
  .contactSec4 .row {
    row-gap: 2rem;
  }
  .contactSec4 h2 {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .contactSec4 p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  .contactSec4 span.bold {
    text-align: center;
  }
  .contactSec2 .full_form input:not([type=submit]),
  .contactSec2 .full_form textarea,
  .contactSec2 .full_form select {
    font-size: 1.2rem;
  }
  .service_area1 .full_map .map {
    max-width: 100%;
  }
  .service_area3 .top {
    flex-wrap: wrap;
  }
  .service_area3 .top .lft {
    width: 100%;
  }
  .service_area3 .top .lft h2 {
    text-align: center;
  }
  .service_area3 .top .right {
    width: 100%;
  }
  .service_area3 .top .right .glb_btn {
    margin: 0 auto;
  }
  .service_area3 .fullwrap {
    flex-wrap: wrap;
  }
  .service_area3 .fullwrap .wrap {
    width: 100%;
  }
  .service_area3 .fullwrap .wrap::before {
    display: none;
  }
  .service_area1 .top .srch_dv input:not([type=submit]) {
    padding: 0.97rem 1.25rem;
  }
  .service_area2 {
    padding: 4rem 1rem;
  }
  .service_area2 p {
    font-size: 1.2rem;
  }
  .heroSec.innerbanner.rfral .top {
    padding-bottom: 0;
  }
  .faqSec2.faqSec ul.tabs {
    margin-bottom: 2rem;
  }
  .faqSec2.faqSec ul.tabs li {
    font-size: 1.3rem;
  }
  .faqSec2.faqSec .accordian li h5 {
    font-size: 1.4rem;
  }
  .faqSec2.faqSec .accordian li h5::before {
    left: 8px;
  }
  .careerSec2 .fullForm .inputs .input {
    width: 100%;
  }
  .blogCard {
    text-align: center;
  }
  .blgDtls {
    text-align: center;
  }
  .blgDtls ul.points {
    justify-content: center;
  }
  .blgDtls .txt ul li {
    text-align: left;
  }
  .blgDtls .txt p {
    font-size: 1.3rem;
  }
  .blgDtls .fullposts .posts {
    margin-bottom: 2rem;
  }
  .blgDtls .fullposts .posts .txt {
    text-align: left;
    margin-bottom: 0;
  }
  .blgDtls .fullposts .posts .txt p {
    font-size: 1.3rem;
  }
  .contactSec3 .row {
    row-gap: 2rem;
  }
  .contactSec2 .full_form .glb_btn {
    margin: 0 auto;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .homeSec9 .fullbillingDv .top {
    max-width: unset;
  }
  .homeSec3 .fullMap {
    padding-bottom: 9.7rem;
  }
  .homeSec3 .fullMap .fullinfos .col-lg-3:nth-child(3) .info::before {
    bottom: 1px;
    left: 43%;
  }
  .homeSec3 .fullMap .fullinfos .col-lg-3:nth-child(3) .info {
    margin-top: 15.4rem;
  }
  .homeSec3 .fullMap .fullinfos .info::before {
    height: 100px;
  }
  .homeSec3 .fullMap .fullinfos .col-lg-3:nth-child(4) .info::before {
    left: 40%;
  }
  .blgDtls .txt ul {
    gap: 1.28rem;
  }
  .blgDtls .fullposts .posts .postimg {
    width: 11rem;
  }
  .blgDtls .fullposts .posts .txt {
    width: calc(100% - 12.75rem);
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .heroSec .bg {
    position: absolute;
  }
  .heroSec .top {
    position: relative;
    padding: 16rem 0 8.44rem;
  }
  .heroSec .smlTag {
    font-size: 1.275rem;
  }
  .lastSec .mid_part {
    bottom: -200px;
    transform: translate(-50%, 10%);
  }
}
@media (max-width: 991px) {
  .heroSec.innerbanner .bg {
    height: 360px;
  }
  .what-you-do .curbon-comparison-table .table-header,
  .what-you-do .curbon-comparison-table .table-body .table-row {
    padding: 1.13rem;
  }
}
@media (max-width: 767px) {
  .heroSec.innerbanner .top {
    padding-bottom: 0;
    position: static;
    padding: 2.5rem 0;
    text-align: center;
  }
  .heroSec.innerbanner .top p {
    margin-bottom: 0;
  }
  .heroSec.innerbanner .smlTag {
    margin: 0 auto 1rem;
  }
  .heroSec.innerbanner .side_man {
    max-width: 27rem;
    height: unset;
    right: 0;
    z-index: 0;
    opacity: 0.6;
    left: 0;
    margin: 0 auto;
  }
  .heroSec.innerbanner .bg {
    height: 100%;
  }
  .heroSec.innerbanner .top {
    flex-direction: column-reverse;
    gap: 2rem;
    padding-bottom: 0;
  }
  .heroSec.innerbanner.pricing .top {
    padding-bottom: 0;
  }
  .heroSec.innerbanner .top .container {
    position: relative;
  }
  .what-you-do {
    text-align: center;
  }
  .smlTag {
    margin: 0 auto 1rem;
  }
  .what-you-do .curbon-comparison-table {
    text-align: left;
  }
  .serv-schedule .row {
    gap: 1.5rem;
  }
  .serv-schedule .timebx {
    height: unset;
    padding: 2rem;
    gap: 1.5rem;
  }
  .serv-schedule .timebx .icons {
    max-width: 40px;
  }
  .safe-depend .row {
    gap: 2rem;
  }
  .safe-depend h2 {
    text-align: center;
  }
  .service_area1 {
    padding: 4rem 0 0;
  }
  .service_area1 .top {
    margin-bottom: 3rem;
  }
  .service_area1 .top .srch_dv input[type=submit] {
    position: unset;
    margin: 1rem auto 0;
  }
  .service_area1 .full_map {
    padding: 4rem 0;
  }
  .service_area1 .full_map .row {
    gap: 2rem;
  }
  .service_area1 .full_map h2 {
    font-size: 2rem;
    line-height: 3rem;
    text-align: center;
  }
  .service_area1 .full_map ul.points {
    gap: 1rem;
  }
}/*# sourceMappingURL=style.css.map */