/**
 * Footer Styles
 */

.site-footer {
    background-color: var(--wp--preset--color--plaster);
    color: var(--wp--preset--color--slate);
    font-family: var(--wp--preset--font-family--montserrat);
    padding: 5% 5%;
    width: 100%;
    border-top: 1px solid #eee;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0 auto;
    justify-content: space-between;
}

.footer-column {
    margin-bottom: 2rem;
}

/* Logo Column */
.footer-logo-column {
    flex: 0 0 16%;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
}

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-logo-text a {
    color: var(--wp--preset--color--slate);
    text-decoration: none;
}

.site-title {
    display: block;
    line-height: 1.3;
}

.registered-mark {
    font-size: 0.6rem;
    vertical-align: super;
}

/* Description Column */
.footer-description-column {
    flex: 0 0 25%;
    padding-right: 2rem;
}

.footer-description {
    font-size: 1.3rem;
    line-height: 1.5;
    color: var(--wp--preset--color--slate);
}

/* Contact Column */
.footer-contact-column {
    flex: 0 0 25%;
}

.footer-contact {
    font-size: 1.3rem;
    line-height: 1.5;
}

.footer-address,
.footer-phone,
.footer-email {
    margin-bottom: 1rem;
}

.footer-contact a {
    color: var(--wp--preset--color--slate);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-social {
    margin-top: 1rem;
    /* font-size: 1.3em; */
}

.footer-social a {
    color: var(--wp--preset--color--slate);
    text-decoration: none;
}

.footer-social a:hover {
    text-decoration: underline;
}

/* Menu Column */
.footer-menu-column {
    flex: 0 0 20%;
}

.footer-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-navigation li {
    margin-bottom: 1rem;
}

.footer-navigation a {
    color: var(--wp--preset--color--slate);
    text-decoration: none;
    font-size: 1.3rem;
    text-transform: uppercase;
}

.footer-navigation a:hover {
    text-decoration: underline;
}
.gform-theme--framework input[type]:where(:not(.gform-text-input-reset):not([type=hidden])):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus {
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid !important;
}

/* Responsive Styles */
@media (max-width: 1360px) {
    .footer-description, .footer-address, .footer-phone, .footer-email, .footer-contact, .footer-navigation a {
    font-size: 1rem;
}
}
@media (max-width: 992px) {
    .footer-container {
        flex-wrap: wrap;
    }

    .footer-logo-column {
        flex: 0 0 20%;
        margin-bottom: 2rem;
    }

    .footer-description-column {
        flex: 0 0 38%;
        padding-right: 1rem;
    }

    .footer-contact-column {
        flex: 0 0 36%;
    }

    .footer-menu-column {
        flex: 0 0 100%;
        margin-top: 1rem;
    }

    .footer-navigation ul {
        display: flex;
        flex-wrap: wrap;
    }

    .footer-navigation li {
        margin-right: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-logo-column {
    flex: 0 0 20%;
    margin: 0 auto;
    margin-bottom: 2rem;
}
    .footer-description-column,
    .footer-contact-column {
        flex: 0 0 100%;
    }

    .footer-description-column {
        margin-bottom: 1.5rem;
    }

    .footer-navigation ul {
        flex-direction: column;
    }

    .footer-navigation li {
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-column {
        flex: 0 0 100%;
        margin-bottom: 1.5rem;
    }
}
