.footer {
    background: #147852;
    padding: 55px 24px;
    color: #ffffff;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.footer__brand {
    /* display: flex; */
    /* align-items: center; */
    gap: 16px;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    line-height: 32px;
}

.footer__logo-icon {
    width: 21px;
    height: 21px;
}

.footer__logo-text {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
}

.footer__dot {
    display: none;
}



.footer__tagline {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: #ffffff;
    margin: 4px 0;
}

.footer__columns {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 24px;
}

.footer__column {
    /* display: flex; */
    /* only on mobile */
    /* flex-direction: row; */
    gap: 32px;
}

.footer__column--tight {
    gap: 16px;
}

.footer__column-title {
    margin: 0px 0px 12px 0px;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer__link {
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    color: #ffffff;
}

.footer__divider {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
}

.footer__copyright {
    margin: 0;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    color: #e0e0e0;
}

@media (min-width: 800px) {
    .footer {
        padding: 55px 80px;
    }

    .footer__columns {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .footer {}
}

@media (min-width: 1440px) {
    .footer {
        padding: 55px 100px;
    }

    .footer__brand {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .footer__dot {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 12px;
        height: 12px;
    }

    .footer__dot img {
        width: 8px;
        height: 8px;
    }
}