<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.footer {
    background-color: #fff;
    display: flex;
    justify-content: center;
    margin-top: 48px;
}
.footer .footer_inner,
.footer .footer_bottom {
    padding: 0px 38px;
}

.footer_inner {
    --card-spacing: 0.75rem;
    justify-content: flex-start;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer_inner .menu-group {
    display: flex;
    flex-direction: column;
    width: calc((100% - 0.75rem*(4 - 1)) / 4);
    gap: 8px;
    padding-top: 32px;
}

.footer_inner .menu-group .menu-group-title {
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 16px;
    margin-top: 0px;
    color: #333;
}

.footer_inner .menu-group li {
    list-style-type: none;
    min-height: 30px;
    display: flex;
    align-items: center;
}

.footer_inner .menu-group li a,
.footer_bottom .right_menu li a,
.footer_bottom .right_menu li {  
    font-size: 12px;
    font-weight: 400;
    color: #333;
}
.footer_inner .menu-group li a:hover,
.footer_bottom .right_menu li a:hover {
    text-decoration: underline;
}

.footer_bottom {
    margin: 48px 0 24px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer_bottom .left .privacyoptions_img {
    width: 32px;
    height: 32px;
    margin-right: 4px;
}

.footer_bottom .left,
.footer_bottom .right_menu {
    min-height: 40px;
    display: flex;
    align-items: center;
}

.footer_bottom .left a {
    font-size: 12px;
    font-weight: 400;
    color: #333;
    display: inline-flex;
    align-items: center;
}

.footer_bottom .left a:hover .text {
    text-decoration: underline;
}

.footer_bottom .right_menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.footer_bottom .right_menu li {
    list-style-type: none;
}

@media only screen and (max-width: 1199px) {
    .footer .footer_inner, .footer .footer_bottom {
        padding: 0;
    }
}
/*-------- End (max-width: 1199px) --------*/

@media only screen and (max-width: 767px) {
    .footer_inner .menu-group {
        width: 100%;
    }
    .footer_inner .menu-group .menu-group-title {
        margin-bottom: 0;
    }
    .footer_bottom {
        margin-top: 25px;
    }
    .footer_bottom .right_menu ul {
        gap: 15px;
    }
}
/*-------- End (max-width: 767px) --------*/</pre></body></html>