:root {
    --ink: #111;
    --forest: #5a9f12;
    --forest-2: #417c0e;
    --olive: #9acb21;
    --mist: #f3f9e4;
    --white: #fff;
    --paper: #f7f9f4;
    --line: rgba(90, 159, 18, .18);
    --heading: 'Lora', Georgia, serif;
    --poppins: 'Poppins', sans-serif;
    --shadow: 0 24px 60px rgba(65, 124, 14, .14);
    --radius: 18px
}

* {
    box-sizing: border-box;
    margin: 0
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 98px
}

body {
    background: var(--white);
    color: var(--ink);
    font-family: var(--poppins);
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: inline
}

.shell {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    white-space: nowrap
}

.topbar {
    background: var(--ink);
    color: #e3e7e4;
    font-size: 11px
}

.topbar__content {
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px
}

.topbar i {
    color: #a4c2ad;
    margin-right: 5px
}

.topbar a:hover {
    color: #fff
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(17, 17, 17, .07)
}

.nav-wrap {
    height: 78px;
    display: flex;
    align-items: center;
    gap: 26px
}

.brand {
    width: 132px;
    flex: none
}

.brand img {
    max-height: 50px;
    width: auto
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex: 1
}

.main-nav a {
    font-size: 12px;
    font-weight: 600;
    position: relative
}

.main-nav a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 1px;
    background: var(--forest);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s
}

.main-nav a:hover:after {
    transform: scaleX(1);
    transform-origin: left
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 1px solid var(--forest);
    padding: 15px 22px;
    background: var(--forest);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .02em;
    cursor: pointer;
    transition: background .25s, transform .25s, box-shadow .25s
}

.button:hover {
    background: var(--forest-2);
    box-shadow: 0 12px 24px rgba(15, 46, 34, .2);
    transform: translateY(-2px)
}

.button--small {
    padding: 11px 14px;
    font-size: 11px;
    white-space: nowrap
}

.button--light {
    background: #fff;
    border-color: #fff;
    color: var(--forest)
}

.button--light:hover {
    background: var(--mist);
    color: var(--forest)
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    padding: 8px
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--forest);
    margin: 4px
}

.hero {
    min-height: 650px;
    position: relative;
    overflow: hidden
}

.hero:after {
    content: none;
}

.hero__grid {
    min-height: 650px;
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    align-items: center;
    position: relative;
    z-index: 1
}

.hero__content {
    padding: 70px 64px 70px 0
}

.eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 700;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px
}

.eyebrow span {
    display: block;
    width: 34px;
    height: 1px;
    background: currentColor
}

.eyebrow--light {
    color: #094f1c
}

.hero h1,
.section h2,
.contact h2 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -.035em
}

.hero h1 {
    font-size: clamp(42px, 5vw, 68px);
    max-width: 645px;
    color: var(--forest)
}

em {
    font-weight: 500;
    color: var(--olive)
}

.hero__lead {
    max-width: 550px;
    margin: 27px 0px;
    color: #3f4b43;
    font-size: 16px
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 35px;
}

.text-link {
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    gap: 9px;
    align-items: center;
    border-bottom: 1px solid var(--forest);
    padding-bottom: 4px;
    transition: gap .2s
}

.text-link:hover {
    gap: 14px
}

.hero__credential {
    border-top: 1px solid var(--line);
    margin-top: 48px;
    padding-top: 22px;
    display: flex;
    gap: 13px;
    align-items: center;
    color: #425248;
    font-size: 12px
}

.hero__credential i {
    font-size: 22px;
    color: var(--olive)
}

.hero__credential p {
    line-height: 1.5
}

.hero__credential b {
    color: var(--forest)
}

.hero__visual {
    height: 100%;
    min-height: 650px;
    position: relative
}

.hero__image {
    height: calc(100% - 82px);
    min-height: 540px;
    position: absolute;
    inset: 42px 0 40px 0;
}

.hero__image:after {
    content: '';
    position: absolute;
    inset: 0;
}

.hero__stamp {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 170px;
    height: 133px;
    background: var(--forest);
    color: #fff;
    padding: 22px;
    text-transform: uppercase;
    letter-spacing: .16em
}

.hero__stamp span {
    display: block;
    font-family: var(--heading);
    font-size: 22px;
    letter-spacing: 0
}

.hero__stamp small {
    font-size: 8px;
    display: block;
    margin-top: 19px
}

.hero__figure {
    position: absolute;
    left: -54px;
    bottom: 83px;
    background: #fff;
    width: 165px;
    padding: 18px 20px;
    box-shadow: var(--shadow);
    line-height: 1
}

.hero__figure strong {
    font-family: var(--heading);
    font-size: 48px;
    color: var(--forest)
}

.hero__figure>span {
    font-family: var(--heading);
    font-size: 27px;
    color: var(--olive)
}

.hero__figure p {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .09em;
    margin-top: 8px;
    line-height: 1.45;
    color: #647168
}

.section {
    padding: 116px 0
}

.firm {
    background: #fff
}

.firm__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 11%;
    align-items: start
}

.section h2,
.contact h2 {
    font-size: clamp(34px, 4vw, 52px);
    color: var(--forest)
}

.firm__intro>p:not(.eyebrow) {
    max-width: 430px;
    margin: 26px 0;
    color: #546057
}

.firm__detail {
    border-left: 1px solid var(--line);
    padding-left: 48px
}

.firm__copy>p {
    font-family: var(--heading);
    font-size: 22px;
    line-height: 1.45;
    color: #263b2f
}

.firm__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 35px 0
}

.firm__items article {
    display: flex;
    gap: 12px
}

.firm__items i {
    color: var(--olive);
    font-size: 19px;
    margin-top: 5px
}

.firm__items h3 {
    font-size: 13px;
    color: var(--forest)
}

.firm__items p {
    font-size: 12px;
    line-height: 1.6;
    color: #5c6960;
    margin-top: 5px
}

.strengths {
    padding: 21px 24px;
    background: var(--mist);
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    font-size: 12px;
    color: #35493d
}

.strengths i {
    color: var(--olive);
    margin-right: 7px
}

.services {
    background: var(--paper)
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 70px;
    align-items: end;
    margin-bottom: 46px
}

.section-heading h2 {
    max-width: 610px
}

.section-heading>p {
    max-width: 310px;
    font-size: 13px;
    color: #5d675f;
    padding-bottom: 5px
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.service-card {
    background: #fff;
    min-height: 310px;
    padding: 29px;
    position: relative;
    border: 1px solid transparent;
    transition: transform .25s, box-shadow .25s, border .25s
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: rgba(78, 122, 93, .17)
}

.service-card--featured {
    background: var(--forest);
    color: #fff
}

.card-number {
    font-size: 11px;
    color: #899f91;
    position: absolute;
    right: 25px;
    top: 26px
}

.service-card>i {
    font-size: 29px;
    color: var(--olive);
    margin: 25px 0 21px
}

.service-card--featured>i {
    color: #bfd4c5
}

.service-card h3 {
    font-family: var(--heading);
    font-size: 23px;
    line-height: 1.2;
    color: var(--forest)
}

.service-card--featured h3 {
    color: #fff
}

.service-card p {
    font-size: 12px;
    line-height: 1.7;
    color: #68736b;
    margin-top: 12px;
    max-width: 260px
}

.service-card--featured p {
    color: #cfddd2
}

.service-card>a {
    position: absolute;
    bottom: 26px;
    right: 28px;
    color: var(--forest);
    font-size: 13px
}

.service-card--featured>a {
    color: #fff
}

.advantage {
    background: var(--white);
    padding-bottom: 0
}

.advantage__grid {
    display: grid;
    grid-template-columns: 1fr 1fr
}

.advantage__panel {
    background: var(--forest);
    padding: 70px;
    min-height: 470px;
    color: #e2eee5
}

.advantage__panel h2 {
    color: #fff;
    font-size: 45px;
    max-width: 430px
}

.advantage__panel>p:not(.eyebrow) {
    font-size: 13px;
    max-width: 390px;
    margin: 22px 0 30px
}

.advantage__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--mist)
}

.advantage__cards article {
    padding: 49px 38px;
    border-right: 1px solid rgba(15, 46, 34, .11);
    border-bottom: 1px solid rgba(15, 46, 34, .11)
}

.advantage__cards i {
    font-size: 25px;
    color: var(--olive);
    margin-bottom: 18px
}

.advantage__cards h3 {
    font-family: var(--heading);
    font-size: 22px;
    color: var(--forest)
}

.advantage__cards p {
    font-size: 12px;
    line-height: 1.6;
    color: #506258;
    margin-top: 8px
}

.metrics {
    background-color: #080808;
    color: #fcfbfb;
    padding: 41px 0
}

.metrics__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center
}

.metrics article+article {
    border-left: 1px solid rgba(255, 255, 255, .2)
}

.metrics strong {
    font-family: var(--heading);
    display: block;
    font-size: 42px;
    font-weight: 500;
    color: #d4e4d7;
    line-height: 1.15
}

.metrics span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em
}

.method {
    overflow: hidden
}

.method__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 58px
}

.method__heading h2 {
    max-width: 540px
}

.timeline {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    position: relative;
    gap: 22px
}

.timeline:before {
    content: '';
    position: absolute;
    left: 6%;
    right: 6%;
    top: 23px;
    height: 1px;
    background: #c8d4cb
}

.timeline li {
    position: relative;
    padding-top: 66px
}

.timeline li>span {
    position: absolute;
    top: 0;
    left: 0;
    width: 47px;
    height: 47px;
    border: 1px solid #bdcbbf;
    background: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 700;
    color: #111;
    z-index: 1
}

.timeline h3 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 20px;
    color: var(--forest);
    line-height: 1.2
}

.timeline p {
    font-size: 11px;
    line-height: 1.55;
    color: #657268;
    margin-top: 8px
}

.team {
    background: var(--paper)
}

.team__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; max-width: 1080px; margin: 0 auto } .team-card { display: flex; flex-direction: column; height: 100%; overflow: hidden; background: #fff; border: 1px solid rgba(15, 46, 34, .10); border-radius: 16px; box-shadow: 0 12px 30px rgba(15, 46, 34, .08); transition: transform .25s ease, box-shadow .25s ease } .team-card:hover { transform: translateY(-6px); box-shadow: 0 18px 38px rgba(15, 46, 34, .14) }

.portrait {
    height: 310px;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    background-color: #dce6dd;
    background-position: center;
    background-size: cover
}

.portrait img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center
}

.portrait:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(15, 46, 34, .25))
}

.portrait span {
    color: #fff;
    background: rgba(15, 46, 34, .78);
    font-family: var(--heading);
    font-size: 32px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    z-index: 1;
    display: grid;
    place-items: center
}

.portrait--one {
    background-image: url('https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&w=600&q=80')
}

.portrait--two {
    background-image: url('https://images.unsplash.com/photo-1580489944761-15a19d654956?auto=format&fit=crop&w=600&q=80')
}

.portrait--three {
    background-image: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&w=600&q=80')
}

.portrait--four {
    background-image: url('https://images.unsplash.com/photo-1556157382-97eda2d62296?auto=format&fit=crop&w=600&q=80')
}

.team-card>div:last-child {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px 23px 24px
}

.team-card p {
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #111;
    font-weight: 700;
    margin: 0 0 6px
}

.team-card h3 {
    font-family: var(--heading);
    font-size: 22px;
    color: var(--forest);
    line-height: 1.2;
    margin: 0 0 10px
}

.team-card small {
    display: block;
    line-height: 1.65;
    color: #5f6d63;
    font-size: 13px;
    margin: 0
}

.team-card__footer {
    margin-top: auto;
    padding-top: 16px;
    display: grid;
    gap: 8px
}

.team-card__link {
    border: 0;
    background: transparent;
    padding: 0;
    color: var(--forest);
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    text-decoration: underline;
}

.team-card__profile {
    border: 1px dashed #b9c7bb;
    border-radius: 8px;
    padding: 10px 12px;
    background: #f6f8f4;
    color: #5f6d63;
    font-size: 12px;
    line-height: 1.5;
}

.team-card__profile span {
    display: block
}

.team-card__profile.is-open {
    display: block
}

.team-card a {
    font-size: 10px;
    font-weight: 700
}

.team-card a i {
    margin-left: 6px
}

.contact {
    background-color: rgb(243, 249, 228);
    color: #ffffff
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9%;
    padding: 105px 0
}

.contact h2 {
    color: var(--forest-2);
    max-width: 480px
}

.contact__information>p:not(.eyebrow) {
    color: #0F2E22;
    max-width: 470px;
    margin: 23px 0 37px;
    font-size: 13px
}

.contact-list {
    display: grid;
    gap: 17px
}

.contact-list>a,
.contact-list>span {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    font-size: 11px;
    color: #094f1c;
}

.contact-list>a:hover b {
    color: #fff
}

.contact-list>*,
.contact-list span span {
    line-height: 1.55
}

.contact-list i {
    color: var(--ink);
    font-size: 15px;
    width: 18px;
    margin-top: 2px
}

.contact-list b {
    display: block;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 9px;
    color: #111;
    margin-bottom: 3px
}

.contact-form {
    background: #fff;
    color: var(--ink);
    padding: 39px 39px 31px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .2)
}

.form-tag {
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #080808;
    font-weight: 700
}

.contact-form h3 {
    font-family: var(--heading);
    color: var(--forest-2);
    font-size: 31px;
    margin: 3px 0 20px
}

.contact-form label {
    display: block;
    color: #465248;
    font-size: 10px;
    font-weight: 700;
    margin-top: 13px
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px
}

.field-row label {
    min-width: 0
}

input,
textarea {
    display: block;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #cad4cc;
    padding: 8px 0;
    color: var(--ink);
    font: 400 12px var(--poppins);
    outline: none;
    background: transparent;
    resize: vertical
}

input:focus,
textarea:focus {
    border-color: var(--olive)
}

textarea {
    line-height: 1.5
}

.contact-form .button {
    margin-top: 24px;
    width: 100%
}

.form-note {
    font-size: 9px;
    line-height: 1.5;
    color: #718076;
    text-align: center;
    margin-top: 13px
}

.form-success {
    font-size: 11px;
    color: var(--forest);
    text-align: center;
    font-weight: 600;
    margin-top: 12px;
    min-height: 16px
}

.footer {
    background: #080808;
    color: #d0ded4
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr;
    gap: 70px;
    padding: 60px 0;
    align-items: start;
}

.footer__grid>div {
    display: flex;
    flex-direction: column;
}

.footer h3 {
    margin: 0 0 24px 0;
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer li {
    margin-bottom: 14px;
}

.footer__brand {
    font-family: var(--heading);
    font-size: 31px;
    color: #fff;
    display: inline-block
}

.footer__brand i {
    color: #aac5b0
}

.footer__brand small {
    font: 600 8px var(--poppins);
    letter-spacing: .12em;
    margin-left: 4px
}

.footer p {
    font-size: 12px;
    line-height: 1.7;
    max-width: 270px;
    margin-top: 11px
}

.footer h3 {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: #fff;
    margin: 10px 0 13px
}

.footer ul {
    list-style: none;
    font-size: 11px;
    line-height: 2
}


.footer a:hover {
    color: #fff
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 18px 0;
    font-size: 10px;
    display: flex;
    justify-content: space-between
}

.footer__bottom a i {
    margin-left: 6px
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

.reveal--delay {
    transition-delay: .12s
}

@media(max-width:900px) {
    .nav-cta {
        display: none
    }

    .main-nav {
        gap: 15px
    }

    .hero__content {
        padding-right: 25px
    }

    .hero__figure {
        left: -25px
    }

    .section {
        padding: 82px 0
    }

    .advantage__panel {
        padding: 52px
    }

    .timeline {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 35px
    }

    .timeline:before {
        display: none
    }

    .timeline li {
        padding-top: 57px
    }

    .team__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .portrait {
        height: 330px
    }
}

@media(max-width:680px) {
    .shell {
        width: min(100% - 32px, 1180px)
    }

    .topbar__content {
        padding: 8px 0;
        justify-content: flex-start;
        line-height: 1.5
    }

    .topbar__content span:first-child {
        width: 100%
    }

    .topbar__content span:last-child {
        display: none
    }

    .nav-wrap {
        height: 67px
    }

    .brand {
        width: 108px
    }

    .menu-toggle {
        display: block;
        margin-left: auto
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 67px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 17px 24px 24px;
        box-shadow: 0 16px 28px rgba(0, 0, 0, .1);
        align-items: flex-start;
        flex-direction: column;
        gap: 14px
    }

    .main-nav.is-open {
        display: flex
    }

    .hero {
        background: #f7f9f7
    }

    .hero__grid {
        min-height: auto;
        display: block
    }

    .hero__content {
        padding: 72px 0 42px
    }

    .hero h1 {
        font-size: 43px
    }

    .hero__lead {
        font-size: 14px
    }

    .hero__actions {
        gap: 19px;
        flex-wrap: wrap
    }

    .hero__credential {
        margin-top: 33px
    }

    .hero__visual {
        min-height: 380px;
        height: 380px;
        margin: 0 -16px
    }

    .hero__image {
        min-height: 0;
        inset: 0 0 0 0;
        height: 100%
    }

    .hero__figure {
        left: 16px;
        bottom: 18px;
        width: 140px;
        padding: 15px
    }

    .hero__figure strong {
        font-size: 40px
    }

    .hero__stamp {
        width: 124px;
        height: 94px;
        padding: 13px;
        bottom: 0
    }

    .hero__stamp small {
        margin-top: 8px;
        font-size: 7px
    }

    .firm__grid,
    .contact__grid,
    .advantage__grid {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .firm__detail {
        padding-left: 0;
        border-left: 0
    }

    .firm__items,
    .strengths {
        grid-template-columns: 1fr
    }

    .section-heading {
        display: block;
        margin-bottom: 32px
    }

    .section-heading>p {
        margin-top: 16px
    }

    .services__grid {
        grid-template-columns: 1fr
    }

    .service-card {
        min-height: 250px
    }

    .advantage__panel {
        padding: 50px 28px;
        min-height: auto
    }

    .advantage__panel h2 {
        font-size: 38px
    }

    .advantage__cards {
        grid-template-columns: 1fr
    }

    .advantage__cards article {
        padding: 32px 28px
    }

    .metrics__grid {
        gap: 20px
    }

    .metrics strong {
        font-size: 33px
    }

    .metrics span {
        font-size: 8px
    }

    .method__heading {
        display: block;
        margin-bottom: 35px
    }

    .timeline {
        grid-template-columns: 1fr;
        gap: 5px
    }

    .timeline li {
        padding: 8px 0 17px 61px;
        min-height: 66px
    }

    .timeline li>span {
        left: 0;
        top: 0
    }

    .timeline:after {
        content: '';
        position: absolute;
        left: 23px;
        top: 48px;
        bottom: 30px;
        border-left: 1px solid #c8d4cb
    }

    .timeline p {
        margin-top: 4px
    }

    .team__grid {
        grid-template-columns: 1fr
    }

    .portrait {
        height: 335px
    }

    .contact__grid {
        padding: 75px 0
    }

    .contact-form {
        padding: 29px 22px
    }

    .field-row {
        grid-template-columns: 1fr
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 47px 0
    }

    .footer__bottom {
        gap: 16px;
        align-items: center
    }

    .footer__bottom a {
        white-space: nowrap
    }

    .footer__bottom span {
        line-height: 1.4
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }

    .button,
    .service-card {
        transition: none
    }
}

/* =========================
CELULAR
========================= */

@media (max-width:768px) {

    .topbar {

        font-size: 12px;
    }

    .topbar__content {

        flex-direction: column;

        justify-content: center;

        align-items: center;

        text-align: center;

        gap: 10px;

        padding: 12px 0;

        min-height: auto;
    }

    .topbar__content span {

        width: 100%;

        display: flex;

        justify-content: center !important;
    }

    .topbar__content a {

        display: flex;

        align-items: center;

        justify-content: center;

        gap: 8px;

        flex-wrap: wrap;
    }

}