/* ============================================================
   ARHA SUPER SPECIALITY HOSPITALS
   PREMIUM CORPORATE FOOTER
   ============================================================ */


#arhaFooter {

    --ft-navy: #052f41;
    --ft-navy-deep: #021923;
    --ft-navy-dark: #031f2c;

    --ft-blue: #07526d;

    --ft-teal: #13859a;
    --ft-cyan: #49c5cb;

    --ft-red: #d63848;

    --ft-gold: #d5ae3a;

    --ft-white: #ffffff;

    --ft-text: #c1d5dc;

    --ft-muted: #829da8;

    --ft-border:
        rgba(255,255,255,.10);

    position: relative;

    width: 100%;

    font-family:
        'Inter',
        sans-serif;

    color: #ffffff;

}



/* ============================================================
   RESET
   ============================================================ */

#arhaFooter *,
#arhaFooter *::before,
#arhaFooter *::after {

    box-sizing: border-box;

}


#arhaFooter a {

    text-decoration: none;

}



/* ============================================================
   CONTAINER
   ============================================================ */

.arha-ft-container {

    position: relative;

    z-index: 4;

    width:
        min(1300px, calc(100% - 52px));

    margin-inline: auto;

}



/* ============================================================
   WAVE
   ============================================================ */

.arha-ft-wave-wrap {

    position: relative;

    width: 100%;

    height: 125px;

    overflow: hidden;

    background: #ffffff;

}


.arha-ft-wave {

    position: absolute;

    left: -2%;

    bottom: -1px;

    width: 104%;

    height: 100%;

}


.arha-ft-wave-back {

    fill: #62cbd1;

    opacity: .20;

    animation:
        arhaFooterWaveBack
        9s ease-in-out infinite alternate;

}


.arha-ft-wave-middle {

    fill: #0c5f75;

    opacity: .48;

    animation:
        arhaFooterWaveMiddle
        11s ease-in-out infinite alternate;

}


.arha-ft-wave-front {

    fill: #052f41;

}


@keyframes arhaFooterWaveBack {

    from {

        transform:
            translateX(-18px)
            translateY(3px);

    }


    to {

        transform:
            translateX(18px)
            translateY(-5px);

    }

}


@keyframes arhaFooterWaveMiddle {

    from {

        transform:
            translateX(13px);

    }


    to {

        transform:
            translateX(-17px);

    }

}



/* ============================================================
   FOOTER BODY
   ============================================================ */

.arha-ft-body {

    position: relative;

    overflow: hidden;

    margin-top: -1px;

    background:

        radial-gradient(
            circle at 15% 10%,
            rgba(73,197,203,.09),
            transparent 30%
        ),

        radial-gradient(
            circle at 88% 65%,
            rgba(19,133,154,.08),
            transparent 32%
        ),

        linear-gradient(
            125deg,
            #052f41 0%,
            #031f2c 62%,
            #021923 100%
        );

}



/* ============================================================
   GRID BACKGROUND
   ============================================================ */

.arha-ft-grid-effect {

    position: absolute;

    inset: 0;

    z-index: 0;

    opacity: .025;

    background-image:

        linear-gradient(
            rgba(255,255,255,.5) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.5) 1px,
            transparent 1px
        );

    background-size:
        50px 50px;

    pointer-events: none;

}



/* ============================================================
   GLOWING BACKGROUND ORBS
   ============================================================ */

.arha-ft-glow {

    position: absolute;

    z-index: 0;

    border-radius: 50%;

    filter: blur(20px);

    pointer-events: none;

}


.arha-ft-glow-one {

    width: 380px;

    height: 380px;

    left: -210px;

    top: 180px;

    background:
        rgba(44,188,199,.12);

    animation:
        arhaFooterGlowOne
        8s ease-in-out infinite alternate;

}


.arha-ft-glow-two {

    width: 320px;

    height: 320px;

    right: -160px;

    bottom: 40px;

    background:
        rgba(32,133,162,.13);

    animation:
        arhaFooterGlowTwo
        10s ease-in-out infinite alternate;

}


@keyframes arhaFooterGlowOne {

    from {

        transform:
            translate(0,0)
            scale(.9);

        opacity: .55;

    }


    to {

        transform:
            translate(90px,60px)
            scale(1.2);

        opacity: 1;

    }

}


@keyframes arhaFooterGlowTwo {

    from {

        transform:
            translate(0,0)
            scale(1);

    }


    to {

        transform:
            translate(-70px,-45px)
            scale(1.15);

    }

}



/* ============================================================
   REVEAL EFFECT
   ============================================================ */

#arhaFooter [data-footer-reveal] {

    opacity: 0;

    transform:
        translateY(25px);

    transition:

        opacity .75s ease,
        transform .75s
        cubic-bezier(.2,.7,.2,1);

}


#arhaFooter
[data-footer-reveal].arha-ft-visible {

    opacity: 1;

    transform:
        translateY(0);

}



/* ============================================================
   EMERGENCY CTA
   ============================================================ */

.arha-ft-emergency {

    position: relative;

    z-index: 6;

    min-height: 145px;

    margin-bottom: 75px;

    padding:
        25px 29px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 38px;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.16);

    border-radius: 18px;

    background:

        linear-gradient(
            105deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.045)
        );

    box-shadow:
        0 22px 55px
        rgba(0,0,0,.18);

    backdrop-filter:
        blur(15px);

    -webkit-backdrop-filter:
        blur(15px);

}


.arha-ft-emergency::before {

    content: "";

    position: absolute;

    top: 0;

    left: 8%;

    right: 8%;

    height: 1px;

    background:

        linear-gradient(
            90deg,
            transparent,
            rgba(92,218,217,.8),
            transparent
        );

}


.arha-ft-emergency::after {

    content: "";

    position: absolute;

    width: 240px;

    height: 240px;

    right: -90px;

    top: -100px;

    border-radius: 50%;

    background:
        rgba(74,196,202,.07);

    pointer-events: none;

}


.arha-ft-emergency-left {

    display: flex;

    align-items: center;

    gap: 20px;

}


.arha-ft-emergency-symbol {

    position: relative;

    width: 63px;

    height: 63px;

    min-width: 63px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 16px;

    background:
        rgba(214,56,72,.14);

    color: #ff6878;

    font-size: 23px;

}


.arha-ft-emergency-pulse {

    position: absolute;

    top: 4px;

    right: 4px;

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #ff5768;

    animation:
        arhaFooterEmergencyPulse
        1.8s infinite;

}


@keyframes arhaFooterEmergencyPulse {

    0% {

        box-shadow:
            0 0 0
            0 rgba(255,87,104,.5);

    }


    70% {

        box-shadow:
            0 0 0
            10px rgba(255,87,104,0);

    }


    100% {

        box-shadow:
            0 0 0
            0 rgba(255,87,104,0);

    }

}


.arha-ft-eyebrow {

    display: block;

    margin-bottom: 6px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.2px;

    color: #73d7d4;

}


.arha-ft-emergency h2 {

    margin: 0;

    font-family:
        'Outfit',
        sans-serif;

    font-size:
        clamp(21px,2.4vw,31px);

    font-weight: 700;

    line-height: 1.15;

    color: #ffffff;

}


.arha-ft-emergency p {

    margin:
        8px 0 0;

    max-width: 650px;

    font-size: 11px;

    line-height: 1.65;

    color: #aac5cf;

}



/* emergency buttons */

.arha-ft-emergency-actions {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 11px;

    flex-shrink: 0;

}


.arha-ft-emergency-call {

    min-height: 55px;

    padding:
        6px 18px 6px 7px;

    display: flex;

    align-items: center;

    gap: 11px;

    border-radius: 10px;

    background: #d63848;

    color: #ffffff !important;

    box-shadow:
        0 12px 28px
        rgba(180,30,47,.20);

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}


.arha-ft-emergency-call:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 18px 35px
        rgba(180,30,47,.32);

}


.arha-ft-call-icon {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background:
        rgba(255,255,255,.15);

}


.arha-ft-emergency-call > span:last-child {

    display: flex;

    flex-direction: column;

    font-family:
        'Outfit',
        sans-serif;

    font-size: 15px;

    font-weight: 800;

}


.arha-ft-emergency-call small {

    margin-bottom: 2px;

    font-family:
        'Inter',
        sans-serif;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: .8px;

    color: #ffd4da;

}


.arha-ft-direction {

    min-height: 55px;

    padding:
        0 17px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border:
        1px solid
        rgba(255,255,255,.19);

    border-radius: 10px;

    color: #ffffff !important;

    font-size: 11px;

    font-weight: 700;

    transition:
        background .2s ease,
        border-color .2s ease;

}


.arha-ft-direction:hover {

    background:
        rgba(255,255,255,.08);

    border-color:
        rgba(255,255,255,.35);

}



/* ============================================================
   MAIN GRID
   ============================================================ */

.arha-ft-main-grid {

    display: grid;

    grid-template-columns:
        1.45fr
        .75fr
        1.15fr
        1.1fr;

    gap: 55px;

    padding-bottom: 64px;

}



/* ============================================================
   BRAND
   ============================================================ */

.arha-ft-brand {

    display: inline-flex;

    align-items: center;

    gap: 13px;

}


.arha-ft-logo {

    width: 58px;

    height: 58px;

    min-width: 58px;

    object-fit: cover;

    border-radius: 50%;

    background: #ffffff;

    padding: 2px;

    box-shadow:
        0 0 0 1px
        rgba(255,255,255,.16),
        0 8px 25px
        rgba(0,0,0,.25);

    transition:
        transform .4s ease,
        box-shadow .4s ease;

}


.arha-ft-brand:hover
.arha-ft-logo {

    transform:
        rotate(-5deg)
        scale(1.06);

    box-shadow:
        0 0 25px
        rgba(73,197,203,.28);

}


.arha-ft-brand-copy {

    display: flex;

    flex-direction: column;

}


.arha-ft-brand-copy strong {

    font-family:
        'Outfit',
        sans-serif;

    font-size: 27px;

    line-height: 1;

    font-weight: 900;

    color: #ffffff;

}


.arha-ft-brand-copy > span {

    max-width: 210px;

    margin-top: 5px;

    font-size: 7.5px;

    line-height: 1.3;

    font-weight: 700;

    letter-spacing: .85px;

    text-transform: uppercase;

    color: #a9c4cd;

}


.arha-ft-description {

    max-width: 335px;

    margin:
        23px 0 0;

    font-size: 11px;

    line-height: 1.8;

    color: #9db9c3;

}



/* ============================================================
   SOCIALS
   ============================================================ */

.arha-ft-social-label {

    margin-top: 26px;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.1px;

    text-transform: uppercase;

    color: #73d7d4;

}


.arha-ft-socials {

    margin-top: 12px;

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

}


.arha-ft-social {

    position: relative;

    width: 39px;

    height: 39px;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 9px;

    background:
        rgba(255,255,255,.045);

    color: #c0d4db !important;

    transition:
        transform .25s ease,
        color .25s ease,
        background .25s ease,
        box-shadow .25s ease;

}


.arha-ft-social span {

    position: absolute;

    width: 1px;

    height: 1px;

    overflow: hidden;

    clip: rect(0 0 0 0);

}


.arha-ft-social:hover {

    transform:
        translateY(-4px);

    color: #ffffff !important;

    background:
        rgba(73,197,203,.16);

    border-color:
        rgba(73,197,203,.42);

    box-shadow:
        0 0 22px
        rgba(73,197,203,.18);

}


.arha-ft-instagram:hover {

    background:
        rgba(210,64,130,.18);

}


.arha-ft-facebook:hover {

    background:
        rgba(65,105,190,.20);

}


.arha-ft-youtube:hover {

    background:
        rgba(220,55,55,.20);

}


.arha-ft-linkedin:hover {

    background:
        rgba(30,115,175,.22);

}



/* ============================================================
   COLUMN HEADINGS
   ============================================================ */

.arha-ft-column h3 {

    position: relative;

    margin:
        5px 0 25px;

    padding-bottom: 12px;

    font-family:
        'Outfit',
        sans-serif;

    font-size: 14px;

    font-weight: 700;

    color: #ffffff;

}


.arha-ft-column h3::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 34px;

    height: 2px;

    border-radius: 20px;

    background:

        linear-gradient(
            90deg,
            #49c5cb,
            #d5ae3a
        );

    box-shadow:
        0 0 12px
        rgba(73,197,203,.34);

}



/* ============================================================
   QUICK LINKS
   ============================================================ */

.arha-ft-column ul {

    margin: 0;

    padding: 0;

    list-style: none;

}


.arha-ft-column li {

    margin-bottom: 5px;

}


.arha-ft-column li > a {

    min-height: 37px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 9px;

    color: #a6c0c9 !important;

    font-size: 10.5px;

    line-height: 1.45;

    transition:
        color .2s ease,
        transform .2s ease;

}


.arha-ft-column li > a > i {

    opacity: 0;

    font-size: 8px;

    color: #62cbc9;

    transform:
        translateX(-5px);

    transition:
        opacity .2s ease,
        transform .2s ease;

}


.arha-ft-column li > a:hover {

    color: #ffffff !important;

    transform:
        translateX(3px);

}


.arha-ft-column li > a:hover > i {

    opacity: 1;

    transform:
        translateX(0);

}



/* ============================================================
   CENTRES OF EXCELLENCE
   ============================================================ */

.arha-ft-centres li {

    margin-bottom: 7px;

}


.arha-ft-centres li > a {

    justify-content: flex-start;

}


.arha-ft-service-icon {

    width: 28px;

    height: 28px;

    min-width: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 7px;

    background:
        rgba(73,197,203,.10);

    color: #56cbd0;

    font-size: 10px;

}


.arha-ft-service-icon.arha-ft-red {

    background:
        rgba(214,56,72,.12);

    color: #f26b78;

}


.arha-ft-service-icon.arha-ft-gold {

    background:
        rgba(213,174,58,.13);

    color: #e2be55;

}



/* ============================================================
   CONTACT
   ============================================================ */

.arha-ft-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 11px;

    margin-bottom: 17px;

}


.arha-ft-contact-icon {

    width: 34px;

    height: 34px;

    min-width: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background:
        rgba(73,197,203,.08);

    border:
        1px solid
        rgba(73,197,203,.10);

    color: #59cad0;

    font-size: 11px;

}


.arha-ft-contact-item > div {

    display: flex;

    flex-direction: column;

}


.arha-ft-contact-item small {

    margin-bottom: 3px;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: .8px;

    color: #718f9b;

}


.arha-ft-contact-item strong {

    font-family:
        'Outfit',
        sans-serif;

    font-size: 11px;

    color: #ffffff;

}


.arha-ft-contact-item p {

    margin:
        4px 0 0;

    font-size: 10px;

    line-height: 1.55;

    color: #9bb6c0;

}


.arha-ft-contact-item a {

    font-size: 11px;

    font-weight: 600;

    color: #b9ced5 !important;

}


.arha-ft-contact-item a:hover {

    color: #ffffff !important;

}



/* appointment */

.arha-ft-appointment {

    min-height: 43px;

    margin-top: 6px;

    padding:
        0 13px;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 8px;

    background:
        rgba(255,255,255,.045);

    color: #ffffff !important;

    font-size: 10px;

    font-weight: 700;

    transition:
        background .2s ease,
        transform .2s ease;

}


.arha-ft-appointment
.fa-arrow-right {

    margin-left: auto;

    font-size: 8px;

}


.arha-ft-appointment:hover {

    transform:
        translateY(-2px);

    background:
        rgba(73,197,203,.12);

}



/* ============================================================
   SERVICE STRIP
   ============================================================ */

.arha-ft-service-strip {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    margin-bottom: 42px;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius: 11px;

    background:
        rgba(255,255,255,.028);

}


.arha-ft-service-strip > div {

    min-height: 73px;

    padding:
        15px 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    border-right:
        1px solid
        rgba(255,255,255,.08);

}


.arha-ft-service-strip > div:last-child {

    border-right: 0;

}


.arha-ft-service-strip i {

    color: #58c8cd;

    font-size: 16px;

}


.arha-ft-service-strip span {

    display: flex;

    flex-direction: column;

    font-size: 8px;

    color: #819fa9;

}


.arha-ft-service-strip strong {

    margin-bottom: 2px;

    font-family:
        'Outfit',
        sans-serif;

    font-size: 11px;

    color: #dce9ed;

}



/* ============================================================
   BOTTOM
   ============================================================ */

.arha-ft-bottom {

    position: relative;

    z-index: 3;

    border-top:
        1px solid
        rgba(255,255,255,.07);

    background:
        rgba(1,14,20,.32);

}


.arha-ft-bottom-inner {

    min-height: 67px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

}


.arha-ft-bottom p {

    margin: 0;

    font-size: 9px;

    color: #698995;

}


.arha-ft-bottom p strong {

    color: #94adb6;

    font-weight: 600;

}


.arha-ft-bottom-links {

    display: flex;

    align-items: center;

    gap: 11px;

}


.arha-ft-bottom-links a {

    color: #718e99 !important;

    font-size: 9px;

    transition:
        color .2s ease;

}


.arha-ft-bottom-links a:hover {

    color: #ffffff !important;

}


.arha-ft-bottom-links span {

    width: 3px;

    height: 3px;

    border-radius: 50%;

    background: #446470;

}



/* ============================================================
   SCROLL TOP
   ============================================================ */

.arha-ft-scroll-top {

    position: fixed;

    right: 22px;

    bottom: 22px;

    z-index: 8400;

    width: 43px;

    height: 43px;

    padding: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.20);

    border-radius: 50%;

    background: #073f55;

    color: #ffffff;

    cursor: pointer;

    box-shadow:
        0 10px 27px
        rgba(0,0,0,.22);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(12px);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease,
        background .25s ease;

}


.arha-ft-scroll-top.arha-ft-show {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

}


.arha-ft-scroll-top:hover {

    background: #13859a;

    transform:
        translateY(-3px);

}



/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1050px) {

    .arha-ft-main-grid {

        grid-template-columns:
            1.3fr 1fr 1fr;

        gap:
            45px 35px;

    }


    .arha-ft-contact-column {

        grid-column:
            span 2;

    }


    .arha-ft-emergency {

        align-items: flex-start;

    }


    .arha-ft-emergency-actions {

        align-items: stretch;

        flex-direction: column;

    }

}



/* ============================================================
   TABLET PORTRAIT
   ============================================================ */

@media (max-width: 800px) {

    .arha-ft-wave-wrap {

        height: 90px;

    }


    .arha-ft-emergency {

        align-items: stretch;

        flex-direction: column;

    }


    .arha-ft-emergency-actions {

        flex-direction: row;

    }


    .arha-ft-main-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .arha-ft-brand-column {

        grid-column:
            span 2;

    }


    .arha-ft-contact-column {

        grid-column: auto;

    }


    .arha-ft-description {

        max-width: 550px;

    }


    .arha-ft-service-strip {

        grid-template-columns:
            repeat(2,1fr);

    }


    .arha-ft-service-strip > div:nth-child(2) {

        border-right: 0;

    }


    .arha-ft-service-strip > div:nth-child(-n+2) {

        border-bottom:
            1px solid
            rgba(255,255,255,.08);

    }

}



/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 600px) {

    .arha-ft-container {

        width:
            calc(100% - 30px);

    }


    .arha-ft-wave-wrap {

        height: 68px;

    }


    /* Emergency */

    .arha-ft-emergency {

        margin-bottom: 55px;

        padding:
            21px 18px;

        border-radius: 14px;

    }


    .arha-ft-emergency-left {

        align-items: flex-start;

        gap: 13px;

    }


    .arha-ft-emergency-symbol {

        width: 49px;

        height: 49px;

        min-width: 49px;

        border-radius: 12px;

        font-size: 18px;

    }


    .arha-ft-emergency h2 {

        font-size: 20px;

    }


    .arha-ft-emergency p {

        font-size: 10px;

    }


    .arha-ft-emergency-actions {

        width: 100%;

        flex-direction: column;

    }


    .arha-ft-emergency-call,
    .arha-ft-direction {

        width: 100%;

    }


    .arha-ft-direction {

        justify-content: center;

    }


    /* main */

    .arha-ft-main-grid {

        grid-template-columns:
            1fr;

        gap: 38px;

        padding-bottom: 50px;

    }


    .arha-ft-brand-column,
    .arha-ft-contact-column {

        grid-column: auto;

    }


    .arha-ft-column h3 {

        margin-bottom: 17px;

    }


    /* Links mobile design */

    .arha-ft-column:not(.arha-ft-centres) ul {

        display: grid;

        grid-template-columns:
            repeat(2,1fr);

        gap:
            0 18px;

    }


    /* Centres remain single line */

    .arha-ft-centres ul {

        display: block;

    }


    .arha-ft-socials {

        gap: 7px;

    }


    /* services */

    .arha-ft-service-strip {

        grid-template-columns:
            repeat(2,1fr);

    }


    .arha-ft-service-strip > div {

        min-height: 65px;

        padding:
            11px;

    }


    /* bottom */

    .arha-ft-bottom-inner {

        min-height: 0;

        padding:
            19px 0 78px;

        align-items: flex-start;

        flex-direction: column;

        gap: 12px;

    }


    .arha-ft-bottom-links {

        flex-wrap: wrap;

    }


    /*
     * 78px bottom padding keeps footer
     * clear of homepage mobile emergency bar.
     */


    /* Scroll top sits above fixed emergency bar */

    .arha-ft-scroll-top {

        right: 15px;

        bottom: 74px;

        width: 40px;

        height: 40px;

    }

}



/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 380px) {

    .arha-ft-brand-copy strong {

        font-size: 23px;

    }


    .arha-ft-brand-copy > span {

        max-width: 165px;

        font-size: 6.5px;

    }


    .arha-ft-column:not(.arha-ft-centres) ul {

        grid-template-columns: 1fr;

    }


    .arha-ft-service-strip {

        grid-template-columns: 1fr;

    }


    .arha-ft-service-strip > div {

        border-right: 0;

        border-bottom:
            1px solid
            rgba(255,255,255,.08);

    }


    .arha-ft-service-strip > div:last-child {

        border-bottom: 0;

    }

}



/* ============================================================
   REDUCED MOTION
   Accessibility + performance
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    #arhaFooter *,
    #arhaFooter *::before,
    #arhaFooter *::after {

        animation:
            none !important;

        transition-duration:
            .01ms !important;

    }


    #arhaFooter [data-footer-reveal] {

        opacity: 1;

        transform: none;

    }

}