:root {
    --color-yellow: #FFF2DF;
    --color-green: #DFFFE3;
    --color-purple: #F5DFFF;
    --color-blue: #DFECFF;
    --color-red: #FFDFDF;
    --color-purple-dark: #3E2F6D;
}

/* width: 100%; */

body {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.main-header.sticky {
    opacity: 0;
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    transition: opacity 0.3s cubic-bezier(.16, 1, .3, 1), box-shadow 0.3s cubic-bezier(.16, 1, .3, 1);
}

.navbar-brand img {
    height: 50px !important;
}

.nav_btn {
    font-size: 15px;
}

.nav_left-sect .nav_btn {
    padding: 8px 15px !important;
    border-radius: 10px;
    border: none;
    transition: background-color 2.5s cubic-bezier(.16, 1, .3, 1);
}

.nav_left-sect .nav_btn:hover {
    background-color: var(--bs-gray-200);
}

.nav_right-sect .nav_btn {
    padding: 22px 60px !important;
    border-color: var(--bs-gray-200) !important;
    border-radius: 10px;
    text-transform: none;
}

.nav_right-sect .nav_btn.signup {
    background-color: #F7C71F;
}

.hero-intro {
    padding: 150px 40px;
}

.hero-intro .early-access {
    padding: 8px 15px;
    background-color: #F2FAFA;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
}

.hero-intro .early-access>:is(span, i) {
    color: #00A9A5;
}

.hero-intro .subtitle {
    color: #6e7178;
    font-size: 18px;
    font-weight: 500;
    margin: 50px auto 20px;
}

.hero-intro .heading {
    font-size: 65px;
    font-size: clamp(2.5rem, 7.285vw, 4.0625rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.hero-intro .tagline {
    color: #5c5d61;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: center;
}

.hero-intro .zipcode-directory {
    width: 580px;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
}

.hero-intro input.zipcode-dir {
    padding: 25px;
    padding-right: 40px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1em;
    border-color: #e6ebf1;
    border-radius: 50px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.075);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.075);
}

.hero-intro .zipcode-directory:hover input.zipcode-dir {
    border-color: #F7C71F;
}

.hero-intro button.zipcode-submit {
    position: absolute;
    top: auto;
    right: 10px;
    transition: opacity 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-intro button.zipcode-submit:hover {
    opacity: 0.75;
}

.hero-intro .zipcode-submit img {
    --btn-img-size: 55px;
    width: var(--btn-img-size);
    height: var(--btn-img-size);
}

.hero-intro small {
    color: #848e97;
}

.hero-banner {
    min-height: 100vh;
    min-height: 120vh;
    background: url(../img/homepage-hero.png) center / cover no-repeat fixed;
    overflow: hidden;
    z-index: -1;
}

.hero-banner.has-video::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1px);
}

.hero-banner.has-video .hero-video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -1;
}

.hero-banner .hero-stats {
    gap: 4rem;
    padding: 2rem 1rem;
    color: #fff;
    text-align: center;
    z-index: 0;
}

.hero-banner .hero-stats .stat {
    max-width: 200px;
}

.hero-banner .hero-stats .stat .counter {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.hero-banner .hero-stats .stat p {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 0.75rem;
    opacity: 0.9;
}

.hero-banner h2.hero-caption {
    position: absolute;
    bottom: 10%;
    left: 50%;
    color: var(--bs-white);
    font-size: 90px;
    font-size: clamp(2.625rem, 13.335vw, 5.625rem);
    font-weight: 500;
    text-align: center;
    transform: translateX(-50%) translateY(0);
    transition: transform 0.1s linear;
}

.neighborhood-feature,
.community-benefit-card {
    margin-top: 5rem;
}

@media (max-width: 767px) {
    :is(.neighborhood-feature, .use-case-item, .community-benefit-card) .content_pod {
        gap: 0.75rem;
    }
}

@media (min-width: 992px) {
    :is(.neighborhood-feature, .use-case-item, .community-benefit-card) .content_pod {
        gap: 40px;
    }
}

@media (min-width: 1024px) {
    :is(.neighborhood-feature, .use-case-item, .community-benefit-card) .content_pod {
        gap: 100px;
    }
}

:is(.neighborhood-feature, .community-benefit-card) figure {
    min-height: 500px;
}

:is(.neighborhood-feature, .use-case-item, .community-benefit-card) .alert {
    width: fit-content;
    padding: 8px 15px;
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
}

:is(.neighborhood-feature, .use-case-item, .community-benefit-card) .alert.alert-yellow {
    background-color: var(--color-yellow);
}

:is(.neighborhood-feature, .use-case-item, .community-benefit-card) .alert.alert-green {
    background-color: var(--color-green);
}

:is(.neighborhood-feature, .use-case-item, .community-benefit-card) .alert.alert-blue {
    background-color: var(--color-blue);
}

:is(.neighborhood-feature, .use-case-item, .community-benefit-card) .alert.alert-purple {
    background-color: var(--color-purple);
}

:is(.neighborhood-feature, .use-case-item, .community-benefit-card) figcaption h2 {
    font-size: 45px;
    font-weight: 500;
    line-height: 1.105em;
}

:is(.neighborhood-feature, .use-case-item, .community-benefit-card) figcaption p {
    color: #6e7178;
    font-size: 18px;
}

:is(.neighborhood-feature, .use-case-item, .community-benefit-card) figcaption .btn {
    padding: 22px 85px !important;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid var(--bs-gray-600);
    border-radius: 10px;
    text-transform: none;
}

.section-head {
    max-width: 580px;
    margin: 0 auto 60px;
}

.section-head h2 {
    font-size: 45px;
    font-weight: 500;
    line-height: 1.105em;
}

.section-head p {
    color: #6e7178;
    font-size: 18px;
    font-weight: 500;
}

.section-how-it-works .nav-tabs {
    -moz-flex-wrap: nowrap;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
    font-size: 18px;
    font-weight: 600;
    border: none;
}

.section-how-it-works .nav-tabs>li {
    width: 100%;
}

.section-how-it-works .nav-tabs>li>.nav-link {
    width: 100%;
    padding: 0.75rem 0.75rem !important;
    border-color: transparent;
    border-radius: 25px 25px 0 0;
    outline: none;
    transition: background-color 0.3s linear;
}

.section-how-it-works .nav-tabs>li>.nav-link:not(.active):hover,
.section-how-it-works .nav-tabs>li>.nav-link.active {
    background-color: #EFF1F3;
}

.section-how-it-works .tab-content {
    padding: 15px;
    background-color: #EFF1F3;
    border-radius: 25px 25px 25px 25px;
    transition: border-radius 0.3s linear;
}

@supports selector(:has(*)) {

    .section-how-it-works .nav-tabs:has(li:first-child .nav-link:hover)+.tab-content,
    .section-how-it-works .nav-tabs:has(li:first-child .nav-link.active)+.tab-content {
        border-top-left-radius: 0;
    }

    .section-how-it-works .nav-tabs:has(li:last-child .nav-link:hover)+.tab-content,
    .section-how-it-works .nav-tabs:has(li:last-child .nav-link.active)+.tab-content {
        border-top-right-radius: 0;
    }
}

.section-how-it-works .how-it-works-steps .step-box {
    padding: 1rem 3rem;
    text-align: center;
}

.section-how-it-works .how-it-works-steps .step-box .step-img {
    margin-bottom: 1.5rem;
}

.section-how-it-works .how-it-works-steps .step-box .step-desc p {
    color: #6e7178;
    font-size: 18px;
    font-weight: 500;
}

.section-use-cases .use-case-item {
    border-radius: 1rem;
    margin-top: 3rem;
}

.use-case-item figure {
    min-height: 420px;
}

.use-case-item figcaption {
    padding-right: 8rem !important;
}

.use-case-item figcaption h2 {
    font-size: 40px;
}

.use-case-item figcaption p {
    font-weight: 500;
}

.use-case-item.yellow-bg {
    background-color: var(--color-yellow);
}

.use-case-item.green-bg {
    background-color: var(--color-green);
}

.use-case-item.purple-bg {
    background-color: var(--color-purple);
}

.use-case-item.blue-bg {
    background-color: var(--color-blue);
}

.use-case-item.red-bg {
    background-color: var(--color-red);
}

.community-benefits.dark-purple-bg {
    background-color: var(--color-purple-dark);
}

.dark-purple-bg .community-benefit-card figcaption h2,
.dark-purple-bg .community-benefit-card figcaption p {
    color: #FFFFFF;
}

.community-benefit-card figcaption .btn.yellow {
    padding: 24px 85px;
    background-color: #F7C71F !important;
    border: transparent;
    box-shadow: 0 0 20px 0 rgba(247, 200, 31, 0.25);
}

@media (min-width: 992px) {

    .faq-item .faq-intro,
    .faq-item .faq-accordion {
        width: 50%;
    }
}

.faq-item .faq-intro {
    padding: 15px 150px 15px 0;
}

.faq-item .faq-accordion {
    padding: 15px 0;
}

.faq-item .faq-intro h2 {
    font-size: 45px;
    font-weight: 500;
    line-height: 1.105em;
}

.faq-item .faq-intro p {
    color: #6e7178;
    font-size: 18px;
}

.faq-item .faq-intro .btn {
    padding: 22px 85px;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid var(--bs-gray-200);
    border-radius: 10px;
    text-transform: none;
}

.faq-accordion>ul>li {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1.5rem 0;
    position: relative;
    border-bottom: 2px solid var(--bs-gray-200);
}

.faq-accordion>ul>li>.title {
    font-size: 22px;
    font-weight: 500;
}

.faq-accordion>ul>li>a {
    width: 100%;
    position: absolute;
    top: 34px;
    color: #000000;
    font-size: 16px;
    text-align: right;
    border: none;
}

.faq-accordion>ul>li>a[data-bs-toggle=collapse]>.fa-chevron-down {
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-accordion>ul>li>a[data-bs-toggle=collapse]:not(.collapsed)>.fa-chevron-down {
    transform: rotate(- 180deg);
}

.section-neighborhood-cta .yellow-bg {
    background-color: var(--color-yellow);
    border-radius: 25px;
}

.section-neighborhood-cta h2 {
    font-size: 45px;
    font-weight: 500;
    line-height: 1.105em;
}

.section-neighborhood-cta .btn {
    padding: 25px 65px;
    background-color: #F7C71F;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    text-transform: none;
    box-shadow: 0 0 20px 0 rgba(247, 200, 31, 0.25);
}

.footer_sect {
    background-color: transparent !important;
}

.footer_inner>.row {
    justify-content: space-between;
    align-items: center;
}

.footer_inner ul>li:not(:last-child) {
    margin-bottom: 15px;
}

.footer_inner .item-title {
    color: #000000;
    font-size: 20px;
    font-weight: 500;
}

.footer_inner ul>li>a {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
}

.footer_inner .item-title+p {
    font-size: 16px;
    margin: 5px 0 20px;
    color: #6e7178;
}

.subscribe-form {
    display: flex;
    align-items: center;
    position: relative;
}

.subscribe-form input {
    padding: 18px;
    padding-right: 40px;
    background-color: #F4F4F5;
    font-size: 16px;
    font-weight: 500;
    line-height: 1em;
    border: none;
    border-radius: 10px;
}

.subscribe-form .btn {
    padding: 20px 50px;
    position: absolute;
    top: auto;
    right: 10px;
    color: #FFFFFF;
    background-color: var(--bs-gray-900);
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    text-transform: none;
}

.footer_sect .copy_right-section {
    border: none;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
}

/* New updates */
.page-content {
    position: relative;
    z-index: 0;
}

.liquid-btn {
    position: relative;
    overflow: hidden;
}

/* Liquid fill */
.liquid-btn::before {
    content: "";
    width: 100%;
    position: absolute;
    inset: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 3.5s cubic-bezier(.16, 1, .3, 1);
    z-index: 0;
}

.liquid-btn::before {
    --gradient-primary: #262C36;
    --gradient-secondary: transparent;
    background: radial-gradient(120% 225% at 50% 135%, var(--gradient-primary) 50%, var(--gradient-secondary) 52%);
}

.liquid-btn.get-started::before,
.liquid-btn.signup::before {
    --gradient-primary: #3E2F6C;
}

.liquid-btn.yellow::before {
    --gradient-primary: #ffffff;
}

.liquid-btn.subscribe::before {
    --gradient-primary: #F7C71F;
}

.liquid-btn:hover::before {
    transform: scaleY(3.15);
}

/* Text */
.liquid-btn .label {
    position: absolute;
    inset: 0;
    /* display: grid;
    place-items: center; */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease, transform 1.25s cubic-bezier(.16, 1, .3, 1) 0.15s;
    z-index: 1;
}

.liquid-btn .from {
    opacity: 1;
    transform: translateY(0);
}

.liquid-btn .to {
    opacity: 0;
    transform: translateY(6px);
    color: #FFFFFF;
}

.liquid-btn.yellow .to,
.liquid-btn.subscribe .to {
    color: #000000;
}

.liquid-btn:hover .from {
    opacity: 0;
    transform: translateY(-40px);
}

.liquid-btn:hover .to {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll {
    transform: scale(1);
    opacity: 0;
    will-change: transform, opacity;
}

.home-phase4-page .video-placeholder svg {
    width: 70px;
    height: 70px;
    position: absolute;
    top: 60%;
}

.home-phase4-page .video-placeholder svg .play-svg-circle {
    fill: #F7C71F;
    transform: scale(1);
    transform-origin: center;
}

.home-phase4-page .video-placeholder svg .play-svg-triangle {
    fill: var(--bs-dark);
    transform: scale(0.45);
    transform-origin: center;
}

@media only screen and (max-width: 991px) {
    .nav_right-sect {
        margin-left: auto;
    }

    .nav_right-sect .nav_btn {
        font-size: calc(0.75rem + 0.385vw);
        font-weight: 600;
        margin: 0 .75rem 0 0;
    }

    .nav_right-sect+.navbar-toggler {
        font-weight: 500;
        border-width: 2px;
        border-radius: 100%;
    }

    .nav_left-sect .nav_btn {
        background-color: var(--bs-gray-100);
        font-size: calc(0.75rem + 0.385vw);
        font-weight: 600;
    }

    .hero-intro .early-access {
        font-weight: 500;
        border-radius: 8px;
    }

    :is(.neighborhood-feature, .use-case-item, .community-benefit-card) .content_pod {
        padding: 0 !important;
    }

    :is(.neighborhood-feature, .community-benefit-card) figcaption {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    :is(.neighborhood-feature, .use-case-item, .community-benefit-card) figcaption p {
        line-height: 1.35em;
    }

    :is(.neighborhood-feature, .use-case-item, .community-benefit-card) figcaption .btn {
        width: 100%;
        font-size: 18px;
        font-weight: 600;
        border-width: 3px;
    }

    .neighborhood-feature:not(:first-child),
    .community-benefit-card:not(:first-child) {
        margin-top: 2rem;
    }

    .section-how-it-works .nav-tabs {
        gap: 5px;
        font-size: 17px;
    }

    .section-how-it-works .nav-tabs>li>.nav-link {
        padding: 0.75rem 0.5rem !important;
    }

    .section-how-it-works .tab-content {
        padding: 10px;
    }

    .section-how-it-works .how-it-works-steps .step-box {
        padding: 1rem 1rem;
    }

    .section-use-cases .use-case-item {
        margin-top: 0;
    }

    .use-case-item figcaption {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .community-benefit-card figure {
        aspect-ratio: 1080 / 1000 !important;
    }

    .faq-item .faq-intro,
    .faq-item .faq-accordion {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .faq-item .faq-intro .btn {
        width: 100%;
        font-weight: 600;
        border-width: 2px;
    }

    .section-neighborhood-cta .btn {
        width: 100%;
        padding-top: 28px !important;
        padding-bottom: 28px !important;
        font-size: 18px;
        font-weight: 600;
    }

    .footer_inner>.row {
        justify-content: start;
    }

    .footer_inner>.row>.signup--container {
        order: 2;
    }

    .footer_inner>.row>.agreements--container {
        order: 3;
    }

    .footer_inner>.row>.subscribe-form--container {
        order: 1;
        margin-top: 1rem !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .nav_right-sect .nav_btn {
        padding: clamp(0.85rem, 1.375rem, 1.375rem) clamp(2.25rem, 3.15rem, 3.75rem) !important;
        font-size: calc(0.75rem + 0.385vw);
    }

    .nav_right-sect+.navbar-toggler {
        padding: 0.75rem 0.75rem;
        font-size: calc(0.75rem + 0.385vw);
    }

    .hero-intro {
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 50px;
    }

    .hero-intro .early-access {
        padding: 10px 15px;
        font-size: 18px;
    }

    .hero-intro .subtitle {
        font-size: 20px;
    }

    .hero-intro .tagline {
        font-size: 22px;
    }

    .hero-intro .zipcode-directory {
        width: 85%;
    }

    .hero-intro input.zipcode-dir {
        padding: 30px;
        font-size: 20px;
    }

    .hero-intro .zipcode-submit img {
        --btn-img-size: 60px;
    }

    .neighborhood-feature figure {
        aspect-ratio: 1093 / 1000 !important;
    }

    :is(.neighborhood-feature, .use-case-item, .community-benefit-card) .alert {
        font-size: 20px;
    }

    :is(.neighborhood-feature, .use-case-item, .community-benefit-card) figcaption h2 {
        font-size: 42px;
    }

    :is(.neighborhood-feature, .use-case-item, .community-benefit-card) figcaption .btn {
        padding-top: 28px !important;
        padding-bottom: 28px !important;
    }

    .section-how-it-works .how-it-works-steps .step-box {
        padding: 1rem 1rem;
    }

    .section-use-cases {
        padding-bottom: 10rem;
    }

    .faq-item .faq-intro .btn {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .navbar-brand img {
        height: 35px !important;
    }

    .navbar-collapse.show {
        display: flex;
    }

    .nav_left-sect .nav_btn {
        font-size: calc(0.715rem + 0.35vw);
        padding: 6px 12px !important;
    }

    .nav_right-sect .nav_btn {
        padding: 18px 40px !important;
        margin-right: .5rem;
    }

    .nav_right-sect+.navbar-toggler {
        padding: 0.5rem 0.5rem;
        font-size: 10px;
    }

    .hero-intro {
        padding: 115px 15px 35px;
    }

    .hero-intro .early-access {
        padding: 10px 10px;
        font-size: 13px;
        text-align: center;
    }

    .hero-intro .early-access>i.fa-solid {
        display: none;
    }

    .hero-intro .subtitle {
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .hero-intro .tagline {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .hero-intro .zipcode-directory {
        width: 100%;
        margin-bottom: 15px;
    }

    .hero-intro input.zipcode-dir {
        padding: 20px 55px 20px 15px;
        font-size: 16px;
    }

    .hero-intro button.zipcode-submit {
        right: 5px;
    }

    .hero-intro .zipcode-submit img {
        --btn-img-size: 40px;
    }

    .hero-banner {
        min-height: 100vh;
        min-height: 120vh;
    }

    .hero-banner .hero-stats {
        width: 100%;
        flex-wrap: wrap;
        gap: 1rem 2rem;
    }

    .hero-banner .hero-stats .stat:nth-child(1) {
        order: 1;
    }

    .hero-banner .hero-stats .stat:nth-child(2) {
        order: 3;
    }

    .hero-banner .hero-stats .stat:nth-child(3) {
        order: 2;
    }

    .hero-banner .hero-stats .stat .counter {
        font-size: 2.5rem;
        font-weight: 600;
    }

    .hero-banner .hero-stats .stat p {
        font-size: 0.85rem;
        margin-top: 0.5rem;
        opacity: 0.75;
    }

    .neighborhood-feature,
    .community-benefit-card {
        margin-top: 3rem;
    }

    .neighborhood-feature figure {
        min-height: 290px;
    }

    :is(.neighborhood-feature, .use-case-item, .community-benefit-card) .alert {
        padding: 5px 10px;
        border-radius: 5px;
    }

    :is(.neighborhood-feature, .community-benefit-card) figcaption h2 {
        font-size: 30px;
    }

    :is(.neighborhood-feature, .use-case-item, .community-benefit-card) figcaption p {
        font-size: 16px;
    }

    :is(.neighborhood-feature, .use-case-item, .community-benefit-card) figcaption .btn {
        padding-top: 24px !important;
        padding-bottom: 24px !important;
    }

    .section-head {
        margin-bottom: 40px;
    }

    .section-head h2 {
        font-size: 32px;
    }

    .section-head p {
        font-size: 16px;
    }

    .section-how-it-works #how-it-works-tabs-mobile>li {
        display: flex;
        align-items: center;
        position: relative;
    }

    .section-how-it-works #how-it-works-tabs-mobile>li>.mobile-tab-arrow {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 8px;
        position: absolute;
        background-color: var(--bs-gray-300);
        font-size: 16px;
        line-height: 1;
        border-radius: 100%;
        cursor: pointer;
        z-index: 9;
    }

    .section-how-it-works #how-it-works-tabs-mobile>li>.mobile-tab-arrow:active {
        transform: scale(0.95);
    }

    .section-how-it-works #how-it-works-tabs-mobile>li>.mobile-tab-arrow.prev {
        left: 10px;
    }

    .section-how-it-works #how-it-works-tabs-mobile>li>.mobile-tab-arrow.next {
        right: 10px;
    }

    .section-how-it-works .swiper-pagination {
        --swiper-pagination-bottom: -30px;
    }

    .section-how-it-works .swiper-pagination .swiper-pagination-bullet {
        --swiper-pagination-bullet-height: 10px;
        --swiper-pagination-bullet-width: 10px;
    }

    .section-how-it-works .swiper-pagination .swiper-pagination-bullet-active {
        --swiper-pagination-color: #F7C71F;
    }

    .section-how-it-works .how-it-works-steps .step-box {
        padding: 0.25rem 0.25rem;
    }

    .section-how-it-works .how-it-works-steps .step-box .step-img img {
        width: 50%;
    }

    .section-how-it-works .how-it-works-steps .step-box .step-desc h4 {
        font-size: calc(1.025rem + 0.3vw);
    }

    .section-how-it-works .how-it-works-steps .step-box .step-desc p {
        font-size: 14px;
    }

    .use-case-item figure {
        min-height: 210px;
    }

    .community-benefit-card figure {
        min-height: 320px;
    }

    .faq-item .faq-intro h2 {
        font-size: 36px;
    }

    .faq-item .faq-intro p {
        font-size: 16px;
        font-weight: 500;
    }

    .faq-item .faq-intro .btn {
        font-size: 16px;
    }

    .faq-accordion>ul>li>.title {
        font-size: 17px;
        font-weight: 600;
    }

    .faq-accordion>ul>li>a {
        top: 26px;
    }

    .section-neighborhood-cta h2 {
        font-size: 32px;
        font-weight: 600;
    }

    .footer_inner .item-title+p {
        font-size: 15px;
    }

    .copy_right-section {
        font-size: 13px !important;
    }
}