/* FONT IMPORT */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

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

:root {
    --white: #fff;
    --black: #000;
    --primary: #60C500;
    --secondary: #333333;

}

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

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

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

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

h1,
h2,
h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
}

h4,
h5,
h6 {
    color: #000;
    font-family: var(--font-heading);
}

.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 */

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

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}


/* PRELOADER */


/* GLOBAL CSS */

.themeBtn {
    background: var(--primary);
    font-size: 0.875rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    padding: 1.04em 1.96em;
    border-radius: 0;
    line-height: normal;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.themeBtn:hover::before {
    width: 100%;
    height: 100%;
    background: var(--black);
    top: 0;
    left: 0;
}

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

.themeBtn::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: #fff;
    left: 3px;
    top: 3px;
    transition: 0.5s ease;
    z-index: -1;
}

.themeBtn i {
    transform: rotate(318deg);
    transition: 0.5s ease;
}

.themeBtn:hover i {
    transform: rotate(0deg);
}

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



/* NAV HEADER CSS */

header {
    padding: 0;
    transition: 0.3s ease-in-out;
}

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

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

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

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

.form-inline {
    margin-left: 5rem;
    gap: 30px;
}

a.searchicon {
    color: #262626;
}

.topBar {
    background: #000;
    padding: 1rem 0;
}

ul.contactInfo {
    display: flex;
    align-items: center;
    gap: 9px;
    justify-content: center;
}

ul.socialLinks {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: end;
    margin-left: 2rem;
}

ul.contactInfo li a span {
    color: #fff;
    font-size: 0.9375rem;
}

ul.socialLinks li a i {

    color: #B5B5B5;
}

ul.contactInfo.contactinfo1 {
    justify-content: start;
}

/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.main-slider {
    height: 875px;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .swiper-pagination {
    bottom: 8rem;
    width: fit-content;
    left: 18rem;
}

.homeSlider .swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 2rem;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
    width: 4rem;
    height: 4rem;
    font-size: 10px;
    color: #fff;
    display: inline-grid;
    place-items: center;
    border-radius: unset;
    background-color: var(--primary);
    position: absolute;
    transform: translateY(-50%);
    z-index: 1;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    top: initial;
    bottom: -2.2rem;
}

.homeSlider .swiper-button-next {
    right: 18%;
}

.homeSlider .swiper-button-prev {
    left: initial;
    right: 22.4%;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
    background: var(--white);
    color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    display: inline-block;
    margin: 0 0.5rem !important;
    opacity: 1;
    border: 1px solid var(--white);
    background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
    background: var(--white);
    position: relative;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.main-slider h1 {
    margin: 0;
    color: var(--white);
    font-size: 6.3125rem;
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase;
}

.main-slider p {
    color: #E8E8E8;
    font-weight: 400;
    line-height: 1.8;
    margin-top: 2rem;
    font-size: 1.125rem;
    padding-left: 1.5rem;
    position: relative;
    width: 69%;
}

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

ul.socialLinks li {
    position: relative;
}

ul.socialLinks li::before {
    position: absolute;
    content: "";
    background: rgb(255 255 255 / 10%);
    width: 1px;
    height: 54px;
    left: -1rem;
    top: -15px;
}

ul.contactInfo li+li {
    border-left: 1px solid rgb(255 255 255 / 8%);
    padding-left: 11px;
}

ul.contactInfo li a span strong {
    color: var(--primary);
    font-weight: 600;
}

ul.contactInfo li+li {
    margin-left: 10px;
}

.slideOne h2 {
    font-size: 6.125rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.main-slider h1 span {
    color: var(--primary);
}

.main-slider p::before {
    position: absolute;
    content: "";
    background: var(--primary);
    height: 100px;
    width: 4px;
    left: 0;
}

.slideOne h2 img {
    margin-left: 2rem;
}

.slideOne h4 {
    font-size: 1.3125rem;
    font-weight: bold;
    color: rgb(255 255 255 / 65%);
}

.slideOne h4 img {
    margin-right: 1.125rem;
}

.bnrimg11 {
    position: absolute;
    top: -4rem;
    left: -1rem;
    opacity: 0.1;
}

.bnrimg22 {
    position: absolute;
    top: 31%;
    opacity: 0.3;
}



/* !MAIN HERO SLIDER CSS */


/* SEARCH BAR CSS */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 10000;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: #fff !important;
    background: rgba(0, 0, 0, 0);
    font-size: 55px;
    line-height: 65px;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-family: arial;
}

#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
    background-color: limegreen;
    border: black;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    opacity: 1;
    padding: 10px 17px;
    font-size: 27px;
}

.srch-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.srch-btn .themeBtn {
    padding: 15px 120px;
    font-size: 1.25rem;
}


/* !SEARCH BAR CSS */


/* experiencesec] */

.bnrbottom {
    background: #F8F8F8;
    padding: 50px;
    margin-top: -12rem;
}

.bnrbox1 {
    display: flex;
    align-items: center;
    gap: 25px;
    border-bottom: 1px solid rgb(0 0 0 / 7%);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.bnrbox1 h4 {
    font-size: 1.375rem;
    font-weight: bold;
    color: #141422;
    margin: 0;
}

.bnrbottom h3 {
    font-size: 1.9375rem;
    font-weight: bold;
    color: #141422;
}

.bnrbottom p {
    font-size: 1rem;
    color: #797979;
    line-height: 1.8;
    margin: 0;
    width: 93%;
}

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

.expercntnt p {
    font-size: 1.375rem;
    color: #797979;
    font-style: italic;
    line-height: 1.4;
}

/* experiencesec] */


.mainHead {
    font-size: 3rem;
    font-weight: bold;
}

.subHead {
    font-size: 0.9375rem;
    font-weight: bold;
    color: var(--primary);
    text-transform: uppercase;
}


/* about-section */
.projectcntnt {
    display: flex;
    align-items: center;
    gap: 40px;
    border-top: 1px solid #EAEAEA;
    padding-top: 2rem;
}

section.project-done {
    padding-top: 0;
}

.projectcntnt p {
    font-size: 1rem;
    color: #797979;
    text-align: end;
    margin: 0;
    border-right: 1px solid #EAEAEA;
    padding-right: 40px;
}

.projectcntnt h2 {
    font-size: 3.75rem;
    font-weight: bold;
    color: var(--primary);
}

.projectcntnt h2 span {
    display: block;
    font-size: 1.25rem;
    font-weight: bold;
    color: #141422;
}

/* about-section */


/* trust-section */
.trust-section {
    background: url(../images/trustedbg.webp)center/cover no-repeat;
    padding: 4rem;
}

.trust-section h2 {
    font-size: 3.1875rem;
    color: #fff;
    font-weight: bold;
}

.trust-section h2 span {
    color: var(--primary);
}

/* trust-section */


/* trust-services */
.service-top {
    text-align: center;
    margin-bottom: 2rem;
}

.serrvimg {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-wrap figure img {
    width: 100%;
}

.serrvimg h4 {
    margin: 0;
    font-size: 40px;
    font-weight: bold;
    color: rgb(96 197 0 / 14%);
}

.service-cntnt h3 {
    font-size: 24px;
    font-weight: bold;
    margin: 18px 0 7px 0;
    color: #282828;
}

.service-cntnt p {
    font-size: 1rem;
    color: #797979;
    line-height: 1.8;
    margin: 0;
}

.service-cntnt {
    background: #F7F7F7;
    padding: 47px 40px 27px 32px;
}

.service-wrap2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    background: #F7F7F7;
    padding: 39px 29px;
}

.service-wrap2 h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0;
}

.service-wrap2 p {
    font-size: 1rem;
    color: #797979;
    margin: 0;
}

/* trust-services */


/* building-product */
.building-product {
    background: url(../images/productservbg.webp)center/cover no-repeat;
    padding: 7rem 0;
}

.reviewMain figure img {
    width: 100%;
}

.buildSlider .swiper-pagination-clickable .swiper-pagination-bullet {
    background: var(--primary);
    width: 35px;
    border-radius: 0;
    height: 7px;
    border-radius: unset;
    opacity: 1;
}

.buildSlider .swiper-pagination-clickable .swiper-pagination-bullet-active {
    background: rgb(96 197 0 / 50%);
}

.swiper.buildSlider {
    padding-bottom: 4rem;
}

.building-product .service-top {
    margin-bottom: 50px;
}

/* building-product */


/* future-section */
.future-box .mainHead {
    font-size: 34px;
}



.future-box p {
    font-size: 1.125rem;
    margin: 30px 0 16px 0;
}

.future-box ul {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 2rem;
}

.future-box ul li {
    color: #48920D;
}

.future-box {
    padding: 55px 32px;
    background: #F3F3F3;
}

.future-user p {
    font-size: 1.375rem;
    font-weight: 600;
    color: #282828;
    line-height: 1.6;
    font-style: italic;
    margin: 22px 0 24px 0;
}

.future-user h2 {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
}

.future-user h5 {
    font-size: 1rem;
    color: #797979;
}

.future-user figure img {
    border: 4px solid var(--primary);
    border-radius: 50%;
}

.futureSlider .swiper-pagination-clickable .swiper-pagination-bullet {
    background: var(--primary);
    width: 35px;
    border-radius: 0;
    height: 7px;
    border-radius: unset;
    opacity: 1;
}

.futureSlider .swiper-pagination-clickable .swiper-pagination-bullet-active {
    background: rgb(96 197 0 / 50%);
}

.swiper.futureSlider .swiper-pagination {
    left: 11rem;
}

/* future-section */

/* build-company */
.build-company {
    background: var(--black);
    padding: 3rem 0;
}

.build-companycntnt p {
    font-size: 1rem;
    color: #B8B8B8;
    line-height: 1.8;
    width: 93%;
}

ul.build-logo {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 7rem;
    margin-right: -13rem;
}

ul.build-logo li img {
    margin-right: 10rem;
}

/* build-company */


/* news-letter */
.contactForm .form-group .form-control {
    border-left: unset;
    border-radius: unset;
    border-right: unset;
    border-top: unset;
    border: 1px solid #EAEAEA;
    height: 55px;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: none !important;
}

.contactForm .form-group .form-control:focus {
    border-color: var(--primary);
}


.contact-section {
    padding: 72px 0 8rem 0;
    background-color: #f8f8f8;
}

.contactForm .form-group textarea {
    height: 150px !important;
}

form.contactForm button.themeBtn {
    border: unset;
}

.need-form .mainHead {
    font-size: 40px;
    margin-bottom: 30px;
}

.need-content-right p {
    font-size: 1rem;
    color: #666565;
    line-height: 1.8;
    margin: 24px 0;
}

ul.needlist1 {
    display: flex;
    align-items: center;
    gap: 2rem;
}

ul.needlist1 li h3 span {
    display: block;
    font-size: 1.25rem;
    font-weight: bold;
    color: #141422;
}

ul.needlist1 li h3 {
    font-size: 3.75rem;
    color: var(--primary);
    font-weight: bold;
}

ul.needlist1 li+li {
    padding-left: 2rem;
    border-left: 1px solid #E4E4E4;
}

.green-need p {
    font-size: 1.3125rem;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
    color: #ECECEC;
}

.green-need {
    background: var(--primary);
    padding: 37px 81px;
    margin-top: 2.2rem;
}

.green-need a {
    color: #fff;
    margin-top: 20px;
    display: block;
    font-size: 0.9375rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: underline !important;

}

.green-need a i {
    transform: rotate(322deg);
    margin-left: 8px;
}

/* news-letter */


/* article  */
.recent-top {
    text-align: center;
    margin-bottom: 2rem;
}

.recent-wrap figure img {
    width: 100%;
}

.recent-wrap figure {
    position: relative;
}

.recent-cntnt {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
}

.recent-cntnt h2 {
    font-size: 23px;
    font-weight: bold;
    color: #fff;
    line-height: 1.4;
}

.recent-cntnt a {
    font-size: 0.875rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
}

.recent-wrap h5 {
    background: var(--primary);
    width: fit-content;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9375rem;
    color: #fff;
    margin: 0;
    position: absolute;
    top: 14px;
    right: 31px;
}

.recent-wrap figure img {
    width: 100%;
}

.recent-cntnt a::before {
    position: absolute;
    content: "";
    background: var(--primary);
    width: 15px;
    height: 5px;
    right: -1.5rem;
    top: 50%;
    clip-path: polygon(29% 0, 86% 0, 57% 100%, 0% 100%);
}

.recent-section {
    padding-top: 2rem;
}

/* article  */

/* footer */
footer {
    background: var(--black);
    padding-top: 6rem;
}

.newsForm {
    display: flex;
}

.newsForm input {
    border: 1px solid #B3B3B3;
    border-radius: unset;
    height: 53px;
    background: transparent;
    color: #000;
    padding-left: 1.8rem;
    box-shadow: unset;
    outline: none;
}

.newsForm input::placeholder {
    color: #B3B3B3;
    font-size: 1rem;
    font-weight: 400;
}

.newsForm button {
    color: #fff;
    font-weight: 600;
    border: unset;
    padding: 14px 1.9em;
    background: var(--primary);
    position: absolute;
    right: 60px;
    font-size: 1rem;
    text-transform: capitalize;
}

footer h3 {
    font-size: 1.375rem;
    font-weight: bold;
    color: #fff;
}

.footerfirst p {
    font-size: 1rem;
    margin: 14px 0 30px 0;
    color: #B5B5B5;
    line-height: 2;
}

.footerfirst {
    padding: 36px 45px 45px 45px;
    background: rgb(255 255 255 / 7%);
}

.quicklist li a span {
    color: #B5B5B5;
    margin-left: 12px;
}

.quicklist li a i {
    color: var(--primary);
    font-size: 1.375rem;
}

.quicklist li+li {
    margin-top: 14px;
}

.quicklist {
    margin-top: 2rem;
}

.contactInfos {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgb(255 255 255 / 12%);
}

.contactFlex {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contactText {
    flex: 1;
}

.contactFlex figure {
    background: var(--primary);
    width: 50px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
}

.contactText span {
    color: #B5B5B5;
}

.copyRight {
    border-top: 1px solid rgb(255 255 255 / 12%);
    padding: 25px 0;
    margin-top: 5rem;
}

.copyRight p {
    text-align: center;
    margin: 0;
    color: #B5B5B5;
}

/* footer */

.quicklist li a span:hover {
    color: var(--primary);
}



.innerBan .overlay {
    position: absolute;
    text-align: left;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.innerBan h2 {
    font-size: 65px;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: bold;
}

.innerBan {
    position: relative;
}

section.project-done.aboutpage {
    padding-top: 5rem;
}

.aboutpagecntnt p {
    font-size: 1rem;
    color: #797979;
    line-height: 1.8;
    margin: 0;
}

.aboutpagecntnt figure {
    margin: 40px 0;
}


.recent-section.blog-page {
    padding: 5rem 0;
}

.recent-section.blog-page .recent-wrap {
    margin-bottom: 30px;
}




.blog-page .recent-cntnt {
    bottom: 4rem;
}


.project-page-section {
    background: url(../images/projectpagebg.png)center/cover no-repeat;
    padding: 6rem 0;
}

.projectpageimg figure {
    margin-bottom: 40px;
}

.reviewpage .row+.row {
    margin-top: 30px;
}



.services-page .row+.row {
    margin-top: 40px;
}