footer.site-footer {
    min-height: 45px;
    display: flex;
    align-items: center;
}
.site-footer__row {
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.site-footer__links ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-footer__links ul li {
    display: flex;
    align-items: center;
}
.site-footer__links ul li a {
    color: var(--gray3);
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-dmsans);
}
.site-footer__links ul li:not(:last-child):after {
    content: '';
    background: var(--gray3);
    display: flex;
    margin: 0 6px;
    width: 1px;
    height: 15px;
}
.site-footer__copyright {
    color: var(--gray3);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    font-family: var(--font-dmsans);
}
.site-footer__poweredby {
    color: var(--gray3);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    font-family: var(--font-dmsans);
}
.footer-cta {
    background-color: #04634C; /* fallback */
    background-image: linear-gradient(to right, #04634C 0%, #053529 100%);
    padding: 101px 20px 65px;
}
.footer-cta__row {
    display: flex;
    flex-wrap: wrap;
}
.footer-cta__info-wrap {
    width: 59.57%;
}
.footer-cta__info-wrap--inner {
    padding-right: 216px;
}
.footer-cta__form-wrap {
    width: 40.24%;
    background: var(--white);
    border-radius: 18px;
    padding: 33px 49px 29px 46px;
}
h2.footer-cta__headline {
    font-family: var(--font-secondary);
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    margin-top: 0;
    margin-bottom: 12px;
}
.footer-cta__content {
    font-size: 18px;
    line-height: normal;
    color: #E0E0E0;
    margin-bottom: 50px;
}
.footer-cta__info-item {
    display: flex;
    align-items: center;
    gap: 25px;
}
.footer-cta__info-item:not(:last-child) {
    margin-bottom: 29px;
}
.footer-cta__info-item svg {
    display: flex;
}
.footer-cta__info-item a {
    display: block;
    color: var(--white);
    font-size: 18px;
    line-height: 1;
}
.form__grp:not(.form__grp--btn)  {
    margin-bottom: 23px;
}
.form__grp p {
    margin: 0;
}
.form__grp br {
    display: none;
}
.form__grp label {
    display: block;
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 400;
    color: var(--green);
    margin-bottom: 9px;
}
.form__grp input[type="text"],
.form__grp input[type="email"] {
    background: #F8F8F8;
    display: block;
    width: 100%;
    height: 30px;
    padding-left: 10px;
    padding-right: 10px;
    border: 0 none;
    border-radius: 5px;
    font-size: 14px;
    font-family: var(--font-primary);
}
.form__grp textarea {
    background: #F8F8F8;
    height: 69px;
    border-radius: 5px;
    display: block;
    width: 100%;
    padding: 10px;
    border: 0 none;
    resize: none;
    font-size: 14px;
    font-family: var(--font-primary);
}
.form__grp .wpcf7-submit {
    display: block;
    background: var(--green);
    height: 57px;
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    line-height: 57px;
    border-radius: 100px;
    width: 100%;
    padding: 0;
    border: 0 none;
    cursor: pointer;
}
.form__grp .wpcf7-spinner {
    position: absolute !important;
}
.form__grp .wpcf7-not-valid-tip {
    font-size: 13px;
}
.wpcf7-response-output {
    margin-bottom: 0 !important;
}

@media only screen and (max-width: 1024px) {
    .footer-cta__info-wrap {
        width: 50%;
    }
    .footer-cta__form-wrap {
        width: 50%;
    }
    .footer-cta__info-wrap--inner {
        padding-right: 60px;
    }
}
@media only screen and (max-width: 899px) {
    .site-footer {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .site-footer__row {
        flex-direction: column;
        gap: 10px;
    }
}
@media only screen and (max-width: 767px) {
    .footer-cta {
        padding: 50px 20px;
    }
    .footer-cta__info-wrap {
        width: 100%;
        margin-bottom: 30px;
    }
    .footer-cta__headline {
        text-align: center;
    }
    .footer-cta__content {
        text-align: center;
        margin-bottom: 30px;
    }
    .site-footer__copyright {
        text-align: center;
    }
    .footer-cta__form-wrap {
        width: 100%;
        padding: 25px;
    }
    .footer-cta__info-wrap--inner {
        padding-right: 0;
    }
    .footer-cta__info-item {
        flex-direction: column;
        gap: 10px;
    }
    .footer-cta__info-item a {
        text-align: center;
    }
}