.footer{
    background: var(--c-accent-04);
    color: var(--white);
    font-family: var(--font-family-base-v1);
    font-size: 14px;
    margin-top: 40px;
}
.footer .footer-inner{
    padding: 20px 20px 140px;
}
.footer .footer-info{
    font-size: 1.2rem;
}
.footer .footer-info svg{
    width: 14px;
    height: 14px;
}
.footer .help-and-resources ul,
.footer .trust-and-privacy ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
    padding: 0;
}
.footer .help-and-resources ul li a,
.footer .trust-and-privacy ul li a{
    color: #fff;
    font-size: 1.6rem;
    font-weight: normal;
}
.footer .trust-and-privacy ul li button{
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #fff;
    cursor: pointer;
    outline: none;
    display: flex;
    gap: 4px;
}
.footer .help-and-resources ul li a:hover,
.footer .trust-and-privacy ul li a:hover,
.footer .trust-and-privacy ul li button:hover{
    text-decoration: underline;
}
.footer .social-and-copyright{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
}
.footer .f-social-icons{
    display: flex;
    gap: 10px;
}
.footer .f-social-icons a{
    background: radial-gradient(white 0%, white 55%, white 55%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%);
    width: 32px;
    height: 32px;
}
body #onetrust-banner-sdk .ot-optout-signal,
body #onetrust-pc-sdk .ot-optout-signal {
    font-size: 1.3rem;
    line-height: 2;
}

@media (min-width: 768px) {
    .footer .f-mob-heading{
        display: none;
    }
}
@media (max-width: 767px) {
    .footer .footer-inner{
        padding: 20px 20px 60px;
    }
    .footer .footer-info{
        text-align: center;
    }
    .footer .help-and-resources,
    .footer .trust-and-privacy,
    .footer .social-and-copyright{
        border-top: 1px solid var(--c-text-quinary);
    }
    .footer .social-and-copyright{
        padding-top: 20px;
    }
    .footer .f-row{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer .f-mob-heading{
        background: none;
        border: none;
        color: var(--c-accent-07);
        cursor: pointer;
        display: flex;
        justify-content: center;
        font-size: 1.6rem;
        font-weight: 600;
        padding: 20px 0px;
        position: relative;
        width: 100%;
    }
    .footer .f-icon-plus{
        position: absolute;
        right: 24px;
        top: 52%;
    }
    .footer .f-icon-plus::before,
    .footer .f-icon-plus::after{
        position: absolute;
        content: "";
        width: 16px;
        height: 2px;
        background-color: var(--c-accent-02);
        top: 0;
        left: 0px;
    }
    .footer .f-icon-plus::after{
        transform: rotate(90deg);
        transition: transform 0.3s;
    }
    .footer .help-and-resources ul,
    .footer .trust-and-privacy ul{
        display: none;
        flex-direction: column;
        margin: 14px 0 20px;
    }
    .footer .help-and-resources .f-menu-active ul,
    .footer .trust-and-privacy .f-menu-active ul{
        display: flex;
    }
    .footer .f-menu-active .f-icon-plus::after{
        transform: rotate(0deg);
    }

}


