/* CSS Document */

.footer-block {
    /* Set default colors in case it's not set */
    background-color: var(--wp--preset--color--primary);
    color: var(--wp--preset--color--black);
}

.vfd-footer-copyright {
    /* Set default colors in case it's not set */
    background-color: var(--wp--preset--color--white);
    color: var(--wp--preset--color--black);
}

.footer-block:has(.footer-wrapper.bg-primary), 
.vfd-footer-copyright.bg-primary {
    background-color: var(--wp--preset--color--primary);
}
.footer-block:has(.footer-wrapper.bg-secondary), 
.vfd-footer-copyright.bg-secondary {
    background-color: var(--wp--preset--color--secondary);
}
.footer-block:has(.footer-wrapper.bg-tertiary), 
.vfd-footer-copyright.bg-tertiary {
    background-color: var(--wp--preset--color--tertiary);
}
.footer-block:has(.footer-wrapper.bg-black), 
.vfd-footer-copyright.bg-black {
    background-color: var(--wp--preset--color--black);
}
.footer-block:has(.footer-wrapper.bg-white), 
.vfd-footer-copyright.bg-white {
    background-color: var(--wp--preset--color--white);
}

.footer-block:has(.footer-wrapper.text-black), 
.vfd-footer-copyright.text-black, 
.vfd-footer-copyright.text-black a{
    color: var(--wp--preset--color--black);
}
.footer-block:has(.footer-wrapper.text-white), 
.vfd-footer-copyright.text-white, 
.vfd-footer-copyright.text-white a
{
    color: var(--wp--preset--color--white);
}



.footer-wrapper {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
	padding: var(--wp--preset--spacing--50);
}

.footer-information {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    column-gap: 25px;
}

.footer-information .general-information {
    text-align: left;
}

.footer-information .general-information span {
    font-weight: bold;
}

.footer-information .general-information h2 {
    margin-bottom: 0.83em;
    line-height: 1.2;
}

.footer-information .general-information p {
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
}

.footer-information .site-logo img{
	width: auto;
}

.footer-information:has(.footer-menu.vertical-menu){
	column-gap: calc(660px - 575px);
}

.footer-information:has(.footer-menu.horizontal-menu){
	column-gap: calc(660px - 589px);
}

.sws img{
	margin-right: 0.5ch;
}

.vfd-footer-copyright{
	padding: var(--wp--preset--spacing--50) 0;
}



@media screen and (max-width: 767px){
    
    .site-title {
        text-align: center;
    }
    
	.footer-divider {
		display: none;
	}
    
	.sws, 
    .vfd-footer-copyright > a {
		display: block;
	}
    
}