.site-footer {
    background-color: var(--c-primary);
    color: var(--c-light);
    background-blend-mode: multiply;
    padding-top: 80px;
    padding-bottom: 80px;
}

.site-footer-inner {
    /*  */
}

@media only screen and (min-width: 768px) {
    .site-footer-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.site-footer .gform_required_legend {
    display: none;
}


.footer-form-heading>* {
    font-family: var(--f-tertiary);
    color: var(--c-light);
    font-size: .825em;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}

.footer-form-heading a {
    color: var(--c-light);
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease;
    border-bottom: 2px solid transparent;
}

.footer-form-heading a:hover,
.footer-form-heading a:focus,
.footer-form-heading a:active {
    color: var(--c-accent);
    border-color: var(--c-accent);
}

.footer-address {
    font-family: var(--f-primary);
    font-size: 1.5em;
}

.footer-address p {
    margin: 0;
}

.social-links {
    margin-top: 20px;
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    margin-left: 0;
}

.social-links svg {
    fill: var(--c-light);
}


.footer-logo {
    max-width: 420px;
    margin-bottom: 40px;
}

.site-footer-secondary {
    height: 100%;
    display: flex;
    align-items: center;
}


.bottom .menu {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

@media only screen and (min-width: 768px) {
    .bottom .menu {
        justify-content: center;
    }
}

.bottom-copyright {
    width: 100%;
}

@media only screen and (min-width: 768px) {
    .bottom-copyright {
        width: auto;
    }
}

.bottom-copyright p,
.bottom a {
    color: #50b37c;
    font-family: var(--f-primary);

    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bottom-copyright a,
.bottom-copyright p {
    margin: 0;
    font-family: var(--f-secondary);
    color: #6a8f96;
    font-size: .9em;
}


.bottom {
    background-color: var(--c-primary-dark);
}

.bottom .menu li a {
    padding-left: 15px;
    padding-right: 15px;
    border-right: 1px solid #606060;

    font-size: 1.4em;
    text-transform: uppercase;
    font-weight: 600;
}

.bottom .menu li:last-child a {
    border: none;
}

.bottom .menu li a:active,
.bottom .menu li a:focus,
.bottom .menu li a:hover {
    color: var(--c-light);
}


.bottom-inner {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.bottom .sub-menu {
    display: none;
}