<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.footer {
    background: var(--light-shade-gray-color);
    padding: 36px 0;
}

.footer__inner,
.footer__info-outer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__info-outer {
    gap: 20px;
    max-width: 800px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo__text {
    padding: 15px;
}

.logo__maintext {
    color: #275E2E;
    font-family: "TTFirsNeue", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 104%; /* 20.8px */
}

.logo__subtext {
    color: rgba(39, 94, 46, 0.44);
    font-family: "TTFirsNeue", sans-serif;
    font-size: 9px;
    font-style: normal;
    font-weight: 400;
    line-height: 104%; /* 9.36px */
    letter-spacing: 0.45px;
    text-transform: uppercase;
}

.footer__details {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.footer__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__label {
    color: #275E2E;
    font-family: "Onest", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 104%; /* 16.64px */
}

.footer__text {
    color: #0C0C0C;
    font-family: "Onest", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 104%; /* 14.56px */
}

.footer__text--link {
    text-decoration: none;
    color: #0C0C0C;
    font-family: "Onest", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 104%; /* 14.56px */
}

.footer__text--link:hover {
    text-decoration: underline;
}

@media (max-width: 1100px) {
    .footer__inner {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .footer__info-outer {
        flex-direction: column;
        text-align: center;
    }

    .logo__text {
        display: none;
    }
}</pre></body></html>