.panel-footer {
    --surface-foreground: var(--green);
    --surface-background: var(--green-dark);
    --text: var(--gray-100);

    color: var(--text);
    background-color: var(--surface-foreground);
    position: relative;
}

.panel-footer::before {
    content:'';
    position: absolute;
    inset: 0;
    background-image: url(https://assets.simpleviewinc.com/simpleview/image/upload/v1/clients/columbiacountyga/footer_bg_5344e480-f53b-4fa4-b9d4-3023b8d9ad78.png);
    opacity: .18;
    pointer-events: none;
    mix-blend-mode: hard-light;
}

.panel-footer .cta-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

@media (min-width: 64em) {
    .panel-footer .cta-container {
        display: flex;
    }

    .panel-footer .cta-container > div {
        flex: 1 1 0;
    }
}

.panel-footer .attributions {
    background-color: var(--surface-background);
    z-index: 1;
    position: relative;
}

@media (min-width: 64em) {
    .panel-footer .attributions {
        padding-block: 8px 6px;
    }
}

.panel-footer .footer-content-container,
.panel-footer .attribution-content-container {
    margin: 0 auto;
    padding: 0 var(--space-5);
    max-width: 1308px;
    text-align: center;
}

.panel-footer .footer-content-container {
    display: grid;
    gap: var(--space-6);
    padding-bottom: 30px;
}

@media (min-width: 64em) {
    .panel-footer .footer-content-container {
        padding-bottom: 12px;
    }
}

.panel-footer .contentRender_name_plugins_core_textbox {
    margin: 0;
    padding: 0;
    max-width: none;
}

.panel-footer .client-details {
    display: grid;
    grid-auto-rows: min-content;
    gap: 0;
    place-items: center;
}

.panel-footer .client-details .built-by-kru-cont {
    display: none;
}

.panel-footer .client-details .logo-cont {
    grid-row: 1;
    background-color: var(--surface-foreground);
    margin-top: -10px;
    padding: 10px;
    border-radius: var(--rounded-full);
    margin-bottom: 14px;
}

.panel-footer .client-details .address-cont {
    margin-bottom: 16px;
}

.panel-footer .client-details .contact-info-cont {
    margin-bottom: 25px;
}

@media (min-width: 64em) {
    .panel-footer .client-details {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr)) min-content repeat(2, minmax(0, 1fr));
        flex-direction: row;
        align-items: start;
        padding-top: 28px;
    }

    .panel-footer .client-details > * {
        grid-row: 1;
    }

    .panel-footer .client-details .built-by-kru-cont {
        display: block;
        margin: 0;
        justify-self: start;
        width: 68px;
        padding: 3px 0 0;
    }

    .panel-footer .client-details .contact-info-cont {
        margin-bottom: 0;
        justify-self: end;
        text-align: right;
        margin-right: 20px;
        grid-column: 2;
    }

    .panel-footer .client-details .logo-cont {
        grid-row: unset;
        margin-top: -67px;
        padding: 10px 12px;
        border-radius: 47%;
        margin-bottom: 0;
        grid-column: 3;
    }

    .panel-footer .client-details .address-cont {
        margin-bottom: 0;
        justify-self: start;
        text-align: left;
        margin-left: 16px;
        grid-column: 4;
    }
}

.contentRender_name_plugins_common_logo_footer,
.panel-footer .logo-footer a {
    display: block;
    width: 87px;
}

.panel-footer .logo-footer img {
    display: block;
    width: 100%;
    height: auto;
}

@media (min-width: 64em) {
    .contentRender_name_plugins_common_logo_footer,
    .panel-footer .logo-footer a {
        display: block;
        width: 92px;
    }
}

.panel-footer .client-details p {
    font-size: .75rem;
    line-height: calc(1609/966);
    color: var(--cream);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0;
}

@media (min-width: 64em) {
    .panel-footer .client-details p {
        font-size: .65rem;
        line-height: calc(17.6/10.6);
    }
}

.panel-footer .social-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 64em) {
    .panel-footer .social-cont {
        justify-self: end;
        grid-column: 5;
    }
}

.panel-footer .attribution-content-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: dense;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: var(--cream);
}

.panel-footer .attribution-content-container .footer-nav {
    grid-row: 1;
    grid-column: span 2;
    background-color: var(--green-dark);
    padding: 11px 11px 0;
}

.panel-footer .attribution-content-container .quick-links-cont {
    grid-column: 1 / span 2;
    grid-row: 2;
    padding-block: 6px 19px;
    background-color: var(--green-dark);
}

.panel-footer .attribution-content-container .quick-links {
    justify-content: center;
    gap: 0;
}

.panel-footer .attribution-content-container .quick-links a {
    color: var(--cream);
    text-transform: uppercase;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.04em;
    font-size: calc(8rem/16);
    padding-inline: 3px;
    position: relative;
}

.panel-footer .attribution-content-container .quick-links a:not(:last-child):after {
	content: '•';
	position: absolute;
	top: 50%;
	right: 0;
	translate: 50% -50%;
	pointer-events: none;
}

@media (hover: hover) {
    .panel-footer .attribution-content-container .quick-links a:hover {
        text-decoration: none;
    }
}

@media (min-width: 64em) {
    .panel-footer .attribution-content-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        background-color: var(--green-dark);
    }

    .panel-footer .attribution-content-container .footer-nav {
        padding-block: 0;
    }

    .panel-footer .attribution-content-container .quick-links-cont {
        padding: 0;
    }

    .panel-footer .attribution-content-container .quick-links {
        padding-inline: 10px;
    }

    .panel-footer .attribution-content-container .quick-links a {
        color: var(--cream);
        font-size: calc(8rem/16);
        padding-inline: 8px;
    }
}

.panel-footer .attribution-content-container p {
    font-size: var(--text-sm);
    line-height: var(--leading-snug);
}

.panel-footer .built-by-kru-cont {
    width: 72px;
    margin-left: 16px;
    padding-block: 10px;
}

.panel-footer .built-by-kru-cont img {
    width: 100%;
}

@media (min-width: 64em) {
    .panel-footer .attribution-content-container .built-by-kru-cont {
        display: none;
    }
}

.panel-footer .made-by-sv {
    display: block;
    width: 138px;
    grid-column: 2;
    justify-self: end;
    margin-right: 40px;
}

.panel-footer .made-by-sv img {
    display: block;
    width: 100%;
    height: auto;
}

.panel-footer .made-by-sv .cream {
    display: none;
}

@media (min-width: 64em) {
    .panel-footer .made-by-sv {
        width: 123px;
        margin-left: 19px;
        margin-right: 0;
    }

    .panel-footer .made-by-sv .green {
        display: none;
    }

    .panel-footer .made-by-sv .cream {
        display: block;
    }
}

/* Mobile Bottom Fixed Container */
.panel-footer .mobile-fixed {
    position: fixed;
    bottom: 0px;
    width: 100%;
    z-index: 9999;
}
