/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Manrope:wght@200..800&display=swap");

/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
  --white: #fff;
  --black: #000;
  --primary: #f7a433;
  --secondary: #333333;
  font-family: "Jost", sans-serif;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  /* font-family: "Manrope", sans-serif; */
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #828282;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

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

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

body.loading {
  overflow: hidden;
  height: 100vh;
}

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: start;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 11113;
}

.preLoader .counter {
  color: var(--white);
  font-size: 15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  position: absolute;
  bottom: 0rem;
  right: 5rem;
}

.preLoader .bar {
  height: 20%;
  width: 100vw;
  background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background: #f8903a;
  font-size: 1.125rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 800;
  display: flex;
  padding: 1.04em 1.96em;
  border-radius: 10px;
  line-height: normal;
  align-items: center;
  gap: 0.625rem;
  width: fit-content;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

.heading {
}

.subtitle {
}

/* !GLOBAL CSS */

/* mouse animation css  */

/* .bounce-element {
	animation: bounce 0.9s infinite alternate;
	-webkit-animation: bounce 0.9s infinite alternate;
}
@keyframes bounce {
	from {
		transform: translateY(0px);
	}
	to {
		transform: translateY(-15px);
	}
}
@-webkit-keyframes bounce {
	from {
		transform: translateY(0px);
	}
	to {
		transform: translateY(-15px);
	}
}
.mouse {
	position: absolute;
	bottom: 1rem;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 11;
	text-align: center;
} */

/* mouse animation css  */

/* NAV HEADER CSS */

header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 111;
  top: 0;
  width: 100%;
  padding: 1rem 10rem;
  transition: 0.3s ease-in-out;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-nav {
  align-items: center;
  gap: 2.5rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 0;
  display: inline-block;
}

/* !NAV HEADER CSS */

/* Main Banner Css Start */
.navbar-brand img {
  height: 100px;
}
section.mainbanner {
  border-radius: 40px;
  padding: 13rem 0 6rem;
  margin: 20px 40px 0;
  height: 900px;
  align-content: center;
  z-index: 1;
}

.navbar-nav .nav-item .nav-link:hover {
  color: var(--primary);
}

section.mainbanner::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgb(0 0 0 / 50%);
  border-radius: 40px;
}
.main-content h2 {
  font-size: 23px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1em;
  letter-spacing: 0.13em;
  color: #f8903a;
  font-family: "Jost", sans-serif;
}

.main-content h3 {
  font-size: 1.125rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1em;
  letter-spacing: 0.13em;
  color: #f8903a;
  font-family: "Jost", sans-serif;
  margin-top: 0.625rem;
}

.main-content h1 {
  font-size: 70px;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--white);
}
.themeBtn i {
  height: 2rem;
  width: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  border: 2px solid #fff;
  font-weight: 600;
  transition: 0.6s ease;
  font-size: 1rem;
}

.main-content p {
  font-size: 22px;
  color: var(--white);
  margin: 1rem auto 2rem;
  width: 50%;
  line-height: 1.6;
}

.main-content .btn-group {
  gap: 2rem;
}

/* Main Banner Css End  */

/* About Sec Css Start */

.subHead {
  font-family: "Jost", Sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1em;
  letter-spacing: 0.13em;
  color: #f8903a;
  margin: 0 0 0.625rem 0;
}

.subText {
  font-family: "Jost", Sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1em;
  letter-spacing: 0.13em;
  color: #f8903a;
}

.mainHead {
  font-size: 56px;
  font-weight: 800;
  text-transform: none;
}

.about-content .mainHead {
  margin: 1.125rem 0 2rem;
}

.about-content p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--black);
}

.about-content span {
  font-weight: 700;
  color: var(--black);
}

.about-content {
  padding-left: 3.75rem;
}

.about-list li a {
  display: flex;
  align-items: center;
  gap: 0.6215rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--black);
}

.about-list li a i {
  color: #fe7831;
}

.about-list li + li {
  margin: 0.75rem 0;
}

.about-list {
  margin: 1.25rem 0 2rem;
}

/* About Sec Css End  */

/* Services Sec Css Start */
.services-sec {
  z-index: 1;
  padding: 6rem 3.75rem 5rem;
}

.services-top {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-sec::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgb(0 0 0 / 85%);
  z-index: -1;
}

.services-top .mainHead {
  color: var(--white);
  margin-top: 1rem;
}

.services-img img {
  border-radius: 40px;
  height: 550px;
  width: 100%;
  object-fit: cover;
}

.services-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-transform: capitalize;
}

.services-content p {
  font-size: 1.125rem;
  color: var(--white);
  line-height: 1.8;
  opacity: 0;
  transition: 0.5s ease;
  margin: 0.75rem 0;
}

.services-content a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: capitalize;
  color: #f7a433;
  opacity: 0;
  transition: 0.5s ease;
}

.services-content a i {
  height: 2rem;
  width: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  border: 2px solid;
  font-weight: bold;
  font-size: 1rem;
  transition: 0.6s ease;
}

.services-wrapp {
  position: relative;
}

.services-content {
  position: absolute;
  left: 30px;
  right: 20px;
  bottom: -110px;
  transition: 0.6s ease;
}

.services-img {
  position: relative;
}

.services-img::before {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(162deg, rgb(0 0 0 / 0%), #000);
  border-radius: 38px;
}

.services-wrapp:hover .services-content {
  transform: translateY(-180px);
}

.services-wrapp:hover .services-content p {
  opacity: 1;
}

.services-wrapp:hover .services-content a {
  opacity: 1;
}
section.services-sec .themeBtn {
  margin-top: 3rem !important;
}
/* Services Sec Css End  */

/* Project Sec Css Start */

section.services-sec.project-sec {

  padding: 6rem 3.75rem 8rem;
}

section.services-sec.project-sec .services-content {
  bottom: -160px;
}
/* Project Sec Css End  */

/* Energy Sec Css Start */

.energy-top {
  text-align: center;
  margin-bottom: 2.5rem;
}

.energy-top .mainHead {
  margin: 1rem 0 0;
}
.energy-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: capitalize;
  margin: 1.125rem 0 1rem;
}

.energy-box {
  border: 1px solid rgb(0 0 0 / 18%);
  padding: 1.875rem 1.875rem 3.75rem 1.875rem;
  border-radius: 40px;
}

.energy-content p {
  font-size: 1.125rem;
  color: var(--black);
  line-height: 1.6;
}

figure.energy-imag img {
  height: 380px;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}

/* Energy Sec Css End  */

/* Teams Sec Css Start */

.team-content {
  padding-left: 30px;
}

.team-content .mainHead {
  margin: 1.5rem 0;
}

.team-content p {
  font-size: 1.125rem;
  color: var(--black);
  line-height: 1.6;
  width: 94%;
}

.team-content p + p {
  margin: 1rem 0;
}

section.partner-sec {
  background-color: #eeeeee;
}

.partner-content .mainHead {
  margin: 1.25rem 0;
}

.partner-content p {
  font-size: 1.125rem;
  color: var(--black);
}

.partner-content p + p {
  margin: 0.625rem 0;
}

.partner-list {
  margin-top: 1.5rem;
}

.partner-list li a {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--black);
}

.partner-list li + li {
  margin: 0.625rem 0;
}

.partner-list li {
  list-style: disc;
  color: var(--black);
}

/* Teams Sec Css End  */

/* Build Sec Css Start  */

section.build-sec {
  padding: 6rem 0 0;
  background: url(../images/buildbg.webp) center/cover fixed;
  background-color: #f8903a;
}

.build-content .themeBtn {
  border: 2px solid var(--white);
  padding: 0.875rem 2.5rem;
}

.build-content .mainHead {
  color: var(--white);
}

.build-content p {
  font-size: 1.1025rem;
  color: var(--white);
  line-height: 1.8;
  margin: 1.75rem 0;
}

/* Build Sec Css End  */

/* Blog Sec Css Start  */

.blog-top {
  text-align: center;
  margin-bottom: 3.5rem;
}

.blog-top .mainHead {
  margin: 1rem 0;
}

section.blog-sec {
  background-color: #eeeeee;
}

.blog-wrapp figure img {
  border-radius: 40px 40px 0 0;
  transition: 0.6s ease;
}

.bog-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: capitalize;
  color: #fb6549;
}

.bog-content a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: capitalize;
  color: #f7a433;
  transition: 0.5s ease;
}

.bog-content a i {
  height: 2rem;
  width: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  border: 2px solid;
  font-weight: bold;
  font-size: 1rem;
  transition: 0.5s ease;
}

.bog-content {
  padding: 1.875rem;
}

.blog-wrapp {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
  border-radius: 40px;
  border: 1px solid rgb(0 0 0 / 20%);
  background-color: var(--white);
}

.blog-wrapp figure {
  overflow: hidden;
}

.blog-wrapp figure:hover img {
  transform: scale(1.1);
}
/* Blog Sec Css End   */

/* Footer Sec Css Start */
footer::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgb(0 0 0 / 85%);
  z-index: -1;
}
footer {
  background: url(../images/footerbg.webp) center/cover no-repeat;
  position: relative;
  padding: 5rem 0;
  z-index: 1;
}

ul.footer-list li a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--white);
  text-transform: capitalize;
  transition: 0.6s ease;
}

ul.footer-list li a i {
  height: 1.75rem;
  width: 1.75rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  border: 2px solid #f7a433;
  font-weight: bold;
  font-size: 0.75rem;
  color: #f7a433;
  transition: 0.6s ease;
}

ul.footer-list li + li {
  margin: 0.875rem 0;
}

footer p {
  color: var(--white);
  font-size: 1.1025rem;
  line-height: 1.6;
}

.footerlogo figure {
  margin-bottom: 2rem;
}

footer h2 {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--white);
  margin-bottom: 1.75rem;
}

ul.footer-info li a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.125rem;
  color: var(--white);
}

ul.footer-info li + li {
  margin: 1rem 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: end;
}

.footer-social li a i {
  height: 36px;
  width: 36px;
  display: grid;
  place-items: center;
  border: 1px solid #0d6efd;
  color: var(--white);
  border-radius: 50px;
  font-size: 1rem;
  transition: 0.6s ease;
}

ul.footer-social li a i:hover {
  color: #f7a433;
  border: 1px solid #f7a433;
}

.footer-img img {
  height: 160px;
  object-fit: cover;
}

figure.footer-img {
  text-align: center;
}

.footer-bottom {
  margin-top: 5rem;
  padding: 1.125rem 0;
  border-top: 1px solid rgb(255 255 255 / 30%);
  border-bottom: 1px solid rgb(255 255 255 / 30%);
}
/* Footer Sec Css End  */

/* Faq Sec Css Start */
.faq-sec #accordion {
  border: 0;
  border-radius: 0;
}

.faqt-top .subHead {
  margin-bottom: 0.4rem;
}

.faq-sec #accordion .card {
  background-color: transparent;
  padding: 0;
  overflow: hidden;
  transition: background-color 0.4s ease;
  border-bottom: 1px solid #fff;
  border-left: unset;
  border-right: unset;
  border-radius: unset;
  border-top: unset;
}

.faq-sec #accordion .card .btn-link {
  width: 100%;
  height: 4.125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background-color: transparent;
  font-size: 24px;
  font-weight: 700;
  text-align: left;
  padding: 1rem 1.25rem;
  border: none;
  outline: none;
  transition: all 0.3s ease;
}

.faq-sec #accordion .card .btn-link i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.faq-sec #accordion .card .btn-link i::before {
  content: "\f068";
}

.faq-sec #accordion .card .btn-link.collapsed i::before {
  content: "\f067";
}

.faq-sec #accordion .card .btn-link.collapsed {
  background-color: transparent;
  color: var(--white);
}

.faq-sec #accordion .card .collapse.show,
.faq-sec #accordion .card[aria-expanded="true"],
.faq-sec #accordion .card .btn-link[aria-expanded="true"] {
  border-radius: 0;
  padding-bottom: 0;
}

.faq-sec #accordion .card .btn-link[aria-expanded="true"] i {
  color: var(--primary);
}

.faq-sec #accordion .card .card-body {
  padding: 0 28px 30px 21px;
  font-size: 14px;
  color: var(--white);
  transition: all 0.3s ease;
  border-radius: 0;
}

.faq-sec #accordion .card .card-body p {
  margin: 0;
  color: var(--white);
  line-height: 1.8;
  font-size: 1.125rem;
}

.faq-sec #accordion .card + .card {
  margin-top: 25px;
}

.faq-sec #accordion .collapse {
  transition: height 0.4s ease;
  overflow: hidden;
}

.faq-sec .card h5 {
  margin: 0;
}

.faq-images ul {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-images ul + ul {
  margin: 1rem 0;
}

.faq-images ul li a img {
  border-radius: 30px;
}

.faqt-top {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-sec {

  z-index: 1;
}

.faq-sec::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgb(0 0 0 / 85%);
  z-index: -1;
}

.faq-main {
  padding-left: 3rem;
}

.faq-images {
  position: relative;
}

figure.faq-sub {
  height: 120px;
  width: 120px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: var(--white);
  position: absolute;
  top: 0;
  margin: auto;
  bottom: 0;
  left: 2rem;
  right: 0;
}

.faqt-top .mainHead {
  color: #fff;
}

/* Faq Sec Css End  */

/* Hover Effect Css Start */
.main-content .btn-group .themeBtn:nth-child(2) {
  border: 1px solid #fff;
  background: transparent;
}

.main-content .btn-group .themeBtn:nth-child(2):hover {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: var(--white);
}

.themeBtn:hover {
  background-color: var(--black);
  color: var(--white);
}

.services-content a:hover i {
  transform: translate(10px);
}

.themeBtn:hover i {
  transform: translate(10px);
}

.faq-sec #accordion .card:last-child {
  border-bottom: unset;
}

.bog-content a:hover i {
  transform: translate(10px);
}

ul.footer-list li a:hover {
  color: var(--primary);
}

ul.footer-list li a:hover i {
  color: var(--white);
  border: 1px solid #fff;
}

/* Hover Effect Css End  */

/* Inner Pages Css Start */
section.about-sec.about-page .about-content {
  padding: 0;
}
section.about-sec.about-page figure.about-img img {
  border-radius: 20px;
  box-shadow: 2px 0 20px 0 rgb(0 0 0 / 34%);
}

.innerbanner h2 {
  font-size: 56px;
  font-weight: 800;
  text-transform: capitalize;
  color: var(--white);
  text-align: center;
}

.innerbanner {
  padding: 11rem 0 5rem;
  background-color: #387ea2;
  z-index: 1;
}

.innerbanner::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 90%;
  background-color: rgb(255 255 255 / 11%);
  margin: auto;
  left: 0;
  right: 0;
  top: -1rem;
  bottom: 0;
  z-index: -1;
}

section.partner-sec.about-partner figure.partner-img img {
  border-radius: 20px;
  box-shadow: 2px 0 20px 0 rgb(0 0 0 / 34%);
}

section.about-sec.about-page.services1 figure.about-img img {
  width: 100%;
}

section.about-sec.about-page.services3 figure.about-img img {
  width: 100%;
}

section.about-sec.about-page.services4 figure.about-img img {
  width: 100%;
}

section.about-sec.about-page.services3 .about-content p + p {
  margin: 1rem 0;
}

section.partner-sec.about-partner.services4 .partner-content p + p {
  margin: 0.875rem 0;
}
/* Inner Pages Css End  */

/* Faq Sec Css Start */
.contact-sec #accordion {
  border: 0;
  border-radius: 0;
}

.contact-sec #accordion .card {
  background: #fff;
  border: 1px solid rgb(0 0 0 / 15%);
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  transition: background-color 0.4s ease;
}

.contact-sec #accordion .card .btn-link {
  width: 100%;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #042a2d;
  background-color: transparent;
  font-size: 1.25rem;
  font-weight: 400;
  text-align: left;
  padding: 1rem 1.25rem;
  border: none;
  outline: none;
  transition: all 0.3s ease;
  border-radius: 0;
}

.contact-sec #accordion .card .btn-link i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.contact-sec #accordion .card .btn-link i::before {
  content: "\f068";
}

.contact-sec #accordion .card .btn-link.collapsed i::before {
  content: "\f067";
}

.contact-sec #accordion .card .btn-link.collapsed {
  background-color: #fff;
  color: #000;
}

.contact-sec #accordion .card .collapse.show,
.contact-sec #accordion .card[aria-expanded="true"],
.contact-sec #accordion .card .btn-link[aria-expanded="true"] {
  border-radius: 0;
  border-bottom: unset;
  padding-bottom: 0;
}

.contact-sec #accordion .card .btn-link[aria-expanded="true"] i {
  color: #fff;
}

.contact-sec #accordion .card .card-body {
  padding: 19px 28px 30px 28px;
  font-size: 1.125rem;
  color: #000;
  background-color: transparent;
  transition: all 0.3s ease;
  border-radius: 0;
  border-top: 1px solid rgb(0 0 0 / 15%);
}

.contact-sec #accordion .card .card-body p {
  margin: 0;
  color: #000;
  line-height: 1.8;
  font-size: 1.125rem;
}

.contact-sec #accordion .collapse {
  transition: height 0.4s ease;
  overflow: hidden;
}

.contact-sec .card h5 {
  margin: 0;
}

.contact-sec #accordion .card .card-body p a {
  font-weight: bold;
}

.contact-sec #accordion .card .card-body a {
  font-weight: bold;
  color: var(--black);
}

.contact-sec .mainHead {
  margin-bottom: 2rem;
}

form.contact-form .form-control {
  height: 3.125rem;
  outline: unset;
  box-shadow: unset;
  background-color: transparent;
  font-size: 1rem;
  font-weight: 400;
  color: var(--black);
}

form.contact-form .form-group {
  margin-bottom: 2rem;
}

form.contact-form textarea.form-control {
  height: 176px;
}

form.contact-form button {
  height: 3.125rem;
  border: unset;
  width: 200px;
  justify-content: center;
  border-radius: unset;
  font-weight: 400;
}

section.contact-sec::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  height: 79%;
  margin: auto;
  background: rgb(0 0 0 / 15%);
  width: 1px;
  z-index: -1;
}

section.contact-sec {
  z-index: 1;
}

.icon-wrapp {
  text-align: center;
  padding: 25px 25px 25px 25px;
  border: 2px solid #387ea2;
  border-radius: 25px 25px 25px 25px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
}

.icon-wrapp a h5 {
  font-size: 1.875rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--black);
  font-family: "Font Awesome 5 Brands";
}

.icon-wrapp a h5 span {
  display: block;
  font-size: 17px;
  font-weight: 400;
  margin-top: 0.325rem;
  font-family: "Manrope", sans-serif;
}

.icon-wrapp a i {
  font-size: 3.75rem;
  margin-bottom: 0.625rem;
  color: var(--primary);
  transition: 0.7s ease;
}

.icon-wrapp a:hover i {
  transform: scale(1.2);
}

section.icon-sec {
  padding: 2rem 0 6rem;
}

/* Faq Sec Css Start */
.faq-section #accordion {
  border: 0;
  border-radius: 0;
}

.faqt-top .subHead {
  color: var(--black);
  margin-bottom: 0.4rem;
}

.faq-section #accordion .card {
  background: #fff;
  /* border: 1px solid #000; */
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  transition: background-color 0.4s ease;
}

.faq-section #accordion .card .btn-link {
  width: 100%;
  height: 4.125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #042a2d;
  background-color: transparent;
  font-size: 22px;
  font-weight: 600;
  text-align: left;
  padding: 1rem 1.25rem;
  border: 2px solid #000;
  outline: none;
  transition: all 0.3s ease;
}

.faq-section #accordion .card .btn-link i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.faq-section #accordion .card .btn-link i::before {
  content: "\f068";
}

.faq-section #accordion .card .btn-link.collapsed i::before {
  content: "\f067";
}

.faq-section #accordion .card .btn-link.collapsed {
  background-color: #fff;
  color: #000;
}

.faq-section #accordion .card .btn-link[aria-expanded="true"] i {
  color: #fff;
}

.faq-section #accordion .card .card-body {
  padding: 29px 28px 30px 28px;
  font-size: 14px;
  transition: all 0.3s ease;
  border-radius: 0;
  background: transparent;
  border: 1px solid #000;
  border-radius: 20px;
}

.faq-section #accordion .card .card-body p {
  margin: 0;
  color: #fff;
  line-height: 1.8;
}

.faq-section #accordion .card + .card {
  margin-top: 25px;
}

.faq-section #accordion .collapse {
  transition: height 0.4s ease;
  overflow: hidden;
  border: 1px solid transparent;
}

.faq-section .card h5 {
  margin: 0;
}

.faq-flex + .faq-flex {
  margin: 1.98rem 0;
}

figure.flag-img img {
  height: 25px;
  border-radius: 50%;
  width: fit-content;
  object-fit: cover;
}

.faq-wrapp h4 {
  font-size: 25px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--black);
  margin-bottom: 1rem;
}

figure.flag-img {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #d6e1ea;
  width: fit-content;
  padding: 11px 16px;
  border-radius: 50px;
  margin: 1rem 0;
}

.faq-wrapp p {
  color: var(--black);
}

figure.flag-img h5 {
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--black);
}

.faq-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  padding-bottom: 2rem;
}

.looking-content .subHead {
  margin: auto;
}

.looking-content .mainHead {
  margin: 0.625rem 0 1.25rem;
}

.looking-content p {
  color: var(--black);
  width: 50%;
  margin: 0 auto 2rem;
}

section.looking-sec {
  padding: 8rem 0 0;
}

.looking-content .themeBtn {
  margin: auto;
}

section.faq-section {
  padding: 4rem 0 6rem;
}

section.about-sec.about-page.services1.earthwork .about-content h5 {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  margin: 1rem 0;
}

section.about-sec.about-page.services1.earthwork .about-content p + p {
  margin: 1.5rem 0;
}

section.about-sec.about-page.services1.earthwork.drainage .about-content span {
  position: relative;
  display: block;
}

section.about-sec.about-page.services1.earthwork.drainage
  .about-content
  span::before {
  position: absolute;
  content: "";
  height: 5px;
  width: 5px;
  border-radius: 50px;
  background: #000;
  left: -13px;
  top: 0;
  bottom: 0;
  margin: auto;
}

section.about-sec.about-page.services1.earthwork.drainage .about-content p + p {
  margin: 1rem 0;
}

.privacy-content h5 {
  font-size: 1.125rem;
  font-weight: 700;
}

.privacy-content h5 + h5 {
  margin: 0.625rem 0 0;
}

.privacy-content p {
  font-size: 1.125rem;
  color: var(--black);
  line-height: 1.6;
  margin: 1rem 0;
}

ul.privacy-list li a {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
}

ul.privacy-list li a span {
  font-weight: bold;
}

ul.privacy-list li + li {
  margin: 0.625rem 0;
}

ul.privacy-list {
  margin: 1rem 0;
}

ul.privacy-list li {
  list-style: disc;
}
/* Faq Sec Css End  */
