/*! Normalise CSS !*/
@import url(normalize.css);
/*!Root Css!*/
@import url(root.css);
/*! Google Fonts !*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Ubuntu:wght@300;400;500;700&display=swap");
/*! Google Fonts !*/
/*! Global styles !*/
* {
  margin: 0rem;
  padding: 0rem;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  margin: 0rem;
  padding: 0rem;
}

body {
  margin: 0rem;
  padding: 0rem;
  font-family: var(--globalUbuntu);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-16);
  line-height: var(--line-height-24);
  color: var(--grey);
}

p {
  padding: 0rem;
  margin: 0rem 0 1.25rem;
  font-family: var(--globalUbuntu);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-16);
  line-height: var(--line-height-24);
  letter-spacing: 0rem;
  color: var(--grey);
}
p:last-child {
  margin: 0;
}

h1 {
  margin: 0rem 0rem 1.25rem;
  padding: 0rem;
  font-size: var(--font-size-40);
  line-height: var(--line-height-46);
  font-family: var(--globalUbuntu);
  font-weight: 500;
  color: var(--black);
}

h2 {
  margin: 0rem 0rem 1.25rem;
  padding: 0rem;
  font-size: var(--font-size-40);
  line-height: var(--line-height-46);
  font-family: var(--globalUbuntu);
  font-weight: 500;
  color: var(--black);
}

h3 {
  margin: 0rem 0rem 1.25rem;
  padding: 0rem;
  font-size: var(--font-size-24);
  line-height: var(--line-height-28);
  font-family: var(--globalUbuntu);
}

h4 {
  margin: 0rem 0rem 1.25rem;
  padding: 0rem;
  font-size: var(--font-size-20);
  line-height: var(--line-height-23);
  font-family: var(--globalUbuntu);
}

h5 {
  margin: 0rem 0rem 1.25rem;
  padding: 0rem;
  font-size: var(--font-size-16);
  line-height: normal;
  font-family: var(--globalUbuntu);
}

h6 {
  margin: 0rem 0rem 1.25rem;
  padding: 0rem;
  font-size: var(--font-size-14);
  line-height: normal;
  font-family: var(--globalUbuntu);
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-object-fit: cover;
}

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

.btn {
  position: relative;
  font-size: var(--font-size-20);
  line-height: var(--line-height-23px);
  font-weight: 500;
  padding: 0.75rem 2.875rem;
  letter-spacing: 0rem;
  color: var(--white);
  outline: none;
  border: none;
  border-radius: 0.625rem;
  background: var(--primaryGreen);
  border: 0.0625rem solid var(--primaryGreen);
  box-shadow: none;
  text-transform: none;
  transition: all 0.3s ease-in-out;
}
.btn:focus, .btn:active:focus {
  outline: 0;
  box-shadow: none;
  color: var(--primaryGreen);
  background: var(--white);
  border: 0.0625rem solid var(--primaryGreen);
}
.btn:hover {
  color: var(--primaryGreen);
  background: var(--white);
  border: 0.0625rem solid var(--primaryGreen);
}
.btn.whiteBtn {
  background: var(--white);
  color: var(--primaryGreen);
  border: 0.0625rem solid var(--white);
}
.btn.whiteBtn:focus, .btn.whiteBtn:active:focus {
  color: var(--white);
  background: var(--primaryGreen);
  border: 0.0625rem solid var(--primaryGreen);
}
.btn.whiteBtn:hover {
  color: var(--white);
  background: var(--primaryGreen);
  border: 0.0625rem solid var(--primaryGreen);
}

/* form css */
.form-control::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=date]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder {
  color: var(--grey);
  opacity: 1;
  font-size: var(--font-size-m);
}

.form-control::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=password]::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=search]::-moz-input-placeholder {
  color: var(--grey);
  opacity: 1;
  font-size: var(--font-size-m);
}

.form-control:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=date]:-ms-input-placeholder,
input[type=search]::-ms-input-placeholder {
  color: var(--grey);
  opacity: 1;
  font-size: var(--font-size-m);
}

.form-control:-moz-placeholder,
input[type=text]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=password]:-moz-placeholder,
textarea:-moz-placeholder,
select:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=date]:-moz-placeholder,
input[type=search]::-moz-input-placeholder {
  color: var(--grey);
  opacity: 1;
  font-size: var(--font-size-m);
}

.form-control,
input[type=text],
input[type=tel],
input[type=email],
textarea,
input[type=password],
input[type=number],
select,
input[type=search] {
  display: block;
  width: 100%;
  font-family: var(--globalInter);
  font-weight: 300;
  font-size: var(--font-size-16);
  color: var(--grey);
  height: auto;
  background: var(--white);
  padding: 0.813rem 0.625rem;
  margin-bottom: 0.75rem;
  outline: none;
  border: 1px solid #cccccc;
  border-radius: 0.5rem;
  box-shadow: none;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}

textarea.form-control,
textarea {
  height: 150px;
  resize: none;
  overflow: hidden;
}

.form-control:focus,
textarea.form-control:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #8b8b8b;
  background-color: #fff;
  box-shadow: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border: none;
  border-radius: 0px;
  box-shadow: none;
  background-image: url(../images/down-arrow-select.png);
  background-position: calc(100% - 15px);
  background-repeat: no-repeat;
  font-size: var(--font-size-16);
  color: var(--grey);
  height: auto;
  padding: 14px 35px 14px 20px;
  line-height: normal;
  font-family: var(--globalInter);
  font-weight: 400;
  text-transform: none;
  cursor: pointer;
  background-color: #fff;
  background-size: 16px;
  border: 1px solid #cccccc;
  border-radius: 0.5rem;
  margin-bottom: 12px;
}

select:focus {
  border: 1px solid #cccccc;
  outline: none;
  background-color: #fff;
}

select option {
  color: var(--grey);
  font-size: 14px;
  font-weight: 400;
}

label {
  font-size: var(--font-size-16);
  color: var(--black);
  font-weight: 400;
  margin: 0px 0px 0.25rem;
  padding: 0;
}

label.checkbox {
  font-size: var(--font-size-16);
  color: var(--blackHeading);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.3125rem;
  margin-bottom: 1.25rem;
}
label.checkbox input[type=checkbox] {
  width: 32px;
  height: 18px;
  background: var(--white);
  border: 1px solid var(--blackHeading);
  top: 1px;
  position: relative;
}

section h5.blue-round {
  display: inline-block;
  background: var(--blue);
  padding: 6px 10px;
  border-radius: 5px;
  font-family: var(--globalInter);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-16);
  line-height: var(--line-height-19);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
section h5.blue-round.white-round {
  background: var(--white);
  color: var(--black);
}
section h5.blue-round.greenBg {
  background: var(--primaryGreen);
  color: var(--white);
}

header .top_header {
  padding: 0.8125rem 0;
  background-color: var(--primaryGreen);
}
header .top_header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .top_header .location-email ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 70px;
}
header .top_header .location-email ul li {
  color: var(--white);
  font-size: var(--font-size-16);
  line-height: var(--line-height-19);
}
header .top_header .location-email ul li i {
  color: var(--white);
  font-size: var(--font-size-16);
  line-height: var(--line-height-19);
  margin-right: 0.5rem;
}
header .top_header .location-email ul li a {
  font-weight: 400;
  color: var(--white);
  font-size: var(--font-size-16);
  line-height: var(--line-height-19);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
header .top_header .location-email ul li a:hover {
  color: var(--black);
}
header .top_header .social-links ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.5rem;
}
header .top_header .social-links ul li a {
  font-size: var(--font-size-17);
  color: var(--white);
  transition: all 0.3s ease-in-out;
}
header .top_header .social-links ul li a:hover {
  color: var(--black);
}
header .primary_header {
  padding: 0 0;
}
header .primary_header .logo {
  max-width: 180px;
  width: 100%;
}
header .primary_header .logo a {
  display: block;
}

section.banner-hm {
  position: relative;
  overflow: hidden;
}
section.banner-hm .whitebg {
  position: absolute;
  width: calc(50vw - 300px);
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  background: var(--white);
}
section.banner-hm .whitebg::after {
  content: " ";
  position: absolute;
  height: 101%;
  width: 41.875rem;
  right: -41.8125rem;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background: linear-gradient(90.94deg, #ffffff 5%, rgba(255, 255, 255, 0) 107.41%);
}
section.banner-hm img {
  width: calc(50vw + 310px);
  display: block;
  margin-left: auto;
}
section.banner-hm .banner-content {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
section.banner-hm .banner-content h2 {
  font-family: var(--globalUbuntu);
  font-style: normal;
  font-weight: 500;
  font-size: var(--font-size-48);
  line-height: var(--line-height-55);
  display: flex;
  align-items: center;
  text-transform: capitalize;
  color: #1d1d1d;
  margin-bottom: 20px;
  max-width: 560px;
}
section.banner-hm .banner-content p {
  margin-bottom: 2.5rem;
}

section.our-services {
  padding: 5rem 0;
}
section.our-services .our_services_list-group {
  position: relative;
  padding: 28px 40px 0;
  background: #e7efff;
  border-radius: 40px;
  box-sizing: border-box;
  margin-bottom: 130px;
}
section.our-services .our_services_list-group p {
  max-width: 575px;
}
section.our-services .our_services_list-group .each-services-bx {
  padding: 10px 14px;
  text-align: center;
  position: relative;
  margin-bottom: -130px;
}
section.our-services .our_services_list-group .each-services-bx::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 30%;
  transition: all 0.3s ease-in-out;
  background: var(--white);
  box-shadow: 0px 5px 10px rgba(106, 106, 106, 0.12);
  border-radius: 12px;
  opacity: 0;
}
section.our-services .our_services_list-group .each-services-bx .services-icon {
  width: 74px;
  margin: 0 auto 1.5rem;
  position: relative;
}
section.our-services .our_services_list-group .each-services-bx h4 {
  text-transform: capitalize;
  color: var(--primaryGreen);
  position: relative;
}
section.our-services .our_services_list-group .each-services-bx p {
  text-transform: capitalize;
  position: relative;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
section.our-services .our_services_list-group .each-services-bx a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  background: #20a052;
  border: 2px solid #ffffff;
  color: #fff;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
section.our-services .our_services_list-group .each-services-bx:hover::before {
  height: 100%;
  opacity: 1;
}
section.our-services .our_services_list-group .each-services-bx:hover p,
section.our-services .our_services_list-group .each-services-bx:hover a {
  opacity: 1;
}

section.green-let-talk {
  padding: 0 0 5rem;
}
section.green-let-talk .green-rectangle-lettalk {
  background: var(--primaryGreen);
  padding: 60px 80px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
section.green-let-talk .green-rectangle-lettalk::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/let-talk-pattern.png) no-repeat center;
  mix-blend-mode: color-burn;
  background-size: cover;
}
section.green-let-talk .green-rectangle-lettalk .row {
  position: relative;
  justify-content: space-between;
}
section.green-let-talk .green-rectangle-lettalk .row [class*=col-] {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
section.green-let-talk .green-rectangle-lettalk .row [class*=col-]:last-child {
  align-items: flex-end;
}
section.green-let-talk .green-rectangle-lettalk h2 {
  color: var(--white);
  max-width: 448px;
  margin: 0;
}

section.services-commercial {
  padding: 5rem 0;
  background: #e7efff url(../images/services-bg.png) no-repeat left center;
  background-size: cover;
}
section.services-commercial h2 {
  max-width: 370px;
}
section.services-commercial .each-services-bx {
  padding: 20px 24px;
  text-align: center;
  position: relative;
  background: var(--white);
  box-shadow: 0px 5px 10px rgba(106, 106, 106, 0.12);
  border-radius: 12px;
}
section.services-commercial .each-services-bx .services-icon {
  width: 74px;
  margin: 0 auto 1.5rem;
  position: relative;
}
section.services-commercial .each-services-bx h4 {
  text-transform: capitalize;
  color: var(--primaryGreen);
  position: relative;
}
section.services-commercial .each-services-bx p {
  text-transform: capitalize;
  position: relative;
}
section.services-commercial .each-services-bx a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  background: #20a052;
  border: 2px solid #ffffff;
  color: #fff;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
}

section.after_before_img {
  padding: 3.75rem 0 0;
  text-align: center;
}
section.after_before_img h2 {
  max-width: 600px;
  margin: 0 auto 20px;
}
section.after_before_img p {
  max-width: 860px;
  margin: 0 auto 20px;
}
section.after_before_img .twentytwenty-container img {
  width: 100%;
}
section.after_before_img .twentytwenty-overlay:hover {
  background: transparent;
}
section.after_before_img .twentytwenty-horizontal .twentytwenty-handle:before,
section.after_before_img .twentytwenty-horizontal .twentytwenty-handle:after {
  display: none;
}
section.after_before_img .twentytwenty-handle {
  height: 60px;
  width: 60px;
  margin-left: -30px;
  margin-top: -30px;
  border: none;
  background: #1d1d1d;
}
section.after_before_img #before_after {
  max-width: 1066px;
  margin: auto;
}

section.our-services.another-services {
  padding: 5rem 0;
  background: #e7efff;
}
section.our-services.another-services .our_services_list-group {
  background: #20a052;
}
section.our-services.another-services .our_services_list-group p {
  color: var(--white);
}
section.our-services.another-services .our_services_list-group .each-services-bx h4 {
  color: #fff;
}
section.our-services.another-services .our_services_list-group .each-services-bx p {
  color: var(--grey);
}
section.our-services.another-services .our_services_list-group .each-services-bx .services-icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7479%) hue-rotate(345deg) brightness(107%) contrast(93%);
}
section.our-services.another-services .our_services_list-group .each-services-bx:hover h4 {
  color: #20a052;
}
section.our-services.another-services .our_services_list-group .each-services-bx:hover .services-icon {
  filter: brightness(0) saturate(100%) invert(42%) sepia(84%) saturate(1426%) hue-rotate(114deg) brightness(90%) contrast(75%);
}

section.testimonials {
  padding: 3.75rem 0 5rem;
  text-align: center;
}
section.testimonials h2 {
  margin-bottom: 40px;
}
section.testimonials .container-fluid {
  padding: 0;
}
section.testimonials .testimonials-swiper {
  padding-right: 380px;
}
section.testimonials .testimonial-item {
  box-sizing: border-box;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #4484ff;
  box-shadow: 0px 10px 25px rgba(0, 0, 51, 0.08);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
section.testimonials .testimonial-item .testimonial-heading {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
section.testimonials .testimonial-item .testimonial-heading::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15px;
  width: 17px;
  height: 14px;
  background: url(../images/topic.png) no-repeat center;
}
section.testimonials .testimonial-item .testimonial-heading .profile {
  width: 56px;
  height: 56px;
  overflow: hidden;
  border-radius: 50%;
}
section.testimonials .testimonial-item .testimonial-heading .profile-heading {
  width: calc(100% - 62px);
}
section.testimonials .testimonial-item .testimonial-heading .profile-heading h5 {
  font-family: var(--globalUbuntu);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-16);
  line-height: var(--line-height-20);
  color: #20a052;
  margin: 0 0 2px;
}
section.testimonials .testimonial-item .testimonial-heading .profile-heading h6 {
  font-family: var(--globalUbuntu);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-14);
  line-height: var(--line-height-20);
  color: #1d1d1d;
  margin: 0;
}
section.testimonials .testimonial-item .rate-stars {
  margin-bottom: 16px;
}
section.testimonials .testimonial-item .rate-stars i {
  font-size: 18px;
}
section.testimonials .testimonial-item .rate-stars i.checked {
  color: #ffc71b;
}
section.testimonials .testimonial-item p {
  font-family: var(--globalInter);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-14);
  line-height: var(--font-size-24);
  color: #1d1d1d;
}

section.faq-section {
  padding: 5rem 0;
  text-align: center;
  background: #e7efff;
}
section.faq-section h2 {
  margin: 0 0 40px;
}
section.faq-section .nav.nav-pills {
  margin: auto;
  justify-content: center;
  gap: 20px;
}
section.faq-section .nav.nav-pills .nav-link.active,
section.faq-section .nav.nav-pills .show > .nav-link {
  color: var(--white);
  background: var(--blue);
}
section.faq-section .nav.nav-pills .nav-link {
  background: var(--white);
  padding: 16px 48px;
  border-radius: 6px;
  color: var(--grey);
  font-family: var(--globalUbuntu);
  font-weight: 400;
  font-size: var(--font-size-16);
  line-height: var(--line-height-28);
}
section.faq-section .faq_box {
  width: 100%;
  padding: 0px;
  margin: 0px;
  position: relative;
  max-width: 1090px;
  margin: auto;
  text-align: left;
  background: #ffffff;
  box-shadow: 0px 5px 16px rgba(8, 15, 52, 0.06);
  border-radius: 18px;
  box-sizing: border-box;
  padding: 0px 28px 40px;
}
section.faq-section .faq_box::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0px;
  bottom: 0px;
  z-index: 1;
}
section.faq-section .faq_box .faq_item {
  text-align: left;
  position: relative;
  width: 100%;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 0px;
  padding-bottom: 20px;
}
section.faq-section .faq_box .faq_item + .faq_item {
  border-top: 1px solid #a9a9a9;
}
section.faq-section .faq_box .faq_item:last-child {
  border-bottom: 1px solid #a9a9a9;
}
section.faq-section .faq_box .faq_item .faq_hd {
  margin-bottom: 0px;
  cursor: pointer;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
section.faq-section .faq_box .faq_item .faq_hd::before {
  font: var(--fa-font-solid);
  content: "\f067";
  position: absolute;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  right: 0px;
  bottom: 4px;
  margin: auto;
  z-index: 1;
  font-size: 14px;
  width: 20px;
  height: 20px;
  color: #1d1d1d;
  border: 2px solid #1d1d1d;
  text-align: center;
  line-height: 17px;
  border-radius: 50px;
}
section.faq-section .faq_box .faq_item .faq_hd.closed::before {
  content: "\f068";
}
section.faq-section .faq_box .faq_item .faq_hd h3 {
  font-family: var(--globalInter);
  font-style: normal;
  font-weight: 500;
  font-size: var(--font-size-18);
  line-height: var(--line-height-28);
  color: #1d1d1d;
  position: relative;
  padding: 40px 65px 0px 0px;
  margin: 0 0 0px;
}
section.faq-section .faq_box .faq_item .faq_cont {
  display: none;
  padding: 0;
}
section.faq-section .faq_box .faq_item .faq_cont p {
  font-family: var(--globalInter);
  margin-top: 15px;
}
section.faq-section .search-question {
  max-width: 530px;
  width: 100%;
  margin: 0 auto 2.5rem;
  position: relative;
}
section.faq-section .search-question input:not([type=submit]) {
  background: var(--white);
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 300;
  font-size: var(--font-size-16);
  line-height: var(--line-height-28);
  text-align: left;
  color: var(--grey);
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 6px;
  width: 100%;
  padding: 1rem 4.0625rem 1rem 1rem;
  margin: 0;
}
section.faq-section .search-question input[type=submit] {
  background: var(--blue) url(../images/search-icon.svg) no-repeat center;
  border-radius: 6px;
  width: 50px;
  height: 50px;
  border: none;
  position: absolute;
  right: 0.3125rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
section.faq-section.innerFaq {
  background: #fff;
}

footer {
  background-color: var(--black);
}
footer .top-footer {
  padding: 95px 0;
}
footer .top-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .top-footer .ft-logo {
  width: 100%;
  max-width: 180px;
}
footer .top-footer .ft-logo a {
  display: block;
}
footer .top-footer .ft-item ul {
  display: flex;
  gap: 30px;
}
footer .top-footer .ft-item ul li a {
  font-family: var(--globalUbuntu);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-16);
  line-height: var(--line-height-18);
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
footer .top-footer .ft-item ul li a:hover {
  color: var(--primaryGreen);
}
footer .top-footer .social-links ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.5rem;
}
footer .top-footer .social-links ul li a {
  font-size: var(--font-size-17);
  color: var(--white);
  transition: all 0.3s ease-in-out;
}
footer .top-footer .social-links ul li a:hover {
  color: var(--primaryGreen);
}
footer .copy-footer {
  border-top: 1px solid #ffffff;
  padding: 20px 0;
}
footer .copy-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}
footer .copy-footer .privacy-list ul {
  display: flex;
  gap: 30px;
}
footer .copy-footer .privacy-list ul li a {
  font-family: var(--globalUbuntu);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-14);
  line-height: var(--line-height-24);
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
footer .copy-footer .privacy-list ul li a:hover {
  color: var(--primaryGreen);
}
footer .copy-footer p {
  font-size: var(--font-size-14);
  line-height: var(--line-height-24);
  color: var(--white);
}

section.inner-banner {
  position: relative;
  overflow: hidden;
}
section.inner-banner .whitebg {
  position: absolute;
  width: calc(50vw - 300px);
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  background: var(--white);
}
section.inner-banner .whitebg::after {
  content: " ";
  position: absolute;
  height: 101%;
  width: 18rem;
  right: -17.9rem;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background: linear-gradient(90.94deg, #ffffff 5%, rgba(255, 255, 255, 0) 107.41%);
}
section.inner-banner img {
  width: calc(50vw + 310px);
  display: block;
  margin-left: auto;
}
section.inner-banner .inner-banner-content {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
section.inner-banner .inner-banner-content h1 {
  font-family: var(--globalUbuntu);
  font-style: normal;
  font-weight: 500;
  font-size: var(--font-size-36);
  line-height: var(--line-height-41);
  display: flex;
  align-items: center;
  text-transform: capitalize;
  color: var(--primaryGreen);
  margin-bottom: 15px;
}
section.inner-banner .inner-banner-content .breadcrumb-list ul {
  display: inline-flex;
}
section.inner-banner .inner-banner-content .breadcrumb-list ul li {
  font-family: var(--globalUbuntu);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-20);
  line-height: var(--line-height-23);
  text-transform: capitalize;
  color: var(--black);
}
section.inner-banner .inner-banner-content .breadcrumb-list ul li + li::before {
  content: ">";
  font-family: var(--globalUbuntu);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-20);
  line-height: var(--line-height-23);
  text-transform: capitalize;
  text-decoration: none;
  color: var(--black);
  display: inline-block;
  margin: 0 8px;
}
section.inner-banner .inner-banner-content .breadcrumb-list ul li a {
  display: block;
  font-family: var(--globalUbuntu);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-20);
  line-height: var(--line-height-23);
  text-transform: capitalize;
  text-decoration: none;
  color: var(--black);
  transition: all 0.3s ease-in-out;
}
section.inner-banner .inner-banner-content .breadcrumb-list ul li a:hover {
  color: var(--primaryGreen);
}

section.services-commercial.servicesPg p + .btn {
  margin-top: 20px;
}
section.services-commercial.otherServices {
  background: #fff;
}
section.services-commercial.otherServices .each-services-bx {
  border: 1px solid #cccccc;
  padding: 20px 24px 57px;
}
section.services-commercial.otherServices h2 + .btn {
  margin-top: 20px;
}

section.green-let-talk.innerPg {
  background: #e7efff;
  padding: 80px 0px;
}
section.green-let-talk.whitePg {
  background: #fff;
  padding: 80px 0px;
}

section.about-vid {
  padding: 80px 0;
}
section.about-vid .abt-vid {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
section.about-vid .abt-vid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

section.abt-details {
  padding: 0 0 80px;
}
section.abt-details p {
  color: var(--black);
}
section.abt-details.light-bg {
  padding: 80px 0;
  background: #e7efff;
}
section.abt-details .abt-img {
  width: 100%;
}
section.abt-details .abt-img img {
  width: 100%;
  height: 100%;
}

section.residential-services .each-residential-services {
  padding: 80px 0;
}
section.residential-services .each-residential-services .row {
  align-items: center;
}
section.residential-services .each-residential-services:nth-child(even) {
  background: #e7efff;
}
section.residential-services .each-residential-services:nth-child(even) .row {
  flex-direction: row-reverse;
}
section.residential-services .each-residential-services p {
  color: var(--black);
  margin-bottom: 2rem;
}
section.residential-services .each-residential-services .book-yur-services {
  background: var(--primaryGreen);
  box-sizing: border-box;
  padding: 16px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  gap: 12px;
}
section.residential-services .each-residential-services .book-yur-services .icon {
  width: 47px;
}
section.residential-services .each-residential-services .book-yur-services .bk-ser-heading {
  max-width: 229px;
}
section.residential-services .each-residential-services .book-yur-services .bk-ser-heading h4 {
  color: #fff;
  font-weight: 400;
  line-height: var(--line-height-24);
  margin-bottom: 12px;
}
section.residential-services .each-residential-services .book-yur-services .bk-ser-heading h6 {
  color: #fff;
  margin: 0px;
  line-height: var(--line-height-24);
}
section.residential-services .each-residential-services .residential-img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
section.residential-services .each-residential-services .residential-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

section.contactPg {
  padding: 80px 0;
}
section.contactPg ul.contact_list {
  margin: 40px 0 0;
  padding: 0;
}
section.contactPg ul.contact_list li i {
  color: var(--blue);
  font-size: 1.625rem;
  margin-bottom: 1.3125rem;
}
section.contactPg ul.contact_list li h4 {
  line-height: var(--line-height-28);
  color: var(--black);
  margin: 0 0 0.5rem;
}
section.contactPg ul.contact_list li p {
  margin-bottom: 0.5rem;
}
section.contactPg ul.contact_list li a {
  display: inline-block;
  color: var(--blue);
  font-size: var(--font-size-16);
  line-height: var(--line-height-24);
  text-decoration: none;
}
section.contactPg ul.contact_list li a i {
  color: var(--blue);
  font-size: var(--font-size-14);
  line-height: var(--line-height-20);
  margin: 0;
}
section.contactPg ul.contact_list li + li {
  margin-top: 36px;
}
section.contactPg .enquiry_form {
  position: relative;
  box-sizing: border-box;
  padding: 2.5rem 1.25rem 3.5rem;
  background: #e7efff;
  border-radius: 1.25rem;
}
section.contactPg .enquiry_form h3 {
  margin-bottom: 1.25rem;
  color: var(--black);
}
section.contactPg .enquiry_form p {
  margin-bottom: 40px;
}
section.contactPg .enquiry_form label {
  line-height: var(--line-height-24);
}
section.contactPg .enquiry_form textarea {
  height: 132px;
}
section.contactPg .enquiry_form .row [class*=col-] + h3 {
  margin-top: 1.25rem;
}
section.contactPg .enquiry_form input[type=submit] {
  display: block;
  width: 100%;
}
section.contactPg .enquiry_form .wpcf7-spinner {
  position: absolute;
  bottom: 30px;
  left: 20px;
}
section.contactPg .map-frame {
  margin-top: 40px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  height: 306px;
}
section.contactPg .map-frame iframe {
  width: 100%;
  height: 100%;
}

.sub-menu-toggle {
  display: none;
}/*# sourceMappingURL=style 2.css.map */