.site-footer {
    position: relative;
    color: #fff;
    /* margin-top: 25px; */
    padding: 3rem 2rem 1rem;
}

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

.site-footer__content.container {
    display: flex;
    justify-content: space-between;
}

.site-footer .footer-logo,
.site-footer .footer-logo img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.site-footer .site-footer__background,
.site-footer .site-footer__background img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-footer .site-footer__overlay {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#0d283ebf, #0d283ebf);
}

.site-footer .site-footer__content,
.site-footer .site-footer__copyright {
    position: relative;
    z-index: 2;
}

.site-footer .site-footer__content .site-footer__center {
    /* width: calc(100% - 300px - 2rem); */
    /* width: 300px; */
}

.site-footer .site-footer__content .site-footer__right {
    /* width: calc(100% - 300px - 2rem); */
    width: 300px;
}

.site-footer .site-footer__content .site-footer__right .site-footer__title {
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 28px;
    margin-top: 0.5rem;
    color: var(--color--primary);
}

.site-footer .site-footer__copyright {
    text-align: center;
    font-size: 14px;
    padding-top: 020px;
    border-top: 1px solid #ffffff44;
    margin-top: 20px;
}

.site-footer__socials {
    display: flex;
    width: fit-content;
}

.site-footer__newsletter-container > h3 {
    text-align: center;
}

.site-footer__newsletter-signup {
    display: flex;
    flex-direction: row;
}

a.site-footer__socials-link .icon {
    font-size: 29px;
}

.site-footer__address {
    margin-top: 20px;
    margin-bottom: 20px;
}

.site-footer__socials .icon {
    margin-right: 13px;
}

.site-footer__separator {
    width: 100px;
    height: 1px;
    background-color: #ffffff44;
    margin: 5px auto 5px 0;
}

#quick-links-separator {
    width: 175px;
}

.site-footer__about-menu > h2 {
    font-weight: bold;
}

.site-footer__quick-links > h2 {
    font-weight: bold;
}

/* ############ GRAVITY FORMS OVERRIDES ############  */

/* Email Input Overrides */
.site-footer #gform_wrapper_1 .gform_body .gform_fields .gfield .ginput_container_email input {
    color: white;
    background-color: #5f5f6026;
    border-color: #5f5f6026;
    margin-bottom: 0;
    border-radius: 0;
    height: 50px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 400;
    transition: border-color 0.3s ease-in-out;
}

.site-footer #gform_wrapper_1 .gform_body .gform_fields .gfield .ginput_container_email input:focus {
    border-color: var(--color--primary);
}

.site-footer #gform_wrapper_1 .gform_body .gform_fields .gfield .ginput_container_email:focus {
    border-color: var(--color--primary);
}

/* Submit Button Overrides */
form#gform_1 input#gform_submit_button_1 {
    border-color: var(--color--primary);
    inset: 0% 0% 0% auto;
    border: 1px solid var(--color--primary);
    color: white;
    text-align: center;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    background-color: var(--color--primary);
    height: 50px;
    position: relative;
    left: -20px;
}

form#gform_1 input#gform_submit_button_1:hover {
    background-color: black;
    color: var(--color--primary);
}

/*----------------------------------------*/
/*             REVAMP - START             */
/*----------------------------------------*/

.revamp .site-footer #gform_wrapper_1 .gform_body .gform_fields .gfield .ginput_container_email input {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.revamp form#gform_1 input#gform_submit_button_1 {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

/*----------------------------------------*/
/*             REVAMP - END               */
/*----------------------------------------*/

@media (max-width: 1550px) {
    .site-footer__separator {
        margin: 5px auto 5px;
    }

    .site-footer .site-footer__content {
        flex-direction: column;
    }

    .site-footer__address {
        text-align: center;
    }

    .site-footer__newsletter {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .site-footer__about-menu {
        text-align: center;
        margin-top: 25px;
    }

    .site-footer__quick-links {
        text-align: center;
        margin-top: 10px;
    }

    .site-footer__newsletter-socials {
        margin-top: 10px;
    }

    .site-footer .site-footer__content .site-footer__left,
    .site-footer .site-footer__content .site-footer__center,
    .site-footer .site-footer__content .site-footer__right {
        width: 100%;
    }

    .site-footer .footer-logo,
    .site-footer .footer-logo img {
        width: 300px;
        max-width: 100%;
        display: table;
        margin: 0 auto;
        margin-bottom: 2rem;
    }

    .site-footer .site-footer__content .site-footer__right .site-footer__title {
        font-size: 24px;
    }

    .site-footer__center {
        text-align: center;
    }

    .site-footer__right {
        text-align: center;
    }

    .site-footer__socials {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .site-footer__newsletter > h2 {
        text-align: center;
    }

    .site-footer__newsletter-container {
        width: 100%;
    }

    .site-footer__newsletter-signup {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    form#gform_1 input#gform_submit_button_1 {
        min-width: 99.83px;
        left: 0;
    }

    #gform_fields_1 {
        display: flex;
        justify-content: center;
    }
}
