.garis-global-footer,
.garis-global-footer *,
.garis-global-footer *::before,
.garis-global-footer *::after {
    box-sizing: border-box;
}

.garis-global-footer {
    --garis-footer-overlay: .88;
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: 0;
    overflow: hidden;
    transform: translateX(-50%);
    background: #171925;
    background-image: linear-gradient(
        rgba(23, 25, 37, var(--garis-footer-overlay)),
        rgba(23, 25, 37, var(--garis-footer-overlay))
    );
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #cfcfd2;
}

.garis-global-footer__inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.garis-global-footer a {
    color: #cfcfd2;
    text-decoration: none;
    transition: color 180ms ease;
}

.garis-global-footer a:hover,
.garis-global-footer a:focus-visible {
    color: #ff671f;
}

.garis-global-footer__top {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    padding: 72px 0 0;
    gap: 72px;
    color: #0e101e;
    z-index: 1;
}

.garis-global-footer__top::before {
    position: absolute;
    top: 0;
    right: 50%;
    bottom: 0;
    left: 50%;
    width: 100vw;
    background: #fff;
    content: "";
    transform: translateX(-50%);
    z-index: -1;
}

.garis-global-footer__about {
    min-width: 0;
}

.garis-global-footer__heading {
    margin: 0 0 22px;
    color: #0e101e;
    font-size: clamp(42px, 4.2vw, 68px);
    font-weight: 700;
    line-height: 1.05;
}

.garis-global-footer__description {
    max-width: 820px;
    font-size: 18px;
    line-height: 1.65;
}

.garis-global-footer__description > :first-child {
    margin-top: 0;
}

.garis-global-footer__description > :last-child {
    margin-bottom: 0;
}

.garis-global-footer__button {
    display: inline-flex;
    min-height: 48px;
    margin-top: 28px;
    padding: 12px 24px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #ff671f;
    color: #fff;
    font-weight: 700;
    line-height: 1.4;
}

.garis-global-footer__socials {
    display: flex;
    margin-top: 46px;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
}

.garis-global-footer__social {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    color: var(--social-color, #fff) !important;
    font-size: 23px;
}

.garis-global-footer__social svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.garis-global-footer__newsletter {
    --garis-newsletter-offset-x: 0px;
    --garis-newsletter-offset-y: 48px;
    position: relative;
    width: 420px;
    max-width: 100%;
    justify-self: end;
    transform: translate(
        var(--garis-newsletter-offset-x),
        var(--garis-newsletter-offset-y)
    );
    padding: 42px;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 12px 38px rgba(0, 0, 0, .25);
    color: #171925;
}

.garis-global-footer__back-to-top {
    position: absolute;
    right: -80px;
    bottom: -29px;
    display: inline-flex;
    width: 58px;
    height: 58px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .16);
    color: #171925;
    cursor: pointer;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
    z-index: 3;
}

.garis-global-footer__back-to-top:hover,
.garis-global-footer__back-to-top:focus-visible {
    background: #ff671f;
    color: #fff;
    transform: translateY(-3px);
}

.garis-global-footer__back-to-top svg {
    width: 42%;
    height: 42%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.garis-global-footer__card-title,
.garis-global-footer__column-title {
    display: block;
    margin: 0 0 18px;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
}

.garis-global-footer__newsletter .garis-global-footer__card-title {
    color: #171925;
    font-size: 24px;
}

.garis-global-footer__benefits,
.garis-global-footer__links,
.garis-global-footer__extra-links,
.garis-global-footer__legal {
    margin: 0;
    padding: 0;
    list-style: none;
}

.garis-global-footer__benefits {
    display: grid;
    gap: 12px;
}

.garis-global-footer__benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.garis-global-footer__benefits span {
    color: #7e818a;
}

.garis-global-footer__nav {
    margin-top: 0;
    padding: 88px 0 54px;
    border-bottom: 1px solid #3b3d48;
}

.garis-global-footer__nav-desktop {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 48px;
}

.garis-global-footer__nav-mobile {
    display: none;
}

.garis-global-footer__links {
    display: grid;
    gap: 12px;
}

.garis-global-footer__details {
    --garis-footer-details-gap: 56px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 54px 0;
    gap: var(--garis-footer-details-gap) !important;
}

.garis-global-footer__details > .garis-global-footer__detail-column:last-child {
    grid-column: -2 / -1;
}

.garis-global-footer__address {
    margin-bottom: 18px;
    line-height: 1.65;
}

.garis-global-footer__contact {
    display: block;
    width: fit-content;
    margin-top: 9px;
}

.garis-global-footer__app-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    object-fit: contain;
}

.garis-global-footer__app p {
    margin: -7px 0 18px;
}

.garis-global-footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.garis-global-footer__badges img {
    display: block;
    width: auto;
    height: 40px;
}

.garis-global-footer__extra-links {
    display: grid;
    gap: 14px;
}

.garis-global-footer__extra-links li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.garis-global-footer__extra-links svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.garis-global-footer__bottom {
    --garis-footer-bottom-gap: 700px;
    display: flex;
    padding: 28px 0 32px;
    align-items: center;
    justify-content: flex-start;
    border-top: 1px solid #3b3d48;
    gap: var(--garis-footer-bottom-gap);
    font-size: 14px;
}

.garis-global-footer__legal {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.garis-global-footer__accordion-button {
    width: 100%;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    border-bottom: 1px solid #3b3d48;
    background: transparent;
    color: #fff;
    font: inherit;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.garis-global-footer__accordion-button svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 180ms ease;
}

.garis-global-footer__accordion-button[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.garis-global-footer__accordion-panel {
    padding: 18px 0 24px;
}

.garis-global-footer :focus-visible {
    outline: 2px solid #ff671f;
    outline-offset: 4px;
}

@media (max-width: 1024px) {
    .garis-global-footer__inner {
        padding: 0 60px;
    }

    .garis-global-footer__top {
        grid-template-columns: minmax(0, 1fr) auto;
        padding: 56px 0 0;
        gap: 42px;
    }

    .garis-global-footer__top::before {
        top: 0;
    }

    .garis-global-footer__newsletter {
        --garis-newsletter-offset-y: 36px;
        width: 360px;
        padding: 32px;
    }

    .garis-global-footer__back-to-top {
        right: 0;
        width: 46px;
        height: 46px;
    }

    .garis-global-footer__nav-desktop {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 32px;
    }

    .garis-global-footer__details {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .garis-global-footer__details > .garis-global-footer__detail-column:last-child {
        grid-column: -2 / -1;
    }

    .garis-global-footer__bottom {
        --garis-footer-bottom-gap: 180px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .garis-global-footer {
        font-size: 15px;
        line-height: 1.6;
    }

    .elementor-widget-garis_global_footer .garis-global-footer .garis-global-footer__top {
        padding: var(--garis-footer-ipad-top-padding, 56px 0 0) !important;
    }

    .garis-global-footer__heading {
        font-size: 48px;
        line-height: 1.08;
    }

    .garis-global-footer__description {
        font-size: 16px;
        line-height: 1.62;
    }

    .garis-global-footer__newsletter .garis-global-footer__card-title {
        font-size: 20px;
    }

    .garis-global-footer__column-title {
        font-size: 16px;
    }

    .garis-global-footer__details {
        gap: var(--garis-footer-ipad-details-gap, 40px) !important;
    }

    .garis-global-footer__bottom {
        gap: var(--garis-footer-ipad-bottom-gap, 180px);
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .garis-global-footer {
        font-size: 16px;
        line-height: 1.6;
    }

    .garis-global-footer__inner {
        padding: 0 28px;
    }

    .garis-global-footer__top {
        grid-template-columns: 1fr;
        padding: 44px 0;
        gap: 38px;
    }

    .garis-global-footer__top::before {
        top: 0;
    }

    .garis-global-footer__heading {
        font-size: 36px;
        line-height: 1.1;
    }

    .garis-global-footer__description {
        font-size: 16px;
        line-height: 1.65;
    }

    .garis-global-footer__newsletter {
        --garis-newsletter-offset-x: 0px;
        --garis-newsletter-offset-y: 0px;
        width: 100%;
        padding: 28px 24px;
    }

    .garis-global-footer__back-to-top {
        right: 0;
        bottom: -24px;
        width: 42px;
        height: 42px;
    }

    .garis-global-footer__nav {
        margin-top: 0;
        padding: 36px 0 24px;
        border-bottom: 1px solid #3b3d48;
    }

    .garis-global-footer__nav-desktop {
        display: none;
    }

    .garis-global-footer__nav-mobile {
        display: block;
    }

    .garis-global-footer__accordion-button {
        min-height: 44px;
        padding: 10px 18px;
        border-bottom: 0;
        font-size: 16px;
        line-height: 1.4;
    }

    .garis-global-footer__accordion-button svg {
        width: 19px;
        height: 19px;
    }

    .garis-global-footer__accordion-panel {
        padding: 10px 18px 18px;
    }

    .garis-global-footer__details {
        --garis-footer-details-gap: 24px;
        grid-template-columns: 1fr;
        padding: 36px 0;
    }

    .garis-global-footer__details > .garis-global-footer__detail-column:last-child {
        grid-column: auto;
    }

    .garis-global-footer__bottom {
        --garis-footer-bottom-gap: 18px;
        padding-top: 22px;
        align-items: flex-start;
        flex-direction: column;
        font-size: 13px;
    }

    .garis-global-footer__legal {
        justify-content: flex-start;
    }

    .garis-global-footer-mobile-align-center .garis-global-footer__about,
    .garis-global-footer-mobile-align-center .garis-global-footer__detail-column,
    .garis-global-footer-mobile-align-center .garis-global-footer__bottom {
        text-align: center;
        align-items: center;
    }

    .garis-global-footer-mobile-align-center .garis-global-footer__socials,
    .garis-global-footer-mobile-align-center .garis-global-footer__badges,
    .garis-global-footer-mobile-align-center .garis-global-footer__legal,
    .garis-global-footer-mobile-align-center .garis-global-footer__extra-links {
        justify-content: center;
    }

    .garis-global-footer-mobile-align-center .garis-global-footer__contact {
        margin-right: auto;
        margin-left: auto;
    }

    .garis-global-footer-mobile-align-right .garis-global-footer__about,
    .garis-global-footer-mobile-align-right .garis-global-footer__detail-column,
    .garis-global-footer-mobile-align-right .garis-global-footer__bottom {
        text-align: right;
        align-items: flex-end;
    }

    .garis-global-footer-mobile-align-right .garis-global-footer__socials,
    .garis-global-footer-mobile-align-right .garis-global-footer__badges,
    .garis-global-footer-mobile-align-right .garis-global-footer__legal,
    .garis-global-footer-mobile-align-right .garis-global-footer__extra-links {
        justify-content: flex-end;
    }

    .garis-global-footer-mobile-align-right .garis-global-footer__contact {
        margin-left: auto;
    }

    .garis-global-footer .garis-global-footer__about {
        text-align: center;
    }

    .garis-global-footer .garis-global-footer__about .garis-global-footer__description {
        margin-right: auto;
        margin-left: auto;
    }

    .garis-global-footer .garis-global-footer__about .garis-global-footer__socials {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .garis-global-footer *,
    .garis-global-footer *::before,
    .garis-global-footer *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
