:root {
    --primarycolor: #9EC72D;
    --secondarycolor: #92D5FF;
    --accentcolor: #1B69A7;
    --othercolor: #000000;
    --headingclr: #113781;
    --textclr: #000000;
    --white: #ffffff;
    --black: #9EC72D;
    --bgwhtxtclr: #ffffff;
    --bgdktxtclr: #9EC72D;
    --bgdkclr: #113781;
    --bgwhclr: #E9F7FF;
    --headfont: "Plus Jakarta Sans", sans-serif;
    --parafont: "Plus Jakarta Sans", sans-serif;
}

body {
    color: var(--textclr);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    font-family: var(--parafont);
    overflow-x: hidden;
}

a {
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s ease-out;
}

a:hover {
    color: var(--blue);
}

a:focus, input:focus, textarea:focus, button:focus {
    outline: 0;
    box-shadow: 0;
}

dl, ol, ul {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
}

p {
    color: var(--headclr);
    font-family: var(--headfont);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--headclr);
    font-family: var(--headfont);
}

.container {
    max-width: 1580px;
    width: 100%;
}

section {
    position: relative;
}

ul.lists {
    margin-bottom: 20px;
}

ul.lists li {
    margin: 5px 0;
}

/* --- Scrollbar Code --- */
::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: var(--primarycolor);
}

::-webkit-scrollbar-thumb {
    background: var(--othercolor);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primarycolor);
}

/* --- Button Code --- */
.custom-btn {
    font-family: var(--parafont);
    overflow: hidden;
    position: relative;
    padding: 16px;
    border-radius: 0px;
    text-align: center;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    background: #000;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    z-index: 1;
    display: inline-flex;
}

.custom-btn:before {
    left: -30px;
    transform: translate(-50%, -50%);
}

.custom-btn:after {
    right: -30px;
    transform: translate(50%, -50%);
}

.custom-btn:before, .custom-btn:after {
    position: absolute;
    top: 50%;
    content: "";
    width: 30px;
    height: 30px;
    background-color: var(--black);
    border-radius: 50%;
    z-index: -1;
}

.custom-btn:hover:before {
    -webkit-animation: criss-cross-left 0.8s both;
    animation: criss-cross-left 0.8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.custom-btn:hover:after {
    -webkit-animation: criss-cross-right 0.8s both;
    animation: criss-cross-right 0.8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.custom-btn span:after {
    content: '\2192';
    font-size: 32px;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    line-height: 1.3;
    transition: all 0.3s ease-in-out;
}

.custom-btn:hover span:after {
    transform: translateX(10px);
}

.dark-btn {
    color: var(--white);
    background-color: var(--primarycolor);
    border: 1px solid var(--primarycolor);
}

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

.light-btn {
    color: var(--black);
    border: 1px solid var(--secondarycolor);
    background-color: var(--secondarycolor);
}

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

.border-btn {
    color: var(--secondarycolor);
    border: 1px solid var(--secondarycolor);
}

.border-btn:hover {
    color: var(--white);
    border: 1px solid var(--secondarycolor);
}

.subtitle {
    color: var(--primarycolor);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* --- Header Code --- */
header {
    top: 0;
    width: 100%;
    z-index: 999;
    position: absolute;
    left: 0;
}

header .nav-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
}

header.fixed-header .header-btn {
    background-color: var(--secondarycolor);
    color: var(--bgdktxtclr);
}

header.fixed-header header .nav-header {
}

header.fixed-header .top-header {
    opacity: 0;
    visibility: hidden;
    height: 0;
    padding: 0;
}

header.fixed-header {
    position: fixed !important;
    animation: smoothScroll 1s forwards;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    background: #000;
    z-index: 9999;
}

header .logo-col img {
    transition: all 0.3s ease-in-out;
    margin: auto;
    display: block;
}

header.fixed-header .logo-col img {
    max-width: 220px;
}

.logo-col a {
    display: inline-block;
}

.nav-col {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
}

.nav-col h4 {
    color: #FFF;
    text-align: right;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.nav-col h4 a {
    color: #fff;
}

.nav-col h4 a:hover {
    color: #9EC72D;
}

/* CTA Section */
.cta-section {
    color: #fff;
    padding: 154px 0px;
    background-color: #000;
    background-size: cover;
    background-position: center top;
}

.cta-section h2 {
    margin-bottom: 0;
    color: #fff;
}

.cta-section h2 span {
    font-weight: 700;
}

.cta_content_wrp {
    background: #000;
    padding: 40px 40px;
}

.cta_content_wrp p {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    padding: 18px 0px 25px;
}

.cta-section h6 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px
}

.cta-section .banner_btn a {
    background: #9EC72D;
    color: #000;
    padding: 24px 37px;
}

.cta_btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.cta-section .btn {
    display: inline-block;
    padding: 16px 25px;
    margin: auto;
    color: #000;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 8px;
    background: #FF8000;
    border: 1px solid #FF8000;
}

.cta-section .btn svg {
    position: relative;
    top: -1px;
    padding-left: 5px;
}

.cta-section .btn:hover {
    border: 1px solid #FFB425;
    color: #000;
}

.cta-section .custom-btn:before, .cta-section .custom-btn:after {
    background: #fff;
}

/* --- Footer Code --- */
footer {
    background-color: var(--headclr);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    color: var(--bgdktxtclr);
    font-family: var(--mulishfont);
    font-size: 14px;
    border-radius: 15px 15px 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.bottom-footer {
    background-color: var(--bgdkclr);
    width: 100%;
}

.bottom-footer .copyright-row {
    justify-content: center;
    align-items: center;
    padding: 25px 15px;
}

.bottom-footer .copyright-row>* {
    width: fit-content;
    padding: 0;
    margin: 0;
    color: var(--white);
}

/* Custom Styles */
.footer_wrapper {
    background-image: url('../img/footer_bg.png');
    width: 100%;
    background-size: cover;
    background-position: center center;
}

h2.h2_title {
    color: #000;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    margin: 0;
    text-align: center;
    position: relative;
}

h6.h6_title {
    color: #343434;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

h2.h2_title span span {
    font-weight: 700;
}

span.border_line {
    border-bottom: 1px solid #9EC72D;
    display: inline-block;
    padding-bottom: 5px;
}

.footer_row {
    padding: 70px 30px;
}

.footer_row h2 {
    color: #fff;
}

.contact_details {
    display: flex;
    justify-content: space-evenly;
    padding-top: 70px;
}

.footer_detail_box {
    max-width: 22%;
    width: 100%;
}

p.c_heading {
    color: #9EC72D;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.c_para p {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}

.c_para p a {
    color: #fff;
}

.c_para p a:hover {
    color: #9EC72D;
}

.c_icon {
    text-align: center;
    height: 100px;
    margin-bottom: 25px;
}

.copyright {
    border-top: 1px solid #D8D8D8;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    padding: 30px 0px;
}

/* --- Back To Top Code --- */
.back-to-top {
    position: fixed;
    z-index: 9;
    bottom: 150px;
    right: -2px;
    background-color: var(--primarycolor);
    padding: 10px 12px 5px;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    box-shadow: 0 0 10px #979797;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

#btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top i {
    transition: all 0.3s ease-in-out;
    color: var(--white);
}

.back-to-top:hover {
    background-color: var(--darkclr);
}

.back-to-top:hover i {
    color: var(--white);
}

/* ----- Faqs --------*/
.faq-section {
    padding: 60px 0px;
    background-image: url('../img/faqs_bg.png');
    background-size: cover;
    background-position: center center;
}

.faqs_top_content {
    position: relative;
}

.faqs_content_wrp {
    padding-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.faq_img {
    text-align: right;
}

.faqs_top_content h2.maintitle span {
    display: inline-block;
    font-weight: 400;
}

.faqs_content_wrp .accordion {
    --bs-accordion-border-color: transparent;
    --bs-accordion-border-radius: 0px !important;
    box-shadow: none !important;
    max-width: 1300px;
    width: 100%;
}

.accordion-item {
    /* width: 50%; */
    padding: 0px 44px;
    background: transparent;
    box-shadow: none !important;
}

.faqs_content_wrp .accordion-item {
    margin-bottom: 10px;
}

.accordion-item:not(:first-of-type) {
    border: none;
}

.accordion-body {
    background: #fff;
    color: #000;
    padding: 15px 15px 20px;
    font-size: 16px !important;
    font-weight: 500;
}

.accordion-body p {
    color: #4C4C4C;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.accordion-button::after {
    display: none;
}

.faqs_content_wrp button.accordion-button.collapsed {
    display: flex;
    height: 68.493px;
    padding: 15px 42px 15px 15px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    color: #0F0106 !important;
    font-size: 20px;
    font-weight: 700;
    background-color: #F8FAF2 !important;
    background-image: url('../img/plus.png');
    background-repeat: no-repeat;
    background-position: 99% center;
    box-shadow: none;
    border: none !important;
    border-bottom: 2px solid #9EC72D !important;
    outline: none !important;
    border-radius: 0px !important;
}

.faqs_content_wrp button.accordion-button {
    color: #0F0106;
    font-size: 20px;
    font-weight: 700;
    height: 68.493px;
    padding: 15px 42px 15px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 0px !important;
    background-color: #9EC72D !important;
    background-image: url('../img/minus.png');
    background-repeat: no-repeat;
    background-position: 99% center;
    align-content: normal;
    border: none !important;
    border-bottom: 2px solid #9EC72D !important;
}

.faqs_content_wrp .accordion-button:focus {
    border: none !important;
    box-shadow: none !important;
}

/* --- Contact Form 7 --- */
.wpcf7 form span.wpcf7-not-valid-tip {
    display: none;
}

.wpcf7 form input.wpcf7-not-valid, .wpcf7 form select.wpcf7-not-valid {
    border: none;
    border-bottom: 1px solid #ff0000;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: transparent;
    color:#fff;
    font-size:12px;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0;
    text-align: center;
}

/* --- Home Page Code --- */
.banner-section {
    background-color: var(--primarycolor);
}

.banner-section .container {
    position: relative;
    z-index: 9;
    height: 100%;
}

.banner-section .row {
    height: 100%;
    align-items: flex-end;
}

.b-content-col {
    display: flex;
    align-items: flex-end;
    padding-right: 4%;
}

.banner-section {
    display: flex;
    align-items: center;
}

.banner-content-wrp {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    padding-top: 200px;
    position: relative;
	padding-bottom:60px;
}
.banner-content-wrp:after{
    content:'';
    position: absolute;
    left:0px;
    top:0px;
    width:100%;
    height:100%;
    background-color:hwb(0deg 0% 100% / 12%);
}
.banner_content {
    margin-bottom: 60px;
}

.banner-section h1 {
    color: #FFF;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}
.banner_content h2 {
    font-size: 20px;
    color: #9ec72d;
    font-weight: 700;
    padding: 20px 0px;
}

.banner-section p {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    padding: 24px 0px;
}

.form_wrp_box {
    background: #9EC72D;
    box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.42);
    display: flex;
    padding: 40px 20px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
/*     margin-bottom: -140px; */
}

.form_wrp_box h3 {
    color: #000;
    font-size: 51.603px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
}

.about_services {
    padding: 40px 0px;
}

.abt_service_content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about_services .row {
    row-gap: 28px;
    margin-bottom: 28px;
}

p.abt_para {
    margin-bottom: 35px;
}

h2.maintitle, h2 {
    font-size: 48px;
    font-weight: 400;
    color: #0F0106;
}

h2.maintitle strong {
    font-weight: 800;
}

h2 strong {
    font-weight: 800;
}

h6 {
    color: #343434;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

/* --- Inner Page Code --- */
.inner-banner-section {
    padding: 140px 0 100px 0;
    background-color: var(--darkclr);
    position: relative;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

section.abt_page .row:nth-child(2n) {
    flex-direction: row-reverse;
    padding: 80px 0px;
}

.inner_banner_content_wrp h4 {
    color: #FFF;
    font-size: 33px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 10px 0 0;
}

.inner_banner_content_wrp h1 {
    color: #FFF;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    padding: 5px 0px 0px;
}

.inner_banner_content_wrp h6 {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
}

.inner_banner_content_wrp h1 span {
    font-weight: 700;
}

/* --- Animation Code --- */
@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes criss-cross-left {
    0% {
        left: -20px;
    }

    50% {
        left: 50%;
        transform: scale(2.0);
    }

    100% {
        left: 50%;
        transform: scale(15.0);
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px;
    }

    50% {
        right: 50%;
        transform: scale(2.0);
    }

    100% {
        right: 50%;
        transform: scale(15.0);
    }
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

/* -------- testimonials --------------*/
.testimonial_wrapper {
    padding: 60px 0px 0px;
    background-image: url('../img/client_bg.png');
    background-position: center center;
    background-size: cover;
}

.testimonial_top_content h2 {
    text-align: left;
}

.testimonial_top_content h2.h2_title span span {
    display: block;
}

.testimonial_top_content {
    margin-bottom: 30px;
}

.innt_image {
    position: relative;
    padding-right: 45px;
    display: flex;
    justify-content: flex-end;
}

.counter-wrap {
    background: #000;
    position: absolute;
    bottom: 0;
    display: flex;
    width: 198px;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.counter.started {
    color: #FFF;
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    width: 100%;
}

.counter-wrap .label {
    color: #FFF;
    text-align: center;
    font-size: 19.929px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

div#testimonialCarousel h4 {
    color: #000;
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 12px 0px 10px;
}

div#testimonialCarousel p {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

div#testimonialCarousel {
    padding-top: 30px;
}

.testimonial-slider {
    margin: 35px -10px 0px;
}

.inn-testimonial-card {
    border: 1px solid #9EC72D;
    width: 230px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    box-sizing: border-box;
}

.testimonial-card {
    text-align: center;
    margin: 0px 10px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.testimonial-card img {
    display: block;
    max-width: 100%;
}

.slick-dots {
    position: relative !important;
    bottom: 0px !important;
    display: flex !important;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    justify-content: center;
}

.slick-dots li {
    position: relative;
    display: flex;
    align-items: center;
    width: 28px;
    height: 28px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    justify-content: center;
}

.slick-dots li button {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 19px !important;
    height: 19px !important;
    background: #D9D9D9;
    border-radius: 100%;
    padding: 0;
}

.slick-dots li.slick-active button {
    width: 28px!important;
    height: 28px!important;
    background: #9EC72D;
}

.slick-prev:before, .slick-next:before {
    color: #000;
    font-size: 24px;
}

.slick-dots li button:before {
    font-size: 8px;
    color: #fff;
    opacity: 1;
    right: 0;
    bottom: 0;
    left: 0px;
    top: 0px;
    margin: auto;
}

.slick-dots li.slick-active button:before {
    color: #FFB425;
    font-size: 15px;
    opacity: 1;
}

.slick-prev {
    left: -25px;
}

.slick-next, .slick-prev {
    top: 0;
    bottom: 0;
    margin: auto 0px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 33px;
    height: 76px;
    background-size: cover;
    background-position: center center;
    transition: .4s;
    z-index: 99;
}

.slick-prev {
    left: -40px !important;
    background-image: url('../img/formkit_right.png');
}

.slick-next {
    right: -40px !important;
    background-image: url('../img/formkit_left.png');
}

.slick-prev:hover {
    background-image: url('../img/formkit_right.png');
}

.slick-next:hover {
    background-image: url('../img/formkit_left.png');
}

.slick-next:before, .slick-prev:before {
    display: none;
}

.common_wrp .banner_btn {
    padding: 40px 0px 80px;
    text-align: center;
}

.common_wrp .banner_btn a {
    padding: 16px 50px;
}

/* -------- Project section -------- */
.projects-section {
    padding: 60px 60px;
    text-align: center;
    background: #F9FFE9;
}

.gallery-item {
    width: 25%;
    border: 6px solid transparent;
    overflow: hidden;
}

.acf-gallery-wrap {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0 25px;
}

.gallery-item img {
    width: 100%;
    transition: 0.4s;
    background-color: #000;
    height: 326px;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.09);
    opacity: .6;
}

.banner_btn.gallery a {
    padding: 16px 30px;
}

.projects-top-content h2 {
    margin-bottom: 10px;
}

.projects-top-content {
    margin-bottom: 40px;
}

/* ------------- Counter section ----------------- */
.abt_image {
    padding: 0px;
    width: 44%;
}

.abt_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about_content_wrp .row {
    background: #142129;
    margin: 0;
}

.abt_content {
    display: flex;
    align-items: center;
    padding: 55px;
    width: 56%;
}

.abt_content h2,.abt_content h6, .abt_content p, .abt_content li {
    color: #fff;
}

.abt_content p {
    margin-bottom: 15px;
}

.inn_abt_content ul {
    padding: 15px 0px 22px;
}

.abt_content li {
    list-style: none;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background-image: url(../img/charm_square-tick1.png);
    background-repeat: no-repeat;
    background-position: 0px center;
    padding: 6px 0px;
    padding-left: 44px;
    margin-bottom: 9px;
}

.abt_content .banner_btn a {
    background: #fff;
    color: #000;
    padding: 16px 30px;
}

.counter-section {
    padding: 80px 0px 0;
    background-size: cover;
    position: relative;
    background-color: #fff;
}

.wrap {
    display: flex;
    justify-content: space-between;
    background: #9EC72D;
    padding: 55px 158px;
    margin-top: -1px;
}

.wrap .inn-icon {
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrap .counter {
    color: #000;
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    margin-bottom: 10px;
}

.wrap .label {
    color: #000;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.full_wrp {
    background-size: cover;
    background-position: center bottom;
}

/*  --------- Our Process -------------- */
.process-section {
    text-align: center;
    padding: 60px 0px 40px;
}

.process-top-content {
    margin-bottom: 60px;
}

.process-top-content h2, .projects-top-content h2, .testimonial_top_content h2, .inn_abt_content h2 {
    margin: 10px 0px
}

.process-top-content p {
    color: #4C4C4C;
}

span.num-wrp {
    background: #9EC72D;
    display: inline-flex;
    padding: 0 5px;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    /* 168.75% */
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}

.process-step {
    width: 100%;
    text-align: center;
    position: relative;
    border: 1px solid #9EC72D;
    max-width: 19%;
    padding: 22px 20px 30px;
}

.process-step h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.process-step span.num {
    color: #0F0106;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    padding: 6px 33px 15px;
    min-height: 70px;
    display: block;
}

.process-step p {
    margin: 0;
    color: #4C4C4C;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    padding: 0 0px;
}

.process-step .icon {
    z-index: 1;
}

.pinn-icon {
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.pinn-icon img {
    display: flex;
    align-items: center;
    max-height: 100px;
}

/* --------------- Service section --------------- */
.services-section {
    padding: 250px 0px 20px;
}

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

.services-slider {
    margin: 45px -10px 20px;
}

.green_bg {
    background: #9EC72D;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.green_bg .services-top-content {
    padding: 0px 30px;
    text-align: left;
}

.green_bg .services-top-content p {
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    color: #000;
}

.services-top-content p {
    color: #000;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

.services-grid {
    gap: 30px;
    margin: 0 auto;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

.service-card {
    background: #FFF;
    transition: transform 0.3s ease;
    position: relative;
    margin: 0px 10px;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-content {
    padding: 22px 0px 0px;
}

.service-card-content > div {
    width: 100%;
}

.services-top-content h6, .process-top-content h6, .projects-top-content h6, .testimonial_top_content h6, #testimonialCarousel h6, .inn_abt_content h6 {
    display: inline;
    border-bottom: 3px solid #9EC72D;
    padding-bottom: 2px;
}

.services-top-content h2 {
    margin: 8px 0px;
}

.service-card p {
    color: #000;
    margin-bottom: 20px;
}

.service_img {
    position: relative;
}

.service-card-content h3 {
    color: #4C4C4C;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 25px;
}

.service-card-content li {
    color: #4C4C4C;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    background-image: url('../img/charm_square-tick.svg');
    background-repeat: no-repeat;
    background-position: 0px 2px;
    list-style: none;
    padding-left: 50px;
    margin-bottom: 20px;
}

.service_icon_repeater {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 89px;
    margin-bottom: 60px;
}

.service_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 40px;
}

.service_btn .btn {
    display: inline-block;
    padding: 16px 25px;
    margin: auto;
    color: #000;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 8px;
    background: #FF8000;
    border: 1px solid #FF8000;
}

.service_btn .btn svg {
    position: relative;
    top: -1px;
    padding-left: 5px;
}

.service_btn .btn:hover {
    border: 1px solid #FFB425;
    color: #000;
}

.service_btn .custom-btn:before, .service_btn .custom-btn:after {
    background: #fff;
}

.counter-box {
    display: flex;
    gap: 20px;
}

.map_iframe {
    height: 700px;
}

.map_iframe iframe {
    width: 100%;
    height: 100%;
}

.form_shortcode input, .form_shortcode select, .form_shortcode textarea {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    padding: 0px;
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #000;
    outline: none !important;
    box-shadow: none !important;
    background-color: transparent;
    color: #000;
    width: 100%;
    height: 55px;
}

.form_shortcode textarea {
    height: 190px;
    resize: none;
    padding: 15px 0px;
}

.form_shortcode .row {
    display: flex;
    justify-content: space-between;
}

.form_shortcode .col-md-6, .form_shortcode .col-md-12 {
    padding: 0px 10px;
    margin-bottom: 10px;
}

select {
    background-image: url(../img/select.png);
    background-repeat: no-repeat;
    background-position: 100% 15px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.submit-field input {
    background: #000;
    border: 1px solid #000;
    max-width: 248px;
    gap: 10px;
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    transition: 0.4s;
    display: flex;
    width: 248px;
    height: 65px;
    padding: 16px;
}

.submit-field input:hover {
    background: #fff;
    color: #000;
}

::-webkit-input-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
    opacity: 1;
}

:-moz-placeholder {
    color: #000;
    opacity: 1;
}

span.wpcf7-spinner {
    position: absolute;
    margin: auto !important;
    right: 0;
    left: 0;
}

.textarea-field {
    margin-bottom: 5px;
}

.submit-field {
    position: relative;
    margin: 0;
}

span.ser_title {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    background: #002E6A;
    height: 82px;
    display: flex;
    align-items: center;
    padding: 5px;
}

span.ser_title h3 {
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    text-align: left;
    padding: 10px;
    margin: 0;
}

.why_choose_us_wrapper {
    padding: 70px 0px;
}

.why_choose_content h6, .why_choose_content h2 {
    text-align: center;
}

.why_choose_content h2 span span {
    display: block;
    text-transform: capitalize;
}

div#why_choose_us .row {
    row-gap: 35px;
}

.why_icon {
    height: 112px;
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}

.why_content h5 {
    color: #0F0106;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 10px 0px;
}

.why_content p {
    color: #4C4C4C;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.why-card {
}

.why_choose_image {
    display: flex;
    justify-content: flex-end;
}

.why_choose_content h2.h2_title {
    font-size: 38px;
    margin-bottom: 55px;
}

.why_btn a {
    width: 100%;
    border-radius: 8px;
    border: 3px solid #FF8000;
    color: #FFF;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
}

.why_btn a:after, .why_btn a:before {
    display: none;
}

.why_btn {
}

.google_map iframe {
    height: 100%;
    width: 100%;
}

.google_map {
    height: 500px;
}

.green_bg .custom-btn:after, .green_bg .custom-btn:before {
    background: #fff;
    box-shadow: inset 0 0 3px #000;
}

.green_bg .custom-btn {
    border: 1px solid #000;
}

.banner_btn.ser_btn {
    text-align: center;
    margin-bottom: -25px;
}

.inwhy_choose_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.why_choose_us_wrapper .row {
    margin-bottom: 35px;
}

.why_choose_us_wrapper .row .row {
    margin-bottom: 0;
}
.visit_wrp {
    color: #FFF;
    font-size: 15.147px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.visit_wrp span {
    font-weight: 700;
}

.visit_div p {
    padding: 0;
}

p.visit_address {
    color: #FFF;
    font-size: 12.118px;
    font-style: normal;
    font-weight: 400;
    line-height: 18.206px; /* 175% */
}

p.visit_time {
    color: #FFF;
    font-size: 10.603px;
    font-style: italic;
    font-weight: 400;
    line-height: 21.206px;
}

.visit_div {
    position: relative;
    padding-left: 20px;
    margin-top: 7px;
}

.visit_div svg {
    position: absolute;
    left: 0;
    top: 4px;
}

.cta_content_wrp .banner_btn {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
select option {
    color: #000;
}
section.for-section {
    padding: 40px 0px;
}

.btn_class {
    margin-top: 10px;
}

.mobile-view {
	display:none;
}
