/* Imports */


/* Icons */

@import url("https://site-assets.fontawesome.com/releases/v6.0.0/css/all.css");

/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Quicksand:wght@300..700&display=swap');
:root {
    --white: #FFFFFF;
    --black: #000;
    --theme-color: #00FF00;
    --primary: #1F9D00;
    --secondary: #001837;
    --main-font: "Open Sans", sans-serif;
    --heading-font: "Quicksand", sans-serif;
}

::selection {
    background-color: var(--secondary);
    color: var(--white);
}


/* General Styling */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    list-style-type: none;
    font-family: var(--main-font);
    overflow-wrap: break-word;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: clip;
}

a,
button {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: inline-block;
}

ul,
ol,
dl,
address,
label,
figure {
    margin-bottom: 0;
}

p {
    font-weight: 500;
    line-height: 1.75;
    color: #565656;
}

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

:is(h1,
h2,
h3,
h4) {
    font-family: var(--heading-font);
}

span {
    font: inherit;
}

.theme--color {
    color: var(--theme-color);
}

.color--primary {
    color: var(--primary);
}

.color--secondary {
    color: var(--secondary);
}


/* LENIS */

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}


/* PRELOADER */

body.loading {
    overflow: hidden;
}

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: start;
    justify-content: start;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 11113;
    background: var(--white);
}

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


/* SEARCHPOPUP */

.searchPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    transition: all 0.5s ease-in-out;
    transform: translate(0, -100%) scale(0, 0);
    opacity: 0;
    z-index: 999999;
}

.searchPopup.open {
    transform: translate(0, 0) scale(1, 1);
    opacity: 1;
}

.searchPopup input[type="search"] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: fit-content;
    color: var(--white);
    background: #414141bd;
    font-size: 3.125rem;
    line-height: 65px;
    text-align: center;
    border: none;
    padding: 0 1.875rem;
    outline: none;
}


/* .searchPopup .btn {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: 61px;
	margin-left: -45px;
	background-color: limegreen;
	border: var(--black);
} */

.searchPopup .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: var(--white);
    opacity: 1;
    padding: 0.75rem 1.25rem;
    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;
    margin-top: 1rem;
}


/* THEMEBTN */

.themeBtn {
    width: fit-content;
    display: block;
    background: var(--primary);
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    text-transform: capitalize;
    padding: 1rem 2.25rem;
    border: 1px solid transparent;
    border-radius: 3.125rem;
    overflow: hidden;
}

.themeBtn img {
    vertical-align: middle;
    margin-left: 0.5rem;
}

.themeBtn--outline {
    background: var(--white);
    border-color: var(--secondary);
    color: var(--secondary);
}

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


/* HEADINGS */

.heading {
    font-size: 3.4375rem;
    line-height: 1;
    font-weight: 600;
    /*overflow: hidden;*/
}

.subHeading {
    font-size: 0.8125rem;
    text-transform: uppercase;
    color: #001837;
    margin-bottom: 0;
    overflow: hidden;
}

:is(.heading,
.subHeading) .char {
    display: inline !important;
}


/* HEADER */

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.header-top ul {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.header-top ul li a {
    color: var(--secondary);
}

.header-top ul li a:hover {
    color: var(--primary);
}

.header-top ul li a i {
    font-size: 1.25rem;
    color: var(--primary);
    margin-right: 0.25rem;
    vertical-align: middle;
}

.header-top ul li a img {
    width: 20px;
    filter: brightness(0) saturate(100%) invert(9%) sepia(18%) saturate(6541%) hue-rotate(194deg) brightness(91%) contrast(106%);
    transition: all 300ms ease-in-out;
}

.header-top ul li a:hover img {
    filter: brightness(0) saturate(100%) invert(37%) sepia(84%) saturate(1283%) hue-rotate(76deg) brightness(94%) contrast(101%);
}

.header-main {
    border-top: 1px solid #00000020;
    padding: 1rem 0;
}

.header-main__logo {
    width: 280px;
}

.header-main__logo>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-main__nav {
    align-items: center;
    gap: 3rem;
}

.header-main__nav li a {
    color: var(--black);
    font-size: 1rem;
    font-weight: 500;
    padding: 0 !important;
    text-transform: capitalize;
    position: relative;
}

.header-main__nav li a:hover {
    color: var(--primary);
}

.header-main__nav li:last-child a {
    font-size: 1.25rem;
}

.header-main__btn {
    margin-left: 3rem;

}


/* Banner */

.banner {
    height: 800px;
    background: url(../images/banner.png) no-repeat center/cover;
    border-radius: 1rem;
    margin: 0 1.5rem;
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner::before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(-90deg, black, transparent 70%);
    position: absolute;
    inset: 0;
}

.banner h6 {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
}

.banner h6 img {
    margin-left: 1rem;
}

.banner h1 {
    font-size: 5rem;
    font-weight: bold;
    line-height: 1;
    color: var(--white);
    margin: 0;
}


/* About Us */

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

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

.about-content__contactQuote div span {
    color: #565656;
    font-size: 0.875rem;
    display: block;
}

.about-content__contactQuote div a {
    color: #001837;
    font-size: 1.5rem;
}

.about-content__contactQuote div a:hover {
    color: var(--primary);
}

.about-card {
    width: 100%;
    height: 350px;
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
}

.about-card :is(figure,
img) {
    width: 100%;
    height: 100%;
}

.about-card figure img {
    object-fit: cover;
}

.about-card figure figcaption {
    width: max-content;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 1.5rem 3rem 0.5rem;
    font-size: 1.25rem;
    font-family: var(--heading-font);
    font-weight: 600;
    border-radius: 3.125rem 3.125rem 0 0;
}


/* Services */

.services {
    background: url(../images/services-bg.png) no-repeat 100% 0/cover;
    border-radius: 2rem;
    overflow: hidden;
    padding: 5rem 0 10rem;
    margin: 0 1.5rem;
}

.services-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-top: 1px solid #00000020;
}

.services-box h5 {
    font-size: 4.375rem;
    font-weight: 900;
    -webkit-text-stroke: 1px black;
    color: transparent;
}

.services-box p {
    width: 400px;
}

.services-box .arrowBtn {
    width: 50px;
    aspect-ratio: 1;
    background: var(--secondary);
    color: var(--white);
    display: grid;
    place-content: center;
    border-radius: 100%;
}

.services-box .arrowBtn:hover {
    background: var(--primary);
}

.services-box:last-child {
    border-bottom: 1px solid #00000030;
}

.servicesBtn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 1.5rem 1.5rem 0 0;
    padding: 1.5rem 1.5rem 0;
}


/* Our Process */

.process-card {
    height: 365px;
    border: 1px solid #00000020;
    border-radius: 1rem;
    position: relative;
    padding: 2rem;
    background-color: #1f9d003b;
}

.process-card .title {
    font-size: 1.5rem;
    font-weight: 600;
}

.process-card .number {
    width: 74px;
    height: 62px;
    background: var(--white);
    position: absolute;
    bottom: -1px;
    right: -1px;
    border-width: 1px 0 0 1px;
    border-style: solid;
    border-color: #00000020;
    border-radius: 2rem 0 0 0;
    display: grid;
    place-items: end;
}

.process-card .number span {
    width: 64px;
    height: 50px;
    background: #F0F2F4;
    border-radius: 3.125rem;
    display: grid;
    place-items: center;
}


/* Counter */

.counter-box .number {
    font-size: 6.25rem;
    font-weight: 800;
    color: var(--primary);
}

.counter-box .number span {
    color: transparent;
    -webkit-text-stroke: 2px var(--secondary);
}


/* Gallery */

.gallery__img {
    height: 620px;
    border-radius: 1rem;
    overflow: hidden;
}

.gallery__img--sm {
    height: 298px;
}

.gallery__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 300ms ease-in-out;
}

.gallery__img:hover img {
    transform: scale(1.1);
}


section.testimonials {
    background-color: #1f9d0061;
}

.testimonials-card {
    border: 1px solid #00000020;
    border-radius: 1.5rem;
    padding: 3rem;
    position: relative;
    background-color: #ffffffad;
    margin-bottom: 35px;


}

.testimonials-card .quote-img {
    width: 54px;
}

.testimonials-card p {
    font-size: 1.25rem;
    font-weight: 400;
    margin: 1rem 0 2rem;
}

.testimonials-card h5 {
    font-size: 1.5rem;
    color: var(--secondary);
}

.testimonials-card h5 span {
    color: #565656;
    font-size: 0.875rem;
    display: block;
}

.testimonials-card .user-img {
    background: var(--white);
    border: 1px solid #00000020;
    border-bottom: none;
    border-radius: 3.125rem 3.125rem 0 0;
    position: absolute;
    bottom: -1px;
    right: 4rem;
    padding: 0.5rem 0.5rem 0;
}

.testimonials-card .user-img img {
    width: 70px;
    aspect-ratio: 1;
    border-radius: 100%;
}

.sliderBtn {
    width: max-content;
    display: flex;
    background: var(--secondary);
    border-radius: 3.125rem;
    margin-left: auto;
    position: relative;
    overflow: hidden;
}

.sliderBtn .swiper-button-prev,
.sliderBtn .swiper-button-next {
    width: 50px;
    position: static;
    transform: none;
    margin: 0;
    transition: all 300ms ease-in-out;
}

.sliderBtn .swiper-button-prev::after,
.sliderBtn .swiper-button-next::after {
    font-size: 1.25rem;
    color: var(--white);
}

.sliderBtn .swiper-button-prev:hover,
.sliderBtn .swiper-button-next:hover {
    background: var(--primary);
}

.sliderBtn::before {
    content: '';
    width: 1px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--white);
    transform: translate(-50%, -50%);
}


/* Customer */

.customer {
    margin: 0 1.5rem;
}

.customer__img img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 1rem;
}

.customer__form {
    height: 100%;
    background: var(--black);
    border-radius: 1rem;
    position: relative;
    padding: 5rem;
}

.customer__form :is(select,
input) {
    width: 100%;
    background: transparent;
    color: var(--white);
    border: 1px solid #ffffff20;
    border-radius: 3.125rem;
    outline: none;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.customer__form .tagline {
    font-size: 1.125rem;
}

.customer__formBtn {
    width: max-content;
    background: var(--white);
    position: absolute;
    bottom: 0;
    left: 65%;
    transform: translateX(-50%);
    padding: 1rem 1rem 0;
    border-radius: 2rem 2rem 0 0;
}


/* Blogs */

.blogSlider {
    padding: 1rem;
}

.blogs-card {
    border: 1px solid #00000020;
    border-radius: 2rem;
    transition: all 300ms ease-in-out;
}

.blogs-card:hover {
    box-shadow: 0 0 20px 1px #00000020;
    transform: translateY(-5px) scale(1.01);
}

.blogs-card figure {

    position: relative;
    background-color: #1f9d003b;
    border-radius: 29px 29px 0px 0px;
}

.blogs-card figure img {
    width: 100%;
    height: 305px;
    object-fit: cover;
    border-radius: 2rem;
}

.blogs-card figure span {
    width: max-content;
    position: absolute;
    bottom: 0;
    right: 3rem;
    background: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 2rem 2rem 0 0;
}

.blog-card__content {
    padding: 2rem 2.75rem;
    background-color: #1f9d003b;
    border-radius: 0px 0px 29px 29px;
}

.blog-card__content .title {
    font-size: 1.5rem;
    font-weight: 500;
}

.blog-card__content p {
    font-size: 1rem;
    margin: 0;
}


/* Footer */

.footer__icons {
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.footer__icons li a img {
    width: 30px;
    filter: brightness(0) invert(1);
    transition: all 300ms ease-in-out;
}

.footer__icons li a:hover img {
    filter: brightness(0) saturate(100%) invert(37%) sepia(84%) saturate(1283%) hue-rotate(76deg) brightness(94%) contrast(101%);
}

.footer {
    background: var(--black);
    border-radius: 1rem;
    padding-top: 5rem;
    margin: 0 1.5rem;
}

.heading-sm {
    font-size: 2.5rem;
}

.footer__formWrapper {
    border-bottom: 1px solid #ffffff50;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
}

.footer__form {
    background: var(--white);
    display: flex;
    justify-content: space-between;
    border-radius: 3.125rem;
    overflow: hidden;
}

.footer__form input {
    width: 59%;
    border: none;
    outline: none;
    padding-left: 1.5rem;
}

.footer__links h4 {
    font-size: 1.5rem;
    color: var(--white);
}

.footer__links--pages ul {
    columns: 2;
}

.footer__links ul li a {
    font-size: 0.875rem;
    color: #ABC6E9;
    margin-bottom: 0.25rem;
}

.footer__links ul li a:hover {
    color: var(--white);
}

.copyRight {
    background: #bbd3b5;
    text-align: center;
    margin-top: 6rem;
    padding: 1rem;
    border-radius: 3.125rem 3.125rem 0 0;
}

.copyRight p {
    color: var(--black);
    margin: 0;
}


/* Inner Css Start */

.innerBanner {
    height: 675px;
}

.innerBanner h1 {
    font-size: 3.5625rem;
}

.innerBanner:before {
    background: linear-gradient(90deg, black, transparent 70%);
}

.aboutInner {
    padding: 9.375rem 0 7.5rem 0;
}

.aboutContent h3 {
    margin-bottom: 1.2rem;
}

.aboutContent p {
    margin: 0;
}

.aboutInner .row+.row,
.blogInner .row+.row {
    margin-top: 3.125rem;
}

.serviceInner {
    padding-top: 6.25rem;
}

.galleryInner {
    padding: 7.5rem 0 6.25rem 0;
}

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

.contactInner .heading {
    margin-bottom: 6.25rem;
}

.contactInner iframe {
    display: block;
}

.contactBox {
    background: #fbfbfb;
    padding: 5.9rem 9.375rem 5.9rem 3.125rem;
}

.contactBox h3 {
    font-size: 2.25rem;
    color: var(--black);
    font-weight: bold;
}

.contactBox p {
    color: var(--black);
    margin: 1.5rem 0 2rem 0;
}

.contactBox label {
    color: var(--black);
    font-weight: bold;
}

.contactBox .form-control {
    background: var(--white);
    border-radius: 8px;
    outline: unset;
    box-shadow: unset;
    border: unset;
}

.contactBox input {
    height: 56px;
}

.contactBox .form-control::placeholder {
    color: var(--black);
}

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

.contactBox textarea {
    height: 145px;
}

.contactForm .themeBtn {
    outline: unset;
    border: unset;
}

.swiper-slide {

    background-size: cover;

    padding: 20px;
    text-align: center;
    border-radius: 10px;
}


.swiper-slide h5 {
    font-size: 4.375rem;
    font-weight: 900;
    -webkit-text-stroke: 1px black;
    color: transparent;
}


.swiper-slide p {
    font-size: 16px;
    color: #666;
}

.swiper-button-next, .swiper-button-prev {
    color: #333 !important;
}

.heading{
    font-size: 3.4375rem;
    line-height: 1;
    font-weight: 600;
}

/* Inner Css End */
