@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald&display=swap");

:root {
    --white: #fff;
    --grey: #f8f8f8;
    --black: #000;
    --primary: #262262;
    --secondary: #006838;
    --roboto-font: "Roboto", sans-serif;
}

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

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

@media (min-width: 1700px) {
    .container {
        max-width: 1380px;
    }
}

/* How to add New font */

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-family: "Roboto", sans-serif;
}

.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;
}

/* Lenis Smooth Scroll */

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;
}

/* loader */

.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);
}

/* loader */

/* btn css */

.themeBtn {
    font-family: var(--roboto-font);
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--white) !important;
    font-weight: 500 !important;
    padding: 0.875em 2.75em;
    border-radius: 3rem;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.themeBtn::before {
    content: "";
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: 120px;
    background-color: var(--secondary);
    clip-path: polygon(0% 6%,
            5% 0%,
            9% 7%,
            12% 2%,
            19% 7%,
            21% 0%,
            26% 6%,
            33% 0%,
            36% 7%,
            41% 8%,
            47% 2%,
            50% 9%,
            56% 1%,
            58% 10%,
            65% 2%,
            68% 9%,
            77% 3%,
            81% 9%,
            88% 2%,
            90% 8%,
            97% 5%,
            100% 9%,
            100% 100%,
            0% 100%);
    transition: 0.5s ease;
    z-index: -1;
}

.themeBtn.btninvert::before {
    background-color: var(--primary);
}

.themeBtn.btninvert::after {
    background-color: var(--secondary);
}

.themeBtn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    z-index: -2;
}

.themeBtn:hover::before {
    top: -50px;
}

/* btn css */

/* Social Links */

.socialLinks {
    display: flex;
    gap: 20px;
}

.socialLinks li a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background-color: var(--white);
    border: 1px solid var(--white);
    font-size: 1.125rem;
    border-radius: 50%;
    z-index: 1;
}

.socialLinks li a img {
    width: 18px;
    filter: brightness(0) saturate(100%) invert(13%) sepia(51%) saturate(2292%) hue-rotate(227deg) brightness(91%) contrast(99%);
}

.socialLinks li a:hover {
    color: var(--white);
    background-color: var(--secondary);
}

.socialLinks li a:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7474%) hue-rotate(87deg) brightness(109%) contrast(95%);
}

/* !Social Links */

/* navigation css */

header {
    position: relative;
    z-index: 1;
    transition: 0.3s ease-in-out;
}

.top-bar {
    padding: 13px 0;
    background-color: var(--primary);
    position: relative;
}

.top-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 546px;
    height: 100%;
    background-color: var(--secondary);
    clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 95% 0%);
}

.top-bar .links {
    display: flex;
    justify-content: end;
}

.top-bar .links a {
    color: var(--white);
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 0 1rem;
    line-height: 1;
}

.top-bar .links a:hover {
    color: #3de99a;
}

.top-bar .links li+li a {
    border-left: 1px solid var(--white);
}

.an-navbar {
    padding: 1rem 0;
}

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

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    color: var(--black);
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 0;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-item .nav-link::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 70px;
    background-color: var(--secondary);
    clip-path: polygon(0% 6%,
            5% 0%,
            9% 7%,
            12% 2%,
            19% 7%,
            21% 0%,
            26% 6%,
            33% 0%,
            36% 7%,
            41% 8%,
            47% 2%,
            50% 9%,
            56% 1%,
            58% 10%,
            65% 2%,
            68% 9%,
            77% 3%,
            81% 9%,
            88% 2%,
            90% 8%,
            97% 5%,
            100% 9%,
            100% 100%,
            0% 100%);
    transition: 0.5s;
}

.navbar-nav .nav-item .nav-link:hover::before {
    top: 85%;
}

.callbtn {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 200px;
    color: var(--primary);
    padding: 10px;
    margin-left: 2rem;
    overflow: hidden;
    position: relative;
    transition: 0.5s ease;
}

.callbtn::before {
    content: "";
    position: absolute;
    top: -125%;
    left: -51%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    transform: scale(0.2);
    background-color: var(--secondary);
    transition: 0.5s ease;
    z-index: -1;
}

.callbtn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f2f2f2;
    z-index: -2;
}

.callbtn figure {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--secondary);
    display: grid;
    place-items: center;
}

.callbtn div {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    margin-right: 1.25rem;
    transition: 0.5s ease;
}

.callbtn div span,
.callbtn span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
}

.callbtn div strong {
    font-size: 17px;
    font-weight: 500;
    white-space: nowrap;
}

.callbtn:hover {
    color: var(--white);
    gap: 0.5rem;
}

.callbtn:hover div {
    margin-right: 1.75rem;
}

.callbtn:hover::before {
    transform: scale(2);
}

.callbtn:hover figure img {
    animation: call 2s infinite linear alternate;
}

@keyframes call {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/* Dropdown */
.navbar-nav .nav-item.dropdown ul li a:hover {
    color: var(--primary);
}

.navbar-nav .nav-item.dropdown ul li a {
    font-size: 1rem;
    color: #000000;
    font-weight: 500;
    display: block;
    padding: 4px 20px;
    text-transform: capitalize;
}

.navbar-nav .nav-item.dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    padding: 15px 0;
    border-top: 2px solid var(--primary);
}

.navbar-nav .nav-item.dropdown:hover ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar-nav .nav-item.dropdown ul li {
    min-width: 220px;
    position: relative;
    list-style: none;
}

.navbar-nav .nav-item.dropdown ul li a:hover {
    color: var(--primary);
}

/* navigation css */

/* slider css */

.main-slider {
    height: 892px;
    overflow: hidden;
}

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

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

.homeSlider .swiper-pagination {
    bottom: 3.875rem;
    left: 18rem;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.homeSlider .swiper-pagination .swiper-pagination-bullet {
    background-color: var(--white);
    width: 0.875rem;
    height: 0.875rem;
    margin: 0;
    opacity: 1;
    outline: 1px solid var(--white);
    outline-offset: -2px;
    position: relative;
    transition: 0.5s ease;
}

.homeSlider .swiper-pagination .swiper-pagination-bullet-active {
    transform: scale(1.15);
    background-color: var(--secondary);
    outline-offset: 3px;
    outline-color: var(--secondary);
}

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

.main-slider h4 {
    margin: 0;
    margin-bottom: 10px;
    font-size: 1.875rem;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
}

.main-slider h1 {
    margin: 0;
    font-size: 5rem;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

.main-slider p {
    margin: 5px 0 1rem 0;
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 500;
}

/* slider css */

/* Typography CSS*/

.heading {
    text-transform: uppercase;
    line-height: 1;
}

.heading span {
    font-size: 1.375rem;
    letter-spacing: 5px;
}

.heading h2 {
    font-size: 4.375rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.heading.text-center h2 {
    display: block;
}

.line {
    display: inline-block;
    width: 220px;
    height: 5px;
    border-radius: 3px;
    background-color: var(--primary);
}

/* !Typography CSS*/

/* CTA Section */

.cta-section {
    position: relative;
    padding: 4.25rem 0;
    background: url(../images/cta1.webp) no-repeat center center/cover;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    z-index: -1;
}

.cta-section h4 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 500;
    text-transform: uppercase;
}

.cta-section a {
    color: var(--white);
    font-size: 3.625rem;
    font-weight: 500;
    display: inline-block;
    margin-left: auto;
}

/* !CTA Section */

/* About Section */

.about-section {
    padding: 6.25rem 0 7.5rem;
}

.about-images {
    position: relative;
    text-align: center;
}

.about-images img:nth-child(1) {
    position: absolute;
    top: -30px;
    left: 0px;
    z-index: -1;
    animation: rotate 120s infinite;
}

.about-images img:nth-child(2) {
    width: 615px;
    height: 615px;
    object-fit: cover;
    border-radius: 100%;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.about-images img:nth-child(3) {
    position: absolute;
    bottom: 0;
    right: 10px;
    outline: 5px solid var(--white);
    outline-offset: -4px;
    border-radius: 50%;
    box-shadow: -1.57px 14.92px 18px 0 rgba(144, 144, 144, 0.22);
}

.about-section .btn-group {
    margin-top: 1.875rem;
    gap: 1.25rem;
}

.about-section .watermark {
    position: absolute;
    bottom: 3.125rem;
    right: 2.25rem;
}

/* !About Section */

/* Service Section */

.service-section {
    background-color: var(--grey);
    padding: 6.25rem 0 6.75rem;
}

.service-card {
    text-align: center;
    position: relative;
    border-radius: 15px;
    transition: 0.5s ease;
    margin-top: 1rem;
}

.service-card figure {
    border-radius: 15px;
    overflow: hidden;
}

.service-card figure img {
    transition: 0.5s ease;
}

.service-card:hover {
    background-color: var(--white);
    box-shadow: 0 3px 40px 0 rgba(0, 0, 0, 0.07);
}

.service-card:hover figure img {
    transform: scale(1.1);
}

.servicesCard.bordermid::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 5px);
    height: 185px;
    border: 5px solid var(--secondary);
    border-top: 0;
    border-bottom: 0;
    z-index: 1;
}

.service-card h5 {
    font-size: 1.625rem;
    text-transform: uppercase;
    font-weight: 500;
}

/* !Service Section */

/* Counter Section */

.counter-section {
    position: relative;
    padding: 6.25rem 0;
    background: url(../images/cta.webp) no-repeat center center/cover;
}

.counter-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    z-index: -1;
}

.counter-section .counter {
    text-align: center;
}

.counter-section h4 {
    color: var(--white);
    font-size: 4.375rem;
    font-weight: 500;
    line-height: 1;
    margin: 0;
}

.counter-section p {
    color: var(--white);
    font-size: 1.6875rem;
    line-height: 1.5;
    margin: 0;
}

/* !Counter Section */

/* Process Section */

.process-section {
    padding: 5.625rem 0 8rem;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-items: center;
    grid-row-gap: 8.5rem;
    padding: 5rem 0 2rem;
    position: relative;
}

.process-list .process-item:nth-child(odd) figure img {
    filter: brightness(0) saturate(100%) invert(29%) sepia(9%) saturate(6828%) hue-rotate(119deg) brightness(97%) contrast(105%);
}

.process-list .process-item:nth-child(even) figure img {
    filter: brightness(0) saturate(100%) invert(18%) sepia(16%) saturate(2258%) hue-rotate(199deg) brightness(94%) contrast(101%);
}

.process-list .process-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 230px;
    height: 230px;
    padding: 3.125rem 12px;
    text-align: center;
    background-color: var(--white);
    box-shadow: 0 0 30px 0 rgba(90, 91, 93, 0.16);
    border-radius: 0 30px 30px 30px;
    transform: rotate(45deg);
}

.process-list .process-item div {
    transform: rotate(-45deg);
}

.process-list>.process-item>div>span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    font-size: 9.5rem;
    font-weight: 600;
    color: #00000040;
    z-index: -1;
}

.process-list .process-item::before {
    content: "";
    position: absolute;
    top: -1.25rem;
    left: -3.5rem;
    width: 140px;
    height: 70px;
    background: url("../images/bluehomeicon.webp");
    transform: rotate(-45deg);
}

.process-list .process-item:nth-child(even)::before {
    background: url("../images/greenhomeicon.webp");
}

.process-list .process-item p {
    color: var(--black);
    font-family: var(--roboto-font);
    line-height: 1.5;
    font-weight: 500;
    text-align: center;
    margin: 1rem;
    margin-bottom: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

/* !Process Section */

/* Landing Section */

.landing-section {
    background: #453faa;
    background: radial-gradient(circle farthest-corner at center center,
            #453faa 0%,
            #262262 100%);
    padding: 5rem 0 13.5rem;
}

.landing-section figure {
    position: absolute;
    transform: translateY(-20%);
    text-align: center;
    z-index: 1;
}

.landing-section figure::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 571px;
    height: 571px;
    background-color: var(--white);
    border-radius: 50%;
    z-index: -1;
    animation: boun 5s infinite alternate;
}

.landing-section figure img {
    animation: mobile 5s infinite alternate;
}

@keyframes boun {
    0% {
        box-shadow: 0 0 0 0 var(--white);
    }

    100% {
        box-shadow: 0 0 0 10px var(--white);
    }
}

@keyframes mobile {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

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

.landing-section h3 {
    font-size: 3.75rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
}

.landing-section p {
    font-size: 1.375rem;
    color: var(--white);
    font-family: var(--roboto-font);
}

/* !Landing Section */

/* FAQ Section */

.faq-section {
    background-color: #edf3f3;
    padding: 11.5rem 0 5rem;
}

.faq-section .obj {
    position: absolute;
    right: -20rem;
    top: -18rem;
}

.accordion {
    margin-top: 3rem;
}

.accordion .card {
    border: 0;
    background-color: transparent;
}

.accordion .card-header {
    background-color: transparent;
    padding: 1rem 0 !important;
    margin-bottom: 0 !important;
    border-bottom: 4px solid var(--black);
}

.accordion .card-header button {
    padding: 0;
    width: 100%;
    display: block;
    font-weight: 500;
    font-size: 1.375rem;
    color: #1a1a1a;
    border: 0;
    background-color: transparent;
    outline: 0;
    text-align: left;
    text-transform: uppercase;
}

.accordion .card-header button::before {
    content: "-";
    float: right;
}

.accordion .card-header button.collapsed::before {
    content: "+";
}

.accordion .card-body {
    padding: 1.75rem 0 !important;
}

.accordion .card-body p {
    margin: 0;
    font-size: 1.25rem;
    color: #282a2e;
}

/* !FAQ Section */

/* footer */

footer {
    padding-top: 4rem;
    background-color: #f1f1f1;
}

footer .footerLogo+p {
    font-size: 1rem;
    color: var(--black);
    line-height: 1.5;
    margin-top: 1rem;
}

footer h2 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

footer ul li a {
    font-size: 1.125rem;
    color: var(--black);
}

footer .quick-link a {
    text-transform: uppercase;
}

footer ul li p {
    font-size: 1.125rem;
    color: var(--black);
    margin: 0;
    line-height: 1.5;
}

footer ul li+li {
    margin-top: 1.125rem;
}

footer ul.quick-link li+li {
    margin-top: 0.875rem;
}

footer .contact-list li.phoneNumber a {
    color: var(--secondary);
    font-size: 1.625rem;
    font-weight: 600;
}

footer form {
    display: flex;
    flex-direction: column;
    margin-top: 1.5rem;
    gap: 13px;
}

footer form .form-control {
    padding: 1.85rem !important;
    background-color: #cfcfcf !important;
    box-shadow: none !important;
    border-radius: 60px;
}

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

footer .copyRight {
    margin-top: 3.5rem;
    border-top: 1px solid #707070;
    padding: 1.875rem 0;
}

footer .copyRight p {
    font-size: 1.125rem;
    margin: 0;
    color: var(--black);
}

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

footer .heading span {
    line-height: 1.5;
}

.borderBox {
    box-shadow: 0 5px 30px rgb(0 0 0 / 6%);
    border-radius: 100%;
    color: var(--primary);
    width: 100%;
    height: 315px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}

/* !footer */

/* innerpages Start */

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

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

.innerBan {
    position: relative;
    z-index: -1;
}

.heading h4 {
    font-size: 50px;
    font-weight: 500;
}

img.img-fluid.watermark.mark2 {
    top: 32rem;
}

.heading.iconhead h2 {
    position: relative;
    font-size: 120px;
    color: #d1d1d1;
    font-family: "Oswald", sans-serif;
}

.heading.iconhead h2 img {
    position: absolute;
    bottom: 29px;
    left: 6px;
}

a.themeBtn.grenbtn::after {
    background: #72d4a5;
}

a.themeBtn.grenbtn {
    color: #090909 !important;
}

.about-section.proceSection .row {
    margin-bottom: 4rem;
}

section.faq-section.innerfaq {
    background: unset;
}

.faq-section.innerfaq .card {
    margin-bottom: 2rem;
}

.contactBox {
    text-align: center;
}

.contactBox figure {
    background: var(--white);
    box-shadow: 0 3px 15px rgb(0 0 0 / 6%);
    width: 250px;
    height: 250px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    margin: auto;
    transition: 0.5s ease-in-out;
}

.contactBox:hover figure {
    box-shadow: 0 3px 32px rgb(0 0 0 / 22%);
}

.contactBox:hover .contactText a {
    font-weight: 600;
}

.contactBox:hover .contactText p {
    font-weight: 400;
}

.contactText {
    padding-top: 2rem;
}

.contactText p {
    font-size: 20px;
    color: #000000;
    line-height: 1.5;
}

.contactText a {
    font-size: 22px;
    color: var(--black);
    font-weight: 400;
    transition: 0.5s ease;
}

.contactForm .form-group label {
    font-size: 1.375rem;
    color: var(--black);
    font-family: "futuraMed";
}

.contactForm .form-group .form-control {
    border-radius: 6px;
    height: 65px;
    border: 1px solid #c0c0c0;
}

.contactForm .form-group textarea {
    min-height: 155px;
}

.contactForm .form-group .form-control::placeholder {
    color: #7c7c7c;
}

.contactForm .form-group textarea::placeholder {
    padding-top: 8px;
}

.contactForm .themeBtn {
    border: unset;
}

.contactText h3 {
    font-size: 25px;
    text-transform: uppercase;
    font-family: "Poppins";
}

.contactForm .form-group label {
    font-size: 1.375rem;
    color: var(--black);
    font-family: "futuraMed";
}

.contactForm .form-group .form-control {
    border-radius: 6px;
    height: 65px;
    border: 1px solid #c0c0c0;
}

.contactForm .form-group textarea {
    min-height: 155px;
}

.contactInformss .mainHead {
    font-size: 60px;
    font-weight: bold;
}

section.sermonsInner.contactInner {
    padding: 6rem 0;
}

.contactInformss .mainHead {
    text-transform: uppercase;
}

/* Foreign National */
.foreignContent {
    height: 100%;
    padding: 5rem 2rem;
    background: linear-gradient(90deg, var(--secondary), var(--primary) 90%);
}

.foreignContent :is(.heading h4, p) {
    color: #fff;
}

.foreignImg img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

/* Process List Inner */
.processInner-detail .text {
    font-size: 5rem;
    color: var(--primary);
    letter-spacing: -3px;
}

.processInner-detail .icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    box-shadow: 0 0 30px 0 rgba(90, 91, 93, 0.16);
    transform: rotate(45deg);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 10px 10px 10px;
    position: relative;
}

.processInner-detail .icon::before {
    content: "";
    width: 80px;
    height: 30px;
    position: absolute;
    top: -2.25rem;
    left: -0.25rem;
    background: url("../images/bluehomeicon.webp") no-repeat center/contain;
    z-index: 1;
    transform: rotate(-45deg) translateX(-50%);
}

.processInner-detail .icon.secondary::before {
    background: url("../images/greenhomeicon.webp") no-repeat center/contain;
}

.processInner-detail .icon img {
    transform: rotate(-45deg);
    width: 40px;
    height: 40px;
}

.processInner .row:nth-child(odd) .processInner-detail .icon img {
    filter: brightness(0) saturate(100%) invert(11%) sepia(74%) saturate(2016%) hue-rotate(231deg) brightness(92%) contrast(97%);
}

.processInner .row:nth-child(even) .processInner-detail .icon img {
    filter: brightness(0) saturate(100%) invert(30%) sepia(15%) saturate(3366%) hue-rotate(110deg) brightness(94%) contrast(101%);
}

.processInner-detail>div.d-flex {
    gap: 2rem;
}

.processInner-detail .title span {
    display: block;
    font-weight: 300;
}

.processInner-detail .title {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 0.5rem;
    line-height: 1.66;
}

.fhaImg img,
.contactImg img {
    border-radius: 1.25rem;
}

.contactImg img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.subText .heading h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 600;
    text-align: end;
    display: block;
    margin-right: 4rem;
}

section,
footer {
    overflow: hidden;
}

.landing-section {
    overflow: visible;
}

.loan-officers-section .service-card figure img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
}

.brand-logo {
    mix-blend-mode: darken;
}