/* ============== If only two tabs are visible in the footer,
the following styles will handle the responsiveness ================= */

.footer_banner_box
{
    cursor: pointer;
    float: left;
    width: 435px;
    height: 20px;
    padding: 20px 30px;
    background-color: #2E2E2E;
}

@media screen and (max-width:1009px) {
    .footer_banner_box
    {
        width: 329px;
        padding: 20px 23px 30px;
    }
}

@media screen and (max-width:767px) {
    .footer_banner_box
    {
        width: 185px;
    }
}

@media screen and (max-width:479px) {
    .footer_banner_box
    {
        width: 104px;
    }
}