.panel-footer {
    --surface-foreground: var(--white-fb);
    --surface-background: #edebe2;
    --text: var(--gray-25);

    color: var(--text);
    background-color: var(--surface-foreground);
}

.footer-promo {
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	position: relative;
}

.footer-promo::before {
    content: '';
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(40,40,40,0.2),rgba(40,40,40,0.2));
}

.footer-promo::after {
	content: '';
	pointer-events: none;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: block;
	width: calc(100% - 24px);
	height: 2px;
	background-color: var(--white);
}

.footer-promo > div {
    z-index: 1;
    position: relative;
}

.footer-promo .promo-item {
    justify-content: center;
}

@media screen and (min-width: 64em) {
    .footer-promo {
        display: flex;
        flex-direction: row;
    }

    .footer-promo::after {
        width: 2px;
        height: calc(100% - 70px);
    }

    .footer-promo > div {
        flex: 1 1 50%;
    }

    .footer-promo .promo-item {
        min-height: 220px;
        gap: 22px;
    }

    .footer-promo .promo-item .icon {
        flex: 1 1 78px;
        max-width: 78px;
    }

    .footer-promo .promo-item .top {
        font-size: 38px;
        line-height: 1;
    }

    .footer-promo .promo-item .bottom {
        font-size: 25px;
    }
}

.panel-footer .footer-logos {
	background-color: var(--cream-fe);
}

.panel-footer .footer-logos .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0 10px;
    max-width: 375px;
    margin: 0 auto;
    margin-left: -10px;
    gap: 24px;
}

@media screen and (min-width: 375px) {
    .panel-footer .footer-logos .inner {
        margin: 0 auto;
    }
}

@media screen and (min-width: 40em) {
    .panel-footer .footer-logos .inner {
        max-width: unset;
    }
}

.panel-footer .footer-logos .inner .img-cont p {
    margin-bottom: 0;
}

.panel-footer .footer-logos .inner .img-cont img {
    margin: 0;
}

.panel-footer .footer-logos .inner .img-cont.dmoa img {
    width: 80px;
}

.panel-footer .footer-logos .inner .img-cont.ta img {
    width: 180px;
}

.panel-footer .footer-logos .inner .img-cont.penn img {
    width: 130px;
}

.panel-footer .attributions {
    background-color: var(--surface-background);
}

.panel-footer .footer-content-container,
.panel-footer .attribution-content-container {
    margin: 0 auto;
    padding: 0 var(--space-5);
    max-width: 1240px;
    text-align: center;
}

.panel-footer .footer-content-container {
    display: grid;
    gap: var(--space-6);
    padding-top: var(--space-10);
    padding-bottom: var(--space-6);
}

@media (min-width: 64em) {
    .panel-footer .footer-content-container {
        grid-template-columns: 372px 1fr 1fr;
        text-align: left;
    }   

    .panel-footer .footer-content-container .client-details {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .panel-footer .footer-content-container .client-details .address {
        flex-direction: row;
    }

    .panel-footer .footer-content-container .social .social-links {
        flex-direction: row;
    }

    .panel-footer .footer-content-container .footer-logos {
        grid-column: 2 / 4;
        grid-row: 1 / 2;
    }

    .panel-footer .footer-content-container .footer-logos .inner {
        flex-direction: row;
    }

    .panel-footer .footer-content-container .footer-nav {
        grid-column: 2 / 4;
        grid-row: 2 / 3;
    }
}

@media screen and (min-width: 90em) {
    .panel-footer .footer-content-container {
        gap: 8px;
        grid-template-columns: 372px 350px 1fr;
        padding-top: var(--space-4);
        padding-bottom: 35px;
    }

    .panel-footer .footer-content-container .client-details {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
        gap: var(--space-2);
        transform: translateY(25px);
    }

    .panel-footer .footer-content-container .social-links {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .panel-footer .footer-content-container .footer-logos {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
    }

    .panel-footer .footer-content-container .footer-logos .inner {
        max-width: unset;
    }

    .panel-footer .logo-footer a {
        width: 360px;
    }

    .panel-footer .footer-logos .inner .img-cont.dmoa img {
        width: 105px;
    }
}

.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: var(--space-4);
    place-items: center;
}

.panel-footer .client-details .inner { 
    line-height: 1.3;
}

.contentRender_name_plugins_common_logo_footer,
.panel-footer .logo-footer a {
    display: block;
    width: 310px;
    margin-left: -10px;
}

.panel-footer .logo-footer img {
    display: block;
    width: 100%;
    height: auto;
}

.panel-footer .client-details p {
    font-size: var(--text-sm);
    line-height: var(--leading-snug);
}

.panel-footer .client-details .address {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.panel-footer .social-media {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.panel-footer .social-media .social-links {
    gap: 13px;
    flex-wrap: wrap;
}

.panel-footer .social-media .social-links .social-network {
    padding: 0;
} 

.panel-footer .social-media .social-links .social-network .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 44px;
    border-radius: var(--rounded-full);
    background-color: var(--blue);
    color: var(--white);
}

.panel-footer .attribution-content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 26px;
    padding-bottom: 26px;
}

@media (min-width: 40em) {
    .panel-footer .attribution-content-container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 44px;
        transform: translateX(-60px);
    }   
}

@media screen and (min-width: 64em) {
    .panel-footer .social-media .social-links .social-network .social-link {
        height: 35px;
        width: 35px;
        font-size: 20px;
    }
}

@media screen and (min-width: 90em) {
    .contentRender_name_plugins_common_logo_footer,
    .panel-footer .logo-footer a {
        width: 360px;
    }
}

.panel-footer .attribution-content-container p {
    font-size: var(--text-sm);
    line-height: var(--leading-snug);
    color: var(--black-2b);
}

.panel-footer .made-by-sv {
    display: block;
    width: 180px;
}

.panel-footer .made-by-sv img {
    display: block;
    width: 100%;
    height: auto;
}

/* Mobile Bottom Fixed Container */
.panel-footer .mobile-fixed {
    position: fixed;
    bottom: 0px;
    width: 100%;
    z-index: 9999;
}
