.footer {
    background-color: var(--bbx-locales-primary-color);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    color: #FFFFFF;
    padding: 50px 0;
    font-size: 16px;
    line-height: normal;
    font-style: normal;
    font-weight: 400;
    z-index: 41;
    position: relative;
}

/* Class for hidden links in footer */
.footer .beautiful {
    display: none;
}

.footer p {
    color: #FFFFFF;
}

.footer .footer-company-description {
    margin-bottom: 50px;
}

.footer .footer-company-name,
.footer .footer-column-title,
.footer .footer-list {
    margin-bottom: 30px;
}

.footer .footer-company-name {
    font-size: 32px;
    font-weight: 600;
}

.footer .footer-column + .footer-column {
    margin-top: 50px;
}

.footer .footer-column .footer-column-title {
    font-size: 20px;
    font-weight: 600;
}

.footer .footer-column .footer-list {
    padding-left: 16px;
}

.footer .footer-column a {
    display: block;
}

.footer .footer-column .footer-email {
    margin-top: 25px;
    margin-bottom: 0;
}

.footer .footer-bottom {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    flex-direction: column-reverse;
    gap: 15px;
}

.footer .footer-bottom .footer-right .footer-right-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer .footer-bottom .footer-right .footer-right-list li {
    display: inline-block;
    padding-right: 6px;
    color: #FFF;
    width: 100%;
    margin-bottom: 10px;
}

.footer .footer-bottom .footer-right .footer-right-list li a {
    height: 30px;
    line-height: 30px;
    display: inline-block;
}

@media screen and (min-width: 768px) {
    .footer .footer-bottom {
        flex-direction: row;
        gap: 0;
    }

    .footer .footer-column + .footer-column {
        margin-top: 0;
    }

    .footer .footer-bottom .footer-right .footer-right-list li {
        width: inherit;
        margin-bottom: 0;
    }

    .footer .footer-bottom .footer-right .footer-right-list li + li {
        border-left: 1px solid #FFFFFF;
        padding-left: 10px;
    }

    .footer .footer-bottom .footer-right .footer-right-list li a {
        height: inherit;
        line-height: inherit;
    }
}