.panel-footer {
    --surface-foreground: var(--primary-color-100);
    --surface-background: var(--primary-color-900);
    --text: var(--gray-100);

    color: var(--text);
    background-color: var(--surface-foreground);
}

.panel-footer .attributions {
    border-top: solid var(--surface-background);
}

.panel-footer .footer-content-container,
.panel-footer .attribution-content-container {
    margin: 0 auto;
    padding: 0 var(--space-5);
    max-width: var(--width-base);
    text-align: center;
}

.panel-footer .footer-content-container {
    display: grid;
    gap: var(--space-6);
    padding-top: var(--space-6);
    max-width: 1355px;
    padding-bottom: var(--space-6);
    grid-template-columns: 1fr;
}

.panel-footer .footer-content-container .client-details {
    grid-row: 2;
} 
    
.panel-footer .footer-content-container .social-media {
    grid-row: 4;
} 
    
.panel-footer .footer-content-container .footer-logo {
    grid-row: 1;
}
    
.panel-footer .footer-content-container .footer-nav {
    grid-row: 3;
}

.panel-footer .footer-content-container .partner-logos {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 0px;
	justify-content: center;
	max-width: 340px;
	margin: auto;
	align-items: center;
}

.panel-footer .social-links {
    font-size: 1.375rem;
    gap: 15px;
    flex-wrap: wrap;
    width: 250px;
}

.panel-footer .mobile-social-cont {
	background-color: var(--blue-00);
	padding: 27px 18px 40px;
}

.panel-footer .social-network {
	border: solid 1.5px var(--white);
	height: 44px;
	width: 44px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	line-height: 0;
	align-items: center;
}

.contentRender_name_plugins_common_logo_footer,
.panel-footer .logo-footer a {
    height: 82px;
    width: 191px;
    margin: auto;
}

.cta-cont {
    background-color: var(--blue-69);
}

.cta-cont .inner {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    position: relative;
}

.cta-cont .inner .cta.cta-left::after {
    content: '';
    display: block;
    height: 1px;
    background-color: var(--white);
    position: absolute;
    left: 10px;
    width: 95%;
    top: 50%;
}

.footer-cta {
    position: relative;
}

.footer-cta .footer-cta-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 0;
    justify-content: center;
}

.footer-cta .content {
	display: flex;
	align-items: center;
	gap: 20px;
}

.footer-cta .content img {
	width: 40px;
}
/* .cta-right .footer-cta .footer-cta-inner .first-title::before {
    content: '';
    background-image: url(/includes/public/assets/shared/visitors-guide-icon.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
    position: absolute;
    width: 45px;
    height: 44px;
    left: -55px;
    pointer-events: none;
}

.cta-left .footer-cta .footer-cta-inner .first-title::before {
    content: '';
    background-image: url(/includes/public/assets/shared/enewsletter-icon.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
    position: absolute;
    width: 45px;
    height: 44px;
    left: -60px;
    pointer-events: none;
} */

.footer-cta .first-title {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--white);
    font-weight: 600;
    position: relative;
    line-height: 1.3;
}

.footer-cta .second-title {
    font-size: 1.75rem;
    font-family: var(--font-amiri);
    text-transform: capitalize;
    color: var(--white);
    font-weight: 600;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 20px
}

.panel-footer .footer-content-container .partner-logos .logo {
     padding: 0 10px
}	
	
.panel-footer .footer-content-container .partner-logos .logo img {
    margin: 0;
}	

.panel-footer .partner-logos .pa-happiness {
	width: 110px;
}

.panel-footer .partner-logos .visit-phl {
	width: 100px;
}

.panel-footer .partner-logos .chamber-partners {
	width: 110px;
}

.panel-footer .partner-logos .visit-usa {
	width: 70px;
}

.panel-footer .partner-logos .dmap {
	width: 80px;
}

.panel-footer .partner-logos .pcvb {
	width: 90px;
}

.panel-footer .partner-logos .cedc {
	width: 90px;
}

@media (hover: hover) {
    .footer-cta:hover {
        text-decoration: none;
    }    

	.panel-footer .social-links a:hover {
	    color: var(--white);
	}
}


@media screen and (min-width: 375px) {
    .footer-cta .second-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 64em) {
    .panel-footer .footer-content-container {
        grid-template-columns: 1fr 1fr 1fr;
        text-align: left;
        gap: 54px var(--space-6);
        padding-top: 65px;
        padding-bottom: 50px;
    } 

    .panel-footer .footer-content-container .client-details {
        grid-row: 1;
        grid-column: 1;
    } 
    
    .panel-footer .footer-content-container .social-media {
        grid-column: 1;
        grid-row: 2;
        justify-content: flex-start;
    } 
    
    .panel-footer .footer-content-container .footer-logo {
        grid-column: 2;
        grid-row: 1;
    }
    
    .panel-footer .footer-content-container .footer-nav {
        grid-column: 3;
        grid-row: 1;
    }
	
    .panel-footer .footer-content-container .partner-logos {
        grid-column: 3 span;
        grid-row: 2;
        display: flex;
        max-width: unset;
        gap: 20px 5px;
        place-self: flex-end;
    }
	
	.panel-footer .footer-content-container .partner-logos .logo {
        padding: 0 10px
    }	
	
	.panel-footer .footer-content-container .partner-logos .logo img {
        /* width: auto; */
        /* height:30px; */
    }	

    .footer-cta .first-title {
        font-size: 1.0625rem;
    }

    .footer-cta .second-title {
        font-size: 2.25rem;
    }

	.contentRender_name_plugins_common_logo_footer,
	.panel-footer .logo-footer a {
	    height: 120px;
	    width: 278px;
	    margin: auto;
	}

	.panel-footer .social-links {
	    width: 100%;
	    font-size: 1.125rem;
	    gap: 12px;
	}

	.panel-footer .social-network {
		height: 36px;
		width: 36px;
	}

	.cta-cont .inner {
	    display: flex;
	    flex-direction: row;
	    justify-content: space-evenly;
	}

	.cta-cont .inner .cta {
		min-width: 300px;
	}

	.cta-cont .inner {
		padding: 30px 20px;
	}

	.cta-cont .inner::before {
		content: '';
		pointer-events: none;
		position: absolute;
		right: 0;
		bottom: 0;
		display: block;
		width: 137px;
		height: 177px;
		background-image: url(/includes/public/assets/shared/decorations/leaf-right.svg);
		background-repeat: no-repeat;
		background-position: bottom left;
		background-size: contain;
	}

	.cta-cont .inner::after {
		content: '';
		pointer-events: none;
		position: absolute;
		left: 0;
		bottom: 0;
		display: block;
		width: 170px;
		height: 280px;
		background-image: url(/includes/public/assets/shared/decorations/leaf-listings.svg);
		background-repeat: no-repeat;
		background-position: bottom left;
		background-size: contain;
	}

	.footer-cta .footer-cta-inner {
	    padding: 20px 0;
	}

	/* .cta-left .footer-cta .footer-cta-inner .first-title::before {
        width: 55px;
        height: 55px;
        left: -78px;
	 }
	
	.cta-right .footer-cta .footer-cta-inner .first-title::before {
        width: 52px;
        height: 52px;
        left: -75px;
	 } */

	.cta-cont .inner .cta.cta-left::after {
	    position: absolute;
	    left: 50%;
	    width: 1px;
	    height: 115px;
	    top: 22px;
	}
}

.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;
    place-items: center;
}

.panel-footer .client-details .title,
.panel-footer .client-details .phone,
.panel-footer .client-details .address {
    font-size: 0.875rem;
}

.panel-footer .client-details .title.line-2 {
    margin: 0 0 15px;
}

.panel-footer .client-details .title.line-1 {
    font-weight: 900;
}

.panel-footer .client-details .phone {
    color: var(--white);
}

@media (min-width: 64em) {
    .panel-footer .client-details {
        place-items: flex-start;
    }   
}

.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 .social-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-footer .attribution-content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 30px;
    align-items: center;
    max-width: 300px;
    gap: 20px;
}

@media (min-width: 40em) {
    .panel-footer .attribution-content-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }   
}

@media (min-width: 64em) {
    .panel-footer .attribution-content-container {
	    max-width: 1355px;
    }   
}

.panel-footer .attribution-content-container p {
    font-size: 0.75rem;
    line-height: var(--leading-snug);
}

.panel-footer .made-by-sv {
    display: block;
    width: 180px;
}

.panel-footer .made-by-sv img {
    display: block;
    width: 100%;
    height: 13px;
}

/* Mobile Bottom Fixed Container */
.panel-footer .mobile-fixed {
    position: fixed;
    bottom: 0px;
    width: 100%;
    z-index: 9999;
}
